Home
last modified time | relevance | path

Searched refs:reject (Results 1 – 25 of 157) sorted by relevance

1234567

/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php34 return new Promise(function ($resolve, $reject, $notify) use ($promiseOrValue) {
35 $promiseOrValue->then($resolve, $reject, $notify);
51 * This can be useful in situations where you need to reject a promise without
58 function reject($promiseOrValue = null) function
100 return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $cancellationQueue) {
102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) {
112 ->done($resolve, $reject, $notify);
114 }, $reject, $notify);
123 * The returned promise will only reject if *all* items in `$promisesOrValues` are
126 * The returned promise will also reject wit
[all...]
H A DPromise.php117 return function ($resolve, $reject, $notify) use ($onFulfilled, $onRejected, $onProgress) {
132 $this->handlers[] = static function (ExtendedPromiseInterface $promise) use ($onFulfilled, $onRejected, $resolve, $reject, $progressHandler) {
135 ->done($resolve, $reject, $progressHandler);
142 private function reject($reason = null) function in React\\Promise\\Promise
148 $this->settle(reject($reason));
217 // Keep references to this promise instance for the static resolve/reject functions.
237 $target->reject($reason);
250 $this->reject($e);
253 $this->reject($e);
H A DDeferred.php21 $this->promise = new Promise(function ($resolve, $reject, $notify) {
23 $this->rejectCallback = $reject;
39 public function reject($reason = null) function in React\\Promise\\Deferred
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DCoroutine.php73 $this->result->reject($exception);
75 $this->result->reject($throwable);
116 public function reject($reason) function in GuzzleHttp\\Promise\\Coroutine
118 $this->result->reject($reason);
147 $this->result->reject($exception);
149 $this->result->reject($throwable);
164 $this->result->reject($exception);
166 $this->result->reject($throwable);
H A DPromise.php95 $this->reject($e);
97 $this->reject($e);
104 $this->reject(new CancellationException('Promise has been cancelled'));
113 public function reject($reason) function in GuzzleHttp\\Promise\\Promise
210 $promise->reject($value);
213 $promise->reject($reason);
215 $promise->reject($reason);
229 $this->reject('Cannot wait on a promise that has '
239 $this->reject('Invoking the wait callback did not resolve the promise');
253 $this->reject($reason);
H A DFulfilledPromise.php43 $p->reject($e);
45 $p->reject($e);
75 public function reject($reason) function in GuzzleHttp\\Promise\\FulfilledPromise
H A DRejectedPromise.php45 $p->reject($e);
48 $p->reject($e);
80 public function reject($reason) function in GuzzleHttp\\Promise\\RejectedPromise
H A DEachPromise.php88 $this->aggregate->reject($e);
94 $this->aggregate->reject($e);
217 $this->aggregate->reject($e);
221 $this->aggregate->reject($e);
H A DUtils.php55 $promise->reject($e);
57 $promise->reject($e);
162 $aggregate->reject($reason);
H A DPromiseInterface.php72 public function reject($reason); function
H A DEach.php86 $aggregate->reject($reason);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DOrderreturnsReturnItem.php48 public function setReject(OrderreturnsRejectOperation $reject) argument
50 $this->reject = $reject;
57 return $this->reject;
/plugin/davcal/vendor/sabre/event/tests/
H A DPromiseTest.php25 $promise->reject(1);
96 $promise->reject(4);
154 $promise->reject(1);
155 $promise->reject(1);
179 $promise->reject('foo');
219 $promise1->reject(1);
221 $promise2->reject(2);
/plugin/pwaoffline/
H A Dsw.js116 return new Promise(function (fulfill, reject) { argument
117 const timeoutId = setTimeout(reject, timeout);
121 reject();
125 }, reject);
131 return Promise.reject('no-match');
146 return Promise.reject('no-match');
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md21 * [Deferred::reject()](#deferredreject)
38 * [reject()](#reject)
99 $deferred->reject(mixed $reason = null);
105 The `resolve` and `reject` methods control the state of the deferred.
134 #### Deferred::reject()
137 $deferred->reject(mixed $reason = null);
201 `$onFulfilled` or `$onRejected`, whichever is called, or will reject with
216 * [reject()](#reject)
[all...]
/plugin/davcal/vendor/sabre/event/lib/
H A DPromise.php160 function reject($reason = null) { function in Sabre\\Event\\Promise
231 $subPromise->reject($e);
237 $subPromise->reject($this->value);
/plugin/webdav/vendor/sabre/event/lib/
H A DPromise.php161 function reject($reason = null) { function in Sabre\\Event\\Promise
278 $subPromise->reject($e);
284 $subPromise->reject($this->value);
H A Dcoroutine.php90 $promise->reject($reason);
115 $promise->reject($e);
/plugin/webdav/vendor/sabre/event/lib/Promise/
H A Dfunctions.php129 function reject($reason) { function
132 $promise->reject($reason);
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dchaining.js30 }).reject(function(n) {
42 }).reject(function(n) {
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js1037 reject(reason);
3162 var reject = reaction.reject;
3191 reject(e);
3361 reject: function reject(r) {
3380 var reject = capability.reject;
3395 }, reject);
3405 var reject = capability.reject;
3713 var resolve, reject;
3717 reject = $$reject;
3720 this.reject = aFunction(reject);
[all …]
/plugin/encryptedpasswords/script/
H A DGUI.js31 return new Promise(function (resolve, reject) {
30 AnonymousFunctione97661740200(resolve, reject) global() argument
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md63 reject a promise with a *reason*. Resolving a promises triggers callbacks
73 will reject the promise and trigger the `$onRejected` callbacks).
139 $promise->reject('Error!');
158 $promise->reject('Error!');
176 $promise->reject('Error!');
195 $promise->reject('Error!');
203 it is expected to deliver a value to the promise or reject the promise. If the
244 $promise->reject('foo');
264 $promise->reject('foo');
347 - `reject($reason)`
/plugin/revealjs/lib/js/
H A Dpromise.js2reject(t)})})}function n(){}function t(e){if(!(this instanceof t))throw new TypeError("Promises mu…
/plugin/sequencediagram/bower_components/lodash/lib/fp/
H A Dbuild-doc.js50 chunks = _.reject(chunks, _.isEmpty);

1234567