/external/testng/src/main/java/org/testng/internal/thread/ |
D | ThreadUtil.java | 58 List<Callable<Object>> callables = Lists.newArrayList(); in execute() local 60 callables.add(new Callable<Object>() { in execute() 72 pooledExecutor.invokeAll(callables, timeout, TimeUnit.MILLISECONDS); in execute() 74 pooledExecutor.invokeAll(callables); in execute()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/util/concurrent/ |
D | RoboExecutorService.java | 114 …public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables) throws Interrupt… in invokeAll() argument 119 …public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables, long l, TimeUnit… in invokeAll() argument 124 …public <T> T invokeAny(Collection<? extends Callable<T>> callables) throws InterruptedException, E… in invokeAny() argument 129 …public <T> T invokeAny(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) thr… in invokeAny() argument
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | WrappingExecutorServiceTest.java | 143 List<Callable<String>> callables = Lists.newArrayList(); in createTasks() local 145 callables.add(Callables.returning(RESULT_VALUE + i)); in createTasks() 147 return callables; in createTasks()
|
D | MoreExecutorsTest.java | 273 List<Callable<String>> callables = in testListeningDecorator() local 277 results = service.invokeAll(callables); in testListeningDecorator() 280 results = service.invokeAll(callables, 1, SECONDS); in testListeningDecorator()
|
/external/python/cpython3/Doc/library/ |
D | functional.rst | 6 a functional programming style, and general operations on callables.
|
D | inspect.rst | 528 Introspecting callables with the Signature object 556 Accepts a wide range of Python callables, from plain functions and classes to 569 unwrap decorated callables.) 573 Some callables may not be introspectable in certain implementations of 886 more structured introspection API for callables. 973 better introspecting API for callables.
|
D | pydoc.rst | 106 callables.
|
D | concurrent.futures.rst | 15 asynchronously executing callables. 344 Added callables are called in the order that they were added and are
|
D | functools.rst | 420 :func:`update_wrapper` may be used with callables other than functions. Any
|
D | sys.rst | 960 A list of callables that take a path argument to try to create a 1241 Accepts two optional keyword arguments which are callables that accept an
|
/external/python/funcsigs/docs/ |
D | index.rst | 17 .. _inspect: http://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signatu… 48 Introspecting callables with the Signature object 79 Accepts a wide range of python callables, from plain functions and classes to 84 Some callables may not be introspectable in certain implementations of
|
/external/python/funcsigs/ |
D | README.rst | 70 .. _inspect: http://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signatu…
|
/external/python/futures/docs/ |
D | index.rst | 8 asynchronously executing callables. 256 Added callables are called in the order that they were added and are always
|
/external/python/cpython3/Doc/c-api/ |
D | structures.rst | 107 Type of the functions used to implement most Python callables in C. 117 Type of the functions used to implement Python callables in C that take
|
/external/python/cpython2/Doc/library/ |
D | pickle.rst | 240 The :mod:`pickle` module also exports two callables [#]_, :class:`Pickler` and 833 callables :func:`Pickler` and :func:`Unpickler` are functions, not classes. 851 .. [#] In the :mod:`pickle` module these callables are classes, which you could 853 callables are factory functions and so cannot be subclassed. One common reason
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-actions.h.pump | 87 // CallableHelper has static methods for invoking "callables", 90 // callables. In particular, you can use:
|
/external/python/cpython2/Doc/c-api/ |
D | structures.rst | 124 Type of the functions used to implement most Python callables in C.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.2rc1.rst | 192 inspect.signature() now supports callables with variable-argument parameters
|
D | 3.5.4rc1.rst | 343 inspect.signature() now supports callables with variable-argument parameters
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 855 for normal callables. The new descriptor also makes it easier to get 856 arbitrary callables (including :func:`~functools.partial` instances) 1044 support a much broader range of callables, including those with 1872 be added to additional callables implemented in C as part of Python 3.4 2332 extension module callables will gain signature metadata over the course of 2334 :func:`inspect.getfullargspec` will fail on non-Python callables may need
|
D | 2.4.rst | 1200 callables that take a single argument and return the corresponding attribute or 1201 item; these callables make excellent data extractors when used with :func:`map`
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.6rc1.rst | 464 Python now guarantees that callables registered with the atexit module will
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-actions.h.pump | 567 // Overloads for other custom-callables are provided in the
|
/external/python/cpython3/Doc/reference/ |
D | import.rst | 267 item is encountered. Import path hooks are registered by adding new callables 833 hook` callables on :data:`sys.path_hooks`, then the following protocol is used
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.4.rst | 1200 callables that take a single argument and return the corresponding attribute or 1201 item; these callables make excellent data extractors when used with :func:`map`
|