Home
last modified time | relevance | path

Searched refs:body (Results 451 – 475 of 1980) sorted by last modified time

1...<<11121314151617181920>>...80

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php91 * @param null $body Optional query body
96 public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface argument
113 $body,
H A DClient.php328 * $params['body'] = (array) The operation definition and data (action-data pairs), separated by newlines (Required)
338 $body = $this->extractArgument($params, 'body');
345 $endpoint->setBody($body);
353 * $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter
362 $body = $this->extractArgument($params, 'body');
368 $endpoint->setBody($body);
375 * $params['body'] = (array) a point-in-time id to close
383 $body
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Db0eaf67e5cce24ef8889bf20951ccec1.asciidoc6 'body' => [
H A Dd0a8a938a2fa913b6fdbc871079a59dd.asciidoc6 'body' => [
H A Dd4b4cefba4318caeba7480187faf2b13.asciidoc8 'body' => [
H A Dd8b2a88b5eca99d3691ad3cd40266736.asciidoc7 'body' => [
H A Dd9474f66970c6955e24b17c7447e7b5f.asciidoc7 'body' => [
H A Ddb6cba451ba562abe953d09ad80cc15c.asciidoc6 'body' => [
H A Ddc15e2373e5ecbe09b4ea0858eb63d47.asciidoc6 'body' => [
H A Ddfef545b1e2c247bafd1347e8e807ac1.asciidoc7 'body' => [
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttpAdapter.php98 $body = null;
112 $body = JSON::stringify($data, \JSON_UNESCAPED_UNICODE);
114 $body = $data;
119 $streamBody = new StringStream($body);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Autoscaling/
H A DPutAutoscalingPolicy.php53 public function setBody($body): PutAutoscalingPolicy argument
55 if (isset($body) !== true) {
58 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DBulk.php77 public function setBody($body): Bulk argument
79 if (isset($body) !== true) {
82 if (is_array($body) === true || $body instanceof Traversable) {
83 foreach ($body as $item) {
84 $this->body .= $this->serializer->serialize($item) . "\n";
86 } elseif (is_string($body)) {
87 $this->body = $body;
88 if (substr($body,
[all...]
H A DCount.php70 return isset($this->body) ? 'POST' : 'GET';
73 public function setBody($body): Count argument
75 if (isset($body) !== true) {
78 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dfutures.asciidoc190 $body = $future[499]['body'];
218 'body' => [
230 'body' => [
H A Dnamespaces.asciidoc67 $params['body'] = array(
82 only requires an index name(s), while the `updateAlias` requires a body of
H A Dserializers.asciidoc8 The job of the serializer is to encode the outgoing request body and decode the
9 incoming response body. In 99% of cases, this is a simple conversion to/from
21 The `SmartSerializer` inspects the data to be encoded. If the request body is
35 When decoding the response body, the `SmartSerializer` introspects the
69 The `ArrayToJSONSerializer` inspects the data to be encoded. If the request body
83 When decoding the response body, everything is decoded to JSON from JSON. If the
125 When decoding the response body, everything is decoded to JSON from JSON. If the
160 * Serialize request body
162 * @param string|array $data Request body
172 * Deserialize response body
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php16 * Creates a cURL handle, header resource, and body resource based on a
23 * response body handle.
51 $body = $this->getOutputBody($request, $options);
54 return [$handle, &$headers, $body];
64 * @param resource $body Body fopen response.
73 $body argument
86 $response['body'] = $body;
132 'body' => null,
140 // Determine where the body o
[all...]
H A DStreamHandler.php64 $response['body'] = $stream;
140 'body' => null,
242 $body = Core::body($request);
243 if (isset($body)) {
244 $context['http']['content'] = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ccr/
H A DForgetFollower.php52 public function setBody($body): ForgetFollower argument
54 if (isset($body) !== true) {
57 $this->body = $body;
H A DPutAutoFollowPattern.php53 public function setBody($body): PutAutoFollowPattern argument
55 if (isset($body) !== true) {
58 $this->body = $body;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php219 * Reads the body of a message into a string.
221 * @param array|FutureArrayInterface $message Array containing a "body" key
223 * @return null|string Returns the body as a string or null if not set.
224 * @throws \InvalidArgumentException if a request body is invalid.
226 public static function body($message) function in GuzzleHttp\\Ring\\Core
228 if (!isset($message['body'])) {
232 if ($message['body'] instanceof StreamInterface) {
233 return (string) $message['body'];
236 switch (gettype($message['body'])) {
238 return $message['body'];
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/DataFrameTransformDeprecated/
H A DPreviewTransform.php47 public function setBody($body): PreviewTransform argument
49 if (isset($body) !== true) {
52 $this->body = $body;
H A DPutTransform.php55 public function setBody($body): PutTransform argument
57 if (isset($body) !== true) {
60 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Enrich/
H A DPutPolicy.php53 public function setBody($body): PutPolicy argument
55 if (isset($body) !== true) {
58 $this->body = $body;

1...<<11121314151617181920>>...80