Home
last modified time | relevance | path

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

/dports/devel/R-cran-promises/promises/man/
H A Dpromise_all.Rd3 \name{promise_all}
4 \alias{promise_all}
8 promise_all(..., .list = NULL)
22 For \code{promise_all}, if all of the promises were successful, the returned
31 Use \code{promise_all} to wait for multiple promise objects to all be successfully
46 promise_all(p1, p2) \%...>\% {
47 cat("promise_all:\n")
/dports/devel/R-cran-promises/promises/inst/doc/
H A Dcombining.Rmd20 …n hand and you want to use all of their results in a computation. The `promise_all` function is de…
23 promise_all(..., .list = NULL)
26 `promise_all` takes any number of promises as named arguments, and returns a promise of a list cont…
28 Here's an example using `promise_all` to combine the results of two async `read.csv` operations:
38 result <- promise_all(a = a, b = b) %...>% {
55 promise_all(a = a, b = b) %...>%
61promise_all` argument names are the same as the variable names (`a = a`, `b = b`), the original va…
63 The combination of `promise_all` and `with` is a concise and powerful way to gather the results of …
65promise_all` also gives you two other options for passing input promises. First, if you would rath…
149 …r in parallel, you can achieve that with a combination of a regular `purrr::map` and `promise_all`:
[all …]
H A Dintro.Rmd327 And finally, there are `promise_all`, `promise_race`, and `promise_lapply`, used to combine
328 multiple promises into a single promise. Learn more about them [here](../reference/promise_all.html…
H A Dcasestudy.Rmd317 promise_all(data_df = data(), whales_df = whales()) %...>% with({
329 * The `promise_all` function gathers multiple promise objects together, and returns a single promis…
332 > promise_all(a = future_promise("Hello"), b = future_promise("World")) %...>% print()
356 > promise_all(x = future_promise("Hello"), y = future_promise("World")) %...>%
362 …exactly how these pieces combine. Just remember that the arguments to `promise_all` provide the pr…
H A Dshiny.Rmd52 …>%` operator. You may also want to use promise utility functions like `promise_all` and `promise_r…
/dports/devel/R-cran-promises/promises/vignettes/
H A Dcombining.Rmd20 …n hand and you want to use all of their results in a computation. The `promise_all` function is de…
23 promise_all(..., .list = NULL)
26 `promise_all` takes any number of promises as named arguments, and returns a promise of a list cont…
28 Here's an example using `promise_all` to combine the results of two async `read.csv` operations:
38 result <- promise_all(a = a, b = b) %...>% {
55 promise_all(a = a, b = b) %...>%
61promise_all` argument names are the same as the variable names (`a = a`, `b = b`), the original va…
63 The combination of `promise_all` and `with` is a concise and powerful way to gather the results of …
65promise_all` also gives you two other options for passing input promises. First, if you would rath…
149 …r in parallel, you can achieve that with a combination of a regular `purrr::map` and `promise_all`:
[all …]
H A Dintro.Rmd327 And finally, there are `promise_all`, `promise_race`, and `promise_lapply`, used to combine
328 multiple promises into a single promise. Learn more about them [here](../reference/promise_all.html…
H A Dcasestudy.Rmd317 promise_all(data_df = data(), whales_df = whales()) %...>% with({
329 * The `promise_all` function gathers multiple promise objects together, and returns a single promis…
332 > promise_all(a = future_promise("Hello"), b = future_promise("World")) %...>% print()
356 > promise_all(x = future_promise("Hello"), y = future_promise("World")) %...>%
362 …exactly how these pieces combine. Just remember that the arguments to `promise_all` provide the pr…
H A Dshiny.Rmd52 …>%` operator. You may also want to use promise utility functions like `promise_all` and `promise_r…
/dports/devel/R-cran-promises/promises/tests/testthat/
H A Dtest-combining.R11 x <- promise_all(.list = list(a=a, b=b, c=c))
16 x <- promise_all(promise_resolve(NULL), promise_resolve(NULL),
20 x <- promise_all(a = promise_resolve(NULL), b = promise_resolve(NULL),
H A Dtest-zzz-future_promise.R100 promise_all(.list = .) %...>% {
/dports/devel/R-cran-promises/promises/
H A DNAMESPACE23 export(promise_all)
H A DNEWS.md17 * Fixed #49: `promise_all()` previously did not handle `NULL` values correctly. (#50))
H A DMD549 3e76cd17808eb71479f1afd92b4f5413 *man/promise_all.Rd
/dports/devel/R-cran-promises/promises/R/
H A Dutils.R39 promise_all <- function(..., .list = NULL) { function
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/objects/
H A Dcontexts.h317 V(PROMISE_ALL_INDEX, JSFunction, promise_all) \
/dports/lang/v8/v8-9.6.180.12/src/objects/
H A Dcontexts.h319 V(PROMISE_ALL_INDEX, JSFunction, promise_all) \
H A Dstack-frame-info.cc18 return fun == fun.native_context().promise_all(); in IsPromiseAll()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/objects/
H A Dcontexts.h355 V(PROMISE_ALL_INDEX, JSFunction, promise_all) \
/dports/lang/v8/v8-9.6.180.12/src/init/
H A Dbootstrapper.cc2361 Handle<JSFunction> promise_all = InstallFunctionWithBuiltinId( in InitializeGlobal() local
2363 native_context()->set_promise_all(*promise_all); in InitializeGlobal()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/init/
H A Dbootstrapper.cc2369 Handle<JSFunction> promise_all = InstallFunctionWithBuiltinId( in InitializeGlobal() local
2371 native_context()->set_promise_all(*promise_all); in InitializeGlobal()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/init/
H A Dbootstrapper.cc2302 Handle<JSFunction> promise_all = InstallFunctionWithBuiltinId( in InitializeGlobal() local
2304 native_context()->set_promise_all(*promise_all); in InitializeGlobal()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/execution/
H A Disolate.cc594 Handle<JSFunction> function(native_context->promise_all(), isolate_); in AppendPromiseAllFrame()
/dports/lang/v8/v8-9.6.180.12/src/execution/
H A Disolate.cc913 Handle<JSFunction> combinator(context->native_context().promise_all(), in CaptureAsyncStackTrace()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/execution/
H A Disolate.cc950 Handle<JSFunction> combinator(context->native_context().promise_all(), in CaptureAsyncStackTrace()