Home
last modified time | relevance | path

Searched refs:source (Results 801 – 825 of 1655) sorted by path

1...<<31323334353637383940>>...67

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Dfeefeb68144002fd1fff57b77b95b85e.asciidoc3 [source, php]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dexperimental-beta-apis.asciidoc29 [source,php]
40 [source,php]
53 [source,php]
64 [source,php]
H A Dfutures.asciidoc31 [source,php]
63 [source,php]
84 [source,php]
114 [source,php]
144 [source,php]
163 [source,php]
200 [source,php]
H A Dhelpers.asciidoc23 [source,php]
59 [source,php]
H A Dhost-config.asciidoc23 [source,php]
41 [source,php]
78 [source,php]
H A Dhttp-handler.asciidoc20 [source,php]
H A Dhttp-meta-data.asciidoc22 [source,php]
39 [source,php]
51 [source]
67 [source,php]
H A Dindex-operations.asciidoc15 [source,php]
31 [source,php]
71 [source,php]
146 [source,php]
158 [source,php]
180 [source,php]
199 [source,php]
231 [source,php]
258 [source,php]
H A Dinstallation.asciidoc55 [source,json]
69 [source,shell]
82 [source,php]
H A Dlogger.asciidoc13 [source,json]
26 [source,shell]
34 [source,php]
H A Dnamespaces.asciidoc24 [source,php]
49 [source,php]
65 [source,php]
H A Dper-request-configuration.asciidoc20 [source,php]
55 [source,php]
73 [source,php]
107 [source,php]
135 [source,php]
164 [source,php]
274 [source,php]
296 [source,php]
325 [source,php]
H A Dphp_json_objects.asciidoc4 A common source of confusion with the client revolves around JSON arrays and
19 [source,json]
41 [source,json]
71 [source,json]
90 [source,json]
112 [source,json]
137 [source,json]
156 [source,json]
H A Dsearch-operations.asciidoc16 [source,shell]
31 [source,php]
54 [source,php]
81 [source,php]
106 [source,php]
135 [source,shell]
157 [source,php]
192 [source,shell]
212 [source,php]
255 [source,ph
[all...]
H A Dselectors.asciidoc24 [source,php]
60 [source,php]
78 [source,php]
93 [source,php]
123 [source,php]
139 [source,php]
H A Dserializers.asciidoc51 [source,php]
94 [source,php]
135 [source,php]
154 [source,php]
190 [source,php]
201 [source,php]
219 [source,php]
H A Dset-retries.asciidoc13 [source,php]
32 [source,php]
54 [source,php]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst37 streams that can be filled by a remote source (e.g., an event-loop). If a
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php19 private $source; variable in GuzzleHttp\\Stream\\PumpStream
34 * @param callable $source Source of the stream data. The callable MAY
43 public function __construct(callable $source, array $options = []) argument
45 $this->source = $source;
64 $this->source = null;
84 return !$this->source;
149 if ($this->source) {
151 $data = call_user_func($this->source, $length);
153 $this->source
[all...]
H A DUtils.php88 * @param StreamInterface $source Stream to read from
94 StreamInterface $source, argument
99 while (!$source->eof()) {
100 if (!$dest->write($source->read(1048576))) {
108 while (!$source->eof()) {
109 $buf = $source->read($maxLen - $bytes);
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md36 * New method `Elastica\Aggregation\Terms::setMissingBucket`. For Composite Agg. Include in the response documents without a value for a given source. [#2117](https://github.com/ruflin/Elastica/pull/2117)
262 * If you're **NOT** using composer to manage your libraries: the root directory of the library's source code moved from `lib/Elastica/` to `src/`.
475 * Use `source` script field instead of deprecated (since ES 5.6) `inline` field. [#1497](https://github.com/ruflin/Elastica/pull/1497)
530 - [Unfiltered nested source](https://github.com/elastic/elasticsearch/pull/26102) should keep its full path [#1366](https://github.com/ruflin/Elastica/pull/1366)
536 - [Unfiltered nested source](https://github.com/elastic/elasticsearch/pull/26102) should keep its full path [#1366](https://github.com/ruflin/Elastica/pull/1366)
1089 - Allow bool in Query::setSource function [#818](https://github.com/ruflin/Elastica/issues/818/) https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-source-filtering.html
1284 - toString updated to consider doc_as_upsert if sent an array source [#622](https://github.com/ruflin/Elastica/issues/622/)
1304 - Added named function for source filtering [#605](https://github.com/ruflin/Elastica/issues/605/)
1992 - Refactoring of Elastica_Type::setMapping. No source parameter anymore.
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DAction.php41 public function __construct(string $opType = self::OP_TYPE_INDEX, array $metadata = [], array $source = []) argument
45 $this->setSource($source);
53 $source = $this->getSource();
54 if (\is_string($source)) {
55 $string .= $source;
56 } elseif (\is_array($source) && \array_key_exists('doc', $source) && \is_string($source['doc'])) {
57 if (isset($source['doc_as_upsert'])) {
58 $docAsUpsert = ', "doc_as_upsert": '.($source['doc_as_upser
112 setSource($source) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/Action/
H A DAbstractDocument.php157 abstract protected function _getMetadata(AbstractUpdateAction $source): array; argument
H A DUpdateDocument.php22 $source = ['doc' => $document->getData()];
25 $source['doc_as_upsert'] = true;
30 $source['upsert'] = $upsert;
34 $this->setSource($source);
47 $source = $script->toArray();
53 $source['upsert'] = $upsert;
56 $source['scripted_upsert'] = true;
61 $this->setSource($source);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DMapping.php74 * Sets source values.
76 * To disable source, argument is
79 * @param array $source Source array
83 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html
85 public function setSource(array $source): Mapping argument
87 return $this->setParam('_source', $source);
91 * Disables the source in the index.

1...<<31323334353637383940>>...67