Home
last modified time | relevance | path

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

123

/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAbstractTransport.php98 if (\is_array($transport) && isset($transport['type'])) {
99 $transportParams = $transport;
103 $transport = $transport['type'];
106 if (\is_string($transport)) {
112 $transport = $specialTransports[\strtolower($transport)] ?? \ucfirst($transport);
113 $classNames = ["Elastica\\Transport\\{$transport}", $transport];
116 $transport = new $className();
122 if ($transport instanceof self) {
123 $transport->setConnection($connection);
126 $transport->setParam($key, $value);
[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.php37 * @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
274 $this->transport = $transport;
278 $this->cat = new CatNamespace($transport, $endpoint);
279 $this->ccr = new CcrNamespace($transport, $endpoint);
284 $this->eql = new EqlNamespace($transport, $endpoint);
288 $this->ilm = new IlmNamespace($transport, $endpoint);
294 $this->ml = new MlNamespace($transport, $endpoint);
301 $this->slm = new SlmNamespace($transport, $endpoint);
303 $this->sql = new SqlNamespace($transport, $endpoint);
[all …]
H A DClientBuilder.php48 private $transport; variable in Elasticsearch\\ClientBuilder
160 return $this->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->serializ…
694 return $this->instantiate($this->transport, $this->endpoint, $registeredNamespaces);
697 …protected function instantiate(Transport $transport, callable $endpoint, array $registeredNamespac… argument
699 return new Client($transport, $endpoint, $registeredNamespaces);
737 if (is_null($this->transport)) {
[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.php136 * @param array|string $transport
140 public function setTransport($transport) argument
142 return $this->setParam('transport', $transport);
253 $transport = $this->getTransport();
255 return AbstractTransport::create($transport, $this);
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.php222 $transport = $this->options['transport'];
223 if ($transport === 'tcp' && (bool) $this->options['use_ssl'] === true) {
224 $transport = 'ssl';
226 $uri = $transport.'://'.$host.':'.$this->options['port'];
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php201 * @param Transport $transport
204 …, 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) us… variable in Elasticsearch\\Connections\\Connection
266 function ($response) use ($connection, $transport, $request, $options) {
287 if (isset($transport) === true) {
288 $transport->connectionPool->scheduleCheck();
291 $shouldRetry = $transport->shouldRetry($request);
296 return $transport->performRequest(
H A DConnectionInterface.php78 … 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/jalbum/
H A Dscript.js20 function transport(){
/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/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/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/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