Home
last modified time | relevance | path

Searched refs:reason (Results 326 – 350 of 711) sorted by path

1...<<11121314151617181920>>...29

/plugin/dwtimeline/
H A DLICENSE198 infringement or for any other reason (not limited to patent issues),
/plugin/dx/
H A DLICENSE198 infringement or for any other reason (not limited to patent issues),
/plugin/ebookexport/
H A DLICENSE198 infringement or for any other reason (not limited to patent issues),
/plugin/editor/
H A DCOPYING198 infringement or for any other reason (not limited to patent issues),
/plugin/editsections2/
H A DCOPYING198 infringement or for any other reason (not limited to patent issues),
/plugin/edittable/lib/
H A Dhandsontable.full.js21897 handler({ promise: promise, reason: value });
21924 handler({ promise: promise, reason: promise._v });
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md124 - Fixed the Response Exception if the `reason` field is null
H A DLICENSE-APACHE173 incurred by, or claims asserted against, such Contributor by reason
H A DLICENSE-LGPL87 are the reason we use the ordinary General Public License for many
383 infringement or for any other reason (not limited to patent issues),
H A DREADME.md89 - You should never use Elasticsearch-PHP Master branch, as it tracks Elasticsearch master and may contain incomplete features or breaks in backwards compatibility. Only use ES-PHP master if you are developing against ES master for some reason.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc669 $params['cause'] = (string) User defined reason for creating/updating the index template (Default = )
863 $params['cause'] = (string) User defined reason for dry-run creating the new template for simulation purposes (Default = )
880 $params['cause'] = (string) User defined reason for dry-run creating the new template for simulation purposes (Default = )
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconnection-factory.asciidoc10 There is little reason to provide your own ConnectionFactory, but if you need to
H A Dconnection-pool.asciidoc234 For this reason the default connection pool is currently the
H A Dhost-config.asciidoc70 For this reason, the client supports an extended host syntax which provides
H A Dper-request-configuration.asciidoc236 [reason] => OK
H A Drelease-notes.asciidoc217 * Fixed the Response Exception if the `reason` field is null
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php85 $response['reason'] = isset($startLine[2]) ? $startLine[2] : null;
131 'reason' => null,
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/en/
H A Den.txt26 All human beings are born free and equal in dignity and rights. They are endowed with reason and conscience and should act towards one another in a spirit of brotherhood.
/plugin/elasticsearch/vendor/react/promise/
H A DCHANGELOG.md59 $rejected = new React\Promise\RejectedPromise($reason);
63 $rejected = React\Promise\reject($reason);
207 when initialized with a promise instead of a value/reason.
H A DREADME.md99 $deferred->reject(mixed $reason = null);
137 $deferred->reject(mixed $reason = null);
143 `$promise->then()`) called with `$reason`.
145 If `$reason` itself is a promise, the promise will be rejected with the outcome
168 and an associated value, or rejection (failure) and an associated reason.
195 reason as the first argument.
264 Additionally, you can type hint the `$reason` argument of `$onRejected` to catch
269 ->otherwise(function (\RuntimeException $reason) {
273 ->otherwise(function ($reason) {
293 rejected promise's reason
[all...]
/plugin/elasticsearch/vendor/react/promise/src/
H A DDeferred.php39 public function reject($reason = null) argument
43 \call_user_func($this->rejectCallback, $reason);
H A DPromise.php76 return $this->then(null, static function ($reason) use ($onRejected) {
77 if (!_checkTypehint($onRejected, $reason)) {
78 return new RejectedPromise($reason);
81 return $onRejected($reason);
91 }, static function ($reason) use ($onFulfilledOrRejected) {
92 return resolve($onFulfilledOrRejected())->then(function () use ($reason) {
93 return new RejectedPromise($reason);
142 private function reject($reason = null) argument
148 $this->settle(reject($reason));
235 static function ($reason
[all...]
H A DRejectedPromise.php10 private $reason; variable in React\\Promise\\RejectedPromise
12 public function __construct($reason = null) argument
14 if ($reason instanceof PromiseInterface) {
18 $this->reason = $reason;
28 return resolve($onRejected($this->reason));
39 throw UnhandledRejectionException::resolve($this->reason);
42 $result = $onRejected($this->reason);
45 throw UnhandledRejectionException::resolve($result->reason);
55 if (!_checkTypehint($onRejected, $this->reason)) {
[all...]
H A DUnhandledRejectionException.php7 private $reason; variable in React\\Promise\\UnhandledRejectionException
9 public static function resolve($reason) argument
11 if ($reason instanceof \Exception || $reason instanceof \Throwable) {
12 return $reason;
15 return new static($reason);
18 public function __construct($reason) argument
20 $this->reason = $reason;
22 $message = \sprintf('Unhandled Rejection: %s', \json_encode($reason));
[all...]
H A Dfunctions.php203 $rejecter = function ($reason) use ($i, &$reasons, &$toReject, $toResolve, $reject) {
208 $reasons[$i] = $reason;

1...<<11121314151617181920>>...29