Last updated on 2025-05-14 02:50:13 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.49.0 | 13.02 | 338.24 | 351.26 | OK | |
r-devel-linux-x86_64-debian-gcc | 1.49.0 | 7.98 | 253.40 | 261.38 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.49.0 | 548.40 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.49.0 | 560.96 | OK | |||
r-devel-windows-x86_64 | 1.49.0 | 16.00 | 372.00 | 388.00 | ERROR | |
r-patched-linux-x86_64 | 1.49.0 | 12.55 | 321.95 | 334.50 | OK | |
r-release-linux-x86_64 | 1.49.0 | 10.64 | 322.18 | 332.82 | OK | |
r-release-macos-arm64 | 1.49.0 | 212.00 | OK | |||
r-release-macos-x86_64 | 1.49.0 | 399.00 | OK | |||
r-release-windows-x86_64 | 1.49.0 | 15.00 | 368.00 | 383.00 | ERROR | |
r-oldrel-macos-arm64 | 1.49.0 | 208.00 | OK | |||
r-oldrel-macos-x86_64 | 1.49.0 | 408.00 | OK | |||
r-oldrel-windows-x86_64 | 1.40.0 | 18.00 | 400.00 | 418.00 | OK |
Version: 1.49.0
Check: examples
Result: ERROR
Running examples in 'future-Ex.R' failed
The error most likely occurred in:
> ### Name: cancel
> ### Title: Cancel a future
> ### Aliases: cancel
>
> ### ** Examples
>
> ## Set up two parallel workers
> plan(multisession, workers = 2)
>
> ## Launch two long running future
> fs <- lapply(c(1, 2), function(duration) {
+ future({
+ Sys.sleep(duration)
+ 42
+ })
+ })
>
> ## Wait until at least one of the futures is resolved
> while (!any(resolved(fs))) Sys.sleep(0.1)
>
> ## Cancel the future that is not yet resolved
> r <- resolved(fs)
> cancel(fs[!r])
>
> ## Get the value of the resolved future
> f <- fs[r]
> v <- value(f)
> message("Result: ", v)
Result: 42
>
> ## The value of the canceled future is an error
> try(v <- value(fs[!r]))
Error : Future (NULL) of class MultisessionFuture was canceled, while running on 'localhost' (pid 109092)
>
> ## Shut down parallel workers
> plan(sequential)
>
>
>
> cleanEx()
Error: connections left open:
<-CRANwin3.fb05.statistik.uni-dortmund.de:24040 (sockconn)
Execution halted
Flavor: r-devel-windows-x86_64
Version: 1.49.0
Check: examples
Result: ERROR
Running examples in 'future-Ex.R' failed
The error most likely occurred in:
> ### Name: cancel
> ### Title: Cancel a future
> ### Aliases: cancel
>
> ### ** Examples
>
> ## Set up two parallel workers
> plan(multisession, workers = 2)
>
> ## Launch two long running future
> fs <- lapply(c(1, 2), function(duration) {
+ future({
+ Sys.sleep(duration)
+ 42
+ })
+ })
>
> ## Wait until at least one of the futures is resolved
> while (!any(resolved(fs))) Sys.sleep(0.1)
>
> ## Cancel the future that is not yet resolved
> r <- resolved(fs)
> cancel(fs[!r])
>
> ## Get the value of the resolved future
> f <- fs[r]
> v <- value(f)
> message("Result: ", v)
Result: 42
>
> ## The value of the canceled future is an error
> try(v <- value(fs[!r]))
Error : Future (NULL) of class MultisessionFuture was canceled, while running on 'localhost' (pid 14996)
>
> ## Shut down parallel workers
> plan(sequential)
>
>
>
> cleanEx()
Error: connections left open:
<-CRANwin3.fb05.statistik.uni-dortmund.de:27861 (sockconn)
Execution halted
Flavor: r-release-windows-x86_64