Home
last modified time | relevance | path

Searched refs:current (Results 101 – 125 of 1003) sorted by last modified time

12345678910>>...41

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Helper/Iterators/
H A DSearchResponseIterator.php95 * Clears the current scroll window if there is a scroll_id stored
151 * Returns a boolean value indicating if the current page is valid or not
162 * Returns the current "page"
165 * @see Iterator::current()
167 public function current(): array function in Elasticsearch\\Helper\\Iterators\\SearchResponseIterator
173 * Returns the current "page number" of the current "page"
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DScroll.php15 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html
58 * Returns current result set.
60 * @see http://php.net/manual/en/iterator.current.php
62 public function current(): ResultSet
65 throw new InvalidException('Could not fetch the current ResultSet from an invalid iterator. Did you forget to call "valid()"?');
109 * Returns true if current result set contains at least one hit.
59 public function current(): ResultSet global() function in Elastica\\Scroll
H A DResultSet.php183 * @See: https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#search-after
216 * Returns size of current set.
224 * Returns size of current suggests.
232 * Returns the current object of the set.
236 public function current(): Result function in Elastica\\ResultSet
242 * Sets pointer (current) to the next item of the set.
250 * Returns the position of the current entry.
260 * Check if an object exists at the current position.
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DAppendStream.php17 private $current = 0; variable in GuzzleHttp\\Stream\\AppendStream
75 $this->pos = $this->current = 0;
131 ($this->current >= count($this->streams) - 1 &&
132 $this->streams[$this->current]->eof());
147 $this->pos = $this->current = 0;
181 if ($this->streams[$this->current]->eof()) {
182 if ($this->current == $total) {
185 $this->current++;
187 $buffer .= $this->streams[$this->current]->read($remaining);
H A DStream.php79 $result = $resource->current();
H A DLimitStream.php111 $current = $this->stream->tell();
113 if ($current !== $offset) {
116 if ($current > $offset) {
119 $this->stream->read($offset - $current);
150 // Check if the current position is less than the total allowed
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhelpers.asciidoc19 https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination].
55 https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination].
H A Dper-request-configuration.asciidoc17 https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html#_identifying_running_tasks[identifying running tasks].
H A Drelease-notes.asciidoc251 https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/ElasticsearchPHP_Endpoints.html[endpoints documentation]
258 https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/experimental_and_beta_apis.html[experimental and beta APIs]
H A Dconnection-pool.asciidoc5 maintaining the current list of nodes. Theoretically, nodes are either dead or
H A Dexperimental-beta-apis.asciidoc24 The experimental APIs included in the current version of `elasticsearch-php`
74 There are no beta APIs in the current version of `elasticsearch-php`
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DBREAKING_CHANGES.md28 - [Search Templates]: PutTemplate endpoint has been removed (see [Elasticsearch Breaking Changes](https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking_60_scripting_changes.html#_stored_search_template_apis_removed)),
H A DCHANGELOG.md150 - Fixed the asciidoc [endpoints documentation](https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/ElasticsearchPHP_Endpoints.html) based on the code generation
H A DREADME.md17 - [Cross-cluster replication](https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-apis.html)
18 - [Graph explorer](https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html)
19 - [Info](https://www.elastic.co/guide/en/elasticsearch/reference/current/info-api.html)
20 - [Licensing](https://www.elastic.co/guide/en/elasticsearch/reference/current/licensing-apis.html)
21 - [Machine learning anomaly detection](https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-apis.html)
22 - [Machine learning data frame analytics](https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-df-analytics-apis.html)
23 - [Migration](https://www.elastic.co/guide/en/elasticsearch/reference/current/migration-api.html)
24 - [Reload search analyzers](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-reload-analyzers.html)
25 - [Rollup](https://www.elastic.co/guide/en/elasticsearch/reference/current/rollup-apis.html)
26 - [Security](https://www.elastic.co/guide/en/elasticsearch/reference/current/securit
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php281 $buf .= $body->current();
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTransformNamespace.asciidoc39 $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted.
H A DDataFrameTransformDeprecatedNamespace.asciidoc40 $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md85 * Added explicit return annotation to `Elastica\Multi\ResultSet::current()` and `Elastica\Multi\ResultSet::offsetGet()` by @franmomu [2056](https://github.com/ruflin/Elastica/pull/2056)
288 * Scroll is now throwing an exception when calling `current()` on an invalid iteration: always call `valid()` before
289 accessing the current item, as documented in PHP's Iterator documentation [#1749](https://github.com/ruflin/Elastica/pull/1749)
364 * The [_parent](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-parent-field.html) field has been removed in favour of the join field.
426 * 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)
428 * `\Elastica\Bulk\ResponseSet::current` returns `\Elastica\Bulk\Response` instead of `\Elastica\Bulk\Response|false`
429 * `\Elastica\Multi\ResultSet::current` returns `\Elastica\ResultSet` instead of `\Elastica\ResultSet|false`
434 * [Field](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#function-random) param for `Elastica\Query\FunctionScore::addRandomScoreFunction` [#1529](https://github.com/ruflin/Elastica/pull/1529)
435 * [Index Recovery](https://www.elastic.co/guide/en/elasticsearch/reference/current/indice
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md172 The current DSN is valid, but it is up to the consumer to make sure both host1 and
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/Selectors/
H A DRoundRobinSelector.php28 private $current = 0; variable in Elasticsearch\\ConnectionPool\\Selectors\\RoundRobinSelector
37 $returnConnection = $connections[$this->current % count($connections)];
39 $this->current += 1;
H A DStickyRoundRobinSelector.php28 private $current = 0; variable in Elasticsearch\\ConnectionPool\\Selectors\\StickyRoundRobinSelector
36 * Use current connection unless it is dead, otherwise round-robin
45 if ($connections[$this->current]->isAlive()) {
46 return $connections[$this->current];
50 $this->current = $this->currentCounter % count($connections);
52 return $connections[$this->current];
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md859 extensions and supports running on legacy PHP 5.4 through current PHP 8+ and HHVM.
/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php301 $wrappedReduceFunc = function ($current, $val) use ($reduceFunc, $cancellationQueue, $total, &$i) {
304 return $current
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DResponseSet.php92 public function current(): Response function in Elastica\\Bulk\\ResponseSet
/plugin/ckgedit/
H A DREADME.md2 FCKEditor with the more current CKEditor. Whereas the base directory for fckgLite is named fckg, th…

12345678910>>...41