Home
last modified time | relevance | path

Searched refs:options (Results 201 – 225 of 1516) sorted by last modified time

12345678910>>...61

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DUtils.php186 * @param array $options Associative array of stream options defined in
194 public static function create($resource, array $options = []) argument
196 return Stream::factory($resource, $options);
H A DPumpStream.php39 * @param array $options Stream options:
43 public function __construct(callable $source, array $options = []) argument
46 $this->size = isset($options['size']) ? $options['size'] : null;
47 $this->metadata = isset($options['metadata']) ? $options['metadata'] : [];
H A DStream.php36 * This factory accepts the same associative array of options as described
40 * @param array $options Additional options
45 public static function factory($resource = '', array $options = []) argument
55 return new self($stream, $options);
59 return new self($resource, $options);
67 return self::factory((string) $resource, $options);
71 return new PumpStream($resource, $options);
82 }, $options);
89 * This constructor accepts an associative array of options
102 __construct($stream, $options = []) global() argument
[all...]
H A DAsyncReadStream.php47 * This class accepts an associative array of configuration options.
63 * @param array $config Associative array of options.
108 * This function accepts the same options as AsyncReadStream::__construct,
127 * @param array $options Associative array of options.
132 public static function create(array $options = []) argument
134 $maxBuffer = isset($options['max_buffer'])
135 ? $options['max_buffer']
140 } elseif (isset($options['buffer'])) {
141 $buffer = $options['buffe
[all...]
H A DGuzzleStreamWrapper.php54 public function stream_open($path, $mode, $options, &$opened_path) argument
56 $options = stream_context_get_options($this->context);
58 if (!isset($options['guzzle']['stream'])) {
63 $this->stream = $options['guzzle']['stream'];
/plugin/elasticsearch/cli/
H A Dimg.php20 * Register options and arguments on the given $options object
22 * @param Options $options
26 protected function setup(Options $options) argument
28 $options->setHelp('Output image data using DokuWiki\'s builtin EXIF capabilities');
30 $options->registerArgument('file', 'image file to convert to text', true);
34 protected function main(Options $options) argument
36 $args = $options->getArgs();
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc4 The client offers two options to configure hosts:
H A Dinstallation.asciidoc35 [width="40%",options="header",frame="topbot"]
H A Dper-request-configuration.asciidoc131 enabled via the `verbose` parameter in the client options.
294 parameter in the client options:
311 Future mode supports two options: `true` or `'lazy'`. For more details about how
323 client options:
H A Dfutures.asciidoc29 the client options to `'lazy'`:
H A Dnamespaces.asciidoc9 [width="40%",options="header",frame="topbot"]
H A Dconfiguration.asciidoc9 the ClientBuilder helper object. You can find all the configuration options and
H A Dconnecting.asciidoc9 * <<authentication, Authentication options>>
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php92 * @param array $options
96 public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface argument
114 $options,
140 * @param array $options Options for transport
144 public function resultOrFuture(FutureArrayInterface $result, array $options = []) argument
147 $async = isset($options['client']['future']) ? $options['client']['future'] : null;
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php29 $options = $this->getDefaultOptions($request, $headers);
30 $this->applyMethod($request, $options);
33 $this->applyHandlerOptions($request, $options);
36 $this->applyHeaders($request, $options);
37 unset($options['_headers']);
39 // Add handler options from the request's configuration options
41 $options = $this->applyCustomCurlOptions(
43 $options
51 $body = $this->getOutputBody($request, $options);
138 getOutputBody(array $request, array& $options) global() argument
200 applyMethod(array $request, array& $options) global() argument
226 applyBody(array $request, array& $options) global() argument
262 addStreamingBody(array $request, array& $options) global() argument
293 applyHeaders(array $request, array& $options) global() argument
318 applyCustomCurlOptions(array $config, array $options) global() argument
336 removeHeader($name, array& $options) global() argument
352 applyHandlerOptions(array $request, array& $options) global() argument
[all...]
H A DCurlHandler.php12 * When using the CurlHandler, custom curl options can be specified as an
31 * Accepts an associative array of options:
38 * @param array $options Array of options to use with the handler
40 public function __construct(array $options = []) argument
43 $this->factory = isset($options['handle_factory'])
44 ? $options['handle_factory']
46 $this->maxHandles = isset($options['max_handles'])
47 ? $options['max_handles']
H A DCurlMultiHandler.php13 * When using the CurlMultiHandler, custom curl options can be specified as an
31 * This handler accepts the following options:
43 * @param array $options
45 public function __construct(array $options = []) argument
47 if (isset($options['mh'])) {
48 $this->_mh = $options['mh'];
50 $this->factory = isset($options['handle_factory'])
51 ? $options['handle_factory'] : new CurlFactory();
52 $this->selectTimeout = isset($options['select_timeout'])
53 ? $options['select_timeou
[all...]
H A DStreamHandler.php18 private $options; variable in GuzzleHttp\\Ring\\Client\\StreamHandler
21 public function __construct(array $options = []) argument
23 $this->options = $options;
204 $options = $this->getDefaultOptions($request);
210 $this->{$method}($request, $options, $value, $params);
218 $options,
219 $this->createContext($request, $options, $params)
256 private function add_proxy(array $request, &$options, $value, &$params) argument
259 $options['htt
268 add_timeout(array $request, & $options, $value, & $params) global() argument
273 add_verify(array $request, & $options, $value, & $params) global() argument
298 add_cert(array $request, & $options, $value, & $params) global() argument
312 add_progress(array $request, & $options, $value, & $params) global() argument
326 add_debug(array $request, & $options, $value, & $params) global() argument
366 applyCustomOptions(array $request, array& $options) global() argument
382 createContext(array $request, array $options, array $params) global() argument
397 createStreamResource($url, array $request, array $options, $context) global() argument
[all...]
/plugin/elasticsearch/helper/
H A Dform.php88 // options
114 $options = [
128 // options
131 foreach ($options as $opt => $label) {
168 // options
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md117 * Extracted setting gap policy to `\Elastica\Aggregation\Traits\GapPolicyTrait` and introduced `\Elastica\Aggregation\GapPolicyInterface` with constants for options by @stchr [#2023](https://github.com/ruflin/Elastica/pull/2023)
202 * Added endpoint options support to `Elastica\Index::create()` [#1859](https://github.com/ruflin/Elastica/pull/1859)
216 * Reviewed options handling in `Elastica\Index::create()` [#1822](https://github.com/ruflin/Elastica/pull/1822)
225 * Used `GuzzleHttp\RequestOptions` constants for configuring request options [#1820](https://github.com/ruflin/Elastica/pull/1820)
239 * Deprecated `version`/`version_type` options [(deprecated in `6.7.0`)](https://www.elastic.co/guide/en/elasticsearch/reference/6.8/docs-update.html) and added `if_seq_no` / `if_primary_term` that replaced it
377 * Properly handle underscore prefixes in options and bulk request metadata ([cf upstream](https://github.com/elastic/elasticsearch/issues/26886). [#1621](https://github.com/ruflin/Elastica/pull/1621)
386 * Elastica\Reindex missing options (script, remote, wait_for_completion, scroll...)
642 - `\Elastica\Query\MatchPhrase` and `\Elastica\Query\MatchPhrasePrefix` do not extend `\Elastica\Query\Match` anymore because they do not share exactly the same options
677 - Query options such as "timeout" or "terminate_after" should not be ignored when using Multi\Search
691 - Replace flush refresh param with a options arra
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md170 ### Smart merging of options
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DMlNamespace.asciidoc641 $params['include'] = (string) A comma-separate list of fields to optionally include. Valid options are 'definition' and 'total_feature_importance'. Default is none.
846 $params['body'] = (array) Reversion options
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearchableInterface.php40 * @param array|int|null $options Limit or associative array of options (option=>value)
48 public function search($query = '', $options = null, string $method = Request::POST): ResultSet;
72 * @param array|int|null $options
74 public function createSearch($query = '', $options = null): Search;
39 search($query = '', $options = null, string $method = Request POST) global() argument
61 createSearch($query = '', $options = null) global() argument
H A DTask.php88 * @param array<string, mixed> $options
94 public function refresh(array $options = []): void
98 ->setParams($options)
87 refresh(array $options = []) global() argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php200 * @param array $options
204 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument
211 if (isset($options['client']['headers']) && is_array($options['client']['headers'])) {
212 $headers = array_merge($this->headers, $options['client']['headers']);
233 $request = array_replace_recursive($request, $this->connectionParams, $options);
241 $future = $handler($request, $this, $transport, $options);
258 return function (array $request, Connection $connection, Transport $transport = null, $options) use ($handler) {
266 function ($response) use ($connection, $transport, $request, $options) {
301 $options
[all...]

12345678910>>...61