Home
last modified time | relevance | path

Searched refs:Http (Results 1 – 25 of 76) sorted by relevance

1234

/external/python/httplib2/doc/html/
Dobjects.inv7 httplib2.Http class libhttplib2.html
9 httplib2.Http.follow_all_redirects attribute libhttplib2.html
11 httplib2.Http.follow_redirects attribute libhttplib2.html
16 httplib2.Http.add_certificate method libhttplib2.html
17 httplib2.Http.add_credentials method libhttplib2.html
19 httplib2.Http.clear_credentials method libhttplib2.html
21 httplib2.Http.forward_authorization_headers attribute libhttplib2.html
22 httplib2.Http.optimistic_concurrency_methods attribute libhttplib2.html
26 httplib2.Http.request method libhttplib2.html
27 httplib2.Http.force_exception_to_status_code attribute libhttplib2.html
[all …]
/external/python/httplib2/tests/
Dtest_http.py21 http = httplib2.Http()
31 http = httplib2.Http()
45 http = httplib2.Http()
67 http = httplib2.Http()
81 http = httplib2.Http()
95 http = httplib2.Http()
106 http = httplib2.Http()
116 http = httplib2.Http()
129 http = httplib2.Http()
139 http = httplib2.Http()
[all …]
Dtest_other.py27 http = httplib2.Http()
42 http = httplib2.Http(cache=tests.get_cache_path())
55 http = httplib2.Http()
63 http = httplib2.Http()
87 http = httplib2.Http()
102 http = httplib2.Http(timeout=0.1)
125 http = httplib2.Http(timeout=0.5)
147 http = httplib2.Http()
203 httplib2.Http(timeout=0.1).request(uri)
226 http = httplib2.Http()
[all …]
Dtest_https.py11 http = httplib2.Http(ca_certs=tests.CA_CERTS)
18 http = httplib2.Http(ca_certs=tests.CA_CERTS)
39 http = httplib2.Http(ca_certs=tests.CA_CERTS)
54 http = httplib2.Http(ca_certs="/nosuchfile")
63 http = httplib2.Http(ca_certs=tests.CA_UNUSED_CERTS)
83 http = httplib2.Http(tls_minimum_version="TLSv1_2")
101 http = httplib2.Http(tls_maximum_version="TLSv1_2")
120 http = httplib2.Http(ca_certs=tests.CA_CERTS, tls_minimum_version="TLSv1_2")
134 http = httplib2.Http(ca_certs=tests.CA_CERTS, tls_maximum_version="TLSv1")
153 http = httplib2.Http(ca_certs=tests.CA_CERTS)
[all …]
Dtest_cache.py13 http = httplib2.Http(cache=tests.get_cache_path())
25 http = httplib2.Http(cache=tests.get_cache_path())
39 http = httplib2.Http()
71 http = httplib2.Http(cache=tests.get_cache_path())
98 http = httplib2.Http(cache=tests.get_cache_path())
137 http = httplib2.Http(cache=tests.get_cache_path())
155 http = httplib2.Http(cache=tests.get_cache_path())
180 http = httplib2.Http(cache=tests.get_cache_path())
201 http = httplib2.Http(cache=tests.get_cache_path())
218 http = httplib2.Http(cache=tests.get_cache_path())
[all …]
Dtest_encoding.py7 http = httplib2.Http()
20 http = httplib2.Http()
35 http = httplib2.Http()
48 http = httplib2.Http()
68 http = httplib2.Http()
83 http = httplib2.Http()
Dtest_proxy.py110 http = httplib2.Http(
124 http = httplib2.Http(
139 http = httplib2.Http(
173 http = httplib2.Http(proxy_info=proxy_info)
189 http = httplib2.Http()
205 http = httplib2.Http(ca_certs=tests.CA_CERTS)
Dtest_auth.py27 http = httplib2.Http()
42 http = httplib2.Http()
61 http = httplib2.Http()
82 http = httplib2.Http()
98 http = httplib2.Http()
125 http = httplib2.Http()
/external/python/google-api-python-client/docs/
Dthread_safety.md5 ## The httplib2.Http() objects are not thread-safe
7 …ion, each thread that you are making requests from must have its own instance of `httplib2.Http()`.
9 The easiest way to provide threads with their own `httplib2.Http()` instances is to either override…
12 # Create a new Http() object for every request
14 new_http = httplib2.Http()
18 # Pass in a new Http() manually for every request
20 http = httplib2.Http()
Dperformance.md33 To enable caching, pass in a cache implementation to the `httplib2.Http` constructor. In the simple…
36 http = httplib2.Http(cache=".cache")
43 http = httplib2.Http(cache=memcache)
/external/python/httplib2/python2/
Dssl_protocol_test.py13 http = httplib2.Http(ca_certs="/nosuchfile")
29 http = httplib2.Http(ca_certs=other_ca_certs)
35 http = httplib2.Http(ssl_version=ssl.PROTOCOL_TLSv1)
46 http = httplib2.Http(ssl_version=ssl.PROTOCOL_SSLv3)
Dhttplib2test_appengine.py69 http = httplib2.Http()
79 http = httplib2.Http(proxy_info=mock.MagicMock())
/external/python/httplib2/doc/html/_sources/
Dlibhttplib2.txt129 :attr:`Http.force_exception_to_status_code`
196 .. class:: Http([cache=None], [timeout=None], [proxy_info==ProxyInfo.from_environment], [ca_certs=N…
218 returned from calls to Http.request. The *info* parameter is either an
229 constructor of :class:`Http`.
231 Http objects have the following methods:
240 Http Objects
243 .. method:: Http.request(uri, [method="GET", body=None, headers=None, redirections=DEFAULT_MAX_REDI…
269 .. method:: Http.add_credentials(name, password, [domain=None])
278 .. method:: Http.add_certificate(key, cert, domain)
285 .. method:: Http.clear_credentials()
[all …]
/external/python/httplib2/doc/
Dlibhttplib2.rst129 :attr:`Http.force_exception_to_status_code`
196 .. class:: Http([cache=None], [timeout=None], [proxy_info==ProxyInfo.from_environment], [ca_certs=N…
218 returned from calls to Http.request. The *info* parameter is either an
229 constructor of :class:`Http`.
231 Http objects have the following methods:
240 Http Objects
243 .. method:: Http.request(uri, [method="GET", body=None, headers=None, redirections=DEFAULT_MAX_REDI…
269 .. method:: Http.add_credentials(name, password, [domain=None])
278 .. method:: Http.add_certificate(key, cert, domain)
285 .. method:: Http.clear_credentials()
[all …]
/external/python/httplib2/
Dlibhttplib2.tex114 an error occured. See \member{Http.force_exception_to_status_code}
167 \begin{classdesc}{Http}{\optional{cache=None}, \optional{timeout=None}, \optional{proxy_info=None}}
181 to Http.request. The \var{info} parameter is either
193 into the constructor of \class{Http}.
210 \subsection{Http Objects}
215 Http objects have the following methods:
217 \begin{methoddesc}[Http]{request}{uri, \optional{method="GET", body=None, headers=None, redirection…
239 \begin{methoddesc}[Http]{add_credentials}{name, password, \optional{domain=None}}
247 \begin{methoddesc}[Http]{add_certificate}{key, cert, domain}
253 \begin{methoddesc}[Http]{clear_credentials}{}
[all …]
DCHANGELOG37 feature: Http().redirect_codes set, works after follow(_all)_redirects check
58 feature: Http.close() to clean persistent connections and sensitive data
229 Make httplib2.Http() instances pickleable. Reviewed in https://codereview.appspot.com/6506074/
261 variables commonly-used in Unix environments. By default, the Http
264 variables are ignored, pass proxy_info=None to Http().
309 #65 - Transform _normalize_headers into a method of Http class
330 #54 - Http.request fails accessing Google account via http proxy
346 Added 'connection_type' parameter to Http.request().
353 Calling Http.request() with a relative URI, as opposed to an absolute URI,
356 Http() now has an additional optional parameter for the socket timeout.
[all …]
DREADME.md71 h = httplib2.Http(".cache")
82 h = httplib2.Http(".cache")
93 h = httplib2.Http(".cache")
/external/curl/tests/data/
Dtest152858 User-Agent: Http Agent
59 Proxy-User-Agent: Http Agent2
Dtest152563 User-Agent: Http Agent
70 User-Agent: Http Agent
Dtest152764 User-Agent: Http Agent
72 User-Agent: Http Agent
/external/python/httplib2/python2/httplib2/test/
Dtest_ssl_context.py49 client = httplib2.Http(ca_certs=self.ca_certs_path)
75 http = httplib2.Http(ca_certs=self.ca_certs_path, proxy_info=None)
Dtest_no_socket.py22 client = httplib2.Http(proxy_info=proxy_info)
/external/skqp/tools/lua/
Dtrigger_ct_lua39 resp, content = httplib2.Http().request(
80 resp, content = httplib2.Http().request(CT_GET_SKP_REPOS_URL, "GET")
/external/autotest/frontend/afe/
Dviews.py69 headers, content = httplib2.Http().request(url, 'GET')
71 headers, content = httplib2.Http().request(url, 'POST',
/external/python/oauth2client/oauth2client/
Dtransport.py67 return httplib2.Http()
245 _CACHED_HTTP = httplib2.Http(MemoryCache())

1234