Home
last modified time | relevance | path

Searched refs:method (Results 126 – 150 of 972) sorted by last modified time

12345678910>>...39

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc18 This behavior can be changed by using the `setHosts()` method on
19 `ClientBuilder`. The method accepts an array of values, each entry corresponding
38 Notice that the `ClientBuilder` object allows chaining method calls for brevity.
62 configuration method relies on PHP's `filter_var()` and `parse_url()` methods to
H A Dinstallation.asciidoc91 When you are done configuring, call the `build()` method to generate a `Client`
H A Dper-request-configuration.asciidoc83 > No handler found for uri [/test_missing/test/] and method [GET]
H A Dnamespaces.asciidoc44 just like any other method in the library.
H A Dserializers.asciidoc49 method on the `ClientBuilder` object:
90 You can select `ArrayToJSONSerializer` by using the `setSerializer()` method on
118 If the data was not an array and/or not convertible to JSON, the method returns
133 method on the ClientBuilder object:
188 `setSerializer()` method of the `ClientBuilder` object:
217 `setSerializer()` method:
H A Dset-retries.asciidoc11 the `setRetries()` method:
H A Dhttp-meta-data.asciidoc20 method, as follows:
H A Dindex-operations.asciidoc265 available method calls (as well as parameter lists in the comments for each
266 method).
H A Doverview.asciidoc7 All methods closely match the REST API, and furthermore, match the method
H A Dsearch-operations.asciidoc51 A quick method to check your PHP array (for more complex examples) is to encode
H A Dselectors.asciidoc137 Selectors can be changed via the `setSelector()` method:
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DBREAKING_CHANGES.md31 - [#674](https://github.com/elastic/elasticsearch-php/pull/674) `ClientBuilder::defaultLogger()` method was removed. It is recommended to [create the logger object manually](https://github.com/elastic/elasticsearch-php/blob/master/docs/configuration.asciidoc#enabling-the-logger).
H A DCHANGELOG.md297 - [DOCS] Proper return type array for get method for `IndicesNamespace` [#651](https://github.com/elastic/elasticsearch-php/pull/651)
H A DLICENSE-LGPL49 We protect your rights with a two-step method: (1) we copyright the
H A Dphpstan.neon6 - '#Call to static method performRequest\(\) on trait#'
9 - '#Call to method getCode\(\) on an unknown class JsonException#'
H A DREADME.md107 The recommended method to install _Elasticsearch-PHP_ is through [Composer](http://getcomposer.org).
242 If you want to retrieve the `_source` field directly, there is the `getSource` method:
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php257 * @deprecated since version 7.1.0, use the "global()" method instead.
261 \trigger_deprecation('ruflin/elastica', '7.1.0', 'The "%s()" method is deprecated, use "global()" instead. It will be removed in 8.0.', __METHOD__);
522 public function normalize(string $name, ?string $bucketsPath = null, ?string $method = null): NormalizeAggregation argument
524 return new NormalizeAggregation($name, $bucketsPath, $method);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php88 * @param string $method HTTP method to use
96 public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface argument
110 $method,
H A DClientBuilder.php183 * should correspond to the method name e.g. ['connectionPool']
200 $method = "set$key";
202 if ($reflection->hasMethod($method)) {
203 $func = $reflection->getMethod($method);
205 $builder->$method(...$value);
207 $builder->$method($value);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttpAdapter.php99 $method = $elasticaRequest->getMethod();
102 if (ElasticaRequest::GET === $method) {
103 $method = ElasticaRequest::POST;
108 $method = ElasticaRequest::POST;
121 return new HttpAdapterRequest($url, $method, HttpAdapterRequest::PROTOCOL_VERSION_1_1, $headers, $streamBody);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStreamDecoratorTrait.php21 * Magic method used to create a new stream if streams are not added in
55 * @param string $method Missing method name
60 public function __call($method, array $args) argument
62 $result = call_user_func_array(array($this->stream, $method), $args);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DStreamHandler.php208 $method = "add_{$key}";
209 if (isset($methods[$method])) {
210 $this->{$method}($request, $options, $value, $params);
234 'method' => $request['http_method'],
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc542 $params['pre_filter_shard_size'] = (number) A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on its rewrite method ie. if date filters are mandatory to match but the shard bounds and the query are disjoint.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md36 * New method `Elastica\Aggregation\Terms::setMissingBucket`. For Composite Agg. Include in the response documents without a value for a given source. [#2117](https://github.com/ruflin/Elastica/pull/2117)
46 * Changed `SetProcessor::setValue` signature to allow to pass any type, if you are overriding this method you must update the signature removing the `string` type-hint by @franmomu [#2082](https://github.com/ruflin/Elastica/pull/2082)
47 * Changed `Settings::setMergePolicy` signature to allow to pass `int` and `string` as argument 2, if you are overriding this method you must update the signature removing the `string` type-hint by @franmomu [#2085](https://github.com/ruflin/Elastica/pull/2085)
78 * Fixed case mismatch in method calls by @franmomu [#2087](https://github.com/ruflin/Elastica/pull/2087)
105 * Added `Elastica\Query\Terms::setBoost()` method to configure boost by @deguif [#2035](https://github.com/ruflin/Elastica/pull/2035)
113 * Triggered deprecation in `Elastica\Result::getType()` method by @deguif [#2016](https://github.com/ruflin/Elastica/pull/2016)
127 * Deprecated `Elastica\Bulk::toString()`, `Elastica\Bulk\Action::toString()` and `Elastica\Request::toString()` methods, use `__toString()` method or cast to string instead by @deguif [#2033](https://github.com/ruflin/Elastica/pull/2033)
129 * Deprecated not passing a `method` when constructing `Elastica\Aggregation\NormalizeAggregation` by @deguif [#2040](https://github.com/ruflin/Elastica/pull/2040)
317 * The method `Index::deleteById()` does not throw an `NotFoundException` when deleting a non-existing document [#1732](https://github.com/ruflin/Elastica/pull/1732)
324 * The `\Elastica\Query\GeoPolygon::count()` method no
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md101 a consistent return type of the method.

12345678910>>...39