Home
last modified time | relevance | path

Searched refs:connections (Results 26 – 50 of 74) sorted by relevance

123

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClientConfiguration.php35 'connections' => [], // host, port, path, transport, compression, persistent, timeout, username, password, auth_type, config -> (curl, headers, url)
82 $connections = [];
86 $connections[] = self::parseDsn($arg);
88 $clientConfiguration->set('connections', $connections);
/plugin/upgrade/HTTP/
H A DHTTPClient.php57 // list of kept alive connections
58 protected static $connections = array(); variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
253 $this->debug('connection pool', self::$connections);
255 if (isset(self::$connections[$connectionId])) {
257 $socket = self::$connections[$connectionId];
286 self::$connections[$connectionId] = $socket;
288 unset(self::$connections[$connectionId]);
369 unset(self::$connections[$connectionId]);
478 unset(self::$connections[$connectionId]);
487 unset(self::$connections[
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php715 $connections = $this->buildConnectionsFromHosts($this->hosts);
719 $connections,
726 $connections,
734 $this->retries = count($connections);
764 $connections = [];
776 $connections[] = $this->connectionFactory->create($host);
779 return $connections;
/plugin/elwikiupgrade/
H A DHTTPClient.php68 static $connections = array(); variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
261 $this->_debug('connection pool', self::$connections);
263 if (isset(self::$connections[$connectionId])) {
265 $socket = self::$connections[$connectionId];
294 self::$connections[$connectionId] = $socket;
296 unset(self::$connections[$connectionId]);
377 unset(self::$connections[$connectionId]);
470 unset(self::$connections[$connectionId]);
479 unset(self::$connections[$connectionId]);
/plugin/webdavclient/db/
H A Dupdate0002.sql1 ALTER TABLE connections ADD permission text;
H A Dupdate0001.sql1 CREATE TABLE connections ( table
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/Selectors/
H A DSelectorInterface.php28 * @param \Elasticsearch\Connections\ConnectionInterface[] $connections an array of ConnectionInterface instances to choose from
30 public function select(array $connections): ConnectionInterface; argument
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
H A DIntegrationTest.php153 …public function __construct($serviceCreator, $name = 'anonymous', array $connections = ['default' … argument
156 $defaultConnection = key($connections);
162 …parent::__construct($name, $connections, $managers, $defaultConnection, $defaultManager, $proxyInt…
H A DObjectConstructorTest.php307 …public function __construct($serviceCreator, $name = 'anonymous', array $connections = ['default' … argument
310 $defaultConnection = key($connections);
316 …parent::__construct($name, $connections, $managers, $defaultConnection, $defaultManager, $proxyInt…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DServiceNetworking.php195 'connections',
199 'path' => 'v1/{+parent}/connections',
219 'path' => 'v1/{+parent}/connections',
H A DConnectors.php123 'connections',
127 'path' => 'v1/{+parent}/connections',
189 'path' => 'v1/{+parent}/connections',
H A DPeopleService.php513 'connections',
517 'path' => 'v1/{+resourceName}/connections',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconnection-pool.asciidoc9 is to manage this set of unruly connections and try to provide the best behavior
102 removed from the cluster, the client updates its pool of active connections.
171 public function __construct($connections, SelectorInterface $selector, ConnectionFactory $factory, $connectionPoolParams)
173 parent::__construct($connections, $selector, $factory, $connectionPoolParams);
219 responsible for creating, maintaining, and destroying connections everytime the
H A Dper-request-configuration.asciidoc266 to your client. If your client kills connections rapidly with a timeout, only to
268 many connections because there is no "back-pressure" on the client. In these
/plugin/webdavclient/
H A Dadmin.php219 $connections = $this->hlp->getConnections();
227 foreach($connections as $conn)
H A Dhelper.php1559 $connections = $this->getConnections();
1560 foreach($connections as $connection)
1577 $connections = $this->getConnections();
1578 foreach($connections as $connection)
/plugin/oauth/
H A Dcomposer.lock33 "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client.",
/plugin/jdraw/src/com/mxgraph/examples/swing/
H A DValidation.java.bak73 // Source node does not want any incoming connections
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1067 private static $connections; variable in phpseclib3\\Net\\SSH2
1294 self::$connections[$this->getResourceId()] = class_exists('WeakReference')
3275 unset(self::$connections[$this->getResourceId()]);
5222 if (isset(self::$connections[$id])) {
5223 …return self::$connections[$id] instanceof \WeakReference ? self::$connections[$id]->get() : self::…
5237 return self::$connections;
5240 foreach (self::$connections as $key => $ref) {
/plugin/jdraw/src/com/mxgraph/examples/swing/resources/
H A Deditor.properties157 connections=Connections key
H A Deditor.properties.bak153 connections=Connections
H A Deditor_zh-CN.properties153 connections=Connections key
H A Deditor_de.properties161 connections=Verbindungen key
H A Deditor_de.properties.bak154 connections=Verbindungen
/plugin/bpmnio/vendor/bpmn-js/
H A DCHANGELOG.md114 * `FIX`: correct preserving of outgoing connections on event-based gateway morph ([#1738](https://g…
446 * `FEAT`: prefer straight layout for sub-process connections ([#1309](https://github.com/bpmn-io/bp…
533 * `FIX`: disable waypoints-cropping after pasting connections ([`9f8a724e`](https://github.com/bpmn…
595 * `FIX`: snap connections to task mid ([`86c61b0`](https://github.com/bpmn-io/bpmn-js/commit/86c61b…
596 * `FIX`: snap connections to sub process mid ([`83e9f05`](https://github.com/bpmn-io/bpmn-js/commit…
718 * `FIX`: correctly layout straight boundary to target connections ([#891](https://github.com/bpmn-i…
812 * `FIX`: prevent duplicate connections after drop on flow ([#774](https://github.com/bpmn-io/bpmn-j…

123