Home
last modified time | relevance | path

Searched refs:concurrency (Results 1 – 25 of 106) sorted by relevance

12345

/third_party/node/deps/npm/node_modules/yargs/node_modules/p-limit/
Dindex.js4 const pLimit = concurrency => { argument
5 if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
31 if (activeCount < concurrency) {
Dreadme.md3 > Run multiple promise-returning & async functions with limited concurrency
33 ### pLimit(concurrency)
37 #### concurrency subsubsection
85 - [p-queue](https://github.com/sindresorhus/p-queue) - Promise queue with concurrency control
88 …hus/p-all) - Run promise-returning & async functions concurrently with optional limited concurrency
Dindex.d.ts38 export default function pLimit(concurrency: number): Limit;
/third_party/node/benchmark/tls/
Dtls-connect.js7 concurrency: [1, 10], property
14 let concurrency; variable
19 concurrency = conf.concurrency;
34 for (let i = 0; i < concurrency; i++)
/third_party/boost/libs/asio/doc/overview/
Dconcurrency_hint.qbk11 allows programs to specify a concurrency hint. This is a suggestion to the
19 following special concurrency hint values:
39 This special concurrency hint disables locking in both the scheduler and
55 This special concurrency hint disables locking in the reactor I/O. This
73 The concurrency hint used by default-constructed `io_context` objects can be
79 on the compiler command line means that a concurrency hint of `1` is used for
81 concurrency hint used by `io_context` objects constructed with `1` can be
/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/deps/npm/node_modules/libnpmconfig/node_modules/p-limit/
Dindex.js4 const pLimit = concurrency => { argument
5 if (concurrency < 1) {
31 if (activeCount < concurrency) {
Dreadme.md3 > Run multiple promise-returning & async functions with limited concurrency
36 ### pLimit(concurrency)
40 #### concurrency subsubsection
81 - [p-queue](https://github.com/sindresorhus/p-queue) - Promise queue with concurrency control
84 …hus/p-all) - Run promise-returning & async functions concurrently with optional limited concurrency
Dindex.d.ts29 export default function pLimit(concurrency: number): Limit;
/third_party/boost/libs/beast/test/extras/include/boost/beast/test/
Dyield_to.hpp52 enable_yield_to(std::size_t concurrency = 1) in enable_yield_to() argument
56 threads_.reserve(concurrency); in enable_yield_to()
57 while(concurrency--) in enable_yield_to()
/third_party/node/deps/npm/node_modules/cacache/lib/
Dverify.js19 concurrency: { property
131 }, { concurrency: opts.concurrency })) property
184 }, { concurrency: opts.concurrency }).then(() => stats) property
/third_party/typescript/tests/cases/docker/office-ui-fabric/
DDockerfile15 RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts
18 RUN npx lerna exec --stream --concurrency 1 --bail=false -- yarn run just scss
20 CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--loglevel", "error", "--bail=false", "--…
/third_party/node/deps/npm/node_modules/run-queue/
DREADME.md3 A promise based, dynamic priority queue runner, with concurrency limiting.
35 If you bump concurrency to `2`, then you get:
41 The concurrency means that they don't finish in order, because some take
45 even true if concurrency is set high enough that all of the regular queue
/third_party/typescript/tests/cases/docker/pyright/
DDockerfile8 RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts…
10 CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--no-bail", "--", "tsc", "--noEmit" ]
/third_party/node/deps/npm/node_modules/libnpmconfig/node_modules/p-locate/
Dindex.js19 concurrency: Infinity, property
23 const limit = pLimit(opts.concurrency);
/third_party/node/deps/npm/node_modules/yargs/node_modules/p-locate/
Dindex.js19 concurrency: Infinity, property
23 const limit = pLimit(opts.concurrency);
/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/node/deps/npm/node_modules/bluebird/js/release/
Dmap.js142 if (typeof options.concurrency !== "number") {
145 util.classString(options.concurrency)));
147 limit = options.concurrency;
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/
Drunner.dart42 @required int concurrency,
57 '--concurrency=$concurrency',
/third_party/boost/libs/beast/doc/qbk/08_design/
D2_http_comparison.qbk284 …_ASYNCRTIMP void set_body(const concurrency::streams::istream &instream, const utf8string &content…
287 void set_instream(const concurrency::streams::istream &instream) { m_inStream = instream; }
290 …void set_outstream(const concurrency::streams::ostream &outstream, bool is_default) { m_outStream…
296 concurrency::streams::istream m_inStream;
299 concurrency::streams::ostream m_outStream;
314 `concurrency::streams::istream` parameter and `m_data_available` data member
394 …void set_body(const concurrency::streams::istream &stream, const utility::string_t &content_type =…
398 void set_response_stream(const concurrency::streams::ostream &stream);
421 customization is in the `concurrency::streams::istream` and
422 `concurrency::streams::ostream` reference parameters. Presumably,
[all …]
/third_party/node/deps/npm/node_modules/libcipm/
Dindex.js231 }, {concurrency: 50, Promise: BB}) property
271 }, {concurrency: 100, Promise: BB}) property
319 }, {concurrency: 1, Promise: BB}) property
413 }, {concurrency: 50, Promise: BB}).then(() => purged) property
/third_party/node/deps/npm/node_modules/debug/
Dkarma.conf.js68 concurrency: Infinity property
/third_party/grpc/src/core/lib/iomgr/
DREADME.md5 Provides abstractions over TCP/UDP I/O, file loading, polling, and concurrency
/third_party/curl/docs/cmdline-opts/
Dparallel-max.d3 Help: Maximum concurrency for parallel transfers
/third_party/flutter/skia/modules/canvaskit/
Dkarma.conf.js57 concurrency: Infinity, property

12345