Home
last modified time | relevance | path

Searched refs:request (Results 326 – 350 of 659) sorted by relevance

1...<<11121314151617181920>>...27

/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttpAdapter.php124 protected function _getUri(ElasticaRequest $request, Connection $connection): string argument
134 $requestPath = $request->getPath();
141 $query = $request->getQuery();
H A DAbstractTransport.php51 * Executes the transport request.
53 * @param Request $request Request object
59 abstract public function exec(Request $request, array $params): Response; argument
/plugin/tagsections/
H A Dscript.js17 request({availableTags: true, tagsForSection: true}, showTagSelection);
111 var request = function(data, success) { function
125 request({tags:newTags, saveTags:true}, function(){
126 request({contentOfPage:true}, function(data){
/plugin/schedule/syntax/
H A Dblock.php93 $request = false;
97 $request = true;
122 if ($request)
129 if (!$request)
/plugin/airtable/
H A Dsyntax.php650 $request .= '&filterByFormula=' . urlencode($data['where']);
668 $request .= '&maxRecords=' . $max_records;
679 $request .= '&' . urlencode('sort[0][field]') . '=' . urlencode($data['order-by']);
680 $request .= '&' . urlencode('sort[0][direction]') . '=' . urlencode($order);
684 return $this->sendRequest($request);
695 function sendRequest($request) { argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dserializers.asciidoc8 The job of the serializer is to encode the outgoing request body and decode the
21 The `SmartSerializer` inspects the data to be encoded. If the request body is
28 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request
69 The `ArrayToJSONSerializer` inspects the data to be encoded. If the request body
76 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request
116 JSON for Elasticsearch request bodies.
160 * Serialize request body
H A Dfutures.asciidoc15 those `n` request's latencies. With the multi interface, the time to execute `n`
16 requests is the latency of the slowest request (assuming enough handles are
98 $futures[] = $client->get($params); //queue up the request
128 $futures[] = $client->get($params); //queue up the request
186 $futures[] = $client->get($params); //queue up the request
213 $futures['getRequest'] = $client->get($params); // First request
226 $futures['indexRequest'] = $client->index($params); // Second request
242 $futures['searchRequest'] = $client->search($params); // Third request
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dendless_loop_bug.md5 a `message` parameter from the request and displays that message back to the user. If the request
/plugin/authfacebook/lib/HttpClients/
H A DFacebookGuzzleHttpClient.php61 $request = $this->guzzleClient->createRequest($method, $url, $options);
64 $rawResponse = $this->guzzleClient->send($request);
/plugin/batchedit/
H A Dengine.php603 public function load($request, $config) { argument
604 $this->setId($request->getSessionId());
612 if (!is_array($properties) || !empty(array_diff_assoc($properties, $this->getProperties($request, $config)))) {
634 public function save($request, $config) { argument
635 $this->saveArray('props', $this->getProperties($request, $config));
749 private function getProperties($request, $config) { argument
756 $properties['namespace'] = $request->getNamespace();
757 $properties['regexp'] = $request->getRegexp();
758 $properties['replacement'] = $request->getReplacement();
990 // request parsin
1056 markRequestedMatches($request, $policy = self VERIFY_OFFSET) global() argument
[all...]
/plugin/authloginapi/
H A Daction.php66 $request = array(
73 $encoded = rtrim(strtr(base64_encode(json_encode($request)), '+/', '-_'), '=');
/plugin/externalembed/
H A Dscript.js47 '" src="' + jsonData.request +
56 '" src="' + jsonData.request +
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php266 * @param RequestInterface $request
270 function httpMkCalendar(RequestInterface $request, ResponseInterface $response) { argument
272 $body = $request->getBodyAsString();
273 $path = $request->getPath();
815 * @param RequestInterface $request The http request.
820 …protected function validateICalendar(&$data, $path, &$modified, RequestInterface $request, Respons… argument
938 $request,
1013 * @param RequestInterface $request
1017 function httpAfterGet(RequestInterface $request, ResponseInterface $response) { argument
1024 $request->getHeader('Accept'),
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php252 * @param RequestInterface $request
256 function httpMkCalendar(RequestInterface $request, ResponseInterface $response) { argument
258 $body = $request->getBodyAsString();
259 $path = $request->getPath();
781 * @param RequestInterface $request The http request.
786 …protected function validateICalendar(&$data, $path, &$modified, RequestInterface $request, Respons… argument
880 $request,
936 * @param RequestInterface $request
940 function httpAfterGet(RequestInterface $request, ResponseInterface $response) { argument
947 $request->getHeader('Accept'),
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DFreeBusyRequestTest.php17 protected $request; variable in Sabre\\CalDAV\\Schedule\\FreeBusyRequestTest
69 $this->request = HTTP\Sapi::createFromServerArray([
75 $this->server->httpRequest = $this->request;
85 $this->authPlugin->beforeMethod($this->request, $this->response);
/plugin/swiftmail/Swift/
H A DMessage.php445 public function requestReadReceipt($request) argument
447 if ($request instanceof Swift_Address) $request = $request->build();
448 if (!$request)
456 $this->headers->set("Disposition-Notification-To", $request);
457 $this->headers->set("X-Confirm-Reading-To", $request);
458 $this->headers->set("Return-Receipt-To", $request);
/plugin/webcomponent/_test/
H A Drelated.test.php169 $request = new TestRequest();
170 $request->get(array('id' => self::$extraPatternPage));
171 $response = $request->execute();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DClientProtocolHandler.php96 * Make a single search request to fetch the RootDSE. Handle the various errors that could occur.
135 * @param RequestInterface $request
148 public function send(RequestInterface $request, Control ...$controls): ?LdapMessageResponse
152 $request,
159 $messageFrom = $this->protocolHandlerFactory->forRequest($request)->handleRequest($context);
125 send(RequestInterface $request, Control...$controls) global() argument
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMessage.php215 $request = new Request(
223 return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlMultiHandler.php10 * This handler supports future responses and the "delay" request client
11 * option that can be used to delay before sending a request.
15 * **curl** key of the "client" key of the request.
35 * resources. the callable accepts a request hash and returns an array
80 public function __invoke(array $request) argument
83 $result = $factory($request);
85 'request' => $request,
152 // If the request is a delay, then add the reques to the curl multi
154 if (isset($entry['request']['clien
[all...]
/plugin/xtern/
H A Dscript.js35 var request = jQuery.ajax({
45 jQuery.when(request).done(function( data ,status) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerPluginTest.php50 $request = HTTP\Sapi::createFromServerArray($serverVars);
51 $this->server->httpRequest = ($request);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/
H A DPluginTest.php74 … $request = new \Sabre\HTTP\Request('MOVE', '/files/source', ['Destination' => '/files/dest']);
75 $this->assertHTTPStatus(201, $request);
/plugin/linksuggest/_test/
H A DSuggestionAjaxRequestsTest.php163 $request = new TestRequest();
164 $response = $request->post(['call' => $call] + $post, '/lib/exe/ajax.php');
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DREADME.md24 $response = $client->request('GET', 'https://api.github.com/repos/guzzle/guzzle');
30 # Send an asynchronous request.
31 $request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org');
32 $promise = $client->sendAsync($request)->then(function ($response) {

1...<<11121314151617181920>>...27