Home
last modified time | relevance | path

Searched refs:values (Results 126 – 150 of 925) sorted by last modified time

12345678910>>...37

/plugin/advanced/lang/en/config/
H A Dmain.txt5 …the ''conf/dokuwiki.php'' file. However this file contains the "default" values of the system. To …
H A Dmanifest.txt8 …- it can be overwritten by values set in a ''manifest.local.json'' in the ''conf'' directory which…
H A Dusers.txt13 To create MD5 hash values from a string you could use the script [[http://www.splitbrain.org/encode…
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMatchPhrase.php16 * @param mixed $values
18 public function __construct(?string $field = null, $values = null) argument
20 if (null !== $field && null !== $values) {
21 $this->setParam($field, $values);
28 * @param mixed $values
32 public function setField(string $field, $values): self argument
34 return $this->setParam($field, $values);
H A DMatchQuery.php24 * @param mixed $values
26 public function __construct(?string $field = null, $values = null) argument
28 if (null !== $field && null !== $values) {
29 $this->setParam($field, $values);
36 * @param mixed $values
40 public function setField(string $field, $values): self argument
42 return $this->setParam($field, $values);
112 * @see Possible values for minimum_should_match https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-minimum-should-match.html
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc19 `ClientBuilder`. The method accepts an array of values, each entry corresponding
75 the parameter list is identical to the return values of a
H A Dper-request-configuration.asciidoc71 values:
105 To do so, add them to the `custom` parameter as an array of values:
H A Dcrud.asciidoc92 'second_field' => 'some more values'
118 'second_field' => 'some more values'
220 trying to update doesn't exist), default values are inserted instead.
H A Dfutures.asciidoc48 your code like a regular object. When you need the result values, you can
50 activity), the values are immediately available. If the future has not resolved
51 yet, the resolution blocks until those values become available (for example,
82 resolves all pending requests and values). This allows patterns such as:
103 // access future's values, causing resolution if necessary
111 If you wish to force future resolution, but don't need the values immediately,
264 However, this is not needed if you access values via the ArrayInterface (for
266 and fully resolves the future to provide values.
H A Dsearch-operations.asciidoc104 with the search results is as simple as iterating over the array values:
H A Dconnecting.asciidoc84 {ref-7x}/security-api-create-api-key.html[here], you can use these values to
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/jobs/
H A Ddefaults.yml40 values:
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc40 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
H A DCatNamespace.asciidoc77 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
116 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
137 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
168 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
176 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
213 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
218 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
239 $params['time'] = (enum) The unit in which to display time values (Options = d,h,m,s,ms,micros,nanos)
256 $params['bytes'] = (enum) The unit in which to display byte values (Options = b,k,kb,m,mb,g,gb,t,tb,p,pb)
261 $params['time'] = (enum) The unit in which to display time values (Option
[all...]
H A DAsyncSearchNamespace.asciidoc97 $params['routing'] = (list) A comma-separated list of specific routing values
H A DMlNamespace.asciidoc316 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DQuery.php75 * @param mixed $values
77 public function match(?string $field = null, $values = null): MatchQuery argument
79 return new MatchQuery($field, $values);
274 * @param mixed|null $values
276 public function match_phrase(?string $field = null, $values = null): MatchPhrase argument
278 return new MatchPhrase($field, $values);
286 * @param mixed|null $values
288 public function match_phrase_prefix(?string $field = null, $values = null): MatchPhrasePrefix argument
290 return new MatchPhrasePrefix($field, $values);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php295 foreach ($options['_headers'] as $name => $values) {
296 foreach ($values as $value) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc164 $params['routing'] = (list) A comma-separated list of specific routing values
245 $params['routing'] = (list) A comma-separated list of specific routing values
751 $params['routing'] = (list) A comma-separated list of specific routing values
798 $params['routing'] = (list) A comma-separated list of specific routing values
876 $params['routing'] = (list) A comma-separated list of specific routing values
/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)
191 * Added `auth_type` parameter in the client class config to specify the type of authentication (allowed values are `basic, digest, gssnegotiate, ntlm`) [#1790](https://github.com/ruflin/Elastica/pull/1790)
214 * Allowed float values for connection timeout and connection connect-timeout, providing ms precision for those. Previous precision was second. [#1868](https://github.com/ruflin/Elastica/pull/1868)
602 - Fix reading bool index settings like `\Elastica\Index\Settings::getBlocksWrite`. Elasticsearch returns all settings as strings and does not normalize bool values.
610 - Added `\Elastica\Aggregation\GeoBounds` that computes the bounding box containing all geo_point values for a field. [#1271](https://github.com/ruflin/Elastica/pull/1271)
673 - Updated Elastica\Test\TypeTest::testGetDocumentWithFieldsSelection The stored_fields parameter will only return stored fields — it will no longer extract values from the _source
1546 - Adapted possible values (not only in) for minimum_should_match param based on elasticsearch documetnation https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-minimum-should-match.html
1984 - Added getParam to Elastica_Result that more values can be retrieved from the hit array
1986 - getMergePolicyMergeFactor and getRefreshInterval to Elastica_Type_Settings added. If no value is set, default values are returned
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractTermsAggregation.php40 * Filter documents to include based on a list of exact values.
44 * @param string[] $values
48 public function setIncludeAsExactMatch(array $values): self argument
50 return $this->setParam('include', $values);
81 * Filter documents to exclude based on a list of exact values.
85 * @param string[] $values
89 public function setExcludeAsExactMatch(array $values): self argument
91 return $this->setParam('exclude', $values);
105 * Instruct Elasticsearch to use direct field data or ordinals of the field values to execute this aggregation.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DREADME.md426 // Depending on what kind of request you do, you may need to set more values here
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md516 will be an array containing the resolution values of each of the items in
552 will be an array of length `$howMany` containing the resolution values of the
570 promises and/or values, and `$mapFunc` may return either a value or a promise.
582 promises and/or values, and `$reduceFunc` may return either a value or a
638 Resolved promises forward resolution values to the next promise.
/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php72 * will be an array containing the resolution values of each of the items in
143 * will be an array of length `$howMany` containing the resolution values of the
187 $values = [];
191 $fulfiller = function ($val) use ($i, &$values, &$toResolve, $toReject, $resolve) {
196 $values[$i] = $val;
199 $resolve($values);
226 * promises and/or values, and `$mapFunc` may return either a value or a promise.
249 $values = [];
253 $values[$i] = null;
258 function ($mapped) use ($i, &$values,
[all...]
/plugin/structnotification/action/
H A Dnotification.php56 protected function getValueByLabel($values, $label) argument
59 foreach ($values as $value) {
66 throw new Exception("column: $label not found in values");
114 $values = $result[$i];
117 $users_set = $this->users_set($users_and_groups, $values);
120 $rawDate = $this->getValueByLabel($values, $field);
122 $message_with_replacements = $this->replacePlaceholders($message, $values);
144 protected function users_set($user_and_groups, $values) {
151 function ($matches) use ($values) {
155 foreach ($values a
142 users_set($user_and_groups, $values) global() argument
219 replacePlaceholders($message, $values) global() argument
[all...]

12345678910>>...37