Home
last modified time | relevance | path

Searched refs:result (Results 301 – 325 of 1997) sorted by last modified time

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

/plugin/pageredirect/
H A Daction.php231 $result = "~~".$syntax.">".$new_src;
232 if (!empty($anchor)) $result .= "#".$anchor;
233 $result .= "~~";
235 return $result;
253 $result = "\n#".$syntax." ".$new_src;
254 if (!empty($anchor)) $result .= "#".$anchor;
256 return $result;
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php300 $result = $response->getData();
302 if (!isset($result['found']) || false === $result['found']) {
306 if (isset($result['fields'])) {
307 $data = $result['fields'];
308 } elseif (isset($result['_source'])) {
309 $data = $result['_source'];
315 $doc->setVersionParams($result);
H A DUtil.php89 $result = $term;
90 $result = self::replaceBooleanWords($result);
92 return self::escapeTerm($result);
107 $result = $term;
112 $result = \str_replace($char, '\\'.$char, $result);
120 $result = \str_replace($char, '', $result);
123 return $result;
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
H A DSmartSerializer.php85 $result = json_decode($data, true, 512, JSON_THROW_ON_ERROR);
86 return $result;
88 $result = $result ?? [];
89 throw new JsonErrorException($e->getCode(), $data, $result);
93 $result = @json_decode($data, true);
96 throw new JsonErrorException(json_last_error(), $data, $result);
98 return $result;
/plugin/elasticsearch/action/
H A Dsearch.php170 $result = $index->search($equery);
171 $aggs = $result->getAggregations();
177 $this->print_results($result) && $this->print_pagination($result);
468 * @param \Elastica\ResultSet $result
470 protected function print_pagination($result) { argument
474 $all = $result->getTotalHits();
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DUtilsTest.php32 $result = Utils::copyToString($s1);
33 $this->assertEquals('', $result);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhelpers.asciidoc18 result using
H A Dper-request-configuration.asciidoc336 $result = $client->get($params);
H A Dfutures.asciidoc48 your code like a regular object. When you need the result values, you can
262 get the final result.
H A Dset-retries.asciidoc24 result in a connection timeout (for example), the client will throw an
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/
H A DBaseFutureTrait.php26 private $result; variable
69 return $this->result;
106 // Get the result and error when the promise is resolved. Note that
111 $this->result = $value;
H A DCompletedFutureArray.php9 public function __construct(array $result) argument
11 parent::__construct($result);
20 return isset($this->result[$offset]);
29 return $this->result[$offset];
38 $this->result[$offset] = $value;
47 unset($this->result[$offset]);
56 return count($this->result);
65 return new \ArrayIterator($this->result);
H A DCompletedFutureValue.php13 protected $result; variable in GuzzleHttp\\Ring\\Future\\CompletedFutureValue
19 * @param mixed $result Resolved result
23 public function __construct($result, \Exception $e = null) argument
25 $this->result = $result;
38 return $this->result;
51 : new FulfilledPromise($this->result);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php139 * @param FutureArrayInterface $result Response of a request (promise)
144 public function resultOrFuture(FutureArrayInterface $result, array $options = []) argument
150 $result = $result->wait();
151 } while ($result instanceof FutureArrayInterface);
153 return $result;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php130 $result = '';
132 $result .= $this->read(1000000);
135 return $result;
H A DStream.php79 $result = $resource->current();
81 return $result;
154 $result = $this->stream;
158 return $result;
H A DStreamDecoratorTrait.php62 $result = call_user_func_array(array($this->stream, $method), $args);
64 // Always return the wrapped object if the result is a return $this
65 return $result === $this->stream ? $this : $result;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php58 * Creates a response hash from a cURL result.
284 $result = (string) substr($buf, 0, $length);
286 return $result;
H A DCurlHandler.php84 $result = $factory($request, $this->checkoutEasyHandle());
85 $h = $result[0];
86 $hd =& $result[1];
87 $bd = $result[2];
H A DCurlMultiHandler.php83 $result = $factory($request);
87 'handle' => $result[0],
88 'headers' => &$result[1],
89 'body' => $result[2],
93 $id = (int) $result[0];
232 if ($done['result'] !== CURLM_OK) {
233 $entry['response']['curl']['errno'] = $done['result'];
237 $result = CurlFactory::createResponse(
246 $entry['deferred']->resolve($result);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php44 $result = [];
49 $result = array_merge($result, $value);
54 return $result;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Common/Exceptions/Serializer/
H A DJsonErrorException.php36 private $result; variable in Elasticsearch\\Common\\Exceptions\\Serializer\\JsonErrorException
52 9 => 'Decoding of value would result in invalid PHP property name', //JSON_ERROR_INVALID_PROPERTY_NAME
56 public function __construct($code, $input, $result, $previous = null) argument
64 $this->result = $result;
80 return $this->result;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DLICENSE-APACHE159 result of this License or out of the use or inability to use the
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc162 $params['min_score'] = (number) Include only documents with a specific `_score` value in the result
/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DLanguage.php72 $result = [];
94 $result[$lang] = 1 - ($sum / ($this->maxNgrams * $index));
97 \arsort($result, SORT_NUMERIC);
100 return new LanguageResult($result);

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