Home
last modified time | relevance | path

Searched refs:wait (Results 1 – 25 of 255) sorted by relevance

1234567891011

/plugin/asciidocjs/node_modules/lodash/
Ddebounce.js66 function debounce(func, wait, options) { argument
81 wait = toNumber(wait) || 0;
85 maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
103 timerId = setTimeout(timerExpired, wait);
111 timeWaiting = wait - timeSinceLastCall;
125 return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||
177 timerId = setTimeout(timerExpired, wait);
182 timerId = setTimeout(timerExpired, wait);
Dthrottle.js51 function throttle(func, wait, options) { argument
62 return debounce(func, wait, {
64 'maxWait': wait,
D_baseDelay.js14 function baseDelay(func, wait, args) { argument
18 return setTimeout(function() { func.apply(undefined, args); }, wait);
Ddelay.js24 var delay = baseRest(function(func, wait, args) { argument
25 return baseDelay(func, toNumber(wait) || 0, args);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/
DBaseFutureTrait.php32 * @param callable $wait Function that blocks until the deferred
42 callable $wait = null, argument
46 $this->waitfn = $wait;
53 public function wait() function
125 $wait = $this->waitfn;
127 $wait();
/plugin/swiftmail/Swift/Plugin/
DAntiFlood.php43 public function __construct($threshold, $wait=0) argument
46 $this->setWait($wait);
84 public function wait($seconds) function in Swift_Plugin_AntiFlood
100 $this->wait($this->getWait());
DThrottler.php60 $this->wait($overrun);
79 $this->wait($overrun);
86 public function wait($secs) function in Swift_Plugin_Throttler
/plugin/combo/ComboStrap/
H A DMutex.php36 function lock($wait=10) argument
42 for($i = 0; $i < $wait && !($lock = flock($this->filePointer,LOCK_EX|LOCK_NB)); $i++)
49 trigger_error("Not able to create a lock in $wait seconds");
/plugin/findologicxmlexport/vendor/hoa/file/Temporary/
DTemporary.php70 * @param bool $wait Differ opening or not.
76 $wait = false argument
82 parent::__construct($streamName, $mode, $context, $wait);
DRead.php59 * @param bool $wait Differ opening or not.
65 $wait = false argument
67 parent::__construct($streamName, $mode, $context, $wait);
DWrite.php59 * @param bool $wait Differ opening or not.
65 $wait = false argument
67 parent::__construct($streamName, $mode, $context, $wait);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
DREADME.md10 - [Synchronous wait](#synchronous-wait)
25 - Promises have a synchronous `wait` method.
198 # Synchronous wait
200 You can synchronously force promises to complete using a promise's `wait`
201 method. When creating a promise, you can provide a wait function that is used
202 to synchronously force a promise to complete. When a wait function is invoked
204 wait function does not deliver a value, then an exception is thrown. The wait
205 function provided to a promise constructor is invoked when the `wait` function
213 // Calling wait will return the value of the promise.
214 echo $promise->wait(); // outputs "foo"
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DSecurityNamespace.asciidoc72 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
139 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
155 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
169 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
183 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
197 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
211 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
225 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
345 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
398 …ected shards to make this operation visible to search, if `wait_for` then wait for a refresh to ma…
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/promises/
DREADME.md10 - [Synchronous wait](#synchronous-wait)
25 - Promises have a synchronous `wait` method.
213 You can synchronously force promises to complete using a promise's `wait`
214 method. When creating a promise, you can provide a wait function that is used
215 to synchronously force a promise to complete. When a wait function is invoked
217 wait function does not deliver a value, then an exception is thrown. The wait
218 function provided to a promise constructor is invoked when the `wait` function
226 // Calling wait will return the value of the promise.
227 echo $promise->wait(); // outputs "foo"
230 If an exception is encountered while invoking the wait function of a promise,
[all …]
/plugin/findologicxmlexport/vendor/hoa/file/Link/
DLink.php60 * @param bool $wait Differ opening or not.
67 $wait = false argument
77 parent::__construct($streamName, $mode, $context, $wait);
DRead.php59 * @param bool $wait Differ opening or not.
65 $wait = false argument
67 parent::__construct($streamName, $mode, $context, $wait);
DWrite.php58 * @param bool $wait Differ opening or not.
64 $wait = false argument
66 parent::__construct($streamName, $mode, $context, $wait);
/plugin/findologicxmlexport/vendor/hoa/file/
DRead.php58 * @param bool $wait Differ opening or not.
64 $wait = false argument
66 parent::__construct($streamName, $mode, $context, $wait);
DWrite.php58 * @param bool $wait Differ opening or not.
64 $wait = false argument
66 parent::__construct($streamName, $mode, $context, $wait);
DFile.php138 * @param bool $wait Differ opening or not.
145 $wait = false argument
181 parent::__construct($streamName, $context, $wait);
DDirectory.php83 * @param bool $wait Differ opening or not.
89 $wait = false argument
92 parent::__construct($streamName, $context, $wait);
/plugin/matrixnotifierwas/vendor/guzzlehttp/promises/src/
DCoroutine.php68 $this->currentPromise->wait();
98 public function wait(bool $unwrap = true) function in GuzzleHttp\\Promise\\Coroutine
100 return $this->result->wait($unwrap);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
DCoroutine.php67 $this->currentPromise->wait();
101 public function wait($unwrap = true) function in GuzzleHttp\\Promise\\Coroutine
103 return $this->result->wait($unwrap);
/plugin/jplayer/vendor/symfony/process/Tests/
DPhpProcessTest.php27 $process->wait();
43 $process->wait();
DProcessTest.php123 $p->wait();
167 $process->wait();
238 $p->wait();
454 $process->wait();
573 $process->wait();
586 $process->wait();
611 $process->wait();
645 $process->wait();
710 $process->wait();
719 $process2->wait(); // wait for output
[all …]

1234567891011