HomeSort by relevance Sort by last modified time
    Searched refs:Proxy (Results 176 - 200 of 206) sorted by null

1 2 3 4 5 6 78 9

  /external/python/cpython3/Lib/test/
test_descr.py     [all...]
  /external/python/cpython3/Lib/unittest/test/testmock/
testpatch.py 27 class Proxy(object):
35 Proxy.__setattr__ = __setattr__
36 Proxy.__delattr__ = __delattr__
37 return Proxy()
846 proxy = _get_proxy(thing) variable in class:PatchTest.test_get_only_proxy.SomethingElse
848 @patch.object(proxy, 'foo', 'bar')
850 self.assertEqual(proxy.foo, 'bar')
852 self.assertEqual(proxy.foo, 'foo')
854 self.assertNotIn('foo', proxy.__dict__)
864 proxy = _get_proxy(Something, get_only=False variable in class:PatchTest.test_get_set_delete_proxy.SomethingElse
    [all...]
  /external/python/mock/mock/tests/
testpatch.py 31 class Proxy(object):
39 Proxy.__setattr__ = __setattr__
40 Proxy.__delattr__ = __delattr__
41 return Proxy()
833 proxy = _get_proxy(thing) variable in class:PatchTest.test_get_only_proxy.SomethingElse
835 @patch.object(proxy, 'foo', 'bar')
837 self.assertEqual(proxy.foo, 'bar')
839 self.assertEqual(proxy.foo, 'foo')
841 self.assertNotIn('foo', proxy.__dict__)
851 proxy = _get_proxy(Something, get_only=False variable in class:PatchTest.test_get_set_delete_proxy.SomethingElse
    [all...]
  /external/v8/src/compiler/
types.h 39 // Receiver = Object \/ Proxy
174 V(Proxy, kCallableProxy | kOtherProxy) \
js-create-lowering.cc 646 // if the new.target may be a proxy.
648 (new_target != target || new_target_type.Maybe(Type::Proxy()))
    [all...]
  /external/tensorflow/tensorflow/contrib/verbs/
README.md 36 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU **proxy** buffer on the receiver side, and then copied to GPU by the receiver.
45 * **Proxy tensor** - A CPU allocated tensor, which will be used in the case where the result tensor cannot be RDMA written to directly (GPU direct is disabled or not available). The RDMA write will therefore be done to the proxy tensor, and afterwards we will do a manual local copy from it to the result tensor.
59 1. Allocate the result tensor (and the proxy tensor if required).
60 2. Send a **RDMA_MESSAGE_TENSOR_REQUEST** to the sender, containing the address of the destination tensor (result/proxy) for RDMA write.
62 In order to allocate the result and proxy tensors, we need to know the tensor's meta-data, i.e. shape and data-type for DMAable tensors, and proto-size for serialized tensors. Unfortunately, this information is only available on the sender side which complicates manners. In order to avoid sending extra messages for querying the meta-data at each step, we store a local meta-data cache per tensor, which will only be update upon changes. Based on the assumption that the meta-data of a tensor rarely changes between steps, we expect that on most times the cache will only be updated once. The sender is responsible to detect changes in the meta-data, and update the receiver. In order for the sender to know that the meta-data had changed, each **RDMA_MESSAGE_TENSOR_REQUEST** will contain the meta-data that the receiver had grabbed from the local cache. The sender will then compare the meta-data from the message to the tensor's new meta-data.
79 2. Reallocate the result/proxy tensors.
86 1. Proxy copy/deserialize if required.
88 3. Deallocate the result/proxy tensors and remove the request from the pending list.
111 * Allocate the result tensor (and proxy tensor if required)
    [all...]
  /frameworks/av/media/libaudioclient/
AudioRecord.cpp 832 // update proxy
889 Proxy::Buffer buffer;
898 sp<AudioRecordClientProxy> proxy; local
922 proxy = mProxy;
935 status = proxy->obtainBuffer(&buffer, requested, elapsed);
    [all...]
AudioTrack.cpp 1679 sp<AudioTrackClientProxy> proxy; local
1947 sp<AudioTrackClientProxy> proxy = mProxy; local
    [all...]
  /external/guice/lib/build/
cglib-3.2.6.jar 
  /art/runtime/
class_linker_test.cc 53 #include "mirror/proxy.h"
661 struct ProxyOffsets : public CheckOffsets<mirror::Proxy> {
662 ProxyOffsets() : CheckOffsets<mirror::Proxy>(false, "Ljava/lang/reflect/Proxy;") {
663 addOffset(OFFSETOF_MEMBER(mirror::Proxy, h_), "h");
    [all...]
class_linker.cc 116 #include "mirror/proxy.h"
712 // Create java.lang.reflect.Proxy root.
714 FindSystemClass(self, "Ljava/lang/reflect/Proxy;"));
    [all...]
  /external/v8/include/
v8.h 96 class Proxy;
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableListTest.java 22 import static java.lang.reflect.Proxy.newProxyInstance;
600 public Object invoke(Object proxy, Method method,
MultimapsCollectionTest.java 27 import static java.lang.reflect.Proxy.newProxyInstance;
155 public Object invoke(Object proxy, Method method, Object[] args)
  /external/python/cpython2/Lib/
urllib2.py 663 def _parse_proxy(proxy):
672 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
678 >>> _parse_proxy('proxy.example.com')
679 (None, None, None, 'proxy.example.com')
680 >>> _parse_proxy('proxy.example.com:3128')
681 (None, None, None, 'proxy.example.com:3128')
686 >>> _parse_proxy('joe:password@proxy.example.com')
687 (None, 'joe', 'password', 'proxy.example.com')
688 >>> _parse_proxy('joe:password@proxy.example.com:3128')
689 (None, 'joe', 'password', 'proxy.example.com:3128'
    [all...]
  /external/guice/extensions/persist/lib/
cglib-nodep-3.2.6.jar 
hibernate-annotations.jar 
javassist.jar 
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
api.go 61 Proxy: http.ProxyFromEnvironment,
api_pre17.go 61 Proxy: http.ProxyFromEnvironment,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urllib2.py 628 def _parse_proxy(proxy):
637 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
643 >>> _parse_proxy('proxy.example.com')
644 (None, None, None, 'proxy.example.com')
645 >>> _parse_proxy('proxy.example.com:3128')
646 (None, None, None, 'proxy.example.com:3128')
651 >>> _parse_proxy('joe:password@proxy.example.com')
652 (None, 'joe', 'password', 'proxy.example.com')
653 >>> _parse_proxy('joe:password@proxy.example.com:3128')
654 (None, 'joe', 'password', 'proxy.example.com:3128')
    [all...]
  /external/v8/src/
api.cc 719 // We need to store the global proxy size upfront in case we need the
720 // bootstrapper to create a global proxy before we deserialize the context.
    [all...]
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h     [all...]
  /external/python/cpython3/Lib/urllib/
request.py 193 In addition, if proxy settings are detected (for example, when a *_proxy
195 installed and makes sure the requests are handled through the proxy.
764 def _parse_proxy(proxy):
771 scheme, r_scheme = splittype(proxy)
775 authority = proxy
779 raise ValueError("proxy URL with no authority: %r" % proxy)
804 lambda r, proxy=url, type=type, meth=self.proxy_open:
805 meth(r, proxy, type))
807 def proxy_open(self, req, proxy, type)
    [all...]
  /external/guice/extensions/struts2/lib/
javassist.jar 

Completed in 651 milliseconds

1 2 3 4 5 6 78 9