Home
last modified time | relevance | path

Searched refs:ProxyHandler (Results 1 – 12 of 12) sorted by relevance

/third_party/typescript/src/lib/
Des2015.proxy.d.ts1 interface ProxyHandler<T extends object> { interface
18 …revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; …
19 new <T extends object>(target: T, handler: ProxyHandler<T>): T;
/third_party/typescript/lib/
Dlib.es2015.proxy.d.ts21 interface ProxyHandler<T extends object> { interface
38 …revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; …
39 new <T extends object>(target: T, handler: ProxyHandler<T>): T;
/third_party/boost/boost/python/suite/indexing/detail/
Dindexing_suite_detail.hpp573 , class ProxyHandler
638 ProxyHandler::base_replace_indexes(container, from, to, 1); in base_set_slice()
647 ProxyHandler::base_replace_indexes(container, from, to, 1); in base_set_slice()
683 ProxyHandler::base_replace_indexes(container, from, to, in base_set_slice()
696 ProxyHandler::base_erase_indexes(container, from, to); in base_delete_slice()
704 , class ProxyHandler
/third_party/typescript_eslint/packages/scope-manager/src/lib/
Des2015.proxy.ts8 ProxyHandler: {
/third_party/python/Lib/test/
Dtest_urllib2.py1351 ph = urllib.request.ProxyHandler(d)
1368 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com"))
1383 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com"))
1393 ph = urllib.request.ProxyHandler(dict(https="proxy.example.com:3128"))
1409 ph = urllib.request.ProxyHandler(dict(https='proxy.example.com:3128'))
1525 ph = urllib.request.ProxyHandler(dict(http="proxy.example.com:3128"))
Dtest_urllib2_localnet.py350 handler = urllib.request.ProxyHandler({"http" : proxy_url})
/third_party/python/Doc/library/
Durllib.request.rst81 :class:`ProxyHandler` is default installed and makes sure the requests are
88 :class:`ProxyHandler` objects.
142 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy
184 ``ProxyHandler`` explicitly, or make sure the variable name is in
299 .. class:: ProxyHandler(proxies=None)
896 ProxyHandler Objects
900 .. method:: ProxyHandler.<protocol>_open(request)
903 The :class:`ProxyHandler` will have a method :meth:`<protocol>_open` for every
1264 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
1269 This example replaces the default :class:`ProxyHandler` with one that uses
[all …]
/third_party/python/Doc/howto/
Durllib2.rst517 -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`http_proxy`
535 the ``ProxyHandler``, which is part of the normal handler chain when a proxy
538 ``ProxyHandler``, with no proxies defined. This is done using similar steps to
541 >>> proxy_support = urllib.request.ProxyHandler({})
/third_party/googletest/googletest/scripts/
Dupload.py376 opener.add_handler(urllib2.ProxyHandler())
/third_party/python/Lib/urllib/
Drequest.py579 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
791 class ProxyHandler(BaseHandler): class
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst3261 :class:`urllib.request.ProxyHandler` now lowercases the keys of the passed
/third_party/python/Misc/
DHISTORY21496 inserting a "dummy" HTTPHandler after a ProxyHandler when building an