Home
last modified time | relevance | path

Searched refs:object (Results 276 – 300 of 1568) sorted by last modified time

1...<<11121314151617181920>>...63

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dcrud.asciidoc74 in PHP, the process is similar. You first create an action array object (for
75 example, an `index` object), then you create a document body object. This
H A Dfutures.asciidoc48 your code like a regular object. When you need the result values, you can
H A Dlogger.asciidoc31 Once Monolog (or another logger) is installed, you need to create a log object
44 ->build(); // Build the client object
H A Dserializers.asciidoc28 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request
49 method on the `ClientBuilder` object:
76 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request
91 the `ClientBuilder` object:
115 JSON from an empty array (`[]`) to an empty object (`{}`) so that it is valid
133 method on the ClientBuilder object:
151 single Serializer object for all endpoints and all connections.
188 `setSerializer()` method of the `ClientBuilder` object:
198 that should occur before given to the client, you can instantiate an object and
H A Dindex-operations.asciidoc12 from other methods that are on the root client object. As an example, let's
H A Drelease-notes.asciidoc125 * Fixed using object instead of array in onFailure transport event
H A Dselectors.asciidoc120 You can then use your custom selector either via object injection or namespace
128 ->setSelector($mySelector) // object injection
H A Dcommunity.asciidoc35 Feature complete, object oriented, composable, extendable {es} query DSL builder
65 - Uses Doctrine-like document / entities document-object mapping using
H A Dconfiguration.asciidoc9 the ClientBuilder helper object. You can find all the configuration options and
H A Dconnecting.asciidoc229 object (indexing, searching, getting, etc). Index and cluster management are
H A Dconnection-factory.asciidoc11 do so, you need to supply an intact ConnectionFactory object to the
12 `setConnectionFactory()` method. The object should implement the
37 // Code here...must return a Connection object
H A Dconnection-pool.asciidoc4 The connection pool is an object inside the client that is responsible for
42 you may do so with the `setConnectionPool()` method of the ClientBuilder object:
197 If your constructor matches AbstractConnectionPool, you may use either object
205 ->setConnectionPool($myConnectionPool, []) // object injection
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md54 - Fixed using object instead of array in onFailure transport event
H A DLICENSE-APACHE32 not limited to compiled object code, generated documentation,
H A DLICENSE-LGPL45 complete object files to the recipients, so that they can relink them
233 derivative of it, under Section 2) in object code or executable form
239 If distribution of object code is made by offering access to copy
243 compelled to copy the source along with the object code.
258 that is part of the Library, the object code for the work may be a
264 If such an object file uses only numerical parameters, data
266 functions (ten lines or less in length), then the use of the object
268 work. (Executables containing this object code plus portions of the
272 distribute the object code for the work under the terms of Section 6.
297 uses the Library", as object cod
[all...]
H A DREADME.md457 You'll also notice that the client is configured in a manner that facilitates easy discovery via the IDE. All core actions are available under the `$client` object (indexing, searching, getting, etc.). Index and cluster management are located under the `$client->indices()` and `$client->cluster()` objects, respectively.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc560 $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false)
719 $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false)
804 $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false)
H A DClientBuilder.asciidoc446 Build and returns the Client object
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DRollupNamespace.asciidoc129 $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false)
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md302 * Fixed handling of Search::OPTION_SEARCH_IGNORE_UNAVAILABLE inside Scroll object
365 * hits.total is now an object in the search response [hits.total](https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking-changes-7.0.html#_literal_hits_total_literal_is_now_an_object_in_the_search_response)
813 - Added the concept of ResultSet Transformers. The Transformer adds more information to a Result, for example the original object or data that created the Result. [#1066](https://github.com/ruflin/Elastica/pull/1066)
820 - Properties on \Elastica\ResultSet _totalHits, _maxScore, _took and _timedOut that were originally set on object construction are now accessed by the getters on the ResultSet. [#1065](https://github.com/ruflin/Elastica/pull/1065)
880 - Revert getError changes in Response object and make it better BC compatible. See comment [here](https://github.com/ruflin/Elastica/commit/41a7a2075837320bc9bd3bca4150e05a1ec9a115#commitcomment-15136374).
930 - Remove \Elastica\Index\Status object and related functions
941 - Elastica\Reponse::getErrorMessage was added as getError is now an object
983 you work with params on "low-level" or change your objects after you call setter with object
1083 - Index optimize method to return Response object. [#797](https://github.com/ruflin/Elastica/issues/797/)
1321 - Remove useless echo in the Memcache Transport object [#59
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DCHANGELOG.md30 object:
H A DREADME.md154 and you will get a new object back.
/plugin/elasticsearch/vendor/react/promise/
H A DCHANGELOG.md66 * Fix: Fix checking whether cancellable promise is an object and avoid possible warning.
155 Any object that provides a `then()` method is now assimilated to a trusted
H A DREADME.md480 If `$promiseOrValue` is a thenable (any object that provides a `then()` method),
799 // Transform API results to an object
805 $object = json_decode($jsonErrorString);
806 throw new ApiErrorException($object->errorMessage);
815 // Consume transformed object
/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php11 * If `$promiseOrValue` is a thenable (any object that provides a `then()` method),
324 function _checkTypehint(callable $callback, $object) argument
326 if (!\is_object($object)) {
352 return $expectedException->getClass()->isInstance($object);
385 if (!($matches = ($typeToMatch->isBuiltin() && \gettype($object) === $typeToMatch->getName())
386 || (new \ReflectionClass($typeToMatch->getName()))->isInstance($object))) {
391 $matches = ($type->isBuiltin() && \gettype($object) === $type->getName())
392 || (new \ReflectionClass($type->getName()))->isInstance($object);

1...<<11121314151617181920>>...63