Home
last modified time | relevance | path

Searched refs:hasParam (Results 1 – 25 of 25) sorted by relevance

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DConnection.php63 if (!$this->hasParam('config')) {
73 return $this->hasParam('port') ? $this->getParam('port') : self::DEFAULT_PORT;
91 return $this->hasParam('host') ? $this->getParam('host') : self::DEFAULT_HOST;
109 return $this->hasParam('proxy') ? $this->getParam('proxy') : null;
132 return $this->hasParam('transport') ? $this->getParam('transport') : self::DEFAULT_TRANSPORT;
150 return (bool) $this->hasParam('compression') ? $this->getParam('compression') : self::DEFAULT_COMPRESSION;
168 return $this->hasParam('path') ? $this->getParam('path') : '';
196 return (int) $this->hasParam('timeout') ? $this->getParam('timeout') : self::TIMEOUT;
221 return (int) $this->hasParam('connectTimeout') ? $this->getParam('connectTimeout') : self::CONNECT_TIMEOUT;
263 return (bool) $this->hasParam('persisten
[all...]
H A DAbstractUpdateAction.php37 return $this->hasParam('_id') ? $this->getParam('_id') : null;
121 return $this->hasParam('if_seq_no');
152 return $this->hasParam('if_primary_term');
186 return $this->hasParam('version');
218 return $this->hasParam('op_type');
250 return $this->hasParam('routing');
290 return $this->hasParam('fields');
318 return $this->hasParam('retry_on_conflict');
356 return $this->hasParam('refresh');
384 return $this->hasParam('timeou
[all...]
H A DResult.php76 public function hasParam(string $name): bool function in Elastica\\Result
118 return $this->hasParam('fields');
149 if (!$this->hasParam('sort')) {
187 return $this->hasParam('inner_hits');
H A DParam.php109 if (!$this->hasParam($key)) {
123 public function hasParam($key) function in Elastica\\Param
H A DCollapse.php34 if ($this->hasParam('inner_hits')) {
H A DDocument.php244 return $this->hasParam('pipeline');
H A DReindex.php225 if (!$this->hasParam(self::SCRIPT)) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DWeightedAvg.php23 if ($this->hasParam('value') && isset($this->getParam('value')['script'])) {
43 if ($this->hasParam('value') && isset($this->getParam('value')['field'])) {
59 if ($this->hasParam('weight') && isset($this->getParam('weight')['script'])) {
79 if ($this->hasParam('weight') && isset($this->getParam('weight')['field'])) {
H A DAbstractSimpleAggregation.php38 if (!$this->hasParam('field') && !$this->hasParam('script')) {
H A DBucketScript.php72 if (!$this->hasParam('buckets_path')) {
75 if (!$this->hasParam('script')) {
H A DNormalizeAggregation.php62 if (!$this->hasParam('buckets_path')) {
66 if (!$this->hasParam('method')) {
H A DDerivative.php45 if (!$this->hasParam('buckets_path')) {
H A DStatsBucket.php45 if (!$this->hasParam('buckets_path')) {
H A DSumBucket.php45 if (!$this->hasParam('buckets_path')) {
H A DAvgBucket.php47 if (!$this->hasParam('buckets_path')) {
H A DFilter.php39 if (!$this->hasParam('filter')) {
H A DPercentilesBucket.php36 if (!$this->hasParam('buckets_path')) {
H A DFilters.php34 if ($this->hasParam('filters')
H A DSerialDiff.php66 if (!$this->hasParam('buckets_path')) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAwsAuthV4.php41 $region = $this->getConnection()->hasParam('aws_region')
77 if ($connection->hasParam('aws_credential_provider')) {
81 if ($connection->hasParam('aws_secret_access_key')) {
85 $connection->hasParam('aws_session_token')
108 return $conn->hasParam('ssl')
H A DHttpAdapter.php106 if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
H A DGuzzle.php126 if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
H A DHttp.php126 if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md1497 - Added Result::hasFields() and Result::hasParam() methods for consistency with Document
1788 - Add Elastica_Param::hasParam
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md1161 * Added an ApiCommandInterface and added `getParamNames()` and `hasParam()`