Home
last modified time | relevance | path

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

123

/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAbstractTransport.php26 * Construct transport.
51 * Executes the transport request.
81 * Create a transport.
83 * The $transport parameter can be one of the following values:
85 * * string: The short name of a transport. For instance "Http"
86 * * object: An already instantiated instance of a transport
88 * keys in the array will be set as parameters in the transport instance
90 * @param AbstractTransport|array<string, mixed>|string $transport A transport definition
92 * @param array<string, mixed> $params Parameters for the transport clas
96 create($transport, Connection $connection, array $params = []) global() argument
[all...]
H A DAwsAuthV4.php46 $transport = $this; variable in Elastica\\Transport\\AwsAuthV4
51 $transport
53 return $signer->signRequest($transport->sanitizeRequest($req), $credProvider()->wait());
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DAbstractNamespace.php29 protected $transport; variable in Elasticsearch\\Namespaces\\AbstractNamespace
36 public function __construct(Transport $transport, callable $endpoints) argument
38 $this->transport = $transport;
58 $response = $this->transport->performRequest(
66 return $this->transport->resultOrFuture($response, $endpoint->getOptions());
H A DBooleanRequestWrapper.php35 public static function performRequest(AbstractEndpoint $endpoint, Transport $transport) argument
38 $response = $transport->performRequest(
46 $response = $transport->resultOrFuture($response, $endpoint->getOptions());
H A DNamespaceBuilderInterface.php33 * Returns the actual namespace object which contains your custom methods. The transport
37 * @param Transport $transport
41 public function getObject(Transport $transport, SerializerInterface $serializer); argument
H A DIndicesNamespace.php400 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
430 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
456 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
482 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
512 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php77 public $transport; variable in Elasticsearch\\Client
268 * @param Transport $transport
272 public function __construct(Transport $transport, callable $endpoint, array $registeredNamespaces) argument
274 $this->transport = $transport;
276 $this->asyncSearch = new AsyncSearchNamespace($transport, $endpoint);
277 $this->autoscaling = new AutoscalingNamespace($transport, $endpoint);
278 $this->cat = new CatNamespace($transport, $endpoint);
279 $this->ccr = new CcrNamespace($transport, $endpoint);
280 $this->cluster = new ClusterNamespace($transport,
[all...]
H A DClientBuilder.php48 private $transport; variable in Elasticsearch\\ClientBuilder
160 return $this->transport;
331 * Set the transport
333 * @param Transport $transport
335 public function setTransport(Transport $transport): ClientBuilder argument
337 $this->transport = $transport;
691 $registeredNamespaces[$builder->getName()] = $builder->getObject($this->transport, $this->serializer);
694 return $this->instantiate($this->transport, $this->endpoint, $registeredNamespaces);
697 protected function instantiate(Transport $transport, callabl argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dendpoint-closure.asciidoc14 $transport = $this->transport;
17 $newEndpoint = function ($class) use ($transport, $serializer) {
19 return new MyProject\SuperSearch($transport);
24 return new $fullPath($transport, $serializer);
26 return new $fullPath($transport);
H A Dhttp-handler.asciidoc4 Elasticsearch-PHP uses an interchangeable HTTP transport layer called
6 a generic HTTP request, then pass it to the transport layer to execute. The
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Eventarc/
H A DTrigger.php159 public function setTransport(Transport $transport) argument
161 $this->transport = $transport;
168 return $this->transport;
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DConnection.php26 * Default transport.
55 * @param array $params OPTIONAL Connection params: host, port, transport, timeout. All are optional
132 return $this->hasParam('transport') ? $this->getParam('transport') : self::DEFAULT_TRANSPORT;
136 * @param array|string $transport
140 public function setTransport($transport) argument
142 return $this->setParam('transport', $transport);
245 * Returns an instance of the transport type.
247 * @throws InvalidException If invalid transport typ
[all...]
H A DRequest.php180 $transport = $this->getConnection()->getTransportObject();
183 return $transport->exec($this, $this->getConnection()->toArray());
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
H A Drun-elasticsearch.sh52 --env xpack.security.transport.ssl.enabled=true
53 --env xpack.security.transport.ssl.verification_mode=certificate
54 --env xpack.security.transport.ssl.key=certs/testnode.key
55 --env xpack.security.transport.ssl.certificate=certs/testnode.crt
56 --env xpack.security.transport.ssl.certificate_authorities=certs/ca.crt
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DSocket.php23 * Supported transport types.
84 'transport' => 'tcp',
105 if (!\in_array($this->options['transport'], self::TRANSPORTS, true)) {
107 'The transport "%s" is not valid. It must be one of: %s',
108 $this->options['transport'],
223 $transport = $this->options['transport'];
224 if ($transport === 'tcp' && (bool) $this->options['use_ssl'] === true) {
225 $transport = 'ssl';
228 $uri = $transport
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php201 * @param Transport $transport
204 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument
241 $future = $handler($request, $this, $transport, $options);
258 return function (array $request, Connection $connection, Transport $transport = null, $options) use ($handler) { variable in Elasticsearch\\Connections\\Connection
266 function ($response) use ($connection, $transport, $request, $options) {
282 // If the transport has not been set, we are inside a Ping or Sniff,
287 if (isset($transport) === true) {
288 $transport->connectionPool->scheduleCheck();
291 $shouldRetry = $transport->shouldRetry($request);
296 return $transport
[all...]
H A DConnectionInterface.php28 * Get the transport schema for this connection
78 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null); argument
/plugin/hipchat/
H A Daction.php64 $transport = new rcrowe\Hippy\Transport\Guzzle($token, $room, $from);
65 $hippy = new rcrowe\Hippy\Client($transport);
/plugin/s5reloaded/ui/effects_support/
H A Dcontrols.js611 handleAJAXFailure: function(transport) { argument
612 this.triggerCallback('onFailure', transport);
675 onSuccess: function(transport) { argument
677 var text = transport.responseText;
744 wrapUp: function(transport) { argument
748 this._boundComplete(transport, this.element);
782 onSuccess: function(transport) { argument
783 var js = transport.responseText.strip();
820 onSuccess: function(transport) { argument
906 onComplete: function(transport, element) { argument
[all …]
H A Dprototype.js1341 dispatch: function(callback, request, transport, json) { argument
1384 this.transport = Ajax.getTransport();
1421 this.transport.send(this.body);
1434 var readyState = this.transport.readyState;
1454 if (this.transport.overrideMimeType &&
1480 return this.transport.status || 0;
1558 var transport = this.transport = request.transport,
1569 var xml = transport.responseXML;
1583 return this.transport.statusText || '';
1596 return this.transport.getResponseHeader(name);
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc207 .`setTransport(Elasticsearch\Transport $transport)`
212 Set the transport
454 .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)`
/plugin/jalbum/
H A Dscript.js20 function transport(){
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DREADME.md17 - Abstracts away the underlying HTTP transport, allowing you to write
18 environment and transport agnostic code; i.e., no hard dependency on cURL,
/plugin/codeprettify/code-prettify/src/
H A Dlang-vhdl.js39 …n|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|…
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js1139 dispatch: function(callback, request, transport, json) { argument
1184 this.transport = Ajax.getTransport();
1223 this.transport.send(this.body);
1236 var readyState = this.transport.readyState;
1256 if (this.transport.overrideMimeType &&
1283 return this.transport.status || 0;
1355 var transport = this.transport = request.transport,
1366 var xml = transport.responseXML;
1379 return this.transport.statusText || '';
1392 return this.transport.getResponseHeader(name);
[all …]

123