/plugin/elasticsearch/vendor/ruflin/elastica/lib/Elastica/Transport/ |
H A D | AbstractTransport.php | 104 if (\is_array($transport) && isset($transport['type'])) { 105 $transportParams = $transport; 109 $transport = $transport['type']; 112 if (\is_string($transport)) { 119 $transport = $specialTransports[\strtolower($transport)]; 121 $transport = \ucfirst($transport); 123 $classNames = ["Elastica\\Transport\\$transport", $transport]; 126 $transport = new $className(); 132 if ($transport instanceof self) { 133 $transport->setConnection($connection); [all …]
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/ |
H A D | AbstractNamespace.php | 24 protected $transport; variable in Elasticsearch\\Namespaces\\AbstractNamespace 31 public function __construct(Transport $transport, callable $endpoints) argument 33 $this->transport = $transport; 53 $response = $this->transport->performRequest( 61 return $this->transport->resultOrFuture($response, $endpoint->getOptions());
|
H A D | BooleanRequestWrapper.php | 30 public static function performRequest(AbstractEndpoint $endpoint, Transport $transport) argument 33 $response = $transport->performRequest( 41 $response = $transport->resultOrFuture($response, $endpoint->getOptions());
|
H A D | NamespaceBuilderInterface.php | 32 * @param Transport $transport 36 public function getObject(Transport $transport, SerializerInterface $serializer); argument
|
H A D | IndicesNamespace.php | 50 return BooleanRequestWrapper::performRequest($endpoint, $this->transport); 480 return BooleanRequestWrapper::performRequest($endpoint, $this->transport); 685 return BooleanRequestWrapper::performRequest($endpoint, $this->transport); 960 return BooleanRequestWrapper::performRequest($endpoint, $this->transport);
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/tests/Elasticsearch/Tests/ |
H A D | ClientTest.php | 268 $host = $client->transport->getConnection(); 289 $host = $client->transport->getConnection(); 310 $host = $client->transport->getConnection(); 328 $host = $client->transport->getConnection(); 343 $host = $client->transport->getConnection(); 358 $host = $client->transport->getConnection(); 372 $host = $client->transport->getConnection(); 385 $host = $client->transport->getConnection(); 400 $host = $client->transport->getConnection(); 428 $host = $client->transport->getConnection(); [all …]
|
H A D | RegisteredNamespaceTest.php | 58 public function getObject(Transport $transport, SerializerInterface $serializer) argument
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Eventarc/ |
H A D | Trigger.php | 159 public function setTransport(Transport $transport) argument 161 $this->transport = $transport; 168 return $this->transport;
|
/plugin/elasticsearch/vendor/ruflin/elastica/lib/Elastica/ |
H A D | Connection.php | 136 * @param string|array $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 D | Request.php | 191 $transport = $this->getConnection()->getTransportObject(); 194 return $transport->exec($this, $this->getConnection()->toArray());
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ |
H A D | ClientBuilder.php | 43 private $transport; variable in Elasticsearch\\ClientBuilder 139 return $this->transport; 276 public function setTransport(Transport $transport): ClientBuilder argument 278 $this->transport = $transport; 481 …$registeredNamespaces[$builder->getName()] = $builder->getObject($this->transport, $this->serializ… 484 return $this->instantiate($this->transport, $this->endpoint, $registeredNamespaces); 487 …protected function instantiate(Transport $transport, callable $endpoint, array $registeredNamespac… argument 489 return new Client($transport, $endpoint, $registeredNamespaces); 527 if (is_null($this->transport)) { 528 …$this->transport = new Transport($this->retries, $this->connectionPool, $this->logger, $this->snif…
|
H A D | Client.php | 42 public $transport; variable in Elasticsearch\\Client 102 * @param Transport $transport 108 $this->transport = $transport; 110 $this->indices = new IndicesNamespace($transport, $endpoint); 111 $this->cluster = new ClusterNamespace($transport, $endpoint); 112 $this->nodes = new NodesNamespace($transport, $endpoint); 114 $this->cat = new CatNamespace($transport, $endpoint); 115 $this->ingest = new IngestNamespace($transport, $endpoint); 116 $this->tasks = new TasksNamespace($transport, $endpoint); 117 $this->remote = new RemoteNamespace($transport, $endpoint); [all …]
|
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
H A D | Socket.php | 222 $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 D | Connection.php | 177 * @param Transport $transport 180 …, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument 211 $future = $handler($request, $this, $transport, $options); 228 …return function (array $request, Connection $connection, Transport $transport = null, $options) us… variable in Elasticsearch\\Connections\\Connection 234 …Core::proxy($handler($request), function ($response) use ($connection, $transport, $request, $opti… 255 if (isset($transport) === true) { 256 $transport->connectionPool->scheduleCheck(); 259 $shouldRetry = $transport->shouldRetry($request); 264 return $transport->performRequest(
|
H A D | ConnectionInterface.php | 73 …, string $uri, array $params = [], $body = null, array $options = [], Transport $transport = null); argument
|
/plugin/hipchat/ |
H A D | action.php | 64 $transport = new rcrowe\Hippy\Transport\Guzzle($token, $room, $from); 65 $hippy = new rcrowe\Hippy\Client($transport);
|
/plugin/s5reloaded/ui/effects_support/ |
H A D | controls.js | 611 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 D | prototype.js | 1341 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/tests/Elasticsearch/Tests/ConnectionPool/ |
H A D | StaticConnectionPoolIntegrationTest.php | 38 $connection = $client->transport->getConnection();
|
/plugin/jalbum/ |
H A D | script.js | 20 function transport(){
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
H A D | configuration.asciidoc | 203 Elasticsearch-PHP uses an interchangeable HTTP transport layer called https://github.com/guzzle/Rin… 204 allows the client to construct a generic HTTP request, then pass it to the transport layer to execu… 354 $transport = $this->transport; 357 $newEndpoint = function ($class) use ($transport, $serializer) { 359 return new MyProject\SuperSearch($transport); 364 return new $fullPath($transport, $serializer); 366 return new $fullPath($transport);
|
/plugin/codeprettify/code-prettify/src/ |
H A D | lang-vhdl.js | 39 …n|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|…
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/ |
H A D | README.md | 17 - 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 D | prototype.js | 1139 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 …]
|
/plugin/elasticsearch/ |
H A D | composer.lock | 288 "egeloen/http-adapter": "Allow using httpadapter transport", 289 "guzzlehttp/guzzle": "Allow using guzzle 6 as the http transport",
|