Home
last modified time | relevance | path

Searched refs:body (Results 501 – 525 of 1980) sorted by last modified time

1...<<21222324252627282930>>...80

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ingest/
H A DSimulate.php50 return isset($this->body) ? 'POST' : 'GET';
53 public function setBody($body): Simulate argument
55 if (isset($body) !== true) {
58 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/License/
H A DPost.php49 public function setBody($body): Post argument
51 if (isset($body) !== true) {
54 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ml/
H A DPutJob.php58 public function setBody($body): PutJob argument
60 if (isset($body) !== true) {
63 $this->body = $body;
H A DPutTrainedModel.php55 public function setBody($body): PutTrainedModel argument
57 if (isset($body) !== true) {
60 $this->body = $body;
H A DStartDataFrameAnalytics.php54 public function setBody($body): StartDataFrameAnalytics argument
56 if (isset($body) !== true) {
59 $this->body = $body;
H A DStopDataFrameAnalytics.php56 public function setBody($body): StopDataFrameAnalytics argument
58 if (isset($body) !== true) {
61 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DPutScript.php63 public function setBody($body): PutScript argument
65 if (isset($body) !== true) {
68 $this->body = $body;
H A DRankEval.php53 return isset($this->body) ? 'POST' : 'GET';
56 public function setBody($body): RankEval argument
58 if (isset($body) !== true) {
61 $this->body = $body;
H A DReindex.php56 public function setBody($body): Reindex argument
58 if (isset($body) !== true) {
61 $this->body = $body;
H A DScroll.php36 @trigger_error('A scroll id can be quite large and should be specified as part of the body', E_USER_DEPRECATED);
56 return isset($this->body) ? 'POST' : 'GET';
59 public function setBody($body): Scroll argument
61 if (isset($body) !== true) {
64 $this->body = $body;
H A DSearch.php99 return isset($this->body) ? 'POST' : 'GET';
102 public function setBody($body): Search argument
104 if (isset($body) !== true) {
107 $this->body = $body;
H A DSearchMvt.php63 return isset($this->body) ? 'POST' : 'GET';
66 public function setBody($body): SearchMvt argument
68 if (isset($body) !== true) {
71 $this->body = $body;
H A DSearchTemplate.php69 return isset($this->body) ? 'POST' : 'GET';
72 public function setBody($body): SearchTemplate argument
74 if (isset($body) !== true) {
77 $this->body = $body;
H A DClearScroll.php36 @trigger_error('A scroll id can be quite large and should be specified as part of the body', E_USER_DEPRECATED);
57 public function setBody($body): ClearScroll argument
59 if (isset($body) !== true) {
62 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Rollup/
H A DPutJob.php52 public function setBody($body): PutJob argument
54 if (isset($body) !== true) {
57 $this->body = $body;
H A DRollup.php56 public function setBody($body): Rollup argument
58 if (isset($body) !== true) {
61 $this->body = $body;
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md168 * Included `Content-Type` HTTP header every time, whatever the content of the body is [#1780](https://github.com/ruflin/Elastica/pull/1780)
537 - [Analyze Explain](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/_explain_analyze.html) no more support [request parameters](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/indices-analyze.html), use request body instead. [#1370](https://github.com/ruflin/Elastica/pull/1370)
564 - Send the `scroll_id` inside a json body instead of plain text [#1325](https://github.com/ruflin/Elastica/pull/1325)
1377 - Fixed request body reuse in http transport [#567](https://github.com/ruflin/Elastica/issues/567/)
1488 - Always send scroll_id via HTTP body instead of as a query param
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/SearchableSnapshots/
H A DMount.php59 public function setBody($body): Mount argument
61 if (isset($body) !== true) {
64 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Security/
H A DChangePassword.php54 public function setBody($body): ChangePassword argument
56 if (isset($body) !== true) {
59 $this->body = $body;
/plugin/elasticsearch/helper/
H A Ddocparser.php32 'body' => 'content',
176 * Return the language the given body was written in
180 * @param string $body
185 protected function detectLanguage($body) argument
195 $langs = array_keys($ld->detect($body)->whitelist(...$trans->translations)->close());
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dindex-operations.asciidoc28 creation API. All parameters that would normally go in the request body are
29 located in the 'body' parameter:
36 'body' => [
75 'body' => [
113 'body' => [
162 'body' => [
204 'body' => [
H A Drelease-notes.asciidoc45 * Update search iterators to send `scroll_id` inside the request body
139 * Moved `scroll_id` into `body` for search operations in the documentation
214 a `Traversable` body for some endpoints (for example, Bulk, Msearch,
348 * Fixed scroll TTL is extracted but not set as a body param
H A Dsearch-operations.asciidoc35 'body' => [
50 JSON request body. This makes it very simple to convert JSON examples into PHP.
58 'body' => [
67 print_r(json_encode($params['body']));
78 migrating from a different system. You can use raw JSON as a string in the body,
93 'body' => $json
110 'body' => [
161 'body' => [
216 'body' => [
251 {ref-7x}/search-request-body
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ccr/
H A DResumeFollow.php52 public function setBody($body): ResumeFollow argument
54 if (isset($body) !== true) {
57 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cluster/
H A DAllocationExplain.php47 return isset($this->body) ? 'POST' : 'GET';
50 public function setBody($body): AllocationExplain argument
52 if (isset($body) !== true) {
55 $this->body = $body;

1...<<21222324252627282930>>...80