Home
last modified time | relevance | path

Searched refs:FutureType (Results 1 – 25 of 158) sorted by relevance

1234567

/dports/devel/hpx/hpx-1.2.1/tests/unit/util/
H A Dunwrap.cpp88 FutureType<int> res = in test_unwrap_n()
254 std::vector<FutureType<int>> f; in test_development_regressions()
262 FutureType<void> f = futurize(); in test_development_regressions()
269 FutureType<void> f1 = futurize(); in test_development_regressions()
270 FutureType<void> f2 = futurize(); in test_development_regressions()
278 FutureType<void> f = futurize(); in test_development_regressions()
291 FutureType<void> f = futurize(); in test_development_regressions()
530 tuple<FutureType<int>, FutureType<int>> tuple = in test_legacy_requirements()
538 FutureType<tuple<FutureType<int>, FutureType<int>>> tuple_future = in test_legacy_requirements()
551 FutureType<void> operator()() const in operator ()()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/util/
H A Dthread_pool.h143 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
145 Result<FutureType> Submit(TaskHints hints, StopToken stop_token, Function&& func, in Submit()
147 using ValueType = typename FutureType::ValueType; in Submit()
149 auto future = FutureType::Make(); in Submit()
169 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
171 Result<FutureType> Submit(StopToken stop_token, Function&& func, Args&&... args) { in Submit()
177 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
179 Result<FutureType> Submit(TaskHints hints, Function&& func, Args&&... args) { in Submit()
185 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
187 Result<FutureType> Submit(Function&& func, Args&&... args) { in Submit()
H A Dfuture.h311 template <typename FutureType>
313 const std::vector<FutureType>& futures) {
326 template <typename FutureType,
327 typename Enable = std::enable_if<!std::is_pointer<FutureType>::value>>
328 static std::vector<FutureImpl*> ExtractFutures(const std::vector<FutureType>& futures) {
337 template <typename FutureType>
339 const std::vector<FutureType*>& futures) {
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dthread_pool.h115 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
117 Result<FutureType> Submit(TaskHints hints, Function&& func, Args&&... args) { in Submit()
118 auto future = FutureType::Make(); in Submit()
128 typename FutureType = typename ::arrow::detail::ContinueFuture::ForSignature<
130 Result<FutureType> Submit(Function&& func, Args&&... args) { in Submit()
H A Dfuture.h182 template <typename FutureType>
184 const std::vector<FutureType>& futures) {
197 template <typename FutureType,
198 typename Enable = std::enable_if<!std::is_pointer<FutureType>::value>>
199 static std::vector<FutureImpl*> ExtractFutures(const std::vector<FutureType>& futures) {
208 template <typename FutureType>
210 const std::vector<FutureType*>& futures) {
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dfuture.h90 template <typename FutureType>
92 const std::vector<FutureType>& futures) { in Make()
105 template <typename FutureType,
106 typename Enable = std::enable_if<!std::is_pointer<FutureType>::value>>
107 static std::vector<FutureImpl*> ExtractFutures(const std::vector<FutureType>& futures) { in ExtractFutures()
116 template <typename FutureType>
118 const std::vector<FutureType*>& futures) { in ExtractFutures()
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/core/perf_test/
H A Dtest_taskdag.cpp92 using FutureType = Kokkos::BasicFuture<long, Scheduler>; typedef
96 FutureType dep[2];
193 Functor::FutureType f = in main()
225 Functor::FutureType ftmp = in main()
/dports/devel/kokkos/kokkos-3.4.01/core/perf_test/
H A Dtest_taskdag.cpp92 using FutureType = Kokkos::BasicFuture<long, Scheduler>; typedef
96 FutureType dep[2];
193 Functor::FutureType f = in main()
225 Functor::FutureType ftmp = in main()
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/core/perf_test/
H A Dtest_taskdag.cpp92 using FutureType = Kokkos::BasicFuture<long, Scheduler>; typedef
96 FutureType dep[2];
193 Functor::FutureType f = in main()
225 Functor::FutureType ftmp = in main()
/dports/devel/hpx/hpx-1.2.1/hpx/lcos/
H A Dwhen_each.hpp165 template<typename F, typename IndexType, typename FutureType>
166 inline static void call(F&& f, IndexType index, FutureType&& future, in call()
169 f(index, std::forward<FutureType>(future)); in call()
172 template<typename F, typename IndexType, typename FutureType>
173 inline static void call(F&& f, IndexType index, FutureType&& future, in call()
176 f(std::forward<FutureType>(future)); in call()
/dports/devel/rttr/rttr-0.9.6-16-gb3a131c/3rd_party/chaiscript-develop/chaiscript/dispatchkit/
H A Dbootstrap_stl.hpp732 template<typename FutureType>
735 m.add(user_type<FutureType>(), type); in future_type()
737 m.add(fun([](const FutureType &t) { return t.valid(); }), "valid"); in future_type()
738 m.add(fun([](FutureType &t) { return t.get(); }), "get"); in future_type()
739 m.add(fun(&FutureType::wait), "wait"); in future_type()
741 template<typename FutureType>
745 future_type<FutureType>(type, *m); in future_type()
/dports/lang/chaiscript/ChaiScript-6.1.0/include/chaiscript/dispatchkit/
H A Dbootstrap_stl.hpp732 template<typename FutureType>
735 m.add(user_type<FutureType>(), type); in future_type()
737 m.add(fun([](const FutureType &t) { return t.valid(); }), "valid"); in future_type()
738 m.add(fun([](FutureType &t) { return t.get(); }), "get"); in future_type()
739 m.add(fun(&FutureType::wait), "wait"); in future_type()
741 template<typename FutureType>
745 future_type<FutureType>(type, *m); in future_type()
/dports/science/libgeodecomp/libgeodecomp-0.4.0/src/parallelization/hpxsimulator/
H A Dcreateupdategroups.cpp60 typedef hpx::future<std::vector<hpx::naming::gid_type> > FutureType; in createUpdateGroups() typedef
62 FutureType f; in createUpdateGroups()
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/distribution/distribution-2.7.0/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/vendor/github.com/hashicorp/go-discover/provider/azure/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/security/vault/vault-1.8.2/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/docker/distribution/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/go-autorest/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/go-autorest/go-autorest-10.8.1/autorest/azure/
H A Dasync.go498 FutureType string member
503 return fmt.Sprintf("%s: asynchronous operation has not completed", e.FutureType)
509 FutureType: futureType,

1234567