Home
last modified time | relevance | path

Searched refs:callables (Results 1 – 25 of 48) sorted by relevance

12

/external/testng/src/main/java/org/testng/internal/thread/
DThreadUtil.java58 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/
DRoboExecutorService.java114 …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/
DWrappingExecutorServiceTest.java143 List<Callable<String>> callables = Lists.newArrayList(); in createTasks() local
145 callables.add(Callables.returning(RESULT_VALUE + i)); in createTasks()
147 return callables; in createTasks()
DMoreExecutorsTest.java273 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/
Dfunctional.rst6 a functional programming style, and general operations on callables.
Dinspect.rst528 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.
Dpydoc.rst106 callables.
Dconcurrent.futures.rst15 asynchronously executing callables.
344 Added callables are called in the order that they were added and are
Dfunctools.rst420 :func:`update_wrapper` may be used with callables other than functions. Any
Dsys.rst960 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/
Dindex.rst17 .. _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/
DREADME.rst70 .. _inspect: http://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signatu…
/external/python/futures/docs/
Dindex.rst8 asynchronously executing callables.
256 Added callables are called in the order that they were added and are always
/external/python/cpython3/Doc/c-api/
Dstructures.rst107 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/
Dpickle.rst240 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/
Dgmock-generated-actions.h.pump87 // CallableHelper has static methods for invoking "callables",
90 // callables. In particular, you can use:
/external/python/cpython2/Doc/c-api/
Dstructures.rst124 Type of the functions used to implement most Python callables in C.
/external/python/cpython3/Misc/NEWS.d/
D3.6.2rc1.rst192 inspect.signature() now supports callables with variable-argument parameters
D3.5.4rc1.rst343 inspect.signature() now supports callables with variable-argument parameters
/external/python/cpython3/Doc/whatsnew/
D3.4.rst855 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
D2.4.rst1200 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/
D2.7.6rc1.rst464 Python now guarantees that callables registered with the atexit module will
/external/googletest/googlemock/include/gmock/
Dgmock-generated-actions.h.pump567 // Overloads for other custom-callables are provided in the
/external/python/cpython3/Doc/reference/
Dimport.rst267 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/
D2.4.rst1200 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`

12