Home
last modified time | relevance | path

Searched defs:Future (Results 1 – 12 of 12) sorted by relevance

/third_party/mindspore/mindspore/core/mindrt/include/async/
Dfuture.h48 Future() : data(new (std::nothrow) Data()) { in Future() function
53 Future(const Future<T> &f) : FutureBase(f), data(f.data) {} in Future() function
55 Future(Future<T> &&f) : data(std::move(f.data)) {} in Future() function
57 explicit Future(const T &t) : data(new (std::nothrow) Data()) { in Future() function
63 explicit Future(const V &value) : data(new (std::nothrow) Data()) { in Future() function
68 explicit Future(const MindrtStatus &s) : data(new (std::nothrow) Data()) { in Future() function
73 explicit Future(const std::shared_ptr<Data> &t) : data(t) {} in Future() function
380 friend class Future; variable
440 friend class Future; variable
Dcollect.h35 class Future; variable
Dfuture_base.h35 class Future; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DThreadPool.cpp84 auto Future = PackagedTask.get_future(); in asyncImpl() local
133 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl() local
/third_party/grpc/src/python/grpcio_tests/tests_py3_only/interop/
Dxds_interop_client.py181 timeout: float, futures: Mapping[int, Tuple[grpc.Future,
197 def _on_rpc_done(rpc_id: int, future: grpc.Future, method: str,
234 def _remove_completed_rpcs(futures: Mapping[int, grpc.Future],
246 def _cancel_all_rpcs(futures: Mapping[int, Tuple[grpc.Future, str]]) -> None:
/third_party/grpc/src/python/grpcio/grpc/framework/foundation/
Dfuture.py47 class Future(six.with_metaclass(abc.ABCMeta)): class
/third_party/python/Lib/asyncio/
Dfutures.py29 class Future: class
423 Future = _CFuture = _asyncio.Future variable
/third_party/python/Lib/test/test_asyncio/
Dtest_tasks.py109 Future = None variable in BaseTaskTests
2872 class Future(CommonFuture, BaseFuture): class
2971 Future = getattr(futures, '_CFuture', None) variable in CTask_CFuture_Tests
3002 Future = getattr(futures, '_CFuture', None) variable in CTask_CFuture_SubclassTests
3011 Future = futures._PyFuture variable in CTaskSubclass_PyFuture_Tests
3019 Future = getattr(futures, '_CFuture', None) variable in PyTask_CFutureSubclass_Tests
3028 Future = futures._PyFuture variable in CTask_PyFuture_Tests
3036 Future = getattr(futures, '_CFuture', None) variable in PyTask_CFuture_Tests
3043 Future = futures._PyFuture variable in PyTask_PyFuture_Tests
3049 Future = futures._PyFuture variable in PyTask_PyFuture_SubclassTests
/third_party/curl/docs/
DINTERNALS.md626 Future section in curlx
/third_party/python/Lib/concurrent/futures/
D_base.py315 class Future(object): class
/third_party/grpc/src/python/grpcio/grpc/
D__init__.py44 class Future(six.with_metaclass(abc.ABCMeta)): class
/third_party/python/Lib/test/
Dtest_inspect.py227 class Future: class