Home
last modified time | relevance | path

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

123

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe
/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/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/bible/bible_douayRheims/
H A DEcclesiasticus.txt1215 39:16. I will yet meditate that I may declare: for I am filled as with a holy transport.
/plugin/codemirror/dist/modes/
H A Dvhdl.min.js.map1 …or,select,severity,signal,\" +\n \"sla,sll,sra,srl,subtype,then,to,transport,type,unaffected,…
/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/combo/resources/firebug/
H A Dfirebug-lite-1.4.js1365 }this.Ajax={requests:[],transport:null,states:["Uninitialized","Loading","Loaded","Interactive","Complete"],initialize:function(){this.transport=FBL.getNativeXHRObject() property in Ajax
1392 },sendRequest:function(){var t=FBL.Ajax.transport,r=FBL.Ajax.requests.shift(),data;
1399 },onStateChange:function(options){var fn,o=options,t=this.transport;
1407 }}},getResponse:function(options){var t=this.transport,type=options.dataType;
1413 }}}}}},getState:function(){return this.states[this.transport.readyState]
/plugin/diagramsnet/lib/js/socket.io/
H A Dsocket.io.min.js6 …op(),o.id=this.ids++);var i=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.wri…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js.map1 …ult shall *not* be used for display purposes but for externalization or transport.\n * * The r…
H A D3.3.js.map1 …ult shall *not* be used for display purposes but for externalization or transport.\n * * The r…
H A D4.4.js.map1 …ult shall *not* be used for display purposes but for externalization or transport.\n * * The r…
H A Dbundle.js.map1 …ult shall *not* be used for display purposes but for externalization or transport.\n * * The r…
H A Deditor.worker.js.map1 …ult shall *not* be used for display purposes but for externalization or transport.\n * * The r…
H A Djson.worker.js.map1transport.\n * * The result will be encoded using the percentage encoding and encoding happens…
/plugin/elasticsearch/
H A Dcomposer.lock450 "guzzlehttp/guzzle": "Allow using guzzle as transport",
/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/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md54 - Fixed using object instead of array in onFailure transport event
/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/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
H A Dhttp-meta-data.asciidoc16 version of `es=Elasticsearch`, `t` is the transport version (same of client),
H A Drelease-notes.asciidoc125 * Fixed using object instead of array in onFailure transport event
/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/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...]

123