Home
last modified time | relevance | path

Searched refs:client (Results 51 – 75 of 539) sorted by relevance

12345678910>>...22

/plugin/epub/scripts/
H A Dscript.js1 function epub_show_throbber(user,client) { argument
13 if(client) {
14 params += "&client="+encodeURIComponent(client);
28 function _epub_show_throbber(user,client) { argument
29 epub_show_throbber(user,client);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DPaging.php39 protected $client;
62 * @param LdapClient $client
66 public function __construct(LdapClient $client, SearchRequest $search, int $size = 1000)
69 $this->client = $client;
160 $message = $this->client->sendAndReceive(
37 protected $client; global() variable in FreeDSx\\Ldap\\Search\\Paging
59 __construct(LdapClient $client, SearchRequest $search, int $size = 1000) global() argument
H A DRangeRetrieval.php33 protected $client;
36 * @param LdapClient $client argument
38 public function __construct(LdapClient $client)
40 $this->client = $client;
136 $result = $this->client->readOrFail($entry, [$attrReq]);
169 $entry = $this->client->readOrFail($entry, [$attrResult]);
31 protected $client; global() variable in FreeDSx\\Ldap\\Search\\RangeRetrieval
H A DDirSync.php73 protected $client;
81 * @param LdapClient $client
86 public function __construct(LdapClient $client, ?string $namingContext = null, ?FilterInterface $filter = null, ...$attributes)
88 $this->client = $client;
152 $response = $this->client->send($this->getSearchRequest(), $this->getDirSyncControl());
232 * Whether or not to only retrieve objects and attributes that are accessible to the client.
305 $this->defaultRootNc = (string) $this->client->readOrFail('', ['defaultNamingContext'])->get('defaultNamingContext');
70 protected $client; global() variable in FreeDSx\\Ldap\\Search\\DirSync
83 __construct(LdapClient $client, string $namingContext = null, FilterInterface $filter = null, ...$attributes) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Safebrowsing/
H A DGoogleSecuritySafebrowsingV4FindFullHashesRequest.php51 public function setClient(GoogleSecuritySafebrowsingV4ClientInfo $client) argument
53 $this->client = $client;
60 return $this->client;
/plugin/redproject/
H A Dsyntax.php110 $client->setImpersonateUser($redUser);
113 $proj = $client->api('project')->show($data['proj']);
121 $parentId = $client->api('project')->getIdByName($nameParent);
122 $parent = $client->api('project')->show($parentId);
159 $versions = $client->api('version')->all($data['proj']);
189 $issueTotal = $client->api('issue')->all(array(
196 $issueOpen = $client->api('issue')->all(array(
235 $issueTotal = $client->api('issue')->all(array(
240 $issueOpen = $client->api('issue')->all(array(
247 $members = $client->api('membership')->all($projId);
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/
H A DApplicationDefaultCredentials.php165 if (!($client = HttpClientCache::getHttpClient())) {
166 $client = new Client();
167 HttpClientCache::setHttpClient($client);
170 $httpHandler = HttpHandlerFactory::build($client);
276 if (!($client = HttpClientCache::getHttpClient())) {
277 $client = new Client();
278 HttpClientCache::setHttpClient($client);
281 $httpHandler = HttpHandlerFactory::build($client);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Doverview.asciidoc4 This is the official PHP client for {es}. It is designed to be a low-level
5 client that does not stray from the REST API.
9 consistency makes it easy to get started with a client and to seamlessly switch
12 The client is designed to be "unopinionated". There are a few universal niceties
13 added to the client (cluster state sniffing, round-robin requests, and so on)
H A Dcrud.asciidoc10 Elasticsearch-PHP you create and pass associative arrays to the client for
32 $response = $client->index($params);
45 $response = $client->index($params);
65 $response = $client->index($params);
96 $responses = $client->bulk($params);
123 $responses = $client->bulk($params);
135 $responses = $client->bulk($params);
143 document is indexed and your client receives an acknowledgement, you can
155 $response = $client->get($params);
187 $response = $client
[all...]
H A Dsearch-operations.asciidoc5 the client.
7 The client gives you full access to every query and parameter exposed by the
29 And here is the same query constructed in the client:
44 $results = $client->search($params);
79 and the client detects this automatically:
96 $results = $client->search($params);
119 $results = $client->search($params);
132 Bool queries can be easily constructed using the client. For example, this
173 $results = $client->search($params);
231 $results = $client
[all...]
H A Dhelpers.asciidoc1 [[client-helpers]]
4 The client comes with helpers to give you a more comfortable experience with
37 // $client is Elasticsearch\Client instance
38 $pages = new SearchResponseIterator($client, $search_params);
74 // $client is Elasticsearch\Client instance
75 $pages = new SearchResponseIterator($client, $search_params);
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DREST.php39 * @param Client $client
49 ClientInterface $client, argument
59 array($client, $request, $expectedClass)
72 * @param Client $client
79 …public static function doExecute(ClientInterface $client, RequestInterface $request, $expectedClas… argument
82 $httpHandler = HttpHandlerFactory::build($client);
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DHttpClientCache.php37 * @param ClientInterface|null $client
40 public static function setHttpClient(ClientInterface $client = null) argument
42 self::$httpClient = $client;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AuthorizedBuyersMarketplace/
H A DSendRfpRequest.php28 public $client; variable in Google\\Service\\AuthorizedBuyersMarketplace\\SendRfpRequest
77 public function setClient($client) argument
79 $this->client = $client;
86 return $this->client;
H A DProposal.php38 public $client; variable in Google\\Service\\AuthorizedBuyersMarketplace\\Proposal
151 public function setClient($client) argument
153 $this->client = $client;
160 return $this->client;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DEntity.php54 public function setClient(Client $client) argument
56 $this->client = $client;
63 return $this->client;
/plugin/linksenhanced/
H A Daction.php50 $client = new DokuHTTPClient();
51 $client->sendRequest($url);
52 $httpcode = $client->status;
54 $data['error'] = $client->error;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DMultiGetTest.php40 $client = new DAV\Client(array('baseUri'=>'/'));
42 $result = $client->parseMultiStatus($response->body);
83 $client = new DAV\Client(array('baseUri'=>'/'));
85 $result = $client->parseMultiStatus($response->body);
/plugin/fckg/
H A Dhelper.php71 $client = $_SERVER['REMOTE_USER'];
73 else $client = "";
85 $client = "";
111 $client = "";
384 oDokuWiki_FCKEditorInstance.dwiki_client = "$client";
/plugin/authfacebook/lib/
H A DFacebook.php81 protected $client; variable in Facebook\\Facebook
146 $this->client = new FacebookClient(
183 return $this->client;
195 $client = $this->getClient();
196 $this->oAuth2Client = new OAuth2Client($app, $client, $this->defaultGraphVersion);
298 return new FacebookJavaScriptHelper($this->app, $this->client, $this->defaultGraphVersion);
308 return new FacebookCanvasHelper($this->app, $this->client, $this->defaultGraphVersion);
318 return new FacebookPageTabHelper($this->app, $this->client, $this->defaultGraphVersion);
440 $this->lastResponse = $this->client->sendRequest($paginationRequest);
469 return $this->lastResponse = $this->client->sendRequest($request);
[all …]
/plugin/actickets/
H A Dacclient.php31 private $client; variable in actickets_acclient
39 $this->client = new DokuHTTPClient();
44 return $json->decode($this->client->get($this->base_url . '&' .
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D1da77e114459e0b77d78a3dcc8fae429.asciidoc8 $response = $client->indices()->create($params);
12 $response = $client->indices()->create($params);
23 $response = $client->indices()->putMapping($params);
H A D804a97ff4d0613e6568e4efb19c52021.asciidoc12 $response = $client->cluster()->putSettings($params);
20 $response = $client->cluster()->putSettings($params);
28 $response = $client->cluster()->putSettings($params);
/plugin/xcom/scripts/
H A Dxcom_save.php158 private function xcom_get_data($task,$client,$use_buffer=false, $params="") { argument
172 while(!($resp = call_user_func_array(array($client,"query"),$params))){
181 $this->data_buffer = $client->getResponse();
185 return $client->getResponse();
218 $client = new IXR_Client($url);
219 $client->debug = $debug; // enable for debugging
221 $resp = $client->query('dokuwiki.login',$user,$pwd);
222 $ok = $client->getResponse();
224 if($ok) return $client;
/plugin/unameban/
H A Daction.php32 $client = $_SERVER['REMOTE_USER'];
35 if($fields[0] == $client){
38 hsc($client), strftime($conf['dformat'],$fields[1]),

12345678910>>...22