Home
last modified time | relevance | path

Searched refs:result (Results 326 – 350 of 1997) sorted by last modified time

1...<<11121314151617181920>>...80

/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DLanguageResult.php22 private $result = []; variable in LanguageDetection\\LanguageResult
26 * @param array $result
28 public function __construct(array $result = []) argument
30 $this->result = $result;
39 return isset($this->result[$offset]);
48 return $this->result[$offset] ?? null;
59 $this->result[] = $value;
61 $this->result[$offset] = $value;
70 unset($this->result[
[all...]
/plugin/elasticsearch/vendor/react/promise/src/
H A DFulfilledPromise.php42 $result = $onFulfilled($this->value);
44 if ($result instanceof ExtendedPromiseInterface) {
45 $result->done();
H A DPromise.php8 private $result; variable in React\\Promise\\Promise
30 if (null !== $this->result) {
31 return $this->result->then($onFulfilled, $onRejected, $onProgress);
60 if (null !== $this->result) {
61 return $this->result->done($onFulfilled, $onRejected, $onProgress);
105 if (null === $this->canceller || null !== $this->result) {
144 if (null !== $this->result) {
164 $this->result = $promise;
176 while ($promise instanceof self && null !== $promise->result) {
177 $promise = $this->extract($promise->result);
[all...]
H A DRejectedPromise.php42 $result = $onRejected($this->reason);
44 if ($result instanceof self) {
45 throw UnhandledRejectionException::resolve($result->reason);
48 if ($result instanceof ExtendedPromiseInterface) {
49 $result->done();
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md426 * Made result sets adhere to `\Iterator` interface definition that they implement. Specifically, you need to call `valid()` on the result set before calling `current()`. When using `foreach` this is done by PHP automatically. When `valid` returns false, the return value of `current` is undefined instead of false. [#1506](https://github.com/ruflin/Elastica/pull/1506)
524 - The [created and found](https://github.com/elastic/elasticsearch/pull/25516) fields in index and delete responses became obsolete after the introduction of the result field in index, update and delete responses [#1354](https://github.com/ruflin/Elastica/pull/1354)
547 - Scroll no longer does an extra iteration both on an empty result and on searches where the last page has a significantly smaller number of results than the pages before it.
739 - `Health::getIndices` returns key=>value result, where key === $indexName.
1430 - Minor tweaking of request and result handling classes to adjust for changes in ES 1.0.0.RC1
1676 - Added optional parameter to filter result while percolate [#384](https://github.com/ruflin/Elastica/issues/384/)
/plugin/elasticsearch/helper/
H A Ddocparser.php87 $result = $this->runParser($file, $this->parsers[$ext]);
88 if ($result === false) {
103 $data = array_merge($data, $this->processParserResult($result));
144 * @param string $result The string returned by the parser, might be json
147 protected function processParserResult($result) argument
152 $result[0] !== '[' && $result[0] !== '{'
156 ($decoded = json_decode($result, true)) === null
160 'content' => $result,
163 // we only want the first result fro
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DMockHandler.php9 * Ring handler that returns a canned response or evaluated function result.
14 private $result; variable in GuzzleHttp\\Ring\\Client\\MockHandler
21 * @param array|FutureArrayInterface|callable $result Mock return value.
23 public function __construct($result) argument
25 $this->result = $result;
31 $response = is_callable($this->result)
32 ? call_user_func($this->result, $request)
33 : $this->result;
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md138 The result of parsing a DSN string is a `DsnFunction` or `Dsn`. A `DsnFunction` has
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md194 [result] => created
355 [result] => deleted
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DMlNamespace.asciidoc369 $params['timestamp'] = (string) The timestamp of the desired single bucket result
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md82 the result of that computation. Thus, each deferred has a promise that acts as
83 a placeholder for its actual result.
157 is making progress toward its result.
171 Neither its state nor its result (or error) can be modified.
187 or rejection value. Returns a new promise for the transformed result.
193 the result as the first argument.
342 of the promise that they are not longer interested in the result of an
603 computeAwesomeResultAsynchronously(function ($error, $result) use ($deferred) {
607 $deferred->resolve($result);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAsyncReadStream.php156 $result = $buffer->write($string);
158 return $result;
187 $result = $this->stream->read($length);
196 $resultLen = strlen($result);
202 $result .= $pumpFn($length - $resultLen);
205 return $result;
H A DBufferStream.php105 $result = $this->buffer;
108 // Slice up the result to provide a subset of the buffer.
109 $result = substr($this->buffer, 0, $length);
113 return $result;
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DCHANGELOG.md56 - Fixed a bug in which the result of `CurlFactory::retryFailedRewind` did not
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dexperimental-beta-apis.asciidoc35 $result = $client->rankEval($params);
46 $result = $client->scriptsPainlessExecute($params);
57 $result = $client->getScriptContext();
68 $result = $client->getScriptLanguages();
/plugin/highlight2wiki/
H A Daction.php133 //$result =file_get_contents($url);
149 if(strlen($result2)>strlen($result1)){ //check length of each result
150 $result = $result2;
152 $result = $result1;
167 $result =file_get_contents($url, false, $context);
175 //if(strcmp($result, $result2)<"0"){
176 //$result = $result2;
180 if($result!=""){
181 //preg_match('/lang=(["\'])?((?:.(?!\1|>))*.?)/',$result,$matchlang);
187 //$dom->loadHTML($result);
[all...]
/plugin/structnotification/action/
H A Dnotification.php109 $result = $search->execute();
113 for ($i=0; $i<count($result); $i++) {
114 $values = $result[$i];
/plugin/folded/
H A Dhelper.php9 $result = array();
10 $result[] = array(
14 return $result;
/plugin/achart/assets/
H A Dapexcharts.min.js6result=t.globals.seriesNames.slice();var e=t.globals.seriesNames.reduce((function(t,e){return t.le… property in t.xAxisScale
10result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){r…
H A Djs-yaml.min.js2result+=l}}function fe(e,t,i,r){var o,a,l,c;for(n.isObject(i)||ce(e,"cannot merge mappings; the pr…
/plugin/snippets/
H A Daction.php166 $this->helper->insertSnippet($event->result, $page_id, $force_old);
178 if(! $event->result && $param['after']) return; //write fail
H A Dhelper.php123 * @param result: reference to string that holds the page contents
127 function insertSnippet(&$result, $page_id,$force) { argument
148 $result = preg_replace_callback(
154 $result
/plugin/snippets/exe/
H A Dupdate.php30 $result = io_readFile($page); variable
31 $helper->insertSnippet($result, $id,false); // insert all updated snippets
42 io_saveFile($page,$result); // save updated page
/plugin/ckgedit/ckeditor/
H A DCHANGES.md394 …DITOR_dom_range.html#method-extractContents) method returns an incorrect result when multiple node…
731 ….ckeditor.com/ticket/13142): [Edge] Fixed: *Ctrl+A* and then *Backspace* result in an empty `<div>…
942 * [#12503](https://dev.ckeditor.com/ticket/12503): [Blink/Webkit] Fixed: Incorrect result of Select…
1236 …ocs/ckeditor4/latest/api/CKEDITOR_editor.html#method-removeStyle) should result in a paragraph and…
H A DLICENSE.md1045 Initial Developer or such Contributor as a result of warranty,
1068 the Initial Developer or such Contributor as a result of any such

1...<<11121314151617181920>>...80