Home
last modified time | relevance | path

Searched refs:terms (Results 1 – 25 of 1146) sorted by relevance

12345678910>>...46

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vault/
H A DHeldGroupsQuery.php33 public $terms; variable in Google\\Service\\Vault\\HeldGroupsQuery
66 public function setTerms($terms) argument
68 $this->terms = $terms;
75 return $this->terms;
H A DHeldMailQuery.php33 public $terms; variable in Google\\Service\\Vault\\HeldMailQuery
66 public function setTerms($terms) argument
68 $this->terms = $terms;
75 return $this->terms;
H A DQuery.php65 public $terms; variable in Google\\Service\\Vault\\Query
272 public function setTerms($terms) argument
274 $this->terms = $terms;
281 return $this->terms;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DTerms.php13 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html
23 * @param list<bool|float|int|string> $terms Terms list, leave empty if building a terms-lookup query
25 public function __construct(string $field, array $terms = []) argument
32 $this->setTerms($terms);
36 * Sets terms for the query.
38 * @param list<bool|float|int|string> $terms
40 public function setTerms(array $terms): self argument
42 return $this->setParam($this->field, $terms);
56 $terms
[all...]
H A DTermsSet.php9 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-set-query.html
19 * @param array<bool|float|int|string> $terms
22 public function __construct(string $field, array $terms, $minimumShouldMatch) argument
29 $this->setTerms($terms);
41 * @param array<bool|float|int|string> $terms
43 public function setTerms(array $terms): self argument
45 return $this->addParam($this->field, $terms, 'terms');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DListPopulationClause.php29 public function setTerms($terms) argument
31 $this->terms = $terms;
38 return $this->terms;
/plugin/bureaucracy-au/script/
H A Duser.js79 var terms = split(this.value);
81 terms.pop();
83 terms.push(ui.item.value);
85 terms.push("");
86 this.value = terms.join(", ");
/plugin/bureaucracyau/script/
H A Duser.js79 var terms = split(this.value);
81 terms.pop();
83 terms.push(ui.item.value);
85 terms.push("");
86 this.value = terms.join(", ");
/plugin/bureaucracy/script/
H A Duser.js79 var terms = split(this.value);
81 terms.pop();
83 terms.push(ui.item.value);
85 terms.push("");
86 this.value = terms.join(", ");
/plugin/data-au/
H A Dscript.js131 var terms = split(this.value);
133 terms.pop();
135 terms.push(ui.item.value);
137 terms.push("");
138 this.value = terms.join(", ");
/plugin/data/
H A Dscript.js131 var terms = split(this.value);
133 terms.pop();
135 terms.push(ui.item.value);
137 terms.push("");
138 this.value = terms.join(", ");
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D7f28f8ae8fcdbd807dadde0b5b007a6d.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:775
9 'terms' => [
15 'terms' => [
H A Dcd5bc5bf7cd58d7b1492c9c298b345f6.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:806
9 'terms' => [
16 'terms' => [
H A D98b121bf47cebd85671a2cb519688d28.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:654
9 'terms' => [
18 'terms' => [
H A D9a8995fd31351045d99c78e40444c8ea.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:57
9 'terms' => [
H A Dd50a3835bf5795ac73e58906a3413544.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:135
9 'terms' => [
H A D527324766814561b75aaee853ede49a7.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:503
9 'terms' => [
H A D774d715155cd13713e6e327adf6ce328.asciidoc1 // aggregations/bucket/terms-aggregation.asciidoc:857
9 'terms' => [
/plugin/recommend/
H A Dscript.js103 let terms = commasplit( this.value );
105 terms.pop();
107 terms.push( ui.item.value );
109 terms.push( "" );
110 this.value = terms.join( ", " );
/plugin/tagging/
H A Dscript.js131 var terms = split(this.value);
133 terms.pop();
135 terms.push(ui.item.value);
137 terms.push('');
138 this.value = terms.join(', ');
/plugin/struct/script/
H A DEntryEditor.js90 var terms = split(this.value);
92 terms.pop();
94 terms.push(ui.item.value);
96 terms.push("");
97 this.value = terms.join(", ");
/plugin/watchcycle/
H A Dscript.js95 const terms = autcmpl_split(this.value);
97 terms.pop();
99 terms.push(ui.item.value);
101 terms.push("");
102 this.value = terms.join(", ");
/plugin/strata/helper/
H A Dtriples.php499 $terms = array();
503 $terms[] = $this->_name($tp['subject']);
508 $terms[] = $this->_name($tp['predicate']);
513 $terms[] = $this->_name($tp['object']);
519 'terms'=>array_unique($terms)
527 // determine the resulting terms
528 $terms = array_unique(array_merge($gp1['terms'], $gp2['terms']));
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyerII/
H A DProduct.php247 public function setTerms(DealTerms $terms) argument
249 $this->terms = $terms;
256 return $this->terms;
/plugin/structautolink/
H A Drenderer.php130 foreach ($this->glossary as $terms) {
131 $terms = array_map('preg_quote_cb', $terms);
132 $patterns[] = '(?P<p' . ($num++) . '>' . join('|', $terms) . ')';

12345678910>>...46