Home
last modified time | relevance | path

Searched refs:client (Results 126 – 150 of 539) sorted by relevance

12345678910>>...22

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndexTemplate.php38 public function __construct(Client $client, $name)
40 $this->_client = $client;
107 * Returns index template client.
35 __construct(Client $client, $name) global() argument
H A DNode.php48 public function __construct(string $id, Client $client) argument
50 $this->_client = $client;
83 * Returns the current client object.
H A DCluster.php45 public function __construct(Client $client)
47 $this->_client = $client;
42 __construct(Client $client) global() argument
H A DTask.php43 public function __construct(Client $client, string $id)
45 $this->_client = $client;
40 __construct(Client $client, string $id) global() argument
H A DStatus.php40 public function __construct(Client $client)
42 $this->_client = $client;
38 __construct(Client $client) global() argument
/plugin/letsencrypt/classes/
H A DLescript.php16 $client = new Client($this->ca);
18 parent::__construct($certificatesDir, $webRootDir, $logger, $client);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientReferralHandler.php146 $client = $referralChaser !== null ? $referralChaser->client($options) : new LdapClient($options);
152 # this client continues on with a different bind state, which seems confusing / problematic.
154 $client->send($bind);
157 $response = $client->send($messageTo->getRequest(), ...$messageTo->controls());
/plugin/authgoogle/google/contrib/
H A DGoogle_AndroidpublisherService.php115 * @param Google_Client $client
117 public function __construct(Google_Client $client) { argument
122 $client->addService($this->serviceName, $this->version);
H A DGoogle_TranslateService.php131 * @param Google_Client $client
133 public function __construct(Google_Client $client) { argument
138 $client->addService($this->serviceName, $this->version);
H A DGoogle_AppstateService.php141 * @param Google_Client $client
143 public function __construct(Google_Client $client) { argument
148 $client->addService($this->serviceName, $this->version);
H A DGoogle_Oauth2Service.php105 * @param Google_Client $client
107 public function __construct(Google_Client $client) { argument
112 $client->addService($this->serviceName, $this->version);
H A DGoogle_AuditService.php76 * @param Google_Client $client
78 public function __construct(Google_Client $client) { argument
83 $client->addService($this->serviceName, $this->version);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DProxyRequestHandler.php31 * set the LDAP client options variable.
121 * @param LdapClient $client
123 public function setLdapClient(LdapClient $client): void
125 $this->ldap = $client;
122 setLdapClient(LdapClient $client) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/
H A DConnectionPool.php89 public function onFail(Connection $connection, Exception $e, Client $client): void argument
94 ($this->_callback)($connection, $e, $client);
/plugin/bez/ctl/
H A Dtask.php42 $client = $_POST['client']; variable
44 $task->invite($client);
45 $this->add_notification($this->model->userFactory->get_user_email($client), $this->getLang('invitation_has_been_send'));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dinstallation.asciidoc20 libcurl extension, but it is not technically required for the client to operate.
64 * Install the client with Composer. The first command downloads the
80 and you don't need to add it again. Finally, instantiate a new client:
86 $client = Elasticsearch\ClientBuilder::create()->build();
H A Dphp_json_objects.asciidoc4 A common source of confusion with the client revolves around JSON arrays and
55 $results = $client->search($params);
103 $results = $client->search($params);
125 $results = $client->search($params);
169 $results = $client->search($params);
H A Dselectors.asciidoc26 $client = ClientBuilder::create()
62 $client = ClientBuilder::create()
80 $client = ClientBuilder::create()
127 $client = ClientBuilder::create()
142 $client = ClientBuilder::create()
H A Dendpoint-closure.asciidoc4 The client uses an Endpoint closure to dispatch API requests to the correct
31 $client = ClientBuilder::create()
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A DHealth.php21 * @var Client client object
30 public function __construct(Client $client)
32 $this->_client = $client;
27 __construct(Client $client) global() argument
/plugin/oembed/
H A Dsyntax.php409 $client = new DokuHTTPClient();
410 if(!$client->sendRequest($url)){
414 return array('status' => $client->status,
415 'headers' => $client->resp_headers,
416 'body' => $client->resp_body);
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md3 most client functionality described in [RFC 4511](https://tools.ietf.org/html/rfc4511) and some very limited LDAP server
4 functionality. It also implements some other client features from various RFCs:
100 # Create the entry with the LDAP client
111 # Use the read() method of the LDAP client to search for a specific entry.
145 # Send the built up changes back to LDAP to update the entry via the LDAP client update method.
161 # Pass the entry object to the delete method of the LDAP client if it was found.
/plugin/ckgdoku/action/
H A Dmeta.php55 $client = $_SERVER['REMOTE_USER']; //$INFO['client'];
57 $which = $ar[$client];
76 … $_form.= '<input type="textbox" name="cked_client" disabled value="' . $client .'"/></label>';
214 $client = $INPUT->str('dwp_client');
215 $ar[$client] = $dwp;
944 $client = $_SERVER['REMOTE_USER'];
947 if(isset($ar[$client])) {
948 if($ar[$client] =='Y') return true; // Y = dw_priority selected
949 if($ar[$client] =='N') {
/plugin/ckgedit/action/
H A Dmeta.php65 $client = $_SERVER['REMOTE_USER']; //$INFO['client'];
67 $which = $ar[$client];
86 … $_form.= '<input type="textbox" name="cked_client" disabled value="' . $client .'"/></label>';
242 $client = $INPUT->str('dwp_client');
243 $ar[$client] = $dwp;
981 $client = $_SERVER['REMOTE_USER'];
984 if(isset($ar[$client])) {
985 if($ar[$client] =='Y') return true; // Y = dw_priority selected
986 if($ar[$client] =='N') {
/plugin/elasticsearch/helper/
H A Dclient.php14 * Access to the Elastica client
58 * Connects to the elastica servers and returns the client object
93 $client = $this->connect();
94 $index = $client->getIndex($this->getConf('indexname'));

12345678910>>...22