Home
last modified time | relevance | path

Searched full:future (Results 1 – 25 of 659) sorted by relevance

12345678910>>...27

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dfutures.asciidoc2 === Future Mode
4 The client offers a mode called "future" or "async" mode. This allows batch
25 ==== Using Future Mode
28 responsibility into your code. To enable future mode, set the `future` flag in
39 'future' => 'lazy'
43 $future = $client->get($params);
46 This returns a _future_, rather than the actual response. A future represents a
47 _future computation_ and acts like a placeholder. You can pass a future around
49 _resolve_ the future. If the future has already resolved (due to some other
50 activity), the values are immediately available. If the future has not resolved
[all …]
Dper-request-configuration.asciidoc290 ==== Enabling Future Mode
293 (if your HTTP handler supports it) on a per-request basis via the `future`
304 'future' => 'lazy'
307 $future = $client->get($params);
308 $results = $future->wait(); // resolve the future
311 Future mode supports two options: `true` or `'lazy'`. For more details about how
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/
DFutureInterface.php2 namespace GuzzleHttp\Ring\Future;
10 * You can use the future in a blocking manner using the wait() function, or
11 * you can use a promise from the future to receive the result when the future
14 * When the future is dereferenced using wait(), the result of the computation
17 * will block until the future has completed.
22 * Returns the result of the future either from cache or by blocking until
25 * This method must block until the future has a result or is cancelled.
26 * Throwing an exception in the wait() method will mark the future as
29 * the future as realized, will not throw immediately, but will throw the
30 * exception if the future's wait() method is called again.
[all …]
DMagicFutureTrait.php2 namespace GuzzleHttp\Ring\Future;
5 * Implements common future functionality that is triggered when the result
8 * @property mixed $_value Actual data used by the future. Accessing this
9 * property will cause the future to block if needed.
DBaseFutureTrait.php2 namespace GuzzleHttp\Ring\Future;
9 * Implements common future functionality built on top of promises.
25 /** @var mixed Result of the future */
31 * @param PromiseInterface $promise Promise to shadow with the future.
38 * future from completing.
61 $this->error = new RingException('Waiting did not resolve future');
DCompletedFutureValue.php2 namespace GuzzleHttp\Ring\Future;
9 * Represents a future value that has been resolved or rejected.
21 * to mark the future as cancelled.
DFutureArrayInterface.php2 namespace GuzzleHttp\Ring\Future;
5 * Future that provides array-like access.
DFutureValue.php2 namespace GuzzleHttp\Ring\Future;
5 * Represents a future value that responds to wait() to retrieve the promised
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
DMiddleware.php13 * Sends future requests to a future compatible handler while sending all
16 * When the "future" option is not provided on a request, any future responses
20 * @param callable $future Handler used for future responses
26 callable $future argument
28 return function (array $request) use ($default, $future) {
29 return empty($request['client']['future'])
31 : $future($request);
DMockHandler.php5 use GuzzleHttp\Ring\Future\CompletedFutureArray;
6 use GuzzleHttp\Ring\Future\FutureArrayInterface;
17 * Provide an array or future to always return the same value. Provide a
18 * callable that accepts a request object and returns an array or future
DCurlMultiHandler.php4 use GuzzleHttp\Ring\Future\FutureArray;
10 * This handler supports future responses and the "delay" request client
95 $future = new FutureArray(
110 return $future;
156 } elseif (empty($entry['request']['future'])) {
161 if ($entry['request']['future'] !== 'lazy') {
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
DCore.php5 use GuzzleHttp\Ring\Future\FutureArrayInterface;
6 use GuzzleHttp\Ring\Future\FutureArray;
324 * Returns a proxied future that modifies the dereferenced value of another
325 * future using a promise.
327 * @param FutureArrayInterface $future Future to wrap with a new future
328 * @param callable $onFulfilled Invoked when the future fulfilled
329 * @param callable $onRejected Invoked when the future rejected
330 * @param callable $onProgress Invoked when the future progresses
335 FutureArrayInterface $future, argument
341 $future->then($onFulfilled, $onRejected, $onProgress),
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DRollupNamespace.asciidoc35 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
49 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
63 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
77 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
91 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
121 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
139 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
153 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
DSearchableSnapshotsNamespace.asciidoc30 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
47 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
66 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
80 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
DTasksNamespace.asciidoc30 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
46 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
62 *NOTE:* This API is EXPERIMENTAL and may be changed or removed completely in a future release
/plugin/revealjs/css/
Dreveal.css549 .reveal .slides > section.future,
550 .reveal .slides > section > section.future,
560 .reveal .slides > section.future,
562 .reveal .slides > section > section.future {
582 .reveal .slides > section[data-transition=slide].future,
583 .reveal .slides > section[data-transition~=slide-in].future,
584 .reveal.slide .slides > section:not([data-transition]).future {
594 .reveal .slides > section > section[data-transition=slide].future,
595 .reveal .slides > section > section[data-transition~=slide-in].future,
596 .reveal.slide .slides > section > section:not([data-transition]).future {
[all …]
Dreveal.scss655 .reveal .slides>section.future, class
656 .reveal .slides>section>section.future, class
668 .reveal .slides>section.future, class
670 .reveal .slides>section>section.future { class
698 @mixin transition-horizontal-future($style) {
699 .reveal .slides>section[data-transition=#{$style}].future, class
700 .reveal .slides>section[data-transition~=#{$style}-in].future, class
701 .reveal.#{$style} .slides>section:not([data-transition]).future { class
713 @mixin transition-vertical-future($style) {
714 .reveal .slides>section>section[data-transition=#{$style}].future, class
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
DTransport.php25 use GuzzleHttp\Ring\Future\FutureArrayInterface;
109 $future = $connection->performRequest(
118 $future->promise()->then(
135 return $future;
147 $async = isset($options['client']['future']) ? $options['client']['future'] : null;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DRollupNamespace.php39 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
62 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
85 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
108 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
132 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
159 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
190 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
217 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
242 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
DSearchableSnapshotsNamespace.php39 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
65 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
93 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
120 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
144 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
DShutdownNamespace.php39 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
62 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
86 * @note This API is EXPERIMENTAL and may be changed or removed completely in a future release
/plugin/openid/Auth/OpenID/
DNonce.php85 // Time that is too far in the future for us to allow
86 $future = $now + $allowed_skew;
88 // the stamp is not too far in the future and is not too far
90 return (($past <= $stamp) && ($stamp <= $future));
/plugin/fedauth/Auth/OpenID/
DNonce.php85 // Time that is too far in the future for us to allow
86 $future = $now + $allowed_skew;
88 // the stamp is not too far in the future and is not too far
90 return (($past <= $stamp) && ($stamp <= $future));
/plugin/asciidocjs/node_modules/esutils/
DREADME.md91 Returns `true` if provided identifier string is a Keyword or Future Reserved Word
95 `id` is a Keyword or Future Reserved Word under strict mode.
99 Returns `true` if provided identifier string is a Keyword or Future Reserved Word
102 [11.6.2.2](http://ecma-international.org/ecma-262/6.0/#sec-future-reserved-words),
104 `id` is a Keyword or Future Reserved Word under strict mode.
/plugin/cosmocode/helper/
Dsupport.php16 …* There is no simple way to get this yet. In future versions of the extension manager we might be …
48 * @todo this will be included in future versions of DokuWiki
75 * @todo this will be included in future versions of DokuWiki

12345678910>>...27