Home
last modified time | relevance | path

Searched refs:parameter (Results 26 – 50 of 234) sorted by last modified time

12345678910

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc49 If you need that behavior, you can configure an `ignore` parameter. You can
50 configure it in the `client` parameter of the request array. For instance, the
101 in Elasticsearch-php, which is to protect you from specifying a parameter which
105 To do so, add them to the `custom` parameter as an array of values:
114 'parent' => 'abc', // allowlisted Elasticsearch parameter
131 enabled via the `verbose` parameter in the client options.
256 `connect_timeout` parameter controls how long curl should wait for the "connect"
257 phase to finish, while the `timeout` parameter controls how long curl should
294 parameter in the client options:
322 on a specific request, you can specify it via the `verify` parameter i
[all...]
H A Dcrud.asciidoc171 parameter. This merges the fields in `doc` with the existing document.
H A Dindex-operations.asciidoc29 located in the 'body' parameter:
265 available method calls (as well as parameter lists in the comments for each
H A Drelease-notes.asciidoc284 * Reintroduced the optional parameter in
311 * added `wait_for_active_shards` parameter to `indices.close` API;
312 * added `expand_wildcards` parameter to `cluster.health` API;
H A Dsearch-operations.asciidoc7 The client gives you full access to every query and parameter exposed by the
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DBREAKING_CHANGES.md3 - Using a deprecated parameter is notified triggering a [E_USER_DEPRECATED](https://www.php.net/manual/en/errorfunc.constants.php)
4 error (e.g. using the `type` parameter will generate a `Specifying types in urls has been deprecated`
H A DCHANGELOG.md174 - Reintroduced the optional parameter in `Elasticsearch\Namespaces\IndicesNamespace::getAliases()`.
193 - added `wait_for_active_shards` parameter to `indices.close` API;
194 - added `expand_wildcards` parameter to `cluster.health` API;
271 - Added `seq_no_primary_term` parameter in `bulk` endpoint [#884](https://github.com/elastic/elasticsearch-php/pull/884)
355 - Add verify as acceptable query string parameter for createRepository (#665) [[885bfea]](http://github.com/elasticsearch/elasticsearch-php/commit/885bfea)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc34 $params['charset'] = (string) Optional parameter to specify the character set of the file
35 $params['format'] = (enum) Optional parameter to specify the high level file format (Options = ndjson,xml,delimited,semi_structured_text)
36 $params['has_header_row'] = (boolean) Optional parameter to specify whether a delimited file includes the column names in its first row
37 $params['column_names'] = (list) Optional parameter containing a comma separated list of the column names for a delimited file
38 $params['delimiter'] = (string) Optional parameter to specify the delimiter character for a delimited file - must be a single character
39 $params['quote'] = (string) Optional parameter to specify the quote character for a delimited file - must be a single character
40 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
41 $params['grok_pattern'] = (string) Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file
42 $params['timestamp_field'] = (string) Optional parameter to specify the timestamp field in the file
43 $params['timestamp_format'] = (string) Optional parameter t
[all...]
H A DMlNamespace.asciidoc310 $params['charset'] = (string) Optional parameter to specify the character set of the file
311 $params['format'] = (enum) Optional parameter to specify the high level file format (Options = ndjson,xml,delimited,semi_structured_text)
312 $params['has_header_row'] = (boolean) Optional parameter to specify whether a delimited file includes the column names in its first row
313 $params['column_names'] = (list) Optional parameter containing a comma separated list of the column names for a delimited file
314 $params['delimiter'] = (string) Optional parameter to specify the delimiter character for a delimited file - must be a single character
315 $params['quote'] = (string) Optional parameter to specify the quote character for a delimited file - must be a single character
316 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
317 $params['grok_pattern'] = (string) Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file
318 $params['timestamp_field'] = (string) Optional parameter to specify the timestamp field in the file
319 $params['timestamp_format'] = (string) Optional parameter t
[all...]
H A DIndicesNamespace.asciidoc121 $params['fields'] = (list) A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc130 $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter
720 $params['body'] = (array) The scroll ID if not passed by URL or query parameter.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md65 * Deprecated `Elastica\Reindex::WAIT_FOR_COMPLETION_FALSE`, use a boolean as parameter instead by @franmomu [#2070](https://github.com/ruflin/Elastica/pull/2070)
80 * 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)
359 * \Elastica\AbstractUpdateAction::getOptions( $fields ) no longer supports the $underscore parameter, option names must match what elasticsearch expects.
363 * The parameter [fields](https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking-changes-7.0.html#_the_parameter_literal_fields_literal_deprecated_in_6_x_has_been_removed_from_bulk_request) deprecated in 6.x has been removed from Bulk requestedit and Update request.
388 * Added request method parameter to `Elastica\SearchableInterface->search()` and `Elastica\SearchableInterface->count()`. Same for `Elastica\Search`[#1441](https://github.com/ruflin/Elastica/issues/1441)
441 * Using `Elastica\Query\FunctionScore::addRandomScoreFunction` without `$field` parameter is deprecated since ES 6.0 and will fail since ES 7.0 [#1522](https://github.com/ruflin/Elastica/pull/1522)
522 - In QueryString is not allowed to use fields parameters in conjunction with default_field parameter. This is not well documented, it's possibile to understand from [Elasticsearch tests : QueryStringQueryBuilderTests.java](https://github.com/elastic/elasticsearch/blob/6.0/core/src/test/java/org/elasticsearch/index/query/QueryStringQueryBuilderTests.java#L917) [#1352](https://github.com/ruflin/Elastica/pull/1352)
531 - The deprecated minimum_number_should_match parameter in the bool query has been removed, use minimum_should_match instead. [#1369](https://github.com/ruflin/Elastica/pull/1369)
532 - For geo_distance queries, sorting, and aggregations the sloppy_arc option has been removed from the distance_type parameter
[all...]
/plugin/ckgedit/ckeditor/
H A DCHANGES.md131 …ools.html#method-constructor) constructor accepts an additional `rules` parameter allowing to bind…
132 …tor.html#method-getCommandKeystroke) method accepts an additional `all` parameter allowing to retr…
440 * [#16937](https://dev.ckeditor.com/ticket/16937): The `command` parameter in [`CKEDITOR.editor.get…
514 * [#16639](https://dev.ckeditor.com/ticket/16639): The `callback` parameter in the [`CKEDITOR.ajax.…
636 …lement.html#method-removeAttribute) method does not remove all attributes if no parameter is given.
701 …lugin dialog does not display the subject of email links if the subject parameter is not lowercase.
718 …eated with `bender.tools.createTestsForEditors` will also receive editor bot as a second parameter.
882parameter so it is possible to change the paste position in the listener or paste in the not selec…
967 …keditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-getData) parameter documentation.
1127 * [#11909](https://dev.ckeditor.com/ticket/11909): Introduced a parameter to prevent the [`editor.s…
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DProperty.php301 foreach($this->parameters as $parameter) {
302 if ($parameter->name === 'VALUE') {
305 $parameters[strtolower($parameter->name)] = $parameter->jsonSerialize();
353 foreach($this->parameters as $parameter) {
354 if ($parameter->name == $name) return true;
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js11635 component.renderDrag(// called without a seg parameter
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md39 * #216: `ENCODING` parameter is now validated for all document types.
238 * Fixed: Issue #70. Casting a parameter with a null value to string would fail.
303 * Added: Parameter::has() for easily checking if a parameter value exists.
363 * Fixed: Iterating parameter values should now fully work as expected.
409 * Added: Decoding RFC6868 parameter values (uses ^ as an escape character).
449 * Fixed: #94: Better parameter escaping.
464 * Fixed: Issue #65. Putting quotes around parameter values that contain a colon.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3FulfillmentSetParameterAction.php25 public $parameter; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
34 public function setParameter($parameter) argument
36 $this->parameter = $parameter;
43 return $this->parameter;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DTag.php305 public function setParameter($parameter) argument
307 $this->parameter = $parameter;
314 return $this->parameter;
H A DTrigger.php337 public function setParameter($parameter) argument
339 $this->parameter = $parameter;
346 return $this->parameter;
H A DVariable.php203 public function setParameter($parameter) argument
205 $this->parameter = $parameter;
212 return $this->parameter;
H A DCondition.php33 public function setParameter($parameter) argument
35 $this->parameter = $parameter;
42 return $this->parameter;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Connectors/
H A DInputParameter.php41 public $parameter; variable in Google\\Service\\Connectors\\InputParameter
102 public function setParameter($parameter) argument
104 $this->parameter = $parameter;
111 return $this->parameter;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md214 Removed the `asArray` parameter from
696 3.7 introduces `request.options` as a parameter for a client configuration and as an optional argum…
730 …resource, string, or EntityBody into the $options parameter to specify the download location of th…
790 * Removed the optional $asString parameter from MessageInterface::getHeader(). Just cast the header…
842 Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl o…
892 ### Query parameter aggregation
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DNewRelicHandler.php99 foreach ($record['formatted']['context'] as $key => $parameter) {
100 if (is_array($parameter) && $this->explodeArrays) {
101 foreach ($parameter as $paramKey => $paramValue) {
105 $this->setNewRelicParameter('context_' . $key, $parameter);
111 foreach ($record['formatted']['extra'] as $key => $parameter) {
112 if (is_array($parameter) && $this->explodeArrays) {
113 foreach ($parameter as $paramKey => $paramValue) {
117 $this->setNewRelicParameter('extra_' . $key, $parameter);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Reports/
H A DActivityEventsParametersMultiMessageValue.php29 public function setParameter($parameter) argument
31 $this->parameter = $parameter;
38 return $this->parameter;

12345678910