Home
last modified time | relevance | path

Searched refs:index (Results 476 – 500 of 1806) sorted by last modified time

1...<<11121314151617181920>>...73

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DFlushSynced.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_flush/synced";
H A DForceMerge.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_forcemerge";
H A DFreeze.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_freeze";
H A DGetUpgrade.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_upgrade";
H A DPutAlias.php35 if (isset($this->index) !== true) {
37 'index is required for put_alias'
40 $index = $this->index;
48 return "/$index/_alias/$name";
H A DPutMapping.php34 $index = $this->index ?? null;
40 if (isset($index) && isset($type)) {
41 return "/$index/$type/_mapping";
43 if (isset($index)) {
44 return "/$index/_mapping";
H A DPutSettings.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_settings";
H A DSegments.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_segments";
H A DShardStores.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_shard_stores";
H A DShrink.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_shrink/$target";
H A DStats.php35 $index = $this->index ?? null;
37 if (isset($index) && isset($metric)) {
38 return "/$index/_stats/$metric";
43 if (isset($index)) {
44 return "/$index/_stats";
H A DUnfreeze.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_unfreeze";
H A DValidateQuery.php33 $index = $this->index ?? null;
39 if (isset($index) && isset($type)) {
40 return "/$index/$type/_validate/query";
42 if (isset($index)) {
43 return "/$index/_validate/query";
/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DLanguage.php78 $index = $sum = 0;
84 $x = $index++ - $value[$v];
91 ++$index;
94 $result[$lang] = 1 - ($sum / ($this->maxNgrams * $index));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DOpenPointInTime.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_pit";
H A DRankEval.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_rank_eval";
H A DSearch.php33 $index = $this->index ?? null;
39 if (isset($index) && isset($type)) {
40 return "/$index/$type/_search";
42 if (isset($index)) {
43 return "/$index/_search";
H A DSearchMvt.php38 $index = $this->index ?? null;
44 if (isset($index) && isset($field) && isset($zoom) && isset($x) && isset($y)) {
45 return "/$index/_mvt/$field/$zoom/$x/$y";
H A DSearchShards.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_search_shards";
H A DSearchTemplate.php33 $index = $this->index ?? null;
39 if (isset($index) && isset($type)) {
40 return "/$index/$type/_search/template";
42 if (isset($index)) {
43 return "/$index/_search/template";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Rollup/
H A DGetRollupIndexCaps.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_rollup/data";
H A DRollup.php35 $index = $this->index ?? null;
38 if (isset($index) && isset($rollup_index)) {
39 return "/$index/_rollup/$rollup_index";
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md148 * Added `Elastica\Index::openPointInTime()` for opening a PiT on the index [#1994](https://github.com/ruflin/Elastica/pull/1994)
182 * Fixed numeric index names are returned as `int` in `Elastica\Status::getIndexNames()` [#1928](https://github.com/ruflin/Elastica/pull/1928)
280 * Changed `Terms::setTermsLookup()` signature: `index`, `path` and `id` are now required arguments [#1765](https://github.com/ruflin/Elastica/pull/1765)
351 * Forced index names to string in `\Elastica\Index::__construct()` [#1666](https://github.com/ruflin/Elastica/pull/1666)
356 * Forced index names to string in `Elastica\Index::__construct()` [#1666](https://github.com/ruflin/Elastica/pull/1666)
408 * The preferred type name is [_doc](https://www.elastic.co/guide/en/elasticsearch/reference/6.5/removal-of-types.html), so that index APIs have the same path as they will have in 7.0
411 * The preferred type name is [_doc](https://www.elastic.co/guide/en/elasticsearch/reference/6.5/removal-of-types.html), so that index APIs have the same path as they will have in 7.0
435 * [Index Recovery](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-recovery.html) : the indices recovery API provides insight into on-going index shard recoveries. It was never been implemented into Elastica. [#1537](https://github.com/ruflin/Elastica/pull/1537)
517 - removed analyzed/not_analyzed on [indices mapping](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/mapping-index.html)
520 - in order to delete an index yo
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php46 * Sets the document index name.
48 * @param Index|string $index Index name
50 public function setIndex($index): self argument
52 if ($index instanceof Index) {
53 $index = $index->getName();
56 return $this->setParam('_index', $index);
60 * Get the document index name.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
H A DClearCache.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_searchable_snapshots/cache/clear";
47 'index'

1...<<11121314151617181920>>...73