Home
last modified time | relevance | path

Searched full:concurrency (Results 1 – 25 of 251) sorted by relevance

1234567891011

/third_party/node/test/parallel/
Dtest-runner-concurrency.js14 describe('Concurrency option (boolean) = true', { concurrency: true }, () => { property
26 'Concurrency option (boolean) = false',
27 { concurrency: false }, property
39 // Despite the docs saying so at some point, setting concurrency to true should
40 // not limit concurrency to the number of available CPU cores.
41 describe('concurrency: true implies Infinity', { concurrency: true }, () => { property
56 // Make sure tests run in order when root concurrency is 1 (default)
91 await fs.writeFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), '');
94 fixtures.path('test-runner', 'concurrency', 'a.mjs'),
95 fixtures.path('test-runner', 'concurrency', 'b.mjs'),
Dtest-runner-cli-concurrency.js10 test('default concurrency', async () => {
13 assert.match(cp.stderr.toString(), /concurrency: true,/);
16 test('concurrency of one', async () => {
17 const args = ['--test', '--test-concurrency=1'];
19 assert.match(cp.stderr.toString(), /concurrency: 1,/);
22 test('concurrency of two', async () => {
23 const args = ['--test', '--test-concurrency=2'];
25 assert.match(cp.stderr.toString(), /concurrency: 2,/);
Dtest-runner-option-validation.js17 [Symbol(), {}, [], () => {}, 1n, '1'].forEach((concurrency) => {
18 assert.throws(() => test({ concurrency }), { code: 'ERR_INVALID_ARG_TYPE' }); field
20 [-1, 0, 1.1, -Infinity, NaN, 2 ** 33, Number.MAX_SAFE_INTEGER].forEach((concurrency) => {
21 assert.throws(() => test({ concurrency }), { code: 'ERR_OUT_OF_RANGE' }); field
23 [null, undefined, 1, 2 ** 31, true, false].forEach((concurrency) => {
25 test({ concurrency }); field
Dtest-runner-inspect.mjs33 …inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run wit…
42 …inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run wit…
56 …inspector with --test forces running at a concurrency of 1\. Use the inspectPort option to run wit…
Dtest-stream-map.js159 // Concurrency + AbortSignal
165 }, 2), { signal: ac.signal, concurrency: 2, highWaterMark: 0 }); property
181 // Concurrency result order
185 }, { concurrency: 2 }); property
197 // highWaterMark with small concurrency
210 }, { concurrency: 2 }); property
220 // highWaterMark with a lot of items and large concurrency
257 }, { concurrency: 6 }); property
268 // Custom highWaterMark with a lot of items and large concurrency
305 }, { concurrency: 5, highWaterMark: 7 }); property
[all …]
Dtest-stream-filter.js118 // Concurrency + AbortSignal
124 }, { signal: ac.signal, concurrency: 2 }); property
142 // Concurrency result order
146 }, { concurrency: 2 }); property
160 concurrency: 'Foo' property
Dtest-stream-some-find-every.mjs108 // Concurrency doesn't affect which value is found.
114 }, { concurrency: 2 }); property
150 concurrency: 'Foo'
152 }, /ERR_OUT_OF_RANGE/, `${op} should throw for invalid concurrency`).then(common.mustCall());
155 … }, /ERR_INVALID_ARG_TYPE/, `${op} should throw for invalid concurrency`).then(common.mustCall());
Dtest-stream-flatMap.js74 // Concurrency + AbortSignal
78 }), { signal: ac.signal, concurrency: 2 }); property
114 concurrency: 'Foo' property
Dtest-stream-forEach.js92 // Concurrency + AbortSignal
99 }, { signal: ac.signal, concurrency: 2, highWaterMark: 0 }); property
120 concurrency: 'Foo' property
/third_party/node/deps/npm/node_modules/p-map/
Dindex.js8 concurrency = Infinity, argument
17 if (!((Number.isSafeInteger(concurrency) || concurrency === Infinity) && concurrency >= 1)) {
18 … TypeError(`Expected \`concurrency\` to be an integer from 1 and up or \`Infinity\`, got \`${concu…
73 for (let i = 0; i < concurrency; i++) {
/third_party/node/benchmark/test_runner/
Dsuite-tests.js13 concurrency: ['yes', 'no'], property
19 async function run({ numberOfSuites, testsPerSuite, testType, concurrency }) { field
20 concurrency = concurrency === 'yes';
28 describe(`${i}`, { concurrency }, () => { field
42 describe(`${i}`, { concurrency }, () => { field
/third_party/node/lib/internal/main/
Dtest_runner.js27 let concurrency = getOptionValue('--test-concurrency') || true; variable
31 process.emitWarning('Using the inspector with --test forces running at a concurrency of 1. ' +
32 'Use the inspectPort option to run with concurrency');
33 concurrency = 1;
63 concurrency, property
/third_party/node/benchmark/tls/
Dtls-connect.js7 concurrency: [1, 10], property
14 let concurrency; variable
19 concurrency = conf.concurrency;
35 for (let i = 0; i < concurrency; i++)
/third_party/node/lib/internal/streams/
Doperators.js81 let concurrency = 1;
82 if (options?.concurrency != null) {
83 concurrency = MathFloor(options.concurrency);
86 let highWaterMark = concurrency - 1;
91 validateInteger(concurrency, 'options.concurrency', 1);
94 highWaterMark += concurrency;
121 cnt < concurrency &&
162 if (!done && (queue.length >= highWaterMark || cnt >= concurrency)) {
/third_party/node/lib/internal/test_runner/
Dtest.js212 const { concurrency, loc, only, timeout, todo, signal } = options;
227 this.concurrency = 1;
246 this.concurrency = parent.concurrency;
263 switch (typeof concurrency) {
265 validateUint32(concurrency, 'options.concurrency', 1);
266 this.concurrency = concurrency;
270 if (concurrency) {
271 this.concurrency = parent === null ?
274 this.concurrency = 1;
279 if (concurrency != null)
[all …]
/third_party/node/test/pummel/
Dtest-net-many-clients.js29 const concurrency = 50; constant
90 for (let i = 0; i < concurrency; i++) {
92 if (++finished_clients === concurrency) server.close();
98 assert.strictEqual(total_connections, connections_per_client * concurrency);
/third_party/node/test/es-module/
Dtest-esm-extensionless-esm-and-wasm.mjs7 describe('extensionless ES modules within a "type": "module" package scope', { concurrency: true },… property
32 describe('extensionless Wasm modules within a "type": "module" package scope', { concurrency: true … property
58 describe('extensionless ES modules within no package scope', { concurrency: true }, () => { property
82 describe('extensionless Wasm within no package scope', { concurrency: true }, () => { property
/third_party/node/deps/npm/node_modules/cacache/lib/
Dverify.js23 concurrency: 20, property
151 { concurrency: opts.concurrency } property
211 { concurrency: opts.concurrency } property
/third_party/node/test/fixtures/test-runner/concurrency/
Db.mjs7 const file = await fs.readFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'utf8');
9 await fs.writeFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'b.mjs');
Da.mjs6 await fs.writeFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'a.mjs');
8 const file = await fs.readFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'utf8');
/third_party/typescript/tests/cases/docker/pyright/
DDockerfile7 RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts…
9 CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--no-bail", "--", "tsc", "--noEmit" ]
/third_party/libuv/test/
Dbenchmark-pound.c271 static int pound_it(int concurrency, in pound_it() argument
290 do_setup(concurrency, arg); in pound_it()
292 r = do_connect(concurrency, make_connect, arg); in pound_it()
304 concurrency, in pound_it()
/third_party/skia/experimental/wasm-skp-debugger/
Dkarma.conf.js54 // Concurrency level
56 concurrency: Infinity, property
/third_party/skia/modules/pathkit/
Dkarma.bench.conf.js52 // Concurrency level
54 concurrency: Infinity, property
/third_party/skia/modules/canvaskit/
Dkarma.conf.js55 // Concurrency level
57 concurrency: Infinity, property

1234567891011