Home
last modified time | relevance | path

Searched refs:path (Results 1876 – 1900 of 3342) sorted by path

1...<<71727374757677787980>>...134

/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php149 return new Path($scheme, $parts['path'], self::getQuery($parts), $authentication);
154 return new Url($scheme, $parts['host'], $parts['port'] ?? null, $parts['path'] ?? null, self::getQuery($parts), $authentication);
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md280 * Changed `Terms::setTermsLookup()` signature: `index`, `path` and `id` are now required arguments [#1765](https://github.com/ruflin/Elastica/pull/1765)
408 * The preferred type name is [_doc](https://www.elastic.co/guide/en/elasticsearch/reference/6.5/removal-of-types.html), so that index APIs have the same path as they will have in 7.0
411 * The preferred type name is [_doc](https://www.elastic.co/guide/en/elasticsearch/reference/6.5/removal-of-types.html), so that index APIs have the same path as they will have in 7.0
498 - Return the [_source of inner hit nested](https://github.com/elastic/elasticsearch/pull/26982) as is without wrapping it into its full path context [#1398](https://github.com/ruflin/Elastica/pull/1398)
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)
1642 the path will change to lowercase.
1790 - Remove old style path creation through params in Elastica_Index::create and Elastica_Search::search
1825 - Add the possibility to add path or url in config for a request [#120](https://github.com/ruflin/Elastica/issues/120/)
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DNested.php14 * @param string $path the nested path for this aggregation
16 public function __construct(string $name, string $path) argument
19 $this->setPath($path);
23 * Set the nested path for this aggregation.
27 public function setPath(string $path): self argument
29 return $this->setParam('path', $path);
H A DReverseNested.php14 * @param string|null $path Optional path to the nested object for this aggregation. Defaults to the root of the main document.
16 public function __construct(string $name, ?string $path = null) argument
20 if (null !== $path) {
21 $this->setPath($path);
26 * Set the nested path for this aggregation.
30 public function setPath(string $path): self argument
32 return $this->setParam('path', $path);
43 // if we don't have a path, the
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DBulk.php88 $path = '';
90 $path .= $this->getIndex().'/';
92 $path .= '_bulk';
94 return $path;
H A DClient.php143 * @param array|string $keys config key or path of config keys
528 * @param string $path Path to call
538 public function request(string $path, string $method = Request::GET, $data = [], array $query = [], string $contentType = Request::DEFAULT_CONTENT_TYPE): Response
541 $request = $this->_lastRequest = new Request($path, $method, $data, $query, $connection, $contentType);
559 return $this->request($path, $method, $data, $query);
510 request(string $path, string $method = Request GET, $data = [], array $query = [], string $contentType = Request DEFAULT_CONTENT_TYPE) global() argument
H A DConnection.php168 return $this->hasParam('path') ? $this->getParam('path') : '';
172 * @param string $path
176 public function setPath($path) argument
178 return $this->setParam('path', $path);
H A DIndex.php747 * @param string $path Path to call
755 public function request(string $path, string $method, $data = [], array $queryParameters = []): Response
757 $path = $this->getName().'/'.$path;
759 return $this->getClient()->request($path, $method, $data, $queryParameters);
654 request(string $path, string $method, $data = [], array $queryParameters = []) global() argument
H A DIndexTemplate.php130 $path = '_template/'.$this->getName();
132 return $this->getClient()->request($path, $method, $data);
H A DRequest.php32 * @param string $path Request path
38 public function __construct(string $path, string $method = self::GET, $data = [], array $query = [], ?Connection $connection = null, string $contentType = self::DEFAULT_CONTENT_TYPE) argument
40 $this->setPath($path);
97 * Sets the request path.
101 public function setPath(string $path) argument
103 return $this->setParam('path', $path);
107 * Return request path.
111 return $this->getParam('path');
[all...]
H A DSearch.php311 * Combines indices to the search request path.
340 $path = $this->getPath();
345 if ('_search/scroll' === $path) {
352 $response = $this->getClient()->request($path, $method, $data, $params);
376 $path = $this->getPath();
379 $path,
H A DSnapshot.php203 * @param string $path the URL
214 public function request($path, $method = Request::GET, $data = [], array $query = [])
216 return $this->_client->request('_snapshot/'.$path, $method, $data, $query);
180 request($path, $method = Request GET, $data = [], array $query = []) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A DSettings.php173 $path = '_cluster/settings';
175 return $this->getClient()->request($path, $method, $data);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/Bulk/Response/
H A DActionException.php39 $path = '';
41 $path .= '/'.$data['_index'];
45 $path .= '/'.$data['_type'];
49 $path .= '/'.$data['_id'];
52 return "{$opType}: {$path} caused {$error}";
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DSettings.php424 $path = '_settings';
430 return $this->getIndex()->request($path, $method, $data, $queryParameters);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DGeoShapePreIndexed.php31 * elasticsearch path/field name of the pre-indexed shape.
40 * @param string $path The path/field of the shape searched
46 string $path, argument
51 $this->_path = $path;
68 'path' => $this->_indexedPath,
H A DGeoShapeProvided.php40 * @param string $path The path/field of the shape searched
46 public function __construct(string $path, array $coordinates, string $shapeType = self::TYPE_ENVELOPE) argument
48 $this->_path = $path;
H A DNested.php17 * @param string $path Nested object path
21 public function setPath(string $path): self argument
23 return $this->setParam('path', $path);
H A DTerms.php65 public function setTermsLookup(string $index, string $id, string $path): self argument
70 'path' => $path,
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php301 * @param string $path the nested path for this aggregation
303 public function nested(string $name, string $path): Nested argument
305 return new Nested($name, $path);
314 * @param string|null $path Optional path to the nested object for this aggregation. Defaults to the root of the main document.
316 public function reverse_nested(string $name, ?string $path = null): ReverseNested argument
318 return new ReverseNested($name, $path);
/plugin/elwikiupgrade/
H A DHTTPClient.php192 $path = $uri['path'];
193 if(empty($path)) $path = '/';
194 if(!empty($uri['query'])) $path .= '?'.$uri['query'];
207 $request_url = $path;
H A DVerboseTarLib.class.php544 public function cleanPath($path) { argument
545 $path=explode('/', $path);
547 foreach($path as $p) {
/plugin/emoji/
H A Dsyntax.php123 $path = DOKU_PLUGIN.'emoji/assets/png/'.$matches[0];
124 list($width, $height) = $renderer->_odtGetImageSize ($path, '20', '20');
125 $renderer->_odtAddImage($path, $width.'cm', $height.'cm');
/plugin/encryptedpasswords/
H A Dlock-open.svg1 <svg viewBox="0 0 24 24"><path d="M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V10A2,2 0 0,1 6,8H15V6A3,3 0 0,0 (…)
H A Dlock.svg1 <svg viewBox="0 0 24 24"><path d="M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20 (…)

1...<<71727374757677787980>>...134