| /plugin/asciidocjs/node_modules/async/ |
| D | parallel.js | 6 exports.default = parallel; 177 function parallel(tasks, callback) { function
|
| D | index.js | 7 …exports.queue = exports.priorityQueue = exports.parallelLimit = exports.parallel = exports.nextTic… 425 parallel: _parallel2.default, property 531 exports.parallel = _parallel2.default;
|
| D | CHANGELOG.md | 102 - Added `tryEach`, for running async functions in parallel, where you only expect one to succeed. (… 103 - Improved performance, most notably in `parallel` and `waterfall` ([#1395](https://github.com/caol… 117 - Added note about `reflect` to `parallel` docs ([#1385](https://github.com/caolan/async/issues/138… 176 - Added `race`, analogous to `Promise.race()`. It will run an array of async tasks in parallel and … 177 …lements the iterator spec can now be passed directly to `each`, `map`, `parallel`, etc.. ([#579](h… 316 - Passing a `null` or `undefined` array to `map`, `each`, `parallel` and families will be treated a…
|
| /plugin/projects/lib/ |
| D | maker.php | 100 private $parallel = false; variable in Maker 108 $this->parallel = function_exists('pcntl_fork'); 261 if (!$this->parallel || count($this->pid) == MAX_PARALLEL_JOBS) 278 if ($this->parallel) 307 if ($this->parallel) { 310 if ($pid == -1) $this->parallel = false; 312 if ($this->parallel && $pid > 0) return; 314 if ($this->parallel) exit($result);
|
| /plugin/bpmnio/vendor/bpmn-js/dist/assets/bpmn-font/css/ |
| D | bpmn-codes.css | 3 .bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */ 7 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 9 .bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */ 12 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 17 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 24 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
|
| D | bpmn.css | 59 .bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */ 63 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 65 .bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */ 68 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 73 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 80 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
|
| D | bpmn-embedded.css | 61 .bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */ 65 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 67 .bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */ 70 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 75 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 82 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
|
| /plugin/asciidocjs/node_modules/neo-async/ |
| D | parallel.js | 3 module.exports = require('./async').parallel;
|
| D | README.md | 146 - [`parallel`](http://suguru03.github.io/neo-async/doc/async.parallel.html) 259 |parallel|2.93|
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
| D | http-handler.asciidoc | 15 of HTTP requests to be processed in parallel. 36 synchronous execution, while retaining flexibility to invoke parallel batches
|
| D | futures.asciidoc | 5 processing of requests (sent in parallel to the cluster), which can have a 11 executed in parallel by the underlying multithreaded libcurl library, and the 17 available to execute all requests in parallel). 56 requests will be sent in parallel to the cluster and return asynchronously to 108 The queued requests will execute in parallel and populate their futures after
|
| D | selectors.asciidoc | 54 non-ideal, since all parallel requests go to the same node instead of multiple
|
| /plugin/diagramsnet/lib/math/jax/input/MathML/entities/ |
| D | p.js | 19 …:"\u2ABB",Prime:"\u2033",Proportion:"\u2237",par:"\u2225",para:"\u00B6",parallel:"\u2225",parsim:"… property
|
| /plugin/bpmnioeditor/vendor/bpmnio-js/ |
| D | bpmn-embedded.css | 59 .bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */ 63 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 65 .bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */ 68 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 74 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 81 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
|
| /plugin/asciidocjs/node_modules/nunjucks/src/ |
| D | compiler.js | 638 _proto._compileAsyncLoop = function _compileAsyncLoop(node, frame, parallel) { argument 647 var asyncMethod = parallel ? 'asyncAll' : 'asyncEach'; 674 if (parallel) { 679 if (parallel) { 686 if (parallel) {
|
| /plugin/asciidocjs/node_modules/async/dist/ |
| D | async.mjs | 21 * async.parallel([ 28 * async.parallel([ 634 * parallel, there is no guarantee that the `iteratee` functions will complete 904 * determining the maximum number of tasks that can be run in parallel. By 1776 …* cargoQueue will be processed together (up to the `payload` limit) in `concurrency` parallel work… 1784 * the cargoQueue passes an array of tasks to multiple parallel workers. 1796 * `worker` functions should be run in parallel. If omitted, the concurrency 1838 * into a parallel map, and then use the normal `Array.prototype.reduce` on the 2131 * the concatenated list. The `iteratee`s are called in parallel, and the 2327 * `iteratee` is applied in parallel, meaning the first iteratee to return [all …]
|
| D | async.js | 3670 var parallel = awaitify((eachfn, tasks, callback) => { 3844 return parallel(eachOf$1, tasks, callback); 3868 return parallel(eachOfLimit(limit), tasks, callback); 4910 return parallel(eachOfSeries$1, tasks, callback); 5890 parallel: parallel$1, 5998 exports.parallel = parallel$1;
|
| /plugin/bb4dw/ |
| D | sample.bib | 196 …parallel array language that offers a machine-neutral programming model and an optimising compiler… 200 keywords = {GPGPU, compilers, functional language, parallel}, 231 keywords = {GPGPU, data parallel programming, CUDA}, 238 title={{LIFT: A functional data-parallel IR for high-performance GPU code generation}}, 291 …nal cores and high memory bandwidth make GPUs ideal candidates for data parallel applications. How… 318 …programming has spread rapidly after CUDA was first introduced to write parallel programs in high-…
|
| /plugin/codemirror/dist/modes/ |
| D | mllike.min.js | 1 …word",fixed:"keyword",method:"keyword",mixin:"keyword",object:"keyword",parallel:"keyword",process… property
|
| /plugin/syntaxhighlighter3/sxh3/build/ |
| D | tasks.coffee | 86 async.parallel jobs, @async()
|
| /plugin/bpmnioeditor/ |
| D | style.css | 881 .bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */ 885 .bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */ 887 .bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */ 890 .bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */ 896 .bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; }… 903 .bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
|
| /plugin/combo/ |
| H A D | composer.lock | 286 "php-parallel-lint/php-parallel-lint": "^1.2",
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 19.19.js.map | 1 …,\n 'object',\n 'override',\n 'private',\n 'parallel',\n 'proce…
|
| /plugin/jmol2/jmol/ |
| D | README.txt | 112 (if jar files are in a parallel folder, named 'jmol')
|
| /plugin/jplayer/ |
| D | composer.lock | 86 "jakub-onderka/php-parallel-lint": "^0.9 || ^1.0"
|