Home
last modified time | relevance | path

Searched refs:id (Results 526 – 550 of 3526) sorted by last modified time

1...<<21222324252627282930>>...142

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTransformNamespace.asciidoc38 $params['transform_id'] = (string) The id of the transform to delete
52 $params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms
69 $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms
97 $params['transform_id'] = (string) The id of the new transform.
110 $params['transform_id'] = (string) The id of the transform to start
124 $params['transform_id'] = (string) The id of the transform to stop
142 $params['transform_id'] = (string) The id of the transform.
H A DAsyncSearchNamespace.asciidoc34 $params['id'] = (string) The async search ID
47 $params['id'] = (string) The async search ID
63 $params['id'] = (string) The async search ID
H A DMlNamespace.asciidoc151 $params['id'] = (string) The ID of the data frame analytics to delete
292 $params['id'] = (string) The ID of the data frame analytics to explain
444 $params['id'] = (string) The ID of the data frame analytics to fetch
462 $params['id'] = (string) The ID of the data frame analytics stats to fetch
768 $params['id'] = (string) The ID of the data frame analytics to create
873 $params['id'] = (string) The ID of the data frame analytics to start
906 $params['id'] = (string) The ID of the data frame analytics to stop
940 $params['id'] = (string) The ID of the data frame analytics to update
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fr/
H A Dfr.txt
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/ga/
H A Dga.txt
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ingest/
H A DGetPipeline.php33 $id = $this->id ?? null;
35 if (isset($id)) {
36 return "/_ingest/pipeline/$id";
H A DSimulate.php33 $id = $this->id ?? null;
35 if (isset($id)) {
36 return "/_ingest/pipeline/$id/_simulate";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ml/
H A DStartDataFrameAnalytics.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_ml/data_frame/analytics/$id/_start";
H A DStopDataFrameAnalytics.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_ml/data_frame/analytics/$id/_stop";
H A DUpdateDataFrameAnalytics.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_ml/data_frame/analytics/$id/_update";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DPutScript.php35 if (isset($this->id) !== true) {
37 'id is required for put_script'
40 $id = $this->id;
44 return "/_scripts/$id/$context";
46 return "/_scripts/$id";
H A DDeleteScript.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_scripts/$id";
H A DExplain.php34 if (isset($this->id) !== true) {
36 'id is required for explain'
39 $id = $this->id;
52 return "/$index/$type/$id/_explain";
54 return "/$index/_explain/$id";
H A DGet.php34 if (isset($this->id) !== true) {
36 'id is required for get'
39 $id = $this->id;
52 return "/$index/$type/$id";
54 return "/$index/_doc/$id";
H A DIndex.php40 $id = $this->id ?? null;
46 if (isset($type) && isset($id)) {
47 return "/$index/$type/$id";
49 if (isset($id)) {
50 return "/$index/_doc/$id";
H A DRenderSearchTemplate.php33 $id = $this->id ?? null;
35 if (isset($id)) {
36 return "/_render/template/$id";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Rollup/
H A DPutJob.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_rollup/job/$id";
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md280 * Changed `Terms::setTermsLookup()` signature: `index`, `path` and `id` are now required arguments [#1765](https://github.com/ruflin/Elastica/pull/1765)
1044 - Support for retrieving id node [#852](https://github.com/ruflin/Elastica/pull/852)
1054 - Node information is retrieved based on id instead of name as multiple nodes can have the same name. [#852](https://github.com/ruflin/Elastica/pull/852)
1061 - `Elastica\ScanAndScroll::$_lastScrollId` removed: `key()` now always returns the next scroll id [#842](https://github.com/ruflin/Elastica/issues/842/)
1166 - making sure id is urlencoded when using updateDocument [#734](https://github.com/ruflin/Elastica/issues/734/)
1720 - Populate document id created by elasticsearch on addDocument()/addDocuments() call if no document id was set
1801 - Change $_parent to null to also support 0 for an id
1917 - Automatic creation of id for documents added. This was more a bug
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php21 * Sets the id of the document.
25 public function setId(?string $id = null): self argument
27 return $this->setParam('_id', $id);
31 * Returns document id.
33 * @return string|null Document id
/plugin/elasticsearch/helper/
H A Dacl.php23 * @param string $id Page id
26 public function getPageACL($id) { argument
27 $id = cleanID($id);
43 // check for exact id
44 if (isset($acl[$id])) {
46 $this->addRule($acl[$id], $rules);
48 if (isset($acl[$id]['@ALL'])) return $rules;
52 $ns = $id;
[all...]
H A Dplugins.php16 * @param string $id
19 public function updateRefreshState($id) { argument
20 $refreshStateFile = metaFN($id, '.elasticsearch_refresh');
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php407 public function setApiKey(string $id, string $apiKey): ClientBuilder argument
414 'ApiKey ' . base64_encode($id . ':' . $apiKey)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Eql/
H A DGet.php34 $id = $this->id ?? null;
36 if (isset($id)) {
37 return "/_eql/search/$id";
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md169 To index a document, we need to specify three pieces of information: index, id and a document body. This is done by
176 'id' => 'my_id',
214 'id' => 'my_id'
247 'id' => 'my_id'
338 'id' => 'my_id'
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc285 .`setApiKey(string $id, string $apiKey)`

1...<<21222324252627282930>>...142