Home
last modified time | relevance | path

Searched refs:field (Results 101 – 125 of 555) sorted by last modified time

12345678910>>...23

/plugin/odtsupport/
H A Ddokuwiki_plugin_page.wiki4 …he odt plugin. For example, the plugin can pipe wiki page metadata into a field within the ODT res…
79 Relay a properly addressed metadata value of the wiki page into a field in an exported ODT file. (R…
81field that is created will always be named like the addressing metadata string stripped by white s…
83 If the metadata address contains the string 'date', the field will be filled with a formatted date.
85 …the page's "timestamp, date of last modification") and writes it into the field "last_changedate" …
94 …to create an MD2 hash value and write it to an exported ODT file into the field named like the giv…
96 //Example:// <code>{{pagehashtofield>pagecode}}</code> will result in an ODT field with the name "p…
122 …to specify that only the first occurence of them will result in setting a field within an ODT file.
H A Dplugin.info.txt6 …he odt plugin. For example, the plugin can pipe wiki page metadata into a field within the ODT res…
/plugin/edittable/lib/
H A Dhandsontable.full.js35216 options.field = htInput;
50094 field: null,
50505 if (opts.field) {
50511 opts.field.parentNode.insertBefore(self.el, opts.field.nextSibling);
50568 opts.field = (opts.field && opts.field.nodeName) ? opts.field : null;
50572 opts.bound = !!(opts.bound !== undefined ? opts.field && opts.bound : opts.field);
50655 if (this._o.field) {
50682 if (this._o.field) {
50912 field = this._o.trigger;
50913 pEl = field;
[all …]
/plugin/firenews/
H A Dtodo.md10 - [ ] automatic filled author field on off
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D0afaf1cad692e6201aa574c8feb6e622.asciidoc10 'field' => 'tags',
H A D4646764bf09911fee7d58630c72d3137.asciidoc13 'field' => 'genre',
H A D5d9d7b84e2fec7ecd832145cbb951cf1.asciidoc11 'field' => 'account_id',
24 'field' => 'access_date',
H A D645796e8047967ca4a7635a22a876f4c.asciidoc12 'field' => 'state.keyword',
20 'field' => 'balance',
H A D774d715155cd13713e6e327adf6ce328.asciidoc10 'field' => 'tags',
H A D7f28f8ae8fcdbd807dadde0b5b007a6d.asciidoc10 'field' => 'actors',
16 'field' => 'actors',
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
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/Query/
H A DCommon.php29 * @param string $field the field on which to query
33 public function __construct(string $field, string $query, float $cutoffFrequency) argument
35 $this->setField($field);
41 * Set the field on which to query.
43 * @param string $field the field on which to query
47 public function setField(string $field): self argument
49 $this->_field = $field;
H A DDistanceFeature.php12 public function __construct(string $field, $origin, string $pivot) argument
14 $this->setField($field);
19 public function setField(string $field): self argument
21 return $this->setParam('field', $field);
H A DExists.php17 public function __construct(string $field) argument
19 $this->setField($field);
23 * Set field.
27 public function setField(string $field): self argument
29 return $this->setParam('field', $field);
H A DFunctionScore.php116 * @param string $field the document field on which to perform the decay function
129 string $field, argument
139 $field => [
145 $functionParams[$field]['offset'] = $offset;
148 $functionParams[$field]['decay'] = $decay;
162 string $field, argument
170 'field' => $field,
205 * @param string|null $field th
213 addRandomScoreFunction(int $seed, AbstractQuery $filter = null, float $weight = null, string $field = null) global() argument
[all...]
H A DMatchPhrase.php18 public function __construct(?string $field = null, $values = null) argument
20 if (null !== $field && null !== $values) {
21 $this->setParam($field, $values);
32 public function setField(string $field, $values): self argument
34 return $this->setParam($field, $values);
38 * Sets a param for the given field.
44 public function setFieldParam(string $field, string $key, $value): self argument
46 if (!isset($this->_params[$field])) {
47 $this->_params[$field] = [];
50 $this->_params[$field][
60 setFieldQuery(string $field, string $query) global() argument
70 setFieldAnalyzer(string $field, string $analyzer) global() argument
82 setFieldBoost(string $field, float $boost = 1.0) global() argument
[all...]
H A DMatchPhrasePrefix.php18 * Set field max expansions.
24 public function setFieldMaxExpansions(string $field, int $maxExpansions = self::DEFAULT_MAX_EXPANSIONS): self argument
26 return $this->setFieldParam($field, 'max_expansions', $maxExpansions);
H A DPercolate.php20 * The field of type percolator and that holds the indexed queries. This is a required parameter.
24 public function setField(string $field): self argument
26 return $this->setParam('field', $field);
H A DQueryString.php44 * Sets the default field.
47 * If no field is set, _all is chosen
49 * @param string $field Field
53 public function setDefaultField(string $field): self argument
55 return $this->setParam('default_field', $field);
183 * Whether to use bool or dis_max queries to internally combine results for multi field search.
H A DTerms.php20 private $field; variable in Elastica\\Query\\Terms
25 public function __construct(string $field, array $terms = []) argument
27 if ('' === $field) {
28 throw new InvalidException('Terms field name has to be set');
31 $this->field = $field;
42 return $this->setParam($this->field, $terms);
56 $terms = $this->getParam($this->field);
62 return $this->addParam($this->field, $term);
67 return $this->setParam($this->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.

12345678910>>...23