Home
last modified time | relevance | path

Searched refs:field (Results 126 – 150 of 555) sorted by last modified time

12345678910>>...23

/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/
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);
H A DJsonProcessor.php18 public const DEFAULT_TARGET_FIELD_VALUE = 'field';
21 public function __construct(string $field) argument
23 $this->setField($field);
H A DKvProcessor.php22 public function __construct(string $field, string $fieldSplit, string $valueSplit) argument
24 $this->setField($field);
H A DLowercaseProcessor.php18 public function __construct(string $field) argument
20 $this->setField($field);
H A DRemoveProcessor.php18 * @param array|string $field
20 public function __construct($field) argument
22 $this->setField($field);
26 * Set field.
28 * @param array|string $field
32 public function setField($field): self argument
34 return $this->setParam('field', $field);
H A DTrimProcessor.php18 public function __construct(string $field) argument
20 $this->setField($field);
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.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D8cd00a3aba7c3c158277bc032aac2830.asciidoc16 'field' => 'value',
47 'field' => 'value',
60 'field' => 'value',
71 'field' => 'value',
H A D98b121bf47cebd85671a2cb519688d28.asciidoc10 'field' => 'make',
19 'field' => 'make',
H A D9a8995fd31351045d99c78e40444c8ea.asciidoc10 'field' => 'genre',
H A Dcd5bc5bf7cd58d7b1492c9c298b345f6.asciidoc10 'field' => 'actors',
17 'field' => 'actors',
H A Dd50a3835bf5795ac73e58906a3413544.asciidoc10 'field' => 'product',
H A D028f6d6ac2594e20b78b8a8f8cbad49d.asciidoc10 'field' => 'artist.country',
30 'field' => 'play_count',
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/CandidateGenerator/
H A DDirectGenerator.php25 public function __construct(string $field) argument
27 $this->setField($field);
31 * Set the field name from which to fetch candidate suggestions.
35 public function setField(string $field) argument
37 return $this->setParam('field', $field);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc156 [field] => value
246 [field] => value
H A Dcrud.asciidoc164 changing an existing field or adding new fields).
170 field or add a new one) you can do so by specifying the `doc` in the `body`
219 your update script, but if the document does not exist (or the field you are
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc42 $params['timestamp_field'] = (string) Optional parameter to specify the timestamp field in the file
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
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 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 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
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DWildcard.php24 private $field; variable in Elastica\\Query\\Wildcard
26 public function __construct(string $field, string $value, float $boost = 1.0) argument
28 $this->field = $field;
30 $this->setParam($field, [
38 return $this->field;
43 $data = $this->getParam($this->field);
44 $this->setParam($this->field, \array_merge($data, ['value' => $value]));
51 $data = $this->getParam($this->field);
52 $this->setParam($this->field, \array_merg
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php160 public function value_count(string $name, string $field): ValueCount argument
162 return new ValueCount($name, $field);
171 * @param string|null $field the field on which to perform this aggregation
173 public function percentiles(string $name, ?string $field = null): Percentiles argument
175 return new Percentiles($name, $field);
184 * @param string|null $bucketsPath the field on which to perform this aggregation
291 public function missing(string $name, string $field): Missing argument
293 return new Missing($name, $field);
366 public function ipv4_range(string $name, string $field) argument
380 histogram(string $name, string $field, $interval) global() argument
394 date_histogram(string $name, string $field, $interval) global() argument
408 geo_distance(string $name, string $field, $origin) global() argument
421 geohash_grid(string $name, string $field) global() argument
434 geotile_grid(string $name, string $field) global() argument
[all...]
H A DQuery.php77 public function match(?string $field = null, $values = null): MatchQuery argument
79 return new MatchQuery($field, $values);
120 public function common_terms(string $field, string $query, float $cutoffFrequency): Common argument
124 return new Common($field, $query, $cutoffFrequency);
154 public function distance_feature(string $field, $origin, string $pivot): DistanceFeature argument
156 return new DistanceFeature($field, $origin, $pivot);
276 public function match_phrase(?string $field = null, $values = null): MatchPhrase argument
278 return new MatchPhrase($field, $values);
288 public function match_phrase_prefix(?string $field = null, $values = null): MatchPhrasePrefix argument
290 return new MatchPhrasePrefix($field,
474 terms(string $field, array $terms = []) global() argument
485 terms_set(string $field, array $terms, $minimumShouldMatch) global() argument
495 wildcard(string $field, string $value, float $boost = 1.0) global() argument
505 exists(string $field) global() argument
[all...]
H A DSuggest.php32 public function term(string $name, string $field): Term argument
34 return new Term($name, $field);
42 public function phrase(string $name, string $field): Phrase argument
44 return new Phrase($name, $field);
52 public function completion(string $name, string $field): Completion argument
54 return new Completion($name, $field);

12345678910>>...23