Home
last modified time | relevance | path

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

12

/plugin/elasticsearch/vendor/ruflin/elastica/src/
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_COMP…
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…
263 return (bool) $this->hasParam('persistent') ? $this->getParam('persistent') : true;
[all …]
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('timeout');
[all …]
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');
DParam.php109 if (!$this->hasParam($key)) {
123 public function hasParam($key) function in Elastica\\Param
DCollapse.php34 if ($this->hasParam('inner_hits')) {
DDocument.php244 return $this->hasParam('pipeline');
DReindex.php225 if (!$this->hasParam(self::SCRIPT)) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
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'])) {
DAbstractSimpleAggregation.php38 if (!$this->hasParam('field') && !$this->hasParam('script')) {
DNormalizeAggregation.php62 if (!$this->hasParam('buckets_path')) {
66 if (!$this->hasParam('method')) {
DBucketScript.php72 if (!$this->hasParam('buckets_path')) {
75 if (!$this->hasParam('script')) {
DSumBucket.php45 if (!$this->hasParam('buckets_path')) {
DDerivative.php45 if (!$this->hasParam('buckets_path')) {
DStatsBucket.php45 if (!$this->hasParam('buckets_path')) {
DAvgBucket.php47 if (!$this->hasParam('buckets_path')) {
DFilter.php39 if (!$this->hasParam('filter')) {
DPercentilesBucket.php36 if (!$this->hasParam('buckets_path')) {
DFilters.php34 if ($this->hasParam('filters')
DSerialDiff.php66 if (!$this->hasParam('buckets_path')) {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
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')
DHttpAdapter.php106 … if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
DHttp.php126 … if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
DGuzzle.php126 … if ($this->hasParam('postWithRequestBody') && true == $this->getParam('postWithRequestBody')) {
/plugin/elasticsearch/vendor/ruflin/elastica/
DCHANGELOG.md1497 - Added Result::hasFields() and Result::hasParam() methods for consistency with Document
1788 - Add Elastica_Param::hasParam
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
DCHANGELOG.md1161 * Added an ApiCommandInterface and added `getParamNames()` and `hasParam()`

12