Home
last modified time | relevance | path

Searched refs:headers (Results 76 – 100 of 443) sorted by last modified time

12345678910>>...18

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php175 if ($this->_config->has('headers')) {
176 $headers = $this->_config->get('headers');
178 $headers = [];
180 $headers[$header] = $value;
181 $this->_config->set('headers', $headers);
191 if ($this->_config->has('headers')) {
192 $headers = $this->_config->get('headers');
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
H A DSmartSerializer.php54 public function deserialize(?string $data, array $headers) argument
56 if (isset($headers['content_type']) === true) {
57 if (strpos($headers['content_type'], 'json') !== false) {
64 //No content headers, assume json
H A DArrayToJSONSerializer.php53 public function deserialize(?string $data, array $headers) argument
H A DEverythingToJSONSerializer.php49 public function deserialize(?string $data, array $headers) argument
H A DSerializerInterface.php35 * @param array $headers Response Headers
38 public function deserialize(?string $data, array $headers); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc129 information (for example, stats about the transfer, headers, status codes, and
221 [headers] => Array
H A Dserializers.asciidoc36 `content_type` headers to determine the appropriate encoding. If the data is
175 * @param array $headers Response Headers
179 public function deserialize($data, $headers)
H A Dhttp-meta-data.asciidoc5 custom headers.
49 `Content-Type` and `Accept`. The PHP client can be configured to emit the following HTTP headers:
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php109 $headersConfig = $connection->hasConfig('headers') ? $connection->getConfig('headers') : [];
111 $headers = [];
115 $headers[] = $header.': '.$headerValue;
123 $headers[] = 'Content-Type: '.$request->getContentType();
144 $headers[] = 'Content-Encoding: gzip';
152 \curl_setopt($conn, \CURLOPT_HTTPHEADER, $headers);
H A DHttpAdapter.php100 $headers = $connection->hasConfig('headers') ?: [];
121 return new HttpAdapterRequest($url, $method, HttpAdapterRequest::PROTOCOL_VERSION_1_1, $headers, $streamBody);
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DREADME.md27 'headers' => [
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php22 * @return array Returns an array of the curl handle, headers array, and
28 $headers = [];
29 $options = $this->getDefaultOptions($request, $headers);
54 return [$handle, &$headers, $body];
63 * @param array $headers Headers received during transfer.
72 array $headers, argument
79 if (!empty($headers)) {
80 $startLine = explode(' ', array_shift($headers), 3);
81 $headerList = Core::headersFromLines($headers);
82 $response['headers']
157 getDefaultOptions(array $request, array& $headers) global() argument
[all...]
H A DStreamHandler.php50 'headers' => Core::headersFromLines($hdrs),
141 'headers' => [],
195 $request['headers']['Connection'] = ['close'];
225 $headers = "";
226 foreach ($request['headers'] as $name => $value) {
228 $headers .= "$name: $val\r\n";
235 'header' => $headers,
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
H A DCore.php34 * This method searches through the "headers" key of a message for a header
46 if (!empty($message['headers'])) {
47 foreach ($message['headers'] as $name => $value) {
60 * This method searches through the "headers" key of a message for a header
87 if (!empty($message['headers'])) {
88 foreach ($message['headers'] as $name => $value) {
110 if (!empty($message['headers'])) {
111 foreach ($message['headers'] as $name => $value) {
122 * Parses an array of header lines into an associative array of headers.
130 $headers
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md415 - [TEST] Support headers in yaml runner, do some bad-comment cleaning [[57b5489]](http://github.com/elasticsearch/elasticsearch-php/commit/57b5489)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DCatNamespace.asciidoc61 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
83 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
101 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
120 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
139 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
177 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
198 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
219 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
240 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
262 $params['v'] = (boolean) Verbose mode. Display column headers (Defaul
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md785 - Set HTTP headers on each request preventing server error if persistent connection is enabled and compression enabled and later disabled for the same connection.
1745 - Elastica_Client config param "servers" to "connections" renamed. "headers" and "curl" are now a config param inside "connections"
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php97 protected $headers = []; variable in Elasticsearch\\Connections\\Connection
147 if (isset($connectionParams['client']['headers']['Authorization']) === false
158 if (isset($connectionParams['client']['headers'])) {
159 $this->headers = $connectionParams['client']['headers'];
160 unset($connectionParams['client']['headers']);
164 $this->headers['User-Agent'] = [sprintf(
174 $this->headers['x-elastic-client-meta'] = [$this->getElasticMetaHeader($connectionParams)];
210 $headers = $this->headers;
[all...]
/plugin/structnotification/
H A Dadmin.php17 protected $headers = ['schema', 'field', 'operator', 'value', 'users_and_groups', 'message']; variable in admin_plugin_structnotification
76 }, $this->headers));
108 foreach ($this->headers as $header) {
131 foreach ($this->headers as $header) {
/plugin/ckgedit/ckeditor/
H A DCHANGES.md9 …om/ckeditor/ckeditor-dev/issues/1397): Fixed: Using the dialog to remove headers from a [table](ht…
247 …now upload files using XHR requests. This allows for setting custom HTTP headers using the [`confi…
458 * [#16833](https://dev.ckeditor.com/ticket/16833): [IE11] Fixed: Malformed list with headers [paste…
H A DLICENSE.md1369 included either as stand-alone text files, human-readable headers or
H A Dget_headers.php36 $headers = array(); variable
43 if(isset($headers[$matches[1]])) {
44 $headers[$matches[1]]++;
45 $suffix_anchor = $headers[$matches[1]];
49 $headers[$matches[1]]=0;
/plugin/ckgedit/ckeditor/plugins/headerbuttons/
H A Dplugin.js89 var headers = ['h1','h2','h3','h4','h5','h6'];
104 if (headers.indexOf(nodeType) != -1) {
/plugin/ckgedit/ckeditor/lang/
H A Den.4.9.js.beautified691 "headers": "Headers",
809 …rom Dokuwiki headers, click on the Get Headings button, select the header, click OK. You can go ba…
H A Den.js-4.9.merged5 …umn":"Delete Columns"},"columns":"Columns","deleteTable":"Delete Table","headers":"Headers","heade…
66 …rom Dokuwiki headers, click on the Get Headings button, select the header, click OK. You can go ba…

12345678910>>...18