Home
last modified time | relevance | path

Searched refs:response (Results 226 – 250 of 925) sorted by last modified time

12345678910>>...37

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D804a97ff4d0613e6568e4efb19c52021.asciidoc12 $response = $client->cluster()->putSettings($params);
20 $response = $client->cluster()->putSettings($params);
28 $response = $client->cluster()->putSettings($params);
H A D81c9aa2678d6166a9662ddf2c011a6a5.asciidoc13 $response = $client->search($params);
H A D9166cf38427d5cde5d2ec12a2012b669.asciidoc18 $response = $client->indices()->putTemplate($params);
H A D93f1bdd72e79827dcf9a34efa02fd977.asciidoc19 $response = $client->search($params);
H A Da116949e446f34dc25ae57d4b703d0c1.asciidoc18 $response = $client->search($params);
H A Da2a25aad1fea9a541b52ac613c78fb64.asciidoc19 $response = $client->search($params);
H A Dac544eb247a29ca42aab13826ca88561.asciidoc18 $response = $client->update($params);
H A Dad6ea0c1e46712aa1fd6d3bfa0ec979e.asciidoc15 $response = $client->search($params);
H A Dae9ccfaa146731ab9176df90670db1c2.asciidoc44 $response = $client->bulk($params);
H A Dafc29b61c532cf683f749baf013e7bfe.asciidoc16 $response = $client->indices()->putMapping($params);
H A Db0eaf67e5cce24ef8889bf20951ccec1.asciidoc26 $response = $client->search($params);
H A Dd0a8a938a2fa913b6fdbc871079a59dd.asciidoc17 $response = $client->search($params);
H A Dd4b4cefba4318caeba7480187faf2b13.asciidoc12 $response = $client->index($params);
H A Dd8b2a88b5eca99d3691ad3cd40266736.asciidoc23 $response = $client->indices()->create($params);
H A Dd9474f66970c6955e24b17c7447e7b5f.asciidoc21 $response = $client->indices()->create($params);
H A Ddb6cba451ba562abe953d09ad80cc15c.asciidoc14 $response = $client->search($params);
H A Ddc15e2373e5ecbe09b4ea0858eb63d47.asciidoc35 $response = $client->search($params);
H A Ddfef545b1e2c247bafd1347e8e807ac1.asciidoc20 $response = $client->indices()->create($params);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DResponse.php45 * HTTP response status code.
114 $response = $this->getData();
116 return $response['error'] ?? null;
128 * True if response has error.
130 * @return bool True if response has error
134 $response = $this->getData();
136 return isset($response['error']);
140 * True if response has failed shards.
142 * @return bool True if response has failed shards
211 $response
[all...]
H A DResultSet.php48 public function __construct(Response $response, Query $query, $results) argument
51 $this->_response = $response;
81 * Returns true if the response contains suggestion results; false otherwise.
203 * Returns response object.
/plugin/elasticsearch/vendor/ruflin/elastica/src/ResultSet/
H A DDefaultBuilder.php15 public function buildResultSet(Response $response, Query $query): ResultSet argument
17 $results = $this->buildResults($response);
19 return new ResultSet($response, $query, $results);
27 private function buildResults(Response $response): array argument
29 $data = $response->getData();
H A DProcessingBuilder.php32 public function buildResultSet(Response $response, Query $query): ResultSet argument
34 $resultSet = $this->builder->buildResultSet($response, $query);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php105 $response = [];
120 function ($response) {
125 function ($response) {
126 $code = $response->getCode();
146 $response = null;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php84 // curl will decode the response automatically if the response is encoded
170 $response = new Response($responseString, \curl_getinfo($conn, \CURLINFO_RESPONSE_CODE));
171 $response->setQueryTime($end - $start);
172 $response->setTransferInfo(\curl_getinfo($conn));
174 $response->setJsonBigintConversion($connection->getConfig('bigintConversion'));
177 if ($response->hasError()) {
178 throw new ResponseException($request, $response);
181 if ($response->hasFailedShards()) {
182 throw new PartialShardFailureException($request, $response);
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DREADME.md10 through a PHP function that accepts a request hash and returns a response hash
24 $response = $handler([
33 $response->then(function (array $response) {
34 echo $response['status'];
37 $response->wait();

12345678910>>...37