| /plugin/elasticsearch/vendor/react/promise/src/ |
| D | functions.php | 34 return new Promise(function ($resolve, $reject, $notify) use ($promiseOrValue) { 35 $promiseOrValue->then($resolve, $reject, $notify); 100 …return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $cancellationQueu… 102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) { 112 ->done($resolve, $reject, $notify); 114 }, $reject, $notify); 163 …return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $howMany, $cancel… 165 … ->done(function ($array) use ($howMany, $cancellationQueue, $resolve, $reject, $notify) { 218 ->done($fulfiller, $rejecter, $notify); 220 }, $reject, $notify); [all …]
|
| D | Deferred.php | 21 $this->promise = new Promise(function ($resolve, $reject, $notify) { 24 $this->notifyCallback = $notify; 50 public function notify($update = null) function in React\\Promise\\Deferred 63 $this->notify($update);
|
| D | Promise.php | 117 return function ($resolve, $reject, $notify) use ($onFulfilled, $onRejected, $onProgress) { 119 $progressHandler = static function ($update) use ($notify, $onProgress) { 121 $notify($onProgress($update)); 123 $notify($e); 125 $notify($e); 129 $progressHandler = $notify;
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _microtask.js | 9 var head, last, notify; 20 if (head) notify(); 30 notify = function () { function 38 notify = function () { 45 notify = function () { 55 notify = function () { 66 notify();
|
| D | es6.promise.js | 52 var notify = function (promise, isReject) { function 140 notify(promise, true); 162 notify(promise, false); 201 if (this._s) notify(this, false);
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _microtask.js | 9 var head, last, notify; 20 if (head) notify(); 30 notify = function () { function 38 notify = function () { 45 notify = function () { 55 notify = function () { 66 notify();
|
| D | es6.promise.js | 52 var notify = function (promise, isReject) { function 140 notify(promise, true); 162 notify(promise, false); 201 if (this._s) notify(this, false);
|
| /plugin/bez/mdl/ |
| H A D | Thread_commentFactory.php | 33 $notify = 'comment_added'; 38 $notify = 'mail_thread_closed'; 41 $notify = 'mail_thread_rejected'; 44 $notify = 'mail_thread_reopened'; 51 if ($notify == 'comment_added') { 53 } elseif (isset($notify)) { 54 $thread_comment->thread->mail_notify_change_state($notify);
|
| H A D | Task_commentFactory.php | 30 $notify = 'comment_added'; 40 $notify = 'mail_task_done'; 46 $notify = 'mail_task_repened'; 56 if ($notify == 'comment_added') { 58 } elseif (isset($notify)) { 59 $task_comment->task->mail_notify_change_state($notify);
|
| /plugin/findologicxmlexport/tpl/ |
| D | admin.twig | 11 <div id="fl-notify-warning" class="notify"> 73 <div id="fl-notify-morepages" class="fl-notify notify">
|
| /plugin/noiewarning/ |
| D | ChangeLog | 25 * Added: notify mode (uses DokuWiki's notify() features)
|
| /plugin/tagalerts/ |
| D | style.css | 54 background-image: url(images/notify.png); 78 background-image: url(../../images/notify.png);
|
| /plugin/guestbook/ |
| D | basic.class.php | 11 var $notify = false; variable in guestbook_database 21 $this->notify = $parent->getConf('notify'); 37 $this->notify = $this->parent->getConf('notify'); 316 if ( $guestbook_database->notify && strstr($sql, 'INSERT') )
|
| /plugin/structpublish/lang/en/ |
| H A D | mail.txt | 3 This is to notify you that the status of the page “@PAGE@” has changed to @STATUS_CURRENT@.
|
| /plugin/structtasks/ |
| D | cli.php | 35 $this->notify($options->getOpt('verbose')); 41 public function notify($verbose = true) { function in cli_plugin_structtasks
|
| /plugin/findologicxmlexport/vendor/hoa/exception/ |
| D | Exception.php | 87 Event::notify(
|
| /plugin/maintenancemessage/ |
| D | INFO.txt | 7 desc Displays a maintenance message on all pages to notify of upcoming downtime, can also disable…
|
| /plugin/matrixnotifierwas/ |
| D | README | 9 That will notify a matrix.org server of page changes.
|
| /plugin/findologicxmlexport/vendor/hoa/event/ |
| D | Bucket.php | 86 return Event::notify($eventId, $source, $this);
|
| /plugin/openas/ |
| D | style.css | 12 background-image: url(../../images/notify.png);
|
| /plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/ |
| D | Event.php | 255 ->when($result = SUT::notify($eventId, $source, $bucket)) 272 SUT::notify($eventId, $source, $data);
|
| /plugin/diagramsnet/lib/plugins/ |
| D | replay.js | 41 edit.notify = function() function 72 edit.notify();
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
| D | StreamHandler.php | 523 private function addNotification(array &$params, callable $notify) argument 527 $params['notification'] = $notify; 531 $notify
|
| /plugin/chat/ |
| D | local.php.dist | 11 $conf['chat']['audio-notify'] = true; // use audio notification
|
| /plugin/elasticsearch/vendor/react/promise/ |
| D | README.md | 22 * [Deferred::notify()](#deferrednotify) 100 $deferred->notify(mixed $update = null); 107 The deprecated `notify` method is for progress notification. 148 #### Deferred::notify() 153 $deferred->notify(mixed $update = null); 341 A cancellable promise provides a mechanism for consumers to notify the creator 370 $resolver = function (callable $resolve, callable $reject, callable $notify) { 372 // resolve or reject. You can notify of progress events (deprecated) 379 // or $notify($progressNotification); 402 * `$notify($update)` - Deprecated function that issues progress events for the promise. [all …]
|