Home
last modified time | relevance | path

Searched refs:notify (Results 1 – 25 of 178) sorted by relevance

12345678

/plugin/elasticsearch/vendor/react/promise/src/
Dfunctions.php34 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 …]
DDeferred.php21 $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);
DPromise.php117 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.js9 var head, last, notify;
20 if (head) notify();
30 notify = function () { function
38 notify = function () {
45 notify = function () {
55 notify = function () {
66 notify();
Des6.promise.js52 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.js9 var head, last, notify;
20 if (head) notify();
30 notify = function () { function
38 notify = function () {
45 notify = function () {
55 notify = function () {
66 notify();
Des6.promise.js52 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 DThread_commentFactory.php33 $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 DTask_commentFactory.php30 $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/
Dadmin.twig11 <div id="fl-notify-warning" class="notify">
73 <div id="fl-notify-morepages" class="fl-notify notify">
/plugin/noiewarning/
DChangeLog25 * Added: notify mode (uses DokuWiki's notify() features)
/plugin/tagalerts/
Dstyle.css54 background-image: url(images/notify.png);
78 background-image: url(../../images/notify.png);
/plugin/guestbook/
Dbasic.class.php11 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 Dmail.txt3 This is to notify you that the status of the page “@PAGE@” has changed to @STATUS_CURRENT@.
/plugin/structtasks/
Dcli.php35 $this->notify($options->getOpt('verbose'));
41 public function notify($verbose = true) { function in cli_plugin_structtasks
/plugin/findologicxmlexport/vendor/hoa/exception/
DException.php87 Event::notify(
/plugin/maintenancemessage/
DINFO.txt7 desc Displays a maintenance message on all pages to notify of upcoming downtime, can also disable…
/plugin/matrixnotifierwas/
DREADME9 That will notify a matrix.org server of page changes.
/plugin/findologicxmlexport/vendor/hoa/event/
DBucket.php86 return Event::notify($eventId, $source, $this);
/plugin/openas/
Dstyle.css12 background-image: url(../../images/notify.png);
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
DEvent.php255 ->when($result = SUT::notify($eventId, $source, $bucket))
272 SUT::notify($eventId, $source, $data);
/plugin/diagramsnet/lib/plugins/
Dreplay.js41 edit.notify = function() function
72 edit.notify();
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
DStreamHandler.php523 private function addNotification(array &$params, callable $notify) argument
527 $params['notification'] = $notify;
531 $notify
/plugin/chat/
Dlocal.php.dist11 $conf['chat']['audio-notify'] = true; // use audio notification
/plugin/elasticsearch/vendor/react/promise/
DREADME.md22 * [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 …]

12345678