Home
last modified time | relevance | path

Searched refs:array (Results 126 – 150 of 765) sorted by last modified time

12345678910>>...31

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSecurityNamespace.asciidoc54 .`authenticate(array $params = [])`
66 .`changePassword(array $params = [])`
73 $params['body'] = (array) the new password for the user (Required)
81 .`clearApiKeyCache(array $params = [])`
94 .`clearCachedPrivileges(array $params = [])`
107 .`clearCachedRealms(array $params = [])`
121 .`clearCachedRoles(array $params = [])`
134 .`createApiKey(array $params = [])`
140 $params['body'] = (array) The api key request to create an API key (Required)
148 .`deletePrivileges(array
[all...]
H A DTasksNamespace.asciidoc29 .`cancel(array $params = [])`
45 .`get(array $params = [])`
61 .`list(array $params = [])`
76 .`tasksList(array $params = [])`
H A DTransformNamespace.asciidoc33 .`deleteTransform(array $params = [])`
47 .`getTransform(array $params = [])`
64 .`getTransformStats(array $params = [])`
80 .`previewTransform(array $params = [])`
92 .`putTransform(array $params = [])`
105 .`startTransform(array $params = [])`
119 .`stopTransform(array $params = [])`
137 .`updateTransform(array $params = [])`
H A DAsyncSearchNamespace.asciidoc29 .`delete(array $params = [])`
42 .`get(array $params = [])`
58 .`status(array $params = [])`
71 .`submit(array $params = [])`
H A DClusterNamespace.asciidoc40 .`allocationExplain(array $params = [])`
47 $params['body'] = (array) The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard'
55 .`deleteComponentTemplate(array $params = [])`
70 .`deleteVotingConfigExclusions(array $params = [])`
83 .`existsComponentTemplate(array $params = [])`
98 .`getComponentTemplate(array $params = [])`
113 .`getSettings(array $params = [])`
129 .`health(array $params = [])`
153 .`pendingTasks(array $params = [])`
167 .`postVotingConfigExclusions(array
[all...]
H A DDanglingIndicesNamespace.asciidoc28 .`deleteDanglingIndex(array $params = [])`
44 .`importDanglingIndex(array $params = [])`
60 .`listDanglingIndices(array $params = [])`
H A DMigrationNamespace.asciidoc26 .`deprecations(array $params = [])`
H A DMlNamespace.asciidoc86 .`closeJob(array $params = [])`
96 $params['body'] = (array) The URL params optionally sent in the body
104 .`deleteCalendar(array $params = [])`
117 .`deleteCalendarEvent(array $params = [])`
131 .`deleteCalendarJob(array $params = [])`
145 .`deleteDataFrameAnalytics(array $params = [])`
161 .`deleteDatafeed(array $params = [])`
175 .`deleteExpiredData(array $params = [])`
189 .`deleteFilter(array $params = [])`
202 .`deleteForecast(array
[all...]
H A DMonitoringNamespace.asciidoc26 .`bulk(array $params = [])`
36 $params['body'] = (array) The operation definition and data (action-data pairs), separated by newlines (Required)
H A DNodesNamespace.asciidoc30 .`hotThreads(array $params = [])`
49 .`info(array $params = [])`
63 .`reloadSecureSettings(array $params = [])`
76 .`stats(array $params = [])`
91 .`usage(array $params = [])`
H A DSnapshotNamespace.asciidoc36 .`cleanupRepository(array $params = [])`
51 .`clone(array $params = [])`
60 $params['body'] = (array) The snapshot clone definition (Required)
68 .`create(array $params = [])`
77 $params['body'] = (array) The snapshot definition
85 .`createRepository(array $params = [])`
94 $params['body'] = (array) The repository definition (Required)
102 .`delete(array $params = [])`
117 .`deleteRepository(array $params = [])`
130 .`get(array
[all...]
H A DXpackNamespace.asciidoc27 .`info(array $params = [])`
41 .`usage(array $params = [])`
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md41 * Fixed `Query/Terms` terms phpdoc from `array<bool|float|int|string>` to `list<bool|float|int|string>` [#2118](https://github.com/ruflin/Elastica/pull/2118)
68 * Deprecated passing an array of `string` as 1st argument to `Search::addIndices()`, use an array of Index instances by @franmomu [#2103](https://github.com/ruflin/Elastica/pull/2103)
124 * Deprecated passing an `int` as 1st argument to `Elastica\Search::setOptionsAndQuery()`, pass an array with the key `size` instead by @deguif [#2010](https://github.com/ruflin/Elastica/pull/2010)
183 * Fixed using raw array in `post_filter` [#1950](https://github.com/ruflin/Elastica/pull/1950)
189 * Allowed the Terms query to accept an array of bool, float, int and/or string [#1872](https://github.com/ruflin/Elastica/pull/1872)
369 * Elastica\Client `$_config` field is now a `ClientConfiguration` instead of an array
394 * Allow metadata to be set on Aggregations (via `AbstractAggregation::setMeta(array)`). [#1677](https://github.com/ruflin/Elastica/issues/1677)
604 - Fix for QueryBuilder version check `\Elastica\QueryBuilder\Version\Version240.php` added all new query types to queries array. [#1266](https://github.com/ruflin/Elastica/pull/1266) [#1269](https://github.com/ruflin/Elastica/pull/1269)
624 - Deprecated `\Elastica\Exception\ElasticsearchException` which is irrelevant since Elasticsearch now exposes the errors as a structured array instea
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractAggregation.php20 * @var array Subaggregations belonging to this aggregation
55 public function getAggs(): array
85 * @param array $meta Metadata to be attached to the aggregation
89 public function setMeta(array $meta): self
107 public function getMeta(): ?array
128 public function toArray(): array
130 $array = parent::toArray();
133 $array['aggs'] = $this->_convertArrayable($this->_aggs);
136 return $array;
H A DAbstractSimpleAggregation.php36 public function toArray(): array
41 $array = parent::toArray();
45 if (isset($array[$baseName]['script']) && \is_array($array[$baseName]['script'])) {
46 $script = $array[$baseName]['script'];
48 unset($array[$baseName]['script']);
50 $array[$baseName] = \array_merge($array[$baseName], $script);
53 return $array;
H A DGlobalAggregation.php12 public function toArray(): array
14 $array = parent::toArray();
16 $array[$this->_getBaseName()] = new \ArrayObject();
18 return $array;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Drelease-notes.asciidoc84 * Fixed warning header as array in YAML tests generator
125 * Fixed using object instead of array in onFailure transport event
213 * Fixed `Client::extractArgument` iterable casting to array; this allows passing
H A Dsearch-operations.asciidoc49 Notice how the structure and layout of the PHP array is identical to that of the
51 A quick method to check your PHP array (for more complex examples) is to encode
104 with the search results is as simple as iterating over the array values:
178 Notice that the `must` clause accepts an array of arrays. This is serialized
179 into an array of JSON objects internally, so the final resulting output is
278 // Do your work here, on the $response['hits']['hits'] array
H A Dselectors.asciidoc8 The job of a selector is to return a single connection from a provided array of
106 * @param array $connections Array of Connection objects
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md10 To maintain consistency across all the low-level clients (Ruby, Python, etc.), clients accept simple associative arrays as parameters. All parameters, from the URI to the document body, are defined in the associative array.
167 In elasticsearch-php, almost everything is configured by associative arrays. The REST endpoint, document and optional parameters - everything is an associative array.
170 constructing an associative array of key:value pairs. The request body is itself an associative array with key:value pairs
185 associative array containing a decoded version of the JSON that Elasticsearch returns:
284 an array named `hits`. This represents your search results. Inside of `hits` is another array named `hits`, which contains
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc101 .`fromConfig(array $config, bool $quiet = false)`
116 .`defaultHandler(array $multiParams = [], array $singleParams = [])`
129 .`multiHandler(array $params = [])`
168 .`setConnectionPool(AbstractConnectionPool|string $connectionPool, array $args = [])`
272 .`setHosts(array $hosts)`
324 .`setConnectionParams(array $params)`
454 .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)`
/plugin/elasticsearch/vendor/psr/log/
H A DREADME.md45 $this->logger->error('Oh no!', array('exception' => $exception));
/plugin/elasticsearch/vendor/react/promise/
H A DCHANGELOG.md132 function allAndCancel(array $promises)
144 * `all()` and `map()` functions now preserve the order of the array (#77).
H A DREADME.md467 is a promise which resolves to an array, this promise is also cancelled.
511 $promise = React\Promise\all(array|React\Promise\PromiseInterface $promisesOrValues);
516 will be an array containing the resolution values of each of the items in
522 $promise = React\Promise\race(array|React\Promise\PromiseInterface $promisesOrValues);
531 $promise = React\Promise\any(array|React\Promise\PromiseInterface $promisesOrValues);
539 rejected. The rejection value will be an array of all rejection reasons.
547 $promise = React\Promise\some(array|React\Promise\PromiseInterface $promisesOrValues, integer $howMany);
552 will be an array of length `$howMany` containing the resolution values of the
557 reject). The rejection value will be an array of
566 $promise = React\Promise\map(array|Reac
[all...]
/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php72 * will be an array containing the resolution values of each of the items in
75 * @param array $promisesOrValues
92 * @param array $promisesOrValues
102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) {
103 if (!is_array($array) || !$array) {
108 foreach ($array as $promiseOrValue) {
124 * rejected. The rejection value will be an array of all rejection reasons.
129 * @param array $promisesOrValues
143 * will be an array o
[all...]

12345678910>>...31