| /plugin/asciidocjs/node_modules/lodash/ |
| D | debounce.js | 66 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);
|
| D | throttle.js | 51 function throttle(func, wait, options) { argument 62 return debounce(func, wait, { 64 'maxWait': wait,
|
| D | _baseDelay.js | 14 function baseDelay(func, wait, args) { argument 18 return setTimeout(function() { func.apply(undefined, args); }, wait);
|
| D | delay.js | 24 var delay = baseRest(function(func, wait, args) { argument 25 return baseDelay(func, toNumber(wait) || 0, args);
|
| /plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/ |
| D | BaseFutureTrait.php | 32 * @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/ |
| D | AntiFlood.php | 43 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());
|
| D | Throttler.php | 60 $this->wait($overrun); 79 $this->wait($overrun); 86 public function wait($secs) function in Swift_Plugin_Throttler
|
| /plugin/combo/ComboStrap/ |
| H A D | Mutex.php | 36 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/ |
| D | Temporary.php | 70 * @param bool $wait Differ opening or not. 76 $wait = false argument 82 parent::__construct($streamName, $mode, $context, $wait);
|
| D | Read.php | 59 * @param bool $wait Differ opening or not. 65 $wait = false argument 67 parent::__construct($streamName, $mode, $context, $wait);
|
| D | Write.php | 59 * @param bool $wait Differ opening or not. 65 $wait = false argument 67 parent::__construct($streamName, $mode, $context, $wait);
|
| /plugin/authgooglesheets/vendor/guzzlehttp/promises/ |
| D | README.md | 10 - [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/ |
| D | SecurityNamespace.asciidoc | 72 …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/ |
| D | README.md | 10 - [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/ |
| D | Link.php | 60 * @param bool $wait Differ opening or not. 67 $wait = false argument 77 parent::__construct($streamName, $mode, $context, $wait);
|
| D | Read.php | 59 * @param bool $wait Differ opening or not. 65 $wait = false argument 67 parent::__construct($streamName, $mode, $context, $wait);
|
| D | Write.php | 58 * @param bool $wait Differ opening or not. 64 $wait = false argument 66 parent::__construct($streamName, $mode, $context, $wait);
|
| /plugin/findologicxmlexport/vendor/hoa/file/ |
| D | Read.php | 58 * @param bool $wait Differ opening or not. 64 $wait = false argument 66 parent::__construct($streamName, $mode, $context, $wait);
|
| D | Write.php | 58 * @param bool $wait Differ opening or not. 64 $wait = false argument 66 parent::__construct($streamName, $mode, $context, $wait);
|
| D | File.php | 138 * @param bool $wait Differ opening or not. 145 $wait = false argument 181 parent::__construct($streamName, $context, $wait);
|
| D | Directory.php | 83 * @param bool $wait Differ opening or not. 89 $wait = false argument 92 parent::__construct($streamName, $context, $wait);
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/promises/src/ |
| D | Coroutine.php | 68 $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/ |
| D | Coroutine.php | 67 $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/ |
| D | PhpProcessTest.php | 27 $process->wait(); 43 $process->wait();
|
| D | ProcessTest.php | 123 $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 …]
|