Home
last modified time | relevance | path

Searched refs:response (Results 226 – 250 of 925) sorted by relevance

12345678910>>...37

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DHTTP2HealthCheck.php49 public $response; variable in Google\\Service\\Compute\\HTTP2HealthCheck
138 public function setResponse($response) argument
140 $this->response = $response;
147 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1OptimizedStats.php31 public function setResponse(GoogleCloudApigeeV1OptimizedStatsResponse $response) argument
33 $this->response = $response;
40 return $this->response;
/plugin/oembed/
H A Dsyntax.php134 function parseResponse($response){ argument
135 …if($response['status'] != 200) return $this->error("Provider returned HTTP Status {$response['stat…
142 …if(!$xml = simplexml_load_string($response['body'])) return $this->error("Unable to parse XML: {$r…
150 $oembed = json_decode($response['body']);
255 if(!$response = $this->fetch($query_url)) return false;
256 if(!$oembed = $this->parseResponse($response)) return false;
268 if(!$response = $this->fetch($tag['url'])) return false;
273 if(!$response = $this->fetch($query_url)) return false;
274 if(!$oembed = $this->parseResponse($response)) return false;
293 if(!$response = $this->fetch($query_url)) return false;
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DExpandEventsDTSTARTandDTENDTest.php80 $response = $this->request($request);
84 $response->body,
85 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
86 strpos($response->body, 'END:VCALENDAR') - $start + 13
93 …Could not parse object. Error:' . $e->getMessage(). ' full object: ' . $response->getBodyAsString(…
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DMultiBuilder.php14 public function buildMultiResultSet(Response $response, array $searches): ResultSet argument
16 $resultSets = $this->buildResultSets($response, $searches);
18 return new ResultSet($response, $resultSets);
31 private function buildResultSets(Response $response, array $searches): array argument
33 $data = $response->getData();
/plugin/authgoogle/google/io/
H A DGoogle_REST.php47 * @param Google_HttpRequest $response The http response to be decoded.
50 public static function decodeHttpResponse($response) { argument
51 $code = $response->getResponseHttpCode();
52 $body = $response->getResponseBody();
57 $err = 'Error calling ' . $response->getRequestMethod() . ' ' . $response->getUrl();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerPropsInfiniteDepthTest.php54 …$this->assertEquals(207, $this->response->status, 'Incorrect status received. Full response body: …
62 $this->response->getHeaders()
65 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
89 $body = $this->response->getBodyAsString();
90 $this->assertEquals(207, $this->response->getStatus(), $body);
126 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
145 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php139 $response = $this->client->execute($request);
141 return $this->parseResponse($response, $classes);
144 public function parseResponse(ResponseInterface $response, $classes = array()) argument
146 $contentType = $response->getHeaderLine('content-type');
156 $body = (string) $response->getBody();
174 $response = new Response(
184 $response = REST::decodeHttpResponse($response, $requests[$i-1]);
188 $response = $e;
191 $responses[$key] = $response;
/plugin/davcal/vendor/sabre/http/examples/
H A Dstringify.php41 $response = new Response(424); variable
42 $response->setHeaders([
47 $response->setBody("ABORT! ABORT!");
49 echo $response;
H A Dbasicauth.php35 $response = new Response(); variable
37 $basicAuth = new Auth\Basic("Locked down area", $request, $response);
50 $response->setBody('You are logged in!');
55 Sapi::sendResponse($response);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Auth/Backend/
H A DBackendInterface.php42 * @param ResponseInterface $response
45 function check(RequestInterface $request, ResponseInterface $response); argument
65 * @param ResponseInterface $response
68 function challenge(RequestInterface $request, ResponseInterface $response); argument
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/Backend/
H A DBackendInterface.php42 * @param ResponseInterface $response
45 function check(RequestInterface $request, ResponseInterface $response); argument
65 * @param ResponseInterface $response
68 function challenge(RequestInterface $request, ResponseInterface $response); argument
/plugin/swiftmail/Swift/Connection/
H A DNativeMail.php27 protected $response = "220 Stubbed"; variable in Swift_Connection_NativeMail
83 return $this->response;
91 $this->response = $int . " Stubbed";
118 $this->response = "220 Stubbed";
126 $this->response = "220 Stubbed";
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mount/
H A DPluginTest.php30 …sertEquals(501, $this->response->status,'We expected GET to not be implemented for Directories. Re…
47 $this->assertEquals(200, $this->response->status);
49 $xml = simplexml_load_string($this->response->body);
50 … errors:' . print_r(libxml_get_errors(),true) . '. xml body: ' . $this->response->body . '. What t…
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php83 $response = new Response($responseBody, $res->getStatusCode());
84 $response->setQueryTime($end - $start);
86 $response->setJsonBigintConversion($connection->getConfig('bigintConversion'));
89 $response->setTransferInfo(
96 if ($response->hasError()) {
97 throw new ResponseException($request, $response);
100 if ($response->hasFailedShards()) {
101 throw new PartialShardFailureException($request, $response);
104 return $response;
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAbstractAuth.php38 protected $response; variable in Sabre\\HTTP\\Auth\\AbstractAuth
46 …nction __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) { argument
50 $this->response = $response;
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAbstractAuth.php38 protected $response; variable in Sabre\\HTTP\\Auth\\AbstractAuth
46 …nction __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) { argument
50 $this->response = $response;
/plugin/fedauth/Auth/OpenID/
H A DDiscover.php493 $response = call_user_func_array($discover_function,
496 $yadis_url = $response->normalized_uri;
499 if ($response->isFailure() && !$response->isXRDS()) {
505 $response->response_text);
508 if ($response->isXRDS()) {
517 $response->response_text);
/plugin/data-au/
H A Dscript.js53 function ajaxsource(request, response, getTerm, aliastype) { argument
60 response(jQuery.map(dataau, function (name, id) {
83 source: function (request, response) { argument
86 response,
108 source: function (request, response) { argument
111 response,
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DVCFExportPlugin.php52 * @param ResponseInterface $response
55 function httpGet(RequestInterface $request, ResponseInterface $response) { argument
96 $response->setHeader('Content-Disposition', 'attachment; filename="' . $filename . '"');
97 $response->setHeader('Content-Type', $format);
99 $response->setStatus(200);
100 $response->setBody($output);
/plugin/data/
H A Dscript.js49 * @param {Function} response callback, argument: the data to suggest to the user.
53 function ajaxsource(request, response, getTerm, aliastype) { argument
60 response(jQuery.map(data, function (name, id) {
83 source: function (request, response) { argument
86 response,
108 source: function (request, response) { argument
111 response,
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php42 …$response = $this->bugzillaRPC('Bug.get', array('ids' => $ids, 'include_fields' => $includeFields …
44 foreach ($response['bugs'] as $bug) {
185 $response = $this->bugzillaRPC('Bug.search', $options );
186 …_array('dependencies', $extras) ? $this->fetchDependencies( $response['bugs'] ) : $response['bugs'…
222 …$response = $this->bugzillaRPC('Bug.get', array('ids' => $f_ids, 'include_fields' => $includeField…
224 foreach ($response['bugs'] as $bug) {
234 $result["$f_id"] = $response['bugs'][0];
306 foreach ($response['bugs'] as $bug) {
350 $response = @file_get_contents($this->getConf('bugzilla_baseurl').'/xmlrpc.cgi', false, $context);
353 if ( $response === false ) {
[all …]
/plugin/const/_test/
H A Dconstants.test.php26 $response = $request->get(array('id' => 'test:plugin_const:pageconstants'), '/doku.php');
27 $HTML = $response->queryHTML('.page p');
55 $response = $request->get(array('id' => 'test:plugin_const:dateconstants'), '/doku.php');
56 $HTML = $response->queryHTML('.page p');
93 $response = $request->get(array('id' => 'test:plugin_const:otherconstants'), '/doku.php');
94 $HTML = $response->queryHTML('.page p');
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php124 /** @var \FreeDSx\Ldap\Operation\Response\CompareResponse $response */
125 $response = $this->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)->getResponse();
127 return $response->getResultCode() === ResultCode::COMPARE_TRUE;
140 $response = $this->sendAndReceive(Operations::add($entry), ...$controls);
143 return $response;
212 $response = $this->sendAndReceive(Operations::modify($entry->getDn(), ...$entry->changes()), ...$controls);
215 return $response;
246 * Send a search response and return the entries.
255 /** @var \FreeDSx\Ldap\Operation\Response\SearchResponse $response */
256 $response
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DResponseSet.php22 public function __construct(BaseResponse $response, array $bulkResponses) argument
24 parent::__construct($response->getData(), $response->getStatus());
26 $this->setQueryTime($response->getQueryTime());
27 $this->setTransferInfo($response->getTransferInfo());

12345678910>>...37