Lines Matching refs:be

76 completed yet. Typically (but not always), that computation will be something
145 If `$reason` itself is a promise, the promise will be rejected with the outcome
150 > Deprecated in v2.6.0: Progress support is deprecated and should not be used anymore.
171 Neither its state nor its result (or error) can be modified.
192 * `$onFulfilled` will be invoked once the promise is fulfilled and passed
194 * `$onRejected` will be invoked once the promise is rejected and passed the
196 * `$onProgress` (deprecated) will be invoked whenever the producer of the promise
207 1. Only one of `$onFulfilled` or `$onRejected` will be called,
209 2. `$onFulfilled` and `$onRejected` will never be called more
211 3. `$onProgress` (deprecated) may be called multiple times.
286 It arranges for `$onFulfilledOrRejected` to be called, with no arguments,
316 Similar asynchronous code (with `doSomething()` that returns a promise) can be
327 > Deprecated in v2.6.0: Progress support is deprecated and should not be used anymore.
393 function which both will be called with 3 arguments:
399 fate will be equivalent to that of `$otherPromise`.
404 If the resolver or canceller throw an exception, the promise will be rejected
407 The resolver function will be called immediately, the canceller function only
420 Note, that `$value` **cannot** be a promise. It's recommended to use
433 Note, that `$reason` **cannot** be a promise. It's recommended to use
438 > Deprecated in v2.8.0: LazyPromise is deprecated and should not be used anymore.
440 Creates a promise which will be lazily initialized by `$factory` once a consumer
454 // $factory will only be executed once we call then()
477 If `$promiseOrValue` is a value, it will be the resolution value of the
483 If `$promiseOrValue` is a promise, it will be returned as is.
488 promise will be assimilated to a extended promise following `$promiseOrValue`.
498 If `$promiseOrValue` is a value, it will be the rejection value of the
501 If `$promiseOrValue` is a promise, its completion value will be the rejected
504 This can be useful in situations where you need to reject a promise without
516 will be an array containing the resolution values of each of the items in
536 will be the resolution value of the triggering item.
539 rejected. The rejection value will be an array of all rejection reasons.
552 will be an array of length `$howMany` containing the resolution values of the
557 reject). The rejection value will be an array of
583 promise, *and* `$initialValue` may be a promise or a value for the starting
633 typically be spread across several function calls, or even several levels of
650 // $x will be the value passed to $deferred->resolve() below
738 > Deprecated in v2.6.0: Progress support is deprecated and should not be used anymore.
741 **MUST** return a progress event to be propagated to the next link in the chain.
742 If you return nothing, `null` will be propagated.
745 progress handler, the update will be propagated through.
747 If your progress handler throws an exception, the exception will be propagated
786 propagate intermediate errors. Any errors that are not handled will be caught
791 `$onFulfilled` or `$onRejected` callbacks you provide to done, it will be
812 // rejected, the ApiErrorException will be thrown
838 Note that if a rejection value is not an instance of `\Exception`, it will be