Home
last modified time | relevance | path

Searched refs:index (Results 401 – 425 of 1806) sorted by last modified time

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

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DMakefile16 open artifacts/coverage/index.html
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Db9c5d7ca6ca9c6f747201f45337a4abf.asciidoc1 // indices/create-index.asciidoc:99
6 'index' => 'twitter',
H A Dbd5918ab903c0889bb1f09c8c2466e43.asciidoc6 'index' => 'users',
H A Dcb01106bf524df5e0501d4c655c1aa7b.asciidoc8 'index' => 'twitter',
11 'index' => 'new_twitter',
H A Dcd247f267968aa0927bfdad56852f8f5.asciidoc6 'index' => 'bank',
H A Dcdedd5f33f7e5f7acde561e97bff61de.asciidoc6 'index' => 'my_index',
H A De567e6dbf86300142573c73789c8fce4.asciidoc6 'index' => 'new_twitter',
H A De5d2172b524332196cac0f031c043659.asciidoc1 // indices/create-index.asciidoc:81
6 'index' => 'twitter',
9 'index' => [
H A Df9636d7ef1a45be4f36418c875cf6bef.asciidoc6 'index' => 'sessions',
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearch.php85 * Adds a index to the list.
87 * @param Index $index Index object or string
91 public function addIndex($index): self
93 if ($index instanceof Index) {
94 $index = $index->getName();
105 if (!\is_scalar($index)) {
109 return $this->addIndexByName((string) $index);
113 * Adds an index to the list. argument
115 public function addIndexByName(string $index)
89 addIndex($index) global() argument
269 hasIndex($index) global() argument
286 hasIndexByName(string $index) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php37 protected $index = null; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
113 return $this->index;
119 public function setIndex($index) argument
121 if ($index === null) {
125 if (is_array($index) === true) {
126 $index = array_map('trim', $index);
127 $index = implode(",", $index);
130 $this->index
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/AsyncSearch/
H A DSubmit.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/$index/_async_search";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/
H A DCount.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/_cat/count/$index";
H A DRecovery.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/_cat/recovery/$index";
50 'index',
H A DSegments.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/_cat/segments/$index";
H A DShards.php33 $index = $this->index ?? null;
35 if (isset($index)) {
36 return "/_cat/shards/$index";
/plugin/elasticsearch/action/
H A Dindexing.php33 * Add pages to index
55 * Update index on media upload
66 * Remove pages from index
74 // still here? delete from index
79 * Remove deleted media from index
102 // page should not be indexed but has a state file, try to remove from index
136 $index = $client->getIndex($indexName);
141 $client->updateDocument($documentId, ['doc' => $data], $index->getName());
144 $index->addDocument($document);
148 $index
[all...]
H A Dsearch.php89 $index = $client->getIndex($this->getConf('indexname'));
170 $result = $index->search($equery);
425 // assume page if no doctype is set, because old index won't have doctypes
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhelpers.asciidoc29 'index' => '<name of index>', // here the index name
42 // do something with hit e.g. copy its data to another index
66 'index' => '<name of index>', // here the index name
H A Dper-request-configuration.asciidoc15 https://www.elastic.co/guide/en/elasticsearch/reference/7.4/index-modules-slowlog.html#_identifying_search_slow_log_origin[identifying search slow log origin]
25 'index' => 'test',
60 'index' => 'test_missing',
78 'index' => 'test_missing',
112 'index' => 'test',
140 'index' => 'test',
169 'index' => 'test',
279 'index' => 'test',
301 'index' => 'test',
330 'index'
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ccr/
H A DFollow.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/follow";
H A DFollowInfo.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/info";
H A DPauseFollow.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/pause_follow";
H A DUnfollow.php34 $index = $this->index ?? null;
36 if (isset($index)) {
37 return "/$index/_ccr/unfollow";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cluster/
H A DState.php35 $index = $this->index ?? null;
37 if (isset($metric) && isset($index)) {
38 return "/_cluster/state/$metric/$index";

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