Home
last modified time | relevance | path

Searched refs:method (Results 376 – 400 of 972) sorted by path

1...<<11121314151617181920>>...39

/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md101 a consistent return type of the method.
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php94 ->method('__toString')
H A DTestLogger.php12 * @method bool hasEmergency($record)
13 * @method bool hasAlert($record)
14 * @method bool hasCritical($record)
15 * @method bool hasError($record)
16 * @method bool hasWarning($record)
17 * @method bool hasNotice($record)
18 * @method bool hasInfo($record)
19 * @method bool hasDebug($record)
21 * @method bool hasEmergencyRecords()
22 * @method boo
129 __call($method, $args) global() argument
[all...]
/plugin/elasticsearch/vendor/react/promise/
H A DCHANGELOG.md155 Any object that provides a `then()` method is now assimilated to a trusted
178 * Add new `done()` method (part of the `ExtendedPromiseInterface`).
179 * Add new `otherwise()` method (part of the `ExtendedPromiseInterface`).
180 * Add new `always()` method (part of the `ExtendedPromiseInterface`).
181 * Add new `progress()` method (part of the `ExtendedPromiseInterface`).
190 * Add new `cancel()` method (part of the `CancellablePromiseInterface`).
H A DREADME.md103 The `promise` method returns the promise of the deferred.
107 The deprecated `notify` method is for progress notification.
189 The `then()` method registers new fulfilled, rejection and progress handlers
351 The `cancel()` method notifies the creator of the promise that there is no
408 once all consumers called the `cancel()` method of the promise.
441 calls the `then()` method.
480 If `$promiseOrValue` is a thenable (any object that provides a `then()` method),
/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)
46 * Changed `SetProcessor::setValue` signature to allow to pass any type, if you are overriding this method you must update the signature removing the `string` type-hint by @franmomu [#2082](https://github.com/ruflin/Elastica/pull/2082)
47 * Changed `Settings::setMergePolicy` signature to allow to pass `int` and `string` as argument 2, if you are overriding this method you must update the signature removing the `string` type-hint by @franmomu [#2085](https://github.com/ruflin/Elastica/pull/2085)
78 * Fixed case mismatch in method calls by @franmomu [#2087](https://github.com/ruflin/Elastica/pull/2087)
105 * Added `Elastica\Query\Terms::setBoost()` method to configure boost by @deguif [#2035](https://github.com/ruflin/Elastica/pull/2035)
113 * Triggered deprecation in `Elastica\Result::getType()` method by @deguif [#2016](https://github.com/ruflin/Elastica/pull/2016)
127 * Deprecated `Elastica\Bulk::toString()`, `Elastica\Bulk\Action::toString()` and `Elastica\Request::toString()` methods, use `__toString()` method or cast to string instead by @deguif [#2033](https://github.com/ruflin/Elastica/pull/2033)
129 * Deprecated not passing a `method` when constructing `Elastica\Aggregation\NormalizeAggregation` by @deguif [#2040](https://github.com/ruflin/Elastica/pull/2040)
317 * The method `Index::deleteById()` does not throw an `NotFoundException` when deleting a non-existing document [#1732](https://github.com/ruflin/Elastica/pull/1732)
324 * The `\Elastica\Query\GeoPolygon::count()` method no
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DNormalizeAggregation.php16 public function __construct(string $name, ?string $bucketsPath = null, ?string $method = null) argument
28 if (null !== $method) {
29 $this->setMethod($method);
38 * Set the method for this aggregation.
42 public function setMethod(string $method): self argument
44 return $this->setParam('method', $method);
58 * @throws InvalidException If buckets path or method are not set
66 if (!$this->hasParam('method')) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php526 * It's possible to make any REST query directly over this method
529 * @param string $method Rest method to use (GET, POST, DELETE, PUT)
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 DIndex.php542 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
546 return $search->search('', null, $method);
552 public function count($query = '', string $method = Request::POST): int
556 return $search->count('', false, $method);
748 * @param string $method Rest method to use (GET, POST, DELETE, PUT)
755 public function request(string $path, string $method, $data = [], array $queryParameters = []): Response
759 return $this->getClient()->request($path, $method, $data, $queryParameters);
477 search($query = '', $options = null, string $method = Request POST) global() argument
487 count($query = '', string $method = Request POST) global() argument
654 request(string $path, string $method, $data = [], array $queryParameters = []) global() argument
H A DIndexTemplate.php119 * @param string $method Rest method to use (GET, POST, DELETE, PUT)
128 public function request($method, $data = [])
132 return $this->getClient()->request($path, $method, $data);
109 request($method, $data = []) global() argument
H A DRequest.php33 * @param string $method OPTIONAL Request method (use const's) (default = self::GET)
38 public function __construct(string $path, string $method = self::GET, $data = [], array $query = [], ?Connection $connection = null, string $contentType = self::DEFAULT_CONTENT_TYPE) argument
41 $this->setMethod($method);
57 * Sets the request method. Use one of the for consts.
61 public function setMethod(string $method) argument
63 return $this->setParam('method', $method);
67 * Get request method.
71 return $this->getParam('method');
[all...]
H A DSearch.php335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
352 $response = $this->getClient()->request($path, $method, $data, $params);
367 public function count($query = '', bool $fullResult = false, string $method = Request::POST)
380 $method,
331 search($query = '', $options = null, string $method = Request POST) global() argument
359 count($query = '', bool $fullResult = false, string $method = Request POST) global() argument
H A DSearchableInterface.php41 * @param string $method Request method, see Request's constants
48 public function search($query = '', $options = null, string $method = Request::POST): ResultSet;
58 * @param string $method Request method, see Request's constants
66 public function count($query = '', string $method = Request::POST);
39 search($query = '', $options = null, string $method = Request POST) global() argument
53 count($query = '', string $method = Request POST) global() argument
H A DSnapshot.php204 * @param string $method the HTTP method
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.php171 public function request(array $data = [], string $method = Request::GET): Response argument
175 return $this->getClient()->request($path, $method, $data);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DSettings.php130 * not normalize bool values. This method ensures a bool is returned for
414 * @param string $method OPTIONAL Transfer method (default = \Elastica\Request::GET)
422 public function request(array $data = [], string $method = Request::GET, array $queryParameters = []): Response
430 return $this->getIndex()->request($path, $method, $data, $queryParameters);
340 request(array $data = [], string $method = Request GET, array $queryParameters = []) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DAggregation.php257 * @deprecated since version 7.1.0, use the "global()" method instead.
261 \trigger_deprecation('ruflin/elastica', '7.1.0', 'The "%s()" method is deprecated, use "global()" instead. It will be removed in 8.0.', __METHOD__);
522 public function normalize(string $name, ?string $bucketsPath = null, ?string $method = null): NormalizeAggregation argument
524 return new NormalizeAggregation($name, $bucketsPath, $method);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttpAdapter.php99 $method = $elasticaRequest->getMethod();
102 if (ElasticaRequest::GET === $method) {
103 $method = ElasticaRequest::POST;
108 $method = ElasticaRequest::POST;
121 return new HttpAdapterRequest($url, $method, HttpAdapterRequest::PROTOCOL_VERSION_1_1, $headers, $streamBody);
/plugin/elwikiupgrade/
H A DHTTPClient.php168 * @param string $method - HTTP Method usually GET or POST.
174 function sendRequest($url,$data='',$method='GET'){ argument
228 if($method == 'POST'){
243 }elseif($method == 'GET'){
314 $request = "$method $request_url HTTP/".$this->http.HTTP_NL;
924 * @param string $method
927 function sendRequest($url,$data='',$method='GET'){ argument
930 'method' => $method);
935 $method = $httpdata['method'];
939 return parent::sendRequest($url,$data,$method);
/plugin/emoji/emojione/
H A DEmojione.php27 public static function __callStatic($method, $args) argument
34 if ( ! method_exists($client, $method) )
36 throw new \BadMethodCallException('The method "' . $method . '" does not exist.');
39 return call_user_func_array(array($client, $method), $args);
/plugin/etherpadlite/externals/etherpad-lite-client/
H A Detherpad-lite-client.php33 protected function call($function, array $arguments = array(), $method = 'GET'){ argument
37 if ($method !== 'POST'){
45 if ($method === 'POST'){
53 …$params = array('http' => array('method' => $method, 'ignore_errors' => true, 'header' => 'Content…
54 if ($method === 'POST'){
/plugin/eventum/XML/
H A DRPC.php1284 function method($meth = '') function in XML_RPC_Message
/plugin/eventum/
H A Dclass.Eventum_RPC.php104 public function __call($method, $args) argument
121 $msg = new XML_RPC_Message($method, $params);
/plugin/evesso/classes/
H A DoAuthHTTPClient.php23 * @param string $method
33 $method = 'POST' argument
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DClientInterface.php20 * @param string $method
30 $method = 'POST' argument

1...<<11121314151617181920>>...39