Home
last modified time | relevance | path

Searched refs:Term (Results 1 – 14 of 14) sorted by relevance

/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DSuggest.php8 use Elastica\Suggest\Term; alias
32 public function term(string $name, string $field): Term
34 return new Term($name, $field);
H A DQuery.php46 use Elastica\Query\Term; alias
464 public function term(array $term = []): Term
466 return new Term($term);
/plugin/elasticsearch/action/
H A Dsearch.php150 $term = new \Elastica\Query\Term();
223 $eterm = new \Elastica\Query\Term();
323 $term = new \Elastica\Query\Term();
329 $term = new \Elastica\Query\Term();
339 $term = new \Elastica\Query\Term();
349 $term = new \Elastica\Query\Term();
/plugin/dwcommits/lang/en/
H A Ddwc_admin.txt95 There are six fields: Term 1, Term 2, Author, Branch, Start Date, End Date.
98 You can search for Term 1, for Term 1 AND/OR Term 2, for Author, AND/Or Author. You can restrict …
101 The Term and Author search is "fuzzy" and case insensitive. If you are looking for an author nam…
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DTerm.php6 * Term query.
12 class Term extends AbstractQuery class
26 * @param array $term Term array
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/
H A DTerm.php6 * Class Term.
10 class Term extends AbstractSuggest class
/plugin/ckgedit/ckeditor/plugins/scayt/
H A DREADME.md56 * Term of Service: https://webspellchecker.com/terms-of-service/
/plugin/diagramsnet/lib/stencils/
H A DLICENSE26 Term. The term of this Public License is specified in Section 6(a).
74 Section 6 – Term and Termination.
/plugin/diagramsnet/lib/templates/
H A DLICENSE26 Term. The term of this Public License is specified in Section 6(a).
74 Section 6 – Term and Termination.
/plugin/diagramsnet/lib/img/
H A DLICENSE26 Term. The term of this Public License is specified in Section 6(a).
74 Section 6 – Term and Termination.
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js25995 var Term = /** @class */ (function (_super) { function
25996 __extends(Term, _super);
25997 function Term(offset, length) { function
26000 Object.defineProperty(Term.prototype, "type", {
26002 return NodeType.Term;
26007 Term.prototype.setOperator = function (value) { class
26010 Term.prototype.getOperator = function () {
26013 Term.prototype.setExpression = function (value) {
26016 Term.prototype.getExpression = function () {
26019 return Term;
[all …]
H A D4.4.js1Term=24]="Term",e[e.Operator=25]="Operator",e[e.Value=26]="Value",e[e.StringLiteral=27]="StringLit…
H A D2.2.js.map1Term) {\n return false;\n }\n var candidateColor = node.getText().toLower…
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md80 * Fixed `Term::setTerm()` PHPDoc allowing scalar values for `$value` parameter by @franmomu [#2094](https://github.com/ruflin/Elastica/pull/2094)
323 * Renamed `\Elastica\Suggest\Term` deprecated option `prefix_len` to `prefix_length` [#1707](https://github.com/ruflin/Elastica/pull/1707)
437 * implemented ```string_distance``` option in Term Suggestion [#1543](https://github.com/ruflin/Elastica/pull/1543)
1504 - Refactor suggest implementation (\Elastica\Suggest, \Elastica\Suggest\AbstractSuggest, and \Elastica\Suggest\Term) to more closely resemble query implementation. (BC break)