Searched refs:ProxyHandler (Results 1 – 12 of 12) sorted by relevance
/third_party/typescript/src/lib/ |
D | es2015.proxy.d.ts | 1 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/ |
D | lib.es2015.proxy.d.ts | 21 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/ |
D | indexing_suite_detail.hpp | 573 , 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/ |
D | es2015.proxy.ts | 8 ProxyHandler: {
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1351 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"))
|
D | test_urllib2_localnet.py | 350 handler = urllib.request.ProxyHandler({"http" : proxy_url})
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 81 :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/ |
D | urllib2.rst | 517 -- ``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/ |
D | upload.py | 376 opener.add_handler(urllib2.ProxyHandler())
|
/third_party/python/Lib/urllib/ |
D | request.py | 579 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 791 class ProxyHandler(BaseHandler): class
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 3261 :class:`urllib.request.ProxyHandler` now lowercases the keys of the passed
|
/third_party/python/Misc/ |
D | HISTORY | 21496 inserting a "dummy" HTTPHandler after a ProxyHandler when building an
|