Home
last modified time | relevance | path

Searched refs:field (Results 301 – 325 of 555) sorted by path

1...<<11121314151617181920>>...23

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc156 [field] => value
246 [field] => value
H A Drelease-notes.asciidoc217 * Fixed the Response Exception if the `reason` field is null
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php323 * $params['_source'] = (list) True or false to return the _source field or not, or default list of fields to return, can be overridden on each sub-request
324 * $params['_source_excludes'] = (list) Default list of fields to exclude from the returned _source field, can be overridden on each sub-request
325 * $params['_source_includes'] = (list) Default list of fields to extract and return from the _source field, can be overridden on each sub-request
408 * $params['df'] = (string) The field to use as default where no field prefix is given in the query string
409 * $params['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
510 * $params['df'] = (string) The field to use as default where no field prefix is given in the query string
516 * $params['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
525 * $params['sort'] = (list) A comma-separated list of <field>
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DSearchMvt.php31 protected $field; variable in Elasticsearch\\Endpoints\\SearchMvt
39 $field = $this->field ?? null;
44 if (isset($index) && isset($field) && isset($zoom) && isset($x) && isset($y)) {
45 return "/$index/_mvt/$field/$zoom/$x/$y";
76 public function setField($field): SearchMvt argument
78 if (isset($field) !== true) {
81 $this->field = $field;
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md118 * Extracted setting `field` to `Elastica\Processor\Traits\FieldTrait` by @deguif [#2024](https://github.com/ruflin/Elastica/pull/2024)
131 * Removed remaining `_type` field usages by @deguif [#2017](https://github.com/ruflin/Elastica/pull/2017)
265 * The `Terms` Query's constructor now requires the `field` and `terms` properties.
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.
369 * Elastica\Client `$_config` field is now a `ClientConfiguration` instead of an array
441 * Using `Elastica\Query\FunctionScore::addRandomScoreFunction` without `$field` parameter is deprecated since ES 6.0 and will fail since ES 7.0 [#1522](https://github.com/ruflin/Elastica/pull/1522)
443 * `Aggregation\Percentiles` have been updated since [Elasticsearch 2.3](https://www.elastic.co/guide/en/elasticsearch/reference/2.3/search-aggregations-metrics-percentile-aggregation.html). In this version `compression, HDR histogram` changed their implementations. The `missing` field has never been implemented. [#1532](https://github.com/ruflin/Elastica/pull/1532)
475 * Use `source` script field instea
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractSimpleAggregation.php10 * Set the field for this aggregation.
12 * @param string $field the name of the document field on which to perform this aggregation
16 public function setField(string $field): self argument
18 return $this->setParam('field', $field);
38 if (!$this->hasParam('field') && !$this->hasParam('script')) {
39 throw new InvalidException('Either the field param or the script param should be set');
H A DAutoDateHistogram.php11 public function __construct(string $name, string $field) argument
14 $this->setField($field);
19 * The buckets field is optional, and will default to 10 buckets if not specified.
30 * If no format is specified, then it will use the first date format specified in the field mapping.
H A DGeoBounds.php6 * A metric aggregation that computes the bounding box containing all geo_point values for a field.
14 * @param string $field the field on which to perform this aggregation
16 public function __construct(string $name, string $field) argument
19 $this->setField($field);
23 * Set the field for this aggregation.
25 * @param string $field the name of the document field on which to perform this aggregation
29 public function setField(string $field): self argument
31 return $this->setParam('field',
[all...]
H A DGeoCentroid.php14 * @param string $field the field on which to perform this aggregation
16 public function __construct(string $name, string $field) argument
19 $this->setField($field);
23 * Set the field for this aggregation.
25 * @param string $field the name of the document field on which to perform this aggregation
29 public function setField(string $field): self argument
31 return $this->setParam('field', $field);
[all...]
H A DGeoDistance.php24 * @param string $field the field on which to perform this aggregation
27 public function __construct(string $name, string $field, $origin) argument
30 $this->setField($field)->setOrigin($origin);
34 * Set the field for this aggregation.
36 * @param string $field the name of the document field on which to perform this aggregation
40 public function setField(string $field): self argument
42 return $this->setParam('field', $field);
[all...]
H A DGeohashGrid.php19 * @param string $field the field on which to perform this aggregation
21 public function __construct(string $name, string $field) argument
24 $this->setField($field);
28 * Set the field for this aggregation.
30 * @param string $field the name of the document field on which to perform this aggregation
34 public function setField(string $field): self argument
36 return $this->setParam('field', $field);
[all...]
H A DGeotileGridAggregation.php19 * @param string $field the field on which to perform this aggregation
21 public function __construct(string $name, string $field) argument
24 $this->setField($field);
28 * Set the field for this aggregation.
30 * @param string $field the name of the document field on which to perform this aggregation
34 public function setField(string $field): self argument
36 return $this->setParam('field', $field);
[all...]
H A DHistogram.php17 * @param string $field the name of the field on which to perform the aggregation
20 public function __construct(string $name, string $field, $interval) argument
23 $this->setField($field);
42 * @param string $order "_count", "_term", or the name of a sub-aggregation or sub-aggregation response field
H A DIpRange.php18 * @param string $field the field on which to perform this aggregation
20 public function __construct(string $name, string $field) argument
23 $this->setField($field);
27 * Set the field for this aggregation.
29 * @param string $field the name of the document field on which to perform this aggregation
33 public function setField(string $field): self argument
35 return $this->setParam('field', $field);
[all...]
H A DMissing.php14 * @param string $field the field on which to perform this aggregation
16 public function __construct(string $name, string $field) argument
19 $this->setField($field);
23 * Set the field for this aggregation.
25 * @param string $field the name of the document field on which to perform this aggregation
29 public function setField(string $field): self argument
31 return $this->setParam('field', $field);
[all...]
H A DPercentiles.php17 * @param string|null $field the field on which to perform this aggregation
19 public function __construct(string $name, ?string $field = null) argument
23 if (null !== $field) {
24 $this->setField($field);
H A DValueCount.php14 * @param string $field the field on which to perform this aggregation
16 public function __construct(string $name, string $field) argument
19 $this->setField($field);
23 * Set the field for this aggregation.
25 * @param string $field the name of the document field on which to perform this aggregation
29 public function setField(string $field): self argument
31 return $this->setParam('field', $field);
[all...]
H A DWeightedAvg.php21 public function setValue(string $field, $missing = null) argument
24 throw new InvalidException('Weighted Average aggregation with a value mixing field and script is not possible.');
27 $value = ['field' => $field];
43 if ($this->hasParam('value') && isset($this->getParam('value')['field'])) {
44 throw new InvalidException('Weighted Average aggregation with a value mixing field and script is not possible.');
57 public function setWeight(string $field, $missing = null) argument
60 throw new InvalidException('Weighted Average aggregation with a weight mixing field and script is not possible.');
63 $weight = ['field' => $field];
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/
H A DAppendProcessor.php18 * @param string $field field name
19 * @param array|string $value field values to append
21 public function __construct(string $field, $value) argument
23 $this->setField($field);
28 * Set field value.
H A DAttachmentProcessor.php22 public function __construct(string $field) argument
24 $this->setField($field);
H A DBytesProcessor.php15 public function __construct(string $field) argument
17 $this->setField($field);
H A DConvertProcessor.php19 public const DEFAULT_TARGET_FIELD_VALUE = 'field';
22 public function __construct(string $field, string $type) argument
24 $this->setField($field);
29 * Set field value.
H A DDateIndexNameProcessor.php22 public function __construct(string $field, string $dateRounding) argument
24 $this->setField($field);
39 * Set field formats. Joda pattern or one of the following formats ISO8601, UNIX, UNIX_MS, or TAI64N.
H A DDateProcessor.php22 public function __construct(string $field, array $formats) argument
24 $this->setField($field);
29 * Set field format. Joda pattern or one of the following formats ISO8601, UNIX, UNIX_MS, or TAI64N.
H A DDotExpanderProcessor.php17 public function __construct(string $field) argument
19 $this->setField($field);

1...<<11121314151617181920>>...23