Home
last modified time | relevance | path

Searched refs:method (Results 351 – 375 of 972) sorted by path

1...<<11121314151617181920>>...39

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhttp-meta-data.asciidoc20 method, as follows:
H A Dindex-operations.asciidoc265 available method calls (as well as parameter lists in the comments for each
266 method).
H A Dinstallation.asciidoc91 When you are done configuring, call the `build()` method to generate a `Client`
H A Dnamespaces.asciidoc44 just like any other method in the library.
H A Doverview.asciidoc7 All methods closely match the REST API, and furthermore, match the method
H A Dper-request-configuration.asciidoc83 > No handler found for uri [/test_missing/test/] and method [GET]
H A Dsearch-operations.asciidoc51 A quick method to check your PHP array (for more complex examples) is to encode
H A Dselectors.asciidoc137 Selectors can be changed via the `setSelector()` method:
H A Dserializers.asciidoc49 method on the `ClientBuilder` object:
90 You can select `ArrayToJSONSerializer` by using the `setSerializer()` method on
118 If the data was not an array and/or not convertible to JSON, the method returns
133 method on the ClientBuilder object:
188 `setSerializer()` method of the `ClientBuilder` object:
217 `setSerializer()` method:
H A Dset-retries.asciidoc11 the `setRetries()` method:
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A Dphpstan.neon6 - '#Call to static method performRequest\(\) on trait#'
9 - '#Call to method getCode\(\) on an unknown class JsonException#'
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php183 * should correspond to the method name e.g. ['connectionPool']
200 $method = "set$key";
202 if ($reflection->hasMethod($method)) {
203 $func = $reflection->getMethod($method);
205 $builder->$method(...$value);
207 $builder->$method($value);
H A DTransport.php88 * @param string $method HTTP method to use
96 public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface argument
110 $method,
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php196 * @param string $method
204 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument
221 'http_method' => $method,
404 'method' => $request['http_method'],
421 'method' => $request['http_method'],
448 'method' => $request['http_method'],
466 'method' => $request['http_method'],
648 private function buildCurlCommand(string $method, string $url, ?string $body): string argument
656 $curlCommand = 'curl -X' . strtoupper($method);
H A DConnectionInterface.php78 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php52 protected $method = null; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst26 ``eof()`` method when the stream is consumed.
54 * Added ``flush()`` to ``StreamInterface``. This method is used to flush any
88 * Updated the ``detach()`` method to return the underlying stream resource or
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStreamDecoratorTrait.php21 * Magic method used to create a new stream if streams are not added in
55 * @param string $method Missing method name
60 public function __call($method, array $args) argument
62 $result = call_user_func_array(array($this->stream, $method), $args);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php21 ->method('isReadable')
38 ->method('isReadable')
41 ->method('isSeekable')
44 ->method('seek')
129 ->method('isSeekable')
132 ->method('isReadable')
143 ->method('read')
146 ->method('isReadable')
149 ->method('eof')
H A DCachingStreamTest.php60 ->method('seek')
H A DGuzzleStreamWrapperTest.php68 ->method('isReadable')
71 ->method('isWritable')
88 ->method('isReadable')
91 ->method('isWritable')
H A DNoSeekStreamTest.php19 $s->expects($this->never())->method('seek');
20 $s->expects($this->never())->method('isSeekable');
H A DStreamDecoratorTraitTest.php40 ->method('read')
H A DUtilsTest.php106 ->method('read')
116 ->method('eof')
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DStreamHandler.php208 $method = "add_{$key}";
209 if (isset($methods[$method])) {
210 $this->{$method}($request, $options, $value, $params);
234 'method' => $request['http_method'],

1...<<11121314151617181920>>...39