| /plugin/authgooglesheets/vendor/guzzlehttp/promises/src/ |
| D | functions.php | 130 * @param PromiseInterface[] $promises Traversable of promises to wait upon. 136 function inspect_all($promises) argument 138 return Utils::inspectAll($promises); 157 function unwrap($promises) argument 159 return Utils::unwrap($promises); 170 * @param mixed $promises Promises or values. 177 function all($promises, $recursive = false) argument 179 return Utils::all($promises, $recursive); 194 * @param mixed $promises Promises or values. 200 function some($count, $promises) argument [all …]
|
| D | Utils.php | 102 * @param PromiseInterface[] $promises Traversable of promises to wait upon. 106 public static function inspectAll($promises) argument 109 foreach ($promises as $key => $promise) { 130 public static function unwrap($promises) argument 133 foreach ($promises as $key => $promise) { 148 * @param mixed $promises Promises or values. 153 public static function all($promises, $recursive = false) argument 157 $promises, 170 $promise = $promise->then(function ($results) use ($recursive, &$promises) { 171 foreach ($promises as $promise) { [all …]
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/promises/src/ |
| D | Utils.php | 94 * @param PromiseInterface[] $promises Traversable of promises to wait upon. 96 public static function inspectAll($promises): array argument 99 foreach ($promises as $key => $promise) { 117 public static function unwrap($promises): array argument 120 foreach ($promises as $key => $promise) { 135 * @param mixed $promises Promises or values. 138 public static function all($promises, bool $recursive = false): PromiseInterface argument 142 $promises, 156 $promise = $promise->then(function ($results) use ($recursive, &$promises) { 157 foreach ($promises as $promise) { [all …]
|
| /plugin/webdav/vendor/sabre/event/lib/Promise/ |
| D | functions.php | 29 * @param Promise[] $promises 32 function all(array $promises) { argument 34 return new Promise(function($success, $fail) use ($promises) { 39 foreach ($promises as $promiseIndex => $subPromise) { 42 … function($result) use ($promiseIndex, &$completeResult, &$successCount, $success, $promises) { 45 if ($successCount === count($promises)) { 68 * @param Promise[] $promises 71 function race(array $promises) { argument 73 return new Promise(function($success, $fail) use ($promises) { 76 foreach ($promises as $promise) {
|
| /plugin/davcal/vendor/sabre/event/lib/ |
| H A D | Promise.php | 177 * @param Promise[] $promises 180 static function all(array $promises) { argument 182 return new self(function($success, $fail) use ($promises) { 187 foreach ($promises as $promiseIndex => $subPromise) { 190 … function($result) use ($promiseIndex, &$completeResult, &$successCount, $success, $promises) { 193 if ($successCount === count($promises)) {
|
| /plugin/elasticsearch/vendor/react/promise/ |
| D | CHANGELOG.md | 87 …* Feature: Improve memory consumption for pending promises by using static internal callbacks wi… 98 These changes combined mean that rejecting promises with an `Exception` should 102 to kick in which significantly improves performance when rejecting many promises. 107 * Recommend rejecting promises by throwing an exception 124 * Revert automatic cancellation of pending collection promises once the 132 function allAndCancel(array $promises) 134 return \React\Promise\all($promises) 135 ->always(function() use ($promises) { 136 foreach ($promises as $promise) { 149 * Fix `some()` not cancelling pending promises when too much input promises [all …]
|
| D | README.md | 65 multiple promises and mapping and reducing collections of promises. 67 If you've never heard about promises before, 421 [resolve()](#resolve) for creating resolved promises. 434 [reject()](#reject) for creating rejected promises. 462 promises. 466 promise, all promises in the collection are cancelled. If the collection itself 570 promises and/or values, and `$mapFunc` may return either a value or a promise. 582 promises and/or values, and `$reduceFunc` may return either a value or a 638 Resolved promises forward resolution values to the next promise. 678 Rejected promises behave similarly, and also work similarly to try/catch:
|
| /plugin/authgooglesheets/vendor/guzzlehttp/promises/ |
| D | README.md | 5 … size constant. Read [this blog post](https://blog.domenic.me/youre-missing-the-point-of-promises/) 6 for a general introduction to promises. 28 - C# style async/await coroutine promises using 63 reject a promise with a *reason*. Resolving a promises triggers callbacks 64 registered with the promises's `then` method. These callbacks are triggered 101 subsequent promises in the chain to only be fulfilled when the returned promise 200 You can synchronously force promises to complete using a promise's `wait` 335 cancelled. Any promises waiting on the cancelled promise to resolve will also 388 This library works with foreign promises that have a `then` method. This means 389 you can use Guzzle promises with [React promises](https://github.com/reactphp/promise) [all …]
|
| D | CHANGELOG.md | 8 - Fix pool memory leak when empty array of promises provided 18 - Fix manually settle promises generated with Utils::task 24 - Fixed `each_limit` skipping promises and failing
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/promises/ |
| D | README.md | 5 … size constant. Read [this blog post](https://blog.domenic.me/youre-missing-the-point-of-promises/) 6 for a general introduction to promises. 28 - C# style async/await coroutine promises using 35 composer require guzzlehttp/promises 113 subsequent promises in the chain to only be fulfilled when the returned promise 213 You can synchronously force promises to complete using a promise's `wait` 346 cancelled. Any promises waiting on the cancelled promise to resolve will also 399 This library works with foreign promises that have a `then` method. This means 400 you can use Guzzle promises with [React promises](https://github.com/reactphp/promise) 420 promise in order to utilize wait and cancel functions with foreign promises. [all …]
|
| D | CHANGELOG.md | 53 - Fix pool memory leak when empty array of promises provided 65 - Fix manually settle promises generated with `Utils::task` 72 - Fixed `each_limit` skipping promises and failing
|
| /plugin/asciidocjs/node_modules/promise/ |
| D | Readme.md | 4 …ant code and to provide just the extensions that are absolutely necessary for using promises today. 46 …or what is returned by this method in [Promises/A+](http://promises-aplus.github.com/promises-spec… 81 By default, promises silence any unhandled rejections. 91 …ll unhandled rejections if you need to debug an exception you think is being swallowed by promises: 132 Converts values and foreign promises into Promises/A+ promises. If you pass it a value then it ret… 140 ….isArray` then this returns a promise for a copy of that array with any promises replaced by their… 175 …o export an API that can be used by people who haven't learnt about the brilliance of promises yet. 192 This method follows the [Promises/A+ spec](http://promises-aplus.github.io/promises-spec/). It exp… 227 …e expected behavior. The enlightened people can not pass a callback and will get awesome promises.
|
| /plugin/webdav/vendor/sabre/event/lib/ |
| D | Promise.php | 310 * @param Promise[] $promises 314 static function all(array $promises) { argument 316 return Promise\all($promises);
|
| /plugin/matrixnotifierwas/ |
| D | composer.lock | 25 "guzzlehttp/promises": "^1.5.3 || ^2.0.1", 136 "name": "guzzlehttp/promises", 140 "url": "https://github.com/guzzle/promises.git", 145 …"url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253… 194 "description": "Guzzle promises library", 199 "issues": "https://github.com/guzzle/promises/issues", 200 "source": "https://github.com/guzzle/promises/tree/2.0.2" 212 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
|
| /plugin/asciidocjs/node_modules/is-promise/ |
| D | readme.md | 5 Test whether an object looks like a promises-a+ promise
|
| /plugin/authgooglesheets/ |
| D | composer.lock | 204 "guzzlehttp/promises": "0.1.1|^1.3", 255 "guzzlehttp/promises": "^1.0", 311 "name": "guzzlehttp/promises", 315 "url": "https://github.com/guzzle/promises.git", 320 …"url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a0… 370 "description": "Guzzle promises library", 375 "issues": "https://github.com/guzzle/promises/issues", 376 "source": "https://github.com/guzzle/promises/tree/1.5.1" 388 "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/ |
| D | README.md | 143 promises or predictions. We'll talk about method predictions later in the _Mocks_ section. 165 Keep in mind, that you can always add even more promises by implementing 170 Prophecy enforces same method prophecies and, as a consequence, same promises and 185 you'll use promises for that: 315 Ok, now we know how to define our prophecy method promises, let's get our stub from 334 they define *predictions* instead of *promises* on method prophecies:
|
| /plugin/asciidocjs/node_modules/is-core-module/ |
| D | CHANGELOG.md | 36 - [New] `inspector/promises` and `node:inspector/promises` is now available in node 19 [`22d332f`](… 69 - [New] add `readline/promises` to node v17+ [`4f78c30`](https://github.com/inspect-js/is-core-modu…
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/ |
| D | UPGRADING.md | 23 - Guzzle no longer uses ReactPHP promises and now uses the 24 `guzzlehttp/promises` library. We use a custom promise library for three 26 1. React promises (at the time of writing this) are recursive. Promise 28 promises are not recursive as they use a sort of trampolining technique. 29 Note: there has been movement in the React project to modify promises to 32 wait for a result. Guzzle promises allows this functionality (and does 35 promises requires wrapping react promises with RingPHP futures. This 105 with PSR-7 middleware. Due to the use of promises, the middleware system is
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/ |
| D | UPGRADING.md | 73 - Guzzle no longer uses ReactPHP promises and now uses the 74 `guzzlehttp/promises` library. We use a custom promise library for three 76 1. React promises (at the time of writing this) are recursive. Promise 78 promises are not recursive as they use a sort of trampolining technique. 79 Note: there has been movement in the React project to modify promises to 82 wait for a result. Guzzle promises allows this functionality (and does 85 promises requires wrapping react promises with RingPHP futures. This 155 with PSR-7 middleware. Due to the use of promises, the middleware system is
|
| /plugin/bible/bible_douayRheims/ |
| D | 2_Peter.txt | 4 …1:4. By whom he hath given us most great and precious promises: that by these you may be made part… 56 …3:13. But we look for new heavens and a new earth according to his promises, in which justice dwel…
|
| D | Hebrews.txt | 93 …come not slothful, but followers of them who through faith and patience shall inherit the promises. 94 …6:13. For God making promises to Abraham, because he had no one greater by whom he might swear, sw… 107 …igree is not numbered among them, received tithes of Abraham and blessed him that had the promises. 135 …y, by how much also he is a mediator of a better testament which is established on better promises. 222 …11:13. All these died according to faith, not having received the promises but beholding them afar… 226 …11:17. By faith Abraham, when he was tried, offered Isaac: and he that had received the promises o… 242 …11:33. Who by faith conquered kingdoms, wrought justice, obtained promises, stopped the mouths of …
|
| /plugin/imapmarkers/ |
| D | jquery.imagemapster.js | 3750 promises, 3847 promises = []; 3851 promises.push(p); 3862 promises.push(p); 3867 u.when.all(promises).then(finishResize);
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ |
| D | dhtmlxgantt.js | 150 function any(promises) { 151 var ret = new SomePromiseArray(promises); 159 Promise.any = function (promises) { 160 return any(promises); 1724 function PromiseMapSeries(promises, fn) { 1725 return PromiseReduce(promises, fn, INTERNAL, INTERNAL); 1737 Promise.each = function (promises, fn) { 1738 return PromiseReduce(promises, fn, INTERNAL, 0) 1739 ._then(promiseAllThis, undefined, undefined, promises, undefined); 1955 Promise.filter = function (promises, fn, options) { [all …]
|
| /plugin/diagramsnet/lib/ |
| D | workbox-9fe249eb.js.map | 1 …promises\n * should be used directly, but Deferreds can be necessary when the logic to\n * resolve…
|