Home
last modified time | relevance | path

Searched refs:response (Results 451 – 475 of 925) sorted by last modified time

1...<<11121314151617181920>>...37

/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DICSExportPlugin.php78 * @param ResponseInterface $response
81 function httpGet(RequestInterface $request, ResponseInterface $response) { argument
151 …s->generateResponse($path, $start, $end, $expand, $componentType, $format, $properties, $response);
168 * @param ResponseInterface $response
170 …($path, $start, $end, $expand, $componentType, $format, $properties, ResponseInterface $response) { argument
247 $response->setHeader('Content-Type', $format);
258 $response->setStatus(200);
259 $response->setBody($mergedCalendar);
/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;
H A DBasic.php58 $this->response->addHeader('WWW-Authenticate', 'Basic realm="' . $this->realm . '"');
59 $this->response->setStatus(401);
H A DBearer.php51 $this->response->addHeader('WWW-Authenticate', 'Bearer realm="' . $this->realm . '"');
52 $this->response->setStatus(401);
H A DDigest.php47 …nction __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) { argument
51 parent::__construct($realm, $request, $response);
184 …$this->response->addHeader('WWW-Authenticate', 'Digest realm="' . $this->realm . '",qop="' . $qop …
185 $this->response->setStatus(401);
/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php103 $code = (int)$response->getStatus();
158 throw new ClientHttpException($response);
161 return $response;
351 $response = $this->parseCurlResult($response, $this->curlHandle);
354 throw new ClientException($response['curl_errmsg'], $response['curl_errno']);
357 return $response['response'];
472 * @param string $response
498 unset($response);
511 $response = new Response();
521 $response->setBody($responseBody);
[all …]
H A DSapi.php53 * @param ResponseInterface $response
56 static function sendResponse(ResponseInterface $response) { argument
58 …header('HTTP/' . $response->getHttpVersion() . ' ' . $response->getStatus() . ' ' . $response->get…
59 foreach ($response->getHeaders() as $key => $value) {
71 $body = $response->getBody();
74 $contentLength = $response->getHeader('Content-Length');
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DBasicTest.php59 $response = new Response();
60 $basic = new Basic('Dagger', new Request(), $response);
64 $this->assertEquals('Basic realm="Dagger"', $response->getHeader('WWW-Authenticate'));
65 $this->assertEquals(401, $response->getStatus());
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php228 $response = $this->send($request);
230 if ((int)$response->getStatus() >= 400) {
231 throw new Exception('HTTP error: ' . $response->getStatus());
234 $result = $this->parseMultiStatus($response->getBodyAsString());
293 $response = $this->send($request);
295 $dav = $response->getHeader('Dav');
343 'body' => $response->getBodyAsString(),
344 'statusCode' => (int)$response->getStatus(),
345 'headers' => array_change_key_case($response->getHeaders()),
407 foreach ($multistatus->getResponses() as $response) {
[all …]
H A DCorePlugin.php187 $response->setStatus(206);
188 $response->setBody($body);
225 $response->setStatus(200);
254 $response->setBody('');
262 $response->setBody('');
290 $response->setStatus(204);
339 $response->setStatus(207);
356 $response->setBody($data);
411 $response->setStatus(207);
426 $response->setBody(
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerSimpleTest.php56 ],$this->response->getHeaders());
58 $this->assertEquals(200, $this->response->status);
59 $this->assertEquals('', $this->response->body);
77 ],$this->response->getHeaders());
79 $this->assertEquals(200, $this->response->status);
80 $this->assertEquals('', $this->response->body);
98 ],$this->response->getHeaders());
126 $this->response->getHeaders()
377 ],$this->response->getHeaders());
405 $this->response->getHeaders()
[all …]
H A DTemporaryFileFilterTest.php24 $this->assertEquals('', $this->response->body);
44 ),$this->response->getHeaders());
62 ),$this->response->getHeaders());
73 ),$this->response->getHeaders());
88 ),$this->response->getHeaders());
100 ),$this->response->getHeaders());
148 ),$this->response->getHeaders());
157 ),$this->response->getHeaders());
174 ),$this->response->getHeaders());
181 …$this->assertEquals(207, $this->response->status,'Incorrect status code returned. Body: ' . $this-…
[all …]
H A DTestPlugin.php31 function beforeMethod(RequestInterface $request, ResponseInterface $response) { argument
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);
H A DServerPropsTest.php47 $this->assertEquals(207, $this->response->status);
55 $this->response->getHeaders()
58 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
73 $this->assertEquals(207, $this->response->status);
81 $this->response->getHeaders()
84 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
107 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
141 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
160 …replace("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/","xmlns\\1=\"urn:DAV\"",$this->response->body);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedReportSetTest.php42 …is->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full response…
44 …place("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/", "xmlns\\1=\"urn:DAV\"", $this->response->body);
83 …is->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full response…
85 …place("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/", "xmlns\\1=\"urn:DAV\"", $this->response->body);
90 $data = $xml->xpath('/d:multistatus/d:response/d:propstat/d:prop');
103 …uals(1, count($data), 'We expected 1 \'x:myreport\' element. Full body: ' . $this->response->body);
106 …1, count($data), 'We expected 1 \'d:anotherreport\' element. Full body: ' . $this->response->body);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DExpandPropertiesTest.php101 …' appearances of ' . $xpath . ' . We found ' . count($result) . '. Full response: ' . $server->htt…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SecurityCommandCenter/
H A DOperation.php39 public $response; variable in Google\\Service\\SecurityCommandCenter\\Operation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRuntimeConfig/
H A DOperation.php39 public $response; variable in Google\\Service\\CloudRuntimeConfig\\Operation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DTelegramBotHandler.php251 throw new RuntimeException('Telegram API error. Description: No response');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DAuditLog.php60 public $response; variable in Google\\Service\\ServiceControl\\AuditLog
229 public function setResponse($response) argument
231 $this->response = $response;
238 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleLongrunningOperation.php39 public $response; variable in Google\\Service\\Document\\GoogleLongrunningOperation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataprocMetastore/
H A DOperation.php39 public $response; variable in Google\\Service\\DataprocMetastore\\Operation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DOperation.php39 public $response; variable in Google\\Service\\OnDemandScanning\\Operation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudShell/
H A DOperation.php39 public $response; variable in Google\\Service\\CloudShell\\Operation
100 public function setResponse($response) argument
102 $this->response = $response;
109 return $this->response;

1...<<11121314151617181920>>...37