Home
last modified time | relevance | path

Searched refs:HTTP (Results 51 – 75 of 376) sorted by relevance

12345678910>>...16

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DPrincipalPropertySearchTest.php6 use Sabre\HTTP; alias
21 $fakeServer->sapi = new HTTP\SapiMock();
22 $fakeServer->httpResponse = new HTTP\ResponseMock();
57 $request = HTTP\Sapi::createFromServerArray($serverVars);
96 $request = HTTP\Sapi::createFromServerArray($serverVars);
136 $request = HTTP\Sapi::createFromServerArray($serverVars);
209 $request = HTTP\Sapi::createFromServerArray($serverVars);
281 $request = HTTP\Sapi::createFromServerArray($serverVars);
346 $request = HTTP\Sapi::createFromServerArray($serverVars);
H A DExpandPropertiesTest.php6 use Sabre\HTTP; alias
32 $fakeServer->sapi = new HTTP\SapiMock();
34 $fakeServer->httpResponse = new HTTP\ResponseMock();
62 $request = HTTP\Sapi::createFromServerArray($serverVars);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DCopyTest.php5 use Sabre\HTTP; alias
28 $request = new HTTP\Request('COPY','/foo', [
31 $response = new HTTP\ResponseMock();
H A DIssue33Test.php5 use Sabre\HTTP; alias
81 $request = HTTP\Sapi::createFromServerArray($serverVars);
84 $response = new HTTP\ResponseMock();
99 $server->sapi = new HTTP\SapiMock();
H A DAbstractServer.php5 use Sabre\HTTP; alias
22 $this->response = new HTTP\ResponseMock();
24 $this->server->sapi = new HTTP\SapiMock();
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhttp-handler.asciidoc2 === Configure the HTTP Handler
4 Elasticsearch-PHP uses an interchangeable HTTP transport layer called
6 a generic HTTP request, then pass it to the transport layer to execute. The
8 choose from several HTTP handlers depending on your needs.
15 of HTTP requests to be processed in parallel.
17 You can configure the HTTP handler with one of several helper functions, or
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAbstractAuth.php3 namespace Sabre\HTTP\Auth;
5 use Sabre\HTTP\RequestInterface;
6 use Sabre\HTTP\ResponseInterface;
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAbstractAuth.php3 namespace Sabre\HTTP\Auth;
5 use Sabre\HTTP\RequestInterface;
6 use Sabre\HTTP\ResponseInterface;
/plugin/davcal/vendor/sabre/http/examples/
H A Dbasicauth.php15 use Sabre\HTTP\Sapi;
16 use Sabre\HTTP\Response;
17 use Sabre\HTTP\Auth;
H A Dclient.php11 use Sabre\HTTP\Request;
12 use Sabre\HTTP\Client;
H A Dasyncclient.php13 use Sabre\HTTP\Request;
14 use Sabre\HTTP\Client;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/
H A DDAVServerTest.php6 Sabre\HTTP\Request,
7 Sabre\HTTP\Response,
8 Sabre\HTTP\Sapi;
103 $this->server->sapi = new HTTP\SapiMock();
163 $request = HTTP\Request::createFromServerArray($request);
166 $this->server->httpResponse = new HTTP\ResponseMock();
232 function assertHTTPStatus($expectedStatus, HTTP\Request $req) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DSogoStripContentTypeTest.php5 use Sabre\HTTP; alias
34 $this->server->httpRequest = HTTP\Sapi::createFromServerArray(array(
45 $this->server->httpRequest = new HTTP\Request('GET','/addressbooks/user1/book1/card1.vcf', [
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php5 use Sabre\HTTP; alias
19 class Client extends HTTP\Client {
223 $request = new HTTP\Request('PROPFIND', $url, [
275 $request = new HTTP\Request('PROPPATCH', $url, [
292 $request = new HTTP\Request('OPTIONS', $this->getAbsoluteUrl(''));
341 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DBearerTest.php3 namespace Sabre\HTTP\Auth;
5 use Sabre\HTTP\Request;
6 use Sabre\HTTP\Response;
H A DBasicTest.php3 namespace Sabre\HTTP\Auth;
5 use Sabre\HTTP\Request;
6 use Sabre\HTTP\Response;
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DREADME.md8 Provides a simple API and specification that abstracts away the details of HTTP
9 into a single PHP function. RingPHP be used to power HTTP clients and servers
14 By abstracting the implementation details of different HTTP clients and
15 servers, RingPHP allows you to utilize pluggable HTTP clients and servers
43 HTTP requests.
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DExpandEventsFloatingTimeTest.php4 use Sabre\HTTP; alias
71 $request = new HTTP\Request('REPORT', '/calendars/user1/calendar1', [
124 $request = new HTTP\Request('REPORT', '/calendars/user1/calendar1', [
173 …$request = new HTTP\Request('GET', '/calendars/user1/calendar1?export&start=1&end=2000000000&expan…
H A DFreeBusyReportTest.php7 use Sabre\HTTP; alias
87 $request = HTTP\Sapi::createFromServerArray([
91 $this->server->httpResponse = new HTTP\ResponseMock();
139 $request = HTTP\Sapi::createFromServerArray(array(
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DClient.php5 use Sabre\HTTP; alias
20 class Client extends HTTP\Client {
306 …throw new HTTP\ClientException('PROPPATCH failed. The following properties errored: ' . implode(',…
324 $request = new HTTP\Request('OPTIONS', $this->getAbsoluteUrl(''));
373 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
/plugin/webdav/_test/lib/
H A DDAVServerTest.php4 use Sabre\HTTP; alias
54 $request = HTTP\Sapi::createFromServerArray($request);
70 class ResponseMock extends HTTP\Response
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mount/
H A DPluginTest.php6 use Sabre\HTTP; alias
26 $request = HTTP\Sapi::createFromServerArray($serverVars);
43 $request = HTTP\Sapi::createFromServerArray($serverVars);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php123 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
125 …$writer->writeElement('{DAV:}href', $writer->contextUri . \Sabre\HTTP\encodePath($this->getHref())…
138 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
153 '{DAV:}status' => 'HTTP/1.1 418 ' . \Sabre\HTTP\Response::$statusCodes[418]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DLocalHref.php5 use Sabre\HTTP; alias
41 return \Sabre\HTTP\encodePath($href);
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php5 use Sabre\HTTP\RequestInterface;
6 use Sabre\HTTP\ResponseInterface;
7 use Sabre\HTTP\URLUtil;

12345678910>>...16