Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | # Parallel JS Benchmarks |
michael@0 | 2 | |
michael@0 | 3 | This is a preliminary benchmark suite for Parallel JS. Each test is |
michael@0 | 4 | intended to test various aspects of the engine, as described below. |
michael@0 | 5 | The set of tests is very preliminary and is expected to grow and |
michael@0 | 6 | eventually include more real-world examples. |
michael@0 | 7 | |
michael@0 | 8 | To run the tests, do something like: |
michael@0 | 9 | |
michael@0 | 10 | parjs-benchmarks/run.sh build-opt/js parjs-benchmarks/*.js |
michael@0 | 11 | |
michael@0 | 12 | Where `build-opt/js` is the path to your shell. |
michael@0 | 13 | |
michael@0 | 14 | # The tests |
michael@0 | 15 | |
michael@0 | 16 | - Mandelbrot: A test of embarassingly parallel arithmetic. Exercises |
michael@0 | 17 | the comprehension form of 2D parallel arrays. |
michael@0 | 18 | - Allocator: A test of parallel allocation. |