R Under development (unstable) (2025-05-08 r88190 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## This runs testme test script inst/testme/test-tweak.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future:::testme("tweak") Test 'tweak' ... Sourcing 9 prologue scripts ... 01/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/001.load.R' 02/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/002.record-state.R' 03/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/030.imports.R' 04/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/050.utils.R' 05/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.context.R' 06/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.options.R' 07/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/091.envvars.R' 08/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/099.future-setup.R' 09/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/test-tweak.R' > message("*** Tweaking future strategies ...") *** Tweaking future strategies ... > message("*** y <- tweak(future::sequential) ...") *** y <- tweak(future::sequential) ... > sequential2 <- future::tweak(future::sequential) > print(args(sequential2)) function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) NULL > stopifnot(identical(sequential2, future::sequential)) > stopifnot(!inherits(sequential2, "tweaked")) > message("*** y <- tweak(future::sequential, abc = FALSE) ...") *** y <- tweak(future::sequential, abc = FALSE) ... > sequential2 <- future::tweak(future::sequential, abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE) ...") *** y <- tweak('sequential', abc = FALSE) ... > sequential2 <- future::tweak("sequential", abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > library(future) [01:59:26.060] Option 'future.startup.script': TRUE [01:59:26.060] Future startup scripts considered: '.future.R', '~/.future.R' [01:59:26.061] Future startup scripts found: > message("*** y <- tweak(sequential, abc = FALSE) ...") *** y <- tweak(sequential, abc = FALSE) ... > sequential2 <- future::tweak(sequential, abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE) ...") *** y <- tweak('sequential', abc = FALSE) ... > sequential2 <- future::tweak("sequential", abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE, abc = 1, def = TRUE) ...") *** y <- tweak('sequential', abc = FALSE, abc = 1, def = TRUE) ... > res <- tryCatch({ + sequential2 <- future::tweak("sequential", abc = FALSE, abc = 1, + def = TRUE) + }, warning = function(w) { + w .... [TRUNCATED] > stopifnot(inherits(res, "warning")) > sequential2 <- future::tweak("sequential", abc = FALSE, + abc = 1, def = TRUE) Warning: Detected 2 unknown future arguments: 'abc', 'def' > print(args(sequential2)) function (..., abc = FALSE, def = TRUE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak(cluster, rscript_startup = quote(...)) ...") *** y <- tweak(cluster, rscript_startup = quote(...)) ... > cl <- 42 > cluster2 <- tweak(cluster, workers = cl, rscript_startup = quote(options(abc = 42))) Warning: Detected 1 unknown future arguments: 'rscript_startup' > print(args(cluster2)) function (..., workers = 42L, rscript_startup = quote(options(abc = 42L)), envir = parent.frame()) NULL > stopifnot(!identical(cluster2, future::cluster)) > stopifnot(inherits(cluster2, "tweaked")) > formals2 <- formals(cluster2) > stopifnot(identical(formals2$workers, cl)) > stopifnot("rscript_startup" %in% names(formals2)) > rscript_startup <- formals2$rscript_startup > stopifnot(!is.null(rscript_startup), is.language(rscript_startup), + is.call(rscript_startup)) > value <- eval(rscript_startup) > stopifnot(is.language(value), is.call(value)) > message("*** plan() - tweak without introducting package dependencies ...") *** plan() - tweak without introducting package dependencies ... > if (!covr_testing && requireNamespace("grid")) { + local({ + cl <- makeClusterPSOCK(1) + on.exit(parallel:::stopCluster(cl)) + .... [TRUNCATED] Loading required namespace: grid [01:59:26.868] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:26.870] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:59:26.870] | : all.equal() for FutureStrategyList ... [01:59:26.871] | : . New stack: [01:59:26.871] | : . List of 1 [01:59:26.871] | : . $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:26.871] | : . session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:26.871] | : . os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:26.871] | : . major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:26.871] | : . `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:26.871] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:26.871] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:26.871] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:26.871] | : . effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:26.871] | : . "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:26.871] | : . process = list(pid = 125688L)))), envir = parent.frame()) [01:59:26.871] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:26.871] | : . ..- attr(*, "init")= logi TRUE [01:59:26.871] | : . ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:26.871] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:26.871] | : . .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:26.871] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:26.871] | : . ..- attr(*, "tweaks")=List of 1 [01:59:26.871] | : . .. ..$ workers:List of 1 [01:59:26.871] | : . .. .. ..$ :List of 4 [01:59:26.871] | : . .. .. .. ..$ con : 'sockconn' int 4 [01:59:26.871] | : . .. .. .. .. ..- attr(*, "conn_id")= [01:59:26.871] | : . .. .. .. ..$ host : chr "localhost" [01:59:26.871] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:26.871] | : . .. .. .. ..$ rank : int 0 [01:59:26.871] | : . .. .. .. ..$ session_info:List of 6 [01:59:26.871] | : . .. .. .. .. ..$ r :List of 16 [01:59:26.871] | : . .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:26.871] | : . .. .. .. .. .. ..$ arch : chr "x86_64" [01:59:26.871] | : . .. .. .. .. .. ..$ os : chr "mingw32" [01:59:26.871] | : . .. .. .. .. .. ..$ crt : chr "ucrt" [01:59:26.871] | : . .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:26.871] | : . .. .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:26.871] | : . .. .. .. .. .. ..$ major : chr "4" [01:59:26.871] | : . .. .. .. .. .. ..$ minor : chr "6.0" [01:59:26.871] | : . .. .. .. .. .. ..$ year : chr "2025" [01:59:26.871] | : . .. .. .. .. .. ..$ month : chr "05" [01:59:26.871] | : . .. .. .. .. .. ..$ day : chr "08" [01:59:26.871] | : . .. .. .. .. .. ..$ svn rev : chr "88190" [01:59:26.871] | : . .. .. .. .. .. ..$ language : chr "R" [01:59:26.871] | : . .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:26.871] | : . .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:26.871] | : . .. .. .. .. .. ..$ os.type : chr "windows" [01:59:26.871] | : . .. .. .. .. ..$ system :List of 9 [01:59:26.871] | : . .. .. .. .. .. ..$ sysname : chr "Windows" [01:59:26.871] | : . .. .. .. .. .. ..$ release : chr "Server x64" [01:59:26.871] | : . .. .. .. .. .. ..$ version : chr "build 20348" [01:59:26.871] | : . .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:26.871] | : . .. .. .. .. .. ..$ machine : chr "x86-64" [01:59:26.871] | : . .. .. .. .. .. ..$ login : chr "CRAN" [01:59:26.871] | : . .. .. .. .. .. ..$ user : chr "CRAN" [01:59:26.871] | : . .. .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:26.871] | : . .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:26.871] | : . .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:26.871] | : . .. .. .. .. ..$ pkgs : NULL [01:59:26.871] | : . .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:26.871] | : . .. .. .. .. ..$ process:List of 1 [01:59:26.871] | : . .. .. .. .. .. ..$ pid: int 125688 [01:59:26.871] | : . .. .. .. ..- attr(*, "options")=List of 35 [01:59:26.871] | : . .. .. .. .. ..$ worker : chr "localhost" [01:59:26.871] | : . .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:26.871] | : . .. .. .. .. ..$ master : chr "localhost" [01:59:26.871] | : . .. .. .. .. ..$ port : int 29619 [01:59:26.871] | : . .. .. .. .. ..$ connectTimeout : num 120 [01:59:26.871] | : . .. .. .. .. ..$ timeout : num 120 [01:59:26.871] | : . .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:26.871] | : . .. .. .. .. ..$ homogeneous : logi TRUE [01:59:26.871] | : . .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:26.871] | : . .. .. .. .. ..$ rscript_envs : NULL [01:59:26.871] | : . .. .. .. .. ..$ rscript_libs : NULL [01:59:26.871] | : . .. .. .. .. ..$ rscript_startup : NULL [01:59:26.871] | : . .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:26.871] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:26.871] | : . .. .. .. .. ..$ methods : logi TRUE [01:59:26.871] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:26.871] | : . .. .. .. .. ..$ useXDR : logi FALSE [01:59:26.871] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:26.871] | : . .. .. .. .. ..$ renice : int NA [01:59:26.871] | : . .. .. .. .. ..$ rshcmd : NULL [01:59:26.871] | : . .. .. .. .. ..$ user : chr(0) [01:59:26.871] | : . .. .. .. .. ..$ revtunnel : logi FALSE [01:59:26.871] | : . .. .. .. .. ..$ rshlogfile : NULL [01:59:26.871] | : . .. .. .. .. ..$ rshopts : chr(0) [01:59:26.871] | : . .. .. .. .. ..$ rank : int 0 [01:59:26.871] | : . .. .. .. .. ..$ manual : logi FALSE [01:59:26.871] | : . .. .. .. .. ..$ dryrun : logi FALSE [01:59:26.871] | : . .. .. .. .. ..$ quiet : logi FALSE [01:59:26.871] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:26.871] | : . .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:26.871] | : . .. .. .. .. ..$ rshcmd_label : NULL [01:59:26.871] | : . .. .. .. .. ..$ rsh_call : NULL [01:59:26.871] | : . .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:26.871] | : . .. .. .. .. ..$ localMachine : logi TRUE [01:59:26.871] | : . .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:26.871] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:26.871] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:26.871] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:26.871] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:26.871] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:26.871] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:26.871] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:26.871] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:26.871] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:26.871] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:26.871] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:26.871] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:26.871] | : . "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:26.871] | : . .. .. .. .. ..$ arguments :List of 28 [01:59:26.871] | : . .. .. .. .. .. ..$ worker : chr "localhost" [01:59:26.871] | : . .. .. .. .. .. ..$ master : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ port : int 29619 [01:59:26.871] | : . .. .. .. .. .. ..$ connectTimeout : num 120 [01:59:26.871] | : . .. .. .. .. .. ..$ timeout : num 120 [01:59:26.871] | : . .. .. .. .. .. ..$ rscript : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ homogeneous : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rscript_args : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rscript_envs : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rscript_libs : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rscript_startup : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:26.871] | : . .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:26.871] | : . .. .. .. .. .. ..$ methods : logi TRUE [01:59:26.871] | : . .. .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:26.871] | : . .. .. .. .. .. ..$ useXDR : logi FALSE [01:59:26.871] | : . .. .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:26.871] | : . .. .. .. .. .. ..$ renice : int NA [01:59:26.871] | : . .. .. .. .. .. ..$ rshcmd : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ user : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ revtunnel : logi NA [01:59:26.871] | : . .. .. .. .. .. ..$ rshlogfile : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rshopts : NULL [01:59:26.871] | : . .. .. .. .. .. ..$ rank : int 1 [01:59:26.871] | : . .. .. .. .. .. ..$ manual : logi FALSE [01:59:26.871] | : . .. .. .. .. .. ..$ dryrun : logi FALSE [01:59:26.871] | : . .. .. .. .. .. ..$ quiet : logi FALSE [01:59:26.871] | : . .. .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:26.871] | : . .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:26.871] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:26.871] | : . .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:26.871] | : . ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:26.871] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:26.933] | : . Old stack: [01:59:26.934] | : . List of 1 [01:59:26.934] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:26.934] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:26.934] | : . ..- attr(*, "init")= logi TRUE [01:59:26.934] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:26.934] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:26.934] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:26.934] | : . ..- attr(*, "call")= language plan(sequential) [01:59:26.934] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:26.939] | : . Not identical [01:59:26.940] | : . all.equal() for future ... [01:59:26.940] | : . ' List of 2 [01:59:26.940] | : . ' $ target :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:26.940] | : . ' session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:26.940] | : . ' os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:26.940] | : . ' major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:26.940] | : . ' `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:26.940] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:26.940] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:26.940] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:26.940] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:26.940] | : . ' "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:26.940] | : . ' process = list(pid = 125688L)))), envir = parent.frame()) [01:59:26.940] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:26.940] | : . ' ..- attr(*, "init")= logi TRUE [01:59:26.940] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:26.940] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:26.940] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:26.940] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:26.940] | : . ' ..- attr(*, "tweaks")=List of 1 [01:59:26.940] | : . ' .. ..$ workers:List of 1 [01:59:26.940] | : . ' .. .. ..$ :List of 4 [01:59:26.940] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [01:59:26.940] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [01:59:26.940] | : . ' .. .. .. ..$ host : chr "localhost" [01:59:26.940] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:26.940] | : . ' .. .. .. ..$ rank : int 0 [01:59:26.940] | : . ' .. .. .. ..$ session_info:List of 6 [01:59:26.940] | : . ' .. .. .. .. ..$ r :List of 16 [01:59:26.940] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:26.940] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [01:59:26.940] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [01:59:26.940] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [01:59:26.940] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:26.940] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:26.940] | : . ' .. .. .. .. .. ..$ major : chr "4" [01:59:26.940] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [01:59:26.940] | : . ' .. .. .. .. .. ..$ year : chr "2025" [01:59:26.940] | : . ' .. .. .. .. .. ..$ month : chr "05" [01:59:26.940] | : . ' .. .. .. .. .. ..$ day : chr "08" [01:59:26.940] | : . ' .. .. .. .. .. ..$ svn rev : chr "88190" [01:59:26.940] | : . ' .. .. .. .. .. ..$ language : chr "R" [01:59:26.940] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:26.940] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:26.940] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [01:59:26.940] | : . ' .. .. .. .. ..$ system :List of 9 [01:59:26.940] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [01:59:26.940] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [01:59:26.940] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [01:59:26.940] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:26.940] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [01:59:26.940] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [01:59:26.940] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [01:59:26.940] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:26.940] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:26.940] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:26.940] | : . ' .. .. .. .. ..$ pkgs : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:26.940] | : . ' .. .. .. .. ..$ process:List of 1 [01:59:26.940] | : . ' .. .. .. .. .. ..$ pid: int 125688 [01:59:26.940] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [01:59:26.940] | : . ' .. .. .. .. ..$ worker : chr "localhost" [01:59:26.940] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:26.940] | : . ' .. .. .. .. ..$ master : chr "localhost" [01:59:26.940] | : . ' .. .. .. .. ..$ port : int 29619 [01:59:26.940] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [01:59:26.940] | : . ' .. .. .. .. ..$ timeout : num 120 [01:59:26.940] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:26.940] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [01:59:26.940] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:26.940] | : . ' .. .. .. .. ..$ rscript_envs : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ rscript_libs : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ rscript_startup : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:26.940] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:26.940] | : . ' .. .. .. .. ..$ methods : logi TRUE [01:59:26.940] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:26.940] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [01:59:26.940] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:26.940] | : . ' .. .. .. .. ..$ renice : int NA [01:59:26.940] | : . ' .. .. .. .. ..$ rshcmd : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ user : chr(0) [01:59:26.940] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [01:59:26.940] | : . ' .. .. .. .. ..$ rshlogfile : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ rshopts : chr(0) [01:59:26.940] | : . ' .. .. .. .. ..$ rank : int 0 [01:59:26.940] | : . ' .. .. .. .. ..$ manual : logi FALSE [01:59:26.940] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [01:59:26.940] | : . ' .. .. .. .. ..$ quiet : logi FALSE [01:59:26.940] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:26.940] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:26.940] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ rsh_call : NULL [01:59:26.940] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:26.940] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [01:59:26.940] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:26.940] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:26.940] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:26.940] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:26.940] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:26.940] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:26.940] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:26.940] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:26.940] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:26.940] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:26.940] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:26.940] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:26.940] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:26.940] | : . ' "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:26.940] | : . ' .. .. .. .. ..$ arguments :List of 28 [01:59:26.940] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [01:59:26.940] | : . ' .. .. .. .. .. ..$ master : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ port : int 29619 [01:59:26.940] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [01:59:26.940] | : . ' .. .. .. .. .. ..$ timeout : num 120 [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:26.940] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:26.940] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [01:59:26.940] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:26.940] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [01:59:26.940] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:26.940] | : . ' .. .. .. .. .. ..$ renice : int NA [01:59:26.940] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ user : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [01:59:26.940] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rshopts : NULL [01:59:26.940] | : . ' .. .. .. .. .. ..$ rank : int 1 [01:59:26.940] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [01:59:26.940] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [01:59:26.940] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [01:59:26.940] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:26.940] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:26.940] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:26.940] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:26.940] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:26.940] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:26.940] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:26.940] | : . ' ..- attr(*, "init")= logi TRUE [01:59:26.940] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:26.940] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:26.940] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:26.940] | : . ' ..- attr(*, "call")= language plan(sequential) [01:59:27.026] | : . ' Formals differ [01:59:27.027] | : . all.equal() for future ... done [01:59:27.027] | : . Future strategies differ at level 1 [01:59:27.028] | : all.equal() for FutureStrategyList ... done [01:59:27.028] | : plan(): Setting new future backend stack: [01:59:27.028] | : List of future strategies: [01:59:27.028] | : 1. cluster: [01:59:27.028] | : - args: function (..., workers = "", envir = parent.frame()) [01:59:27.028] | : - tweaked: TRUE [01:59:27.028] | : - call: future::plan(future::cluster, workers = cl) [01:59:27.033] | : List of 1 [01:59:27.033] | : $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:27.033] | : session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:27.033] | : os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:27.033] | : major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:27.033] | : `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:27.033] | : nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:27.033] | : sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:27.033] | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:27.033] | : effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:27.033] | : "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:27.033] | : process = list(pid = 125688L)))), envir = parent.frame()) [01:59:27.033] | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:27.033] | : ..- attr(*, "init")= logi TRUE [01:59:27.033] | : ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.033] | : earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.033] | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.033] | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.033] | : ..- attr(*, "tweaks")=List of 1 [01:59:27.033] | : .. ..$ workers:List of 1 [01:59:27.033] | : .. .. ..$ :List of 4 [01:59:27.033] | : .. .. .. ..$ con : 'sockconn' int 4 [01:59:27.033] | : .. .. .. .. ..- attr(*, "conn_id")= [01:59:27.033] | : .. .. .. ..$ host : chr "localhost" [01:59:27.033] | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.033] | : .. .. .. ..$ rank : int 0 [01:59:27.033] | : .. .. .. ..$ session_info:List of 6 [01:59:27.033] | : .. .. .. .. ..$ r :List of 16 [01:59:27.033] | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.033] | : .. .. .. .. .. ..$ arch : chr "x86_64" [01:59:27.033] | : .. .. .. .. .. ..$ os : chr "mingw32" [01:59:27.033] | : .. .. .. .. .. ..$ crt : chr "ucrt" [01:59:27.033] | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.033] | : .. .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.033] | : .. .. .. .. .. ..$ major : chr "4" [01:59:27.033] | : .. .. .. .. .. ..$ minor : chr "6.0" [01:59:27.033] | : .. .. .. .. .. ..$ year : chr "2025" [01:59:27.033] | : .. .. .. .. .. ..$ month : chr "05" [01:59:27.033] | : .. .. .. .. .. ..$ day : chr "08" [01:59:27.033] | : .. .. .. .. .. ..$ svn rev : chr "88190" [01:59:27.033] | : .. .. .. .. .. ..$ language : chr "R" [01:59:27.033] | : .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.033] | : .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.033] | : .. .. .. .. .. ..$ os.type : chr "windows" [01:59:27.033] | : .. .. .. .. ..$ system :List of 9 [01:59:27.033] | : .. .. .. .. .. ..$ sysname : chr "Windows" [01:59:27.033] | : .. .. .. .. .. ..$ release : chr "Server x64" [01:59:27.033] | : .. .. .. .. .. ..$ version : chr "build 20348" [01:59:27.033] | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.033] | : .. .. .. .. .. ..$ machine : chr "x86-64" [01:59:27.033] | : .. .. .. .. .. ..$ login : chr "CRAN" [01:59:27.033] | : .. .. .. .. .. ..$ user : chr "CRAN" [01:59:27.033] | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.033] | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.033] | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.033] | : .. .. .. .. ..$ pkgs : NULL [01:59:27.033] | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.033] | : .. .. .. .. ..$ process:List of 1 [01:59:27.033] | : .. .. .. .. .. ..$ pid: int 125688 [01:59:27.033] | : .. .. .. ..- attr(*, "options")=List of 35 [01:59:27.033] | : .. .. .. .. ..$ worker : chr "localhost" [01:59:27.033] | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.033] | : .. .. .. .. ..$ master : chr "localhost" [01:59:27.033] | : .. .. .. .. ..$ port : int 29619 [01:59:27.033] | : .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.033] | : .. .. .. .. ..$ timeout : num 120 [01:59:27.033] | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.033] | : .. .. .. .. ..$ homogeneous : logi TRUE [01:59:27.033] | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.033] | : .. .. .. .. ..$ rscript_envs : NULL [01:59:27.033] | : .. .. .. .. ..$ rscript_libs : NULL [01:59:27.033] | : .. .. .. .. ..$ rscript_startup : NULL [01:59:27.033] | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.033] | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.033] | : .. .. .. .. ..$ methods : logi TRUE [01:59:27.033] | : .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.033] | : .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.033] | : .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.033] | : .. .. .. .. ..$ renice : int NA [01:59:27.033] | : .. .. .. .. ..$ rshcmd : NULL [01:59:27.033] | : .. .. .. .. ..$ user : chr(0) [01:59:27.033] | : .. .. .. .. ..$ revtunnel : logi FALSE [01:59:27.033] | : .. .. .. .. ..$ rshlogfile : NULL [01:59:27.033] | : .. .. .. .. ..$ rshopts : chr(0) [01:59:27.033] | : .. .. .. .. ..$ rank : int 0 [01:59:27.033] | : .. .. .. .. ..$ manual : logi FALSE [01:59:27.033] | : .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.033] | : .. .. .. .. ..$ quiet : logi FALSE [01:59:27.033] | : .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.033] | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.033] | : .. .. .. .. ..$ rshcmd_label : NULL [01:59:27.033] | : .. .. .. .. ..$ rsh_call : NULL [01:59:27.033] | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.033] | : .. .. .. .. ..$ localMachine : logi TRUE [01:59:27.033] | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.033] | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.033] | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.033] | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.033] | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.033] | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.033] | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.033] | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.033] | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.033] | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.033] | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.033] | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.033] | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.033] | : "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.033] | : .. .. .. .. ..$ arguments :List of 28 [01:59:27.033] | : .. .. .. .. .. ..$ worker : chr "localhost" [01:59:27.033] | : .. .. .. .. .. ..$ master : NULL [01:59:27.033] | : .. .. .. .. .. ..$ port : int 29619 [01:59:27.033] | : .. .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.033] | : .. .. .. .. .. ..$ timeout : num 120 [01:59:27.033] | : .. .. .. .. .. ..$ rscript : NULL [01:59:27.033] | : .. .. .. .. .. ..$ homogeneous : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rscript_args : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rscript_envs : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rscript_libs : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rscript_startup : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.033] | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.033] | : .. .. .. .. .. ..$ methods : logi TRUE [01:59:27.033] | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.033] | : .. .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.033] | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.033] | : .. .. .. .. .. ..$ renice : int NA [01:59:27.033] | : .. .. .. .. .. ..$ rshcmd : NULL [01:59:27.033] | : .. .. .. .. .. ..$ user : NULL [01:59:27.033] | : .. .. .. .. .. ..$ revtunnel : logi NA [01:59:27.033] | : .. .. .. .. .. ..$ rshlogfile : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rshopts : NULL [01:59:27.033] | : .. .. .. .. .. ..$ rank : int 1 [01:59:27.033] | : .. .. .. .. .. ..$ manual : logi FALSE [01:59:27.033] | : .. .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.033] | : .. .. .. .. .. ..$ quiet : logi FALSE [01:59:27.033] | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.033] | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.033] | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.033] | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.033] | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:27.033] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.092] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [01:59:27.092] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.093] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [01:59:27.093] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.093] | : . Legacy shutdown of cluster workers ... [01:59:27.094] | : . ' Stopping existing cluster ... [01:59:27.094] | : . ' , No pre-existing cluster. Skipping [01:59:27.094] | : . ' Stopping existing cluster ... done [01:59:27.095] | : . Legacy shutdown of cluster workers ... done [01:59:27.095] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [01:59:27.095] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... [01:59:27.096] | : . function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:27.096] | : . session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:27.096] | : . os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:27.096] | : . major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:27.096] | : . `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:27.096] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:27.096] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:27.096] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:27.096] | : . effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:27.096] | : . "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:27.096] | : . process = list(pid = 125688L)))), envir = parent.frame()) [01:59:27.096] | : . - attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:27.096] | : . - attr(*, "init")= logi TRUE [01:59:27.096] | : . - attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.096] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.096] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.096] | : . - attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.096] | : . - attr(*, "tweaks")=List of 1 [01:59:27.096] | : . ..$ workers:List of 1 [01:59:27.096] | : . .. ..$ :List of 4 [01:59:27.096] | : . .. .. ..$ con : 'sockconn' int 4 [01:59:27.096] | : . .. .. .. ..- attr(*, "conn_id")= [01:59:27.096] | : . .. .. ..$ host : chr "localhost" [01:59:27.096] | : . .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.096] | : . .. .. ..$ rank : int 0 [01:59:27.096] | : . .. .. ..$ session_info:List of 6 [01:59:27.096] | : . .. .. .. ..$ r :List of 16 [01:59:27.096] | : . .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.096] | : . .. .. .. .. ..$ arch : chr "x86_64" [01:59:27.096] | : . .. .. .. .. ..$ os : chr "mingw32" [01:59:27.096] | : . .. .. .. .. ..$ crt : chr "ucrt" [01:59:27.096] | : . .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.096] | : . .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.096] | : . .. .. .. .. ..$ major : chr "4" [01:59:27.096] | : . .. .. .. .. ..$ minor : chr "6.0" [01:59:27.096] | : . .. .. .. .. ..$ year : chr "2025" [01:59:27.096] | : . .. .. .. .. ..$ month : chr "05" [01:59:27.096] | : . .. .. .. .. ..$ day : chr "08" [01:59:27.096] | : . .. .. .. .. ..$ svn rev : chr "88190" [01:59:27.096] | : . .. .. .. .. ..$ language : chr "R" [01:59:27.096] | : . .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.096] | : . .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.096] | : . .. .. .. .. ..$ os.type : chr "windows" [01:59:27.096] | : . .. .. .. ..$ system :List of 9 [01:59:27.096] | : . .. .. .. .. ..$ sysname : chr "Windows" [01:59:27.096] | : . .. .. .. .. ..$ release : chr "Server x64" [01:59:27.096] | : . .. .. .. .. ..$ version : chr "build 20348" [01:59:27.096] | : . .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.096] | : . .. .. .. .. ..$ machine : chr "x86-64" [01:59:27.096] | : . .. .. .. .. ..$ login : chr "CRAN" [01:59:27.096] | : . .. .. .. .. ..$ user : chr "CRAN" [01:59:27.096] | : . .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.096] | : . .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.096] | : . .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.096] | : . .. .. .. ..$ pkgs : NULL [01:59:27.096] | : . .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.096] | : . .. .. .. ..$ process:List of 1 [01:59:27.096] | : . .. .. .. .. ..$ pid: int 125688 [01:59:27.096] | : . .. .. ..- attr(*, "options")=List of 35 [01:59:27.096] | : . .. .. .. ..$ worker : chr "localhost" [01:59:27.096] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.096] | : . .. .. .. ..$ master : chr "localhost" [01:59:27.096] | : . .. .. .. ..$ port : int 29619 [01:59:27.096] | : . .. .. .. ..$ connectTimeout : num 120 [01:59:27.096] | : . .. .. .. ..$ timeout : num 120 [01:59:27.096] | : . .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.096] | : . .. .. .. ..$ homogeneous : logi TRUE [01:59:27.096] | : . .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.096] | : . .. .. .. ..$ rscript_envs : NULL [01:59:27.096] | : . .. .. .. ..$ rscript_libs : NULL [01:59:27.096] | : . .. .. .. ..$ rscript_startup : NULL [01:59:27.096] | : . .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.096] | : . .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.096] | : . .. .. .. ..$ methods : logi TRUE [01:59:27.096] | : . .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.096] | : . .. .. .. ..$ useXDR : logi FALSE [01:59:27.096] | : . .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.096] | : . .. .. .. ..$ renice : int NA [01:59:27.096] | : . .. .. .. ..$ rshcmd : NULL [01:59:27.096] | : . .. .. .. ..$ user : chr(0) [01:59:27.096] | : . .. .. .. ..$ revtunnel : logi FALSE [01:59:27.096] | : . .. .. .. ..$ rshlogfile : NULL [01:59:27.096] | : . .. .. .. ..$ rshopts : chr(0) [01:59:27.096] | : . .. .. .. ..$ rank : int 0 [01:59:27.096] | : . .. .. .. ..$ manual : logi FALSE [01:59:27.096] | : . .. .. .. ..$ dryrun : logi FALSE [01:59:27.096] | : . .. .. .. ..$ quiet : logi FALSE [01:59:27.096] | : . .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.096] | : . .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.096] | : . .. .. .. ..$ rshcmd_label : NULL [01:59:27.096] | : . .. .. .. ..$ rsh_call : NULL [01:59:27.096] | : . .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.096] | : . .. .. .. ..$ localMachine : logi TRUE [01:59:27.096] | : . .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.096] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.096] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.096] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.096] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.096] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.096] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.096] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.096] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.096] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.096] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.096] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.096] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.096] | : . "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.096] | : . .. .. .. ..$ arguments :List of 28 [01:59:27.096] | : . .. .. .. .. ..$ worker : chr "localhost" [01:59:27.096] | : . .. .. .. .. ..$ master : NULL [01:59:27.096] | : . .. .. .. .. ..$ port : int 29619 [01:59:27.096] | : . .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.096] | : . .. .. .. .. ..$ timeout : num 120 [01:59:27.096] | : . .. .. .. .. ..$ rscript : NULL [01:59:27.096] | : . .. .. .. .. ..$ homogeneous : NULL [01:59:27.096] | : . .. .. .. .. ..$ rscript_args : NULL [01:59:27.096] | : . .. .. .. .. ..$ rscript_envs : NULL [01:59:27.096] | : . .. .. .. .. ..$ rscript_libs : NULL [01:59:27.096] | : . .. .. .. .. ..$ rscript_startup : NULL [01:59:27.096] | : . .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.096] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.096] | : . .. .. .. .. ..$ methods : logi TRUE [01:59:27.096] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.096] | : . .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.096] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.096] | : . .. .. .. .. ..$ renice : int NA [01:59:27.096] | : . .. .. .. .. ..$ rshcmd : NULL [01:59:27.096] | : . .. .. .. .. ..$ user : NULL [01:59:27.096] | : . .. .. .. .. ..$ revtunnel : logi NA [01:59:27.096] | : . .. .. .. .. ..$ rshlogfile : NULL [01:59:27.096] | : . .. .. .. .. ..$ rshopts : NULL [01:59:27.096] | : . .. .. .. .. ..$ rank : int 1 [01:59:27.096] | : . .. .. .. .. ..$ manual : logi FALSE [01:59:27.096] | : . .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.096] | : . .. .. .. .. ..$ quiet : logi FALSE [01:59:27.096] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.096] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.096] | : . .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.096] | : . .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.096] | : . - attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:27.164] | : . init: TRUE [01:59:27.165] | : . makeFutureBackend() ... [01:59:27.165] | : . ' Backend function: <'NULL'> [01:59:27.166] | : . ' Evaluator tweak arguments: [n=1] [01:59:27.166] | : . ' List of 1 [01:59:27.166] | : . ' $ workers:List of 1 [01:59:27.166] | : . ' ..$ :List of 4 [01:59:27.166] | : . ' .. ..$ con : 'sockconn' int 4 [01:59:27.166] | : . ' .. .. ..- attr(*, "conn_id")= [01:59:27.166] | : . ' .. ..$ host : chr "localhost" [01:59:27.166] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.166] | : . ' .. ..$ rank : int 0 [01:59:27.166] | : . ' .. ..$ session_info:List of 6 [01:59:27.166] | : . ' .. .. ..$ r :List of 16 [01:59:27.166] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.166] | : . ' .. .. .. ..$ arch : chr "x86_64" [01:59:27.166] | : . ' .. .. .. ..$ os : chr "mingw32" [01:59:27.166] | : . ' .. .. .. ..$ crt : chr "ucrt" [01:59:27.166] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.166] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.166] | : . ' .. .. .. ..$ major : chr "4" [01:59:27.166] | : . ' .. .. .. ..$ minor : chr "6.0" [01:59:27.166] | : . ' .. .. .. ..$ year : chr "2025" [01:59:27.166] | : . ' .. .. .. ..$ month : chr "05" [01:59:27.166] | : . ' .. .. .. ..$ day : chr "08" [01:59:27.166] | : . ' .. .. .. ..$ svn rev : chr "88190" [01:59:27.166] | : . ' .. .. .. ..$ language : chr "R" [01:59:27.166] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.166] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.166] | : . ' .. .. .. ..$ os.type : chr "windows" [01:59:27.166] | : . ' .. .. ..$ system :List of 9 [01:59:27.166] | : . ' .. .. .. ..$ sysname : chr "Windows" [01:59:27.166] | : . ' .. .. .. ..$ release : chr "Server x64" [01:59:27.166] | : . ' .. .. .. ..$ version : chr "build 20348" [01:59:27.166] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.166] | : . ' .. .. .. ..$ machine : chr "x86-64" [01:59:27.166] | : . ' .. .. .. ..$ login : chr "CRAN" [01:59:27.166] | : . ' .. .. .. ..$ user : chr "CRAN" [01:59:27.166] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.166] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.166] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.166] | : . ' .. .. ..$ pkgs : NULL [01:59:27.166] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.166] | : . ' .. .. ..$ process:List of 1 [01:59:27.166] | : . ' .. .. .. ..$ pid: int 125688 [01:59:27.166] | : . ' .. ..- attr(*, "options")=List of 35 [01:59:27.166] | : . ' .. .. ..$ worker : chr "localhost" [01:59:27.166] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.166] | : . ' .. .. ..$ master : chr "localhost" [01:59:27.166] | : . ' .. .. ..$ port : int 29619 [01:59:27.166] | : . ' .. .. ..$ connectTimeout : num 120 [01:59:27.166] | : . ' .. .. ..$ timeout : num 120 [01:59:27.166] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.166] | : . ' .. .. ..$ homogeneous : logi TRUE [01:59:27.166] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.166] | : . ' .. .. ..$ rscript_envs : NULL [01:59:27.166] | : . ' .. .. ..$ rscript_libs : NULL [01:59:27.166] | : . ' .. .. ..$ rscript_startup : NULL [01:59:27.166] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.166] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.166] | : . ' .. .. ..$ methods : logi TRUE [01:59:27.166] | : . ' .. .. ..$ socketOptions : chr "no-delay" [01:59:27.166] | : . ' .. .. ..$ useXDR : logi FALSE [01:59:27.166] | : . ' .. .. ..$ outfile : chr "/dev/null" [01:59:27.166] | : . ' .. .. ..$ renice : int NA [01:59:27.166] | : . ' .. .. ..$ rshcmd : NULL [01:59:27.166] | : . ' .. .. ..$ user : chr(0) [01:59:27.166] | : . ' .. .. ..$ revtunnel : logi FALSE [01:59:27.166] | : . ' .. .. ..$ rshlogfile : NULL [01:59:27.166] | : . ' .. .. ..$ rshopts : chr(0) [01:59:27.166] | : . ' .. .. ..$ rank : int 0 [01:59:27.166] | : . ' .. .. ..$ manual : logi FALSE [01:59:27.166] | : . ' .. .. ..$ dryrun : logi FALSE [01:59:27.166] | : . ' .. .. ..$ quiet : logi FALSE [01:59:27.166] | : . ' .. .. ..$ setup_strategy : chr "parallel" [01:59:27.166] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.166] | : . ' .. .. ..$ rshcmd_label : NULL [01:59:27.166] | : . ' .. .. ..$ rsh_call : NULL [01:59:27.166] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.166] | : . ' .. .. ..$ localMachine : logi TRUE [01:59:27.166] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.166] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.166] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.166] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.166] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.166] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.166] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.166] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.166] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.166] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.166] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.166] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.166] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.166] | : . ' "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.166] | : . ' .. .. ..$ arguments :List of 28 [01:59:27.166] | : . ' .. .. .. ..$ worker : chr "localhost" [01:59:27.166] | : . ' .. .. .. ..$ master : NULL [01:59:27.166] | : . ' .. .. .. ..$ port : int 29619 [01:59:27.166] | : . ' .. .. .. ..$ connectTimeout : num 120 [01:59:27.166] | : . ' .. .. .. ..$ timeout : num 120 [01:59:27.166] | : . ' .. .. .. ..$ rscript : NULL [01:59:27.166] | : . ' .. .. .. ..$ homogeneous : NULL [01:59:27.166] | : . ' .. .. .. ..$ rscript_args : NULL [01:59:27.166] | : . ' .. .. .. ..$ rscript_envs : NULL [01:59:27.166] | : . ' .. .. .. ..$ rscript_libs : NULL [01:59:27.166] | : . ' .. .. .. ..$ rscript_startup : NULL [01:59:27.166] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.166] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.166] | : . ' .. .. .. ..$ methods : logi TRUE [01:59:27.166] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.166] | : . ' .. .. .. ..$ useXDR : logi FALSE [01:59:27.166] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.166] | : . ' .. .. .. ..$ renice : int NA [01:59:27.166] | : . ' .. .. .. ..$ rshcmd : NULL [01:59:27.166] | : . ' .. .. .. ..$ user : NULL [01:59:27.166] | : . ' .. .. .. ..$ revtunnel : logi NA [01:59:27.166] | : . ' .. .. .. ..$ rshlogfile : NULL [01:59:27.166] | : . ' .. .. .. ..$ rshopts : NULL [01:59:27.166] | : . ' .. .. .. ..$ rank : int 1 [01:59:27.166] | : . ' .. .. .. ..$ manual : logi FALSE [01:59:27.166] | : . ' .. .. .. ..$ dryrun : logi FALSE [01:59:27.166] | : . ' .. .. .. ..$ quiet : logi FALSE [01:59:27.166] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.166] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.166] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.166] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.208] | : . ' Evaluator formal arguments: [n=1] [01:59:27.208] | : . ' List of 1 [01:59:27.208] | : . ' $ workers:List of 1 [01:59:27.208] | : . ' ..$ :List of 4 [01:59:27.208] | : . ' .. ..$ con : 'sockconn' int 4 [01:59:27.208] | : . ' .. .. ..- attr(*, "conn_id")= [01:59:27.208] | : . ' .. ..$ host : chr "localhost" [01:59:27.208] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.208] | : . ' .. ..$ rank : int 0 [01:59:27.208] | : . ' .. ..$ session_info:List of 6 [01:59:27.208] | : . ' .. .. ..$ r :List of 16 [01:59:27.208] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.208] | : . ' .. .. .. ..$ arch : chr "x86_64" [01:59:27.208] | : . ' .. .. .. ..$ os : chr "mingw32" [01:59:27.208] | : . ' .. .. .. ..$ crt : chr "ucrt" [01:59:27.208] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.208] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.208] | : . ' .. .. .. ..$ major : chr "4" [01:59:27.208] | : . ' .. .. .. ..$ minor : chr "6.0" [01:59:27.208] | : . ' .. .. .. ..$ year : chr "2025" [01:59:27.208] | : . ' .. .. .. ..$ month : chr "05" [01:59:27.208] | : . ' .. .. .. ..$ day : chr "08" [01:59:27.208] | : . ' .. .. .. ..$ svn rev : chr "88190" [01:59:27.208] | : . ' .. .. .. ..$ language : chr "R" [01:59:27.208] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.208] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.208] | : . ' .. .. .. ..$ os.type : chr "windows" [01:59:27.208] | : . ' .. .. ..$ system :List of 9 [01:59:27.208] | : . ' .. .. .. ..$ sysname : chr "Windows" [01:59:27.208] | : . ' .. .. .. ..$ release : chr "Server x64" [01:59:27.208] | : . ' .. .. .. ..$ version : chr "build 20348" [01:59:27.208] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.208] | : . ' .. .. .. ..$ machine : chr "x86-64" [01:59:27.208] | : . ' .. .. .. ..$ login : chr "CRAN" [01:59:27.208] | : . ' .. .. .. ..$ user : chr "CRAN" [01:59:27.208] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.208] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.208] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.208] | : . ' .. .. ..$ pkgs : NULL [01:59:27.208] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.208] | : . ' .. .. ..$ process:List of 1 [01:59:27.208] | : . ' .. .. .. ..$ pid: int 125688 [01:59:27.208] | : . ' .. ..- attr(*, "options")=List of 35 [01:59:27.208] | : . ' .. .. ..$ worker : chr "localhost" [01:59:27.208] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.208] | : . ' .. .. ..$ master : chr "localhost" [01:59:27.208] | : . ' .. .. ..$ port : int 29619 [01:59:27.208] | : . ' .. .. ..$ connectTimeout : num 120 [01:59:27.208] | : . ' .. .. ..$ timeout : num 120 [01:59:27.208] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.208] | : . ' .. .. ..$ homogeneous : logi TRUE [01:59:27.208] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.208] | : . ' .. .. ..$ rscript_envs : NULL [01:59:27.208] | : . ' .. .. ..$ rscript_libs : NULL [01:59:27.208] | : . ' .. .. ..$ rscript_startup : NULL [01:59:27.208] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.208] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.208] | : . ' .. .. ..$ methods : logi TRUE [01:59:27.208] | : . ' .. .. ..$ socketOptions : chr "no-delay" [01:59:27.208] | : . ' .. .. ..$ useXDR : logi FALSE [01:59:27.208] | : . ' .. .. ..$ outfile : chr "/dev/null" [01:59:27.208] | : . ' .. .. ..$ renice : int NA [01:59:27.208] | : . ' .. .. ..$ rshcmd : NULL [01:59:27.208] | : . ' .. .. ..$ user : chr(0) [01:59:27.208] | : . ' .. .. ..$ revtunnel : logi FALSE [01:59:27.208] | : . ' .. .. ..$ rshlogfile : NULL [01:59:27.208] | : . ' .. .. ..$ rshopts : chr(0) [01:59:27.208] | : . ' .. .. ..$ rank : int 0 [01:59:27.208] | : . ' .. .. ..$ manual : logi FALSE [01:59:27.208] | : . ' .. .. ..$ dryrun : logi FALSE [01:59:27.208] | : . ' .. .. ..$ quiet : logi FALSE [01:59:27.208] | : . ' .. .. ..$ setup_strategy : chr "parallel" [01:59:27.208] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.208] | : . ' .. .. ..$ rshcmd_label : NULL [01:59:27.208] | : . ' .. .. ..$ rsh_call : NULL [01:59:27.208] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.208] | : . ' .. .. ..$ localMachine : logi TRUE [01:59:27.208] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.208] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.208] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.208] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.208] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.208] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.208] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.208] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.208] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.208] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.208] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.208] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.208] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.208] | : . ' "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.208] | : . ' .. .. ..$ arguments :List of 28 [01:59:27.208] | : . ' .. .. .. ..$ worker : chr "localhost" [01:59:27.208] | : . ' .. .. .. ..$ master : NULL [01:59:27.208] | : . ' .. .. .. ..$ port : int 29619 [01:59:27.208] | : . ' .. .. .. ..$ connectTimeout : num 120 [01:59:27.208] | : . ' .. .. .. ..$ timeout : num 120 [01:59:27.208] | : . ' .. .. .. ..$ rscript : NULL [01:59:27.208] | : . ' .. .. .. ..$ homogeneous : NULL [01:59:27.208] | : . ' .. .. .. ..$ rscript_args : NULL [01:59:27.208] | : . ' .. .. .. ..$ rscript_envs : NULL [01:59:27.208] | : . ' .. .. .. ..$ rscript_libs : NULL [01:59:27.208] | : . ' .. .. .. ..$ rscript_startup : NULL [01:59:27.208] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.208] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.208] | : . ' .. .. .. ..$ methods : logi TRUE [01:59:27.208] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.208] | : . ' .. .. .. ..$ useXDR : logi FALSE [01:59:27.208] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.208] | : . ' .. .. .. ..$ renice : int NA [01:59:27.208] | : . ' .. .. .. ..$ rshcmd : NULL [01:59:27.208] | : . ' .. .. .. ..$ user : NULL [01:59:27.208] | : . ' .. .. .. ..$ revtunnel : logi NA [01:59:27.208] | : . ' .. .. .. ..$ rshlogfile : NULL [01:59:27.208] | : . ' .. .. .. ..$ rshopts : NULL [01:59:27.208] | : . ' .. .. .. ..$ rank : int 1 [01:59:27.208] | : . ' .. .. .. ..$ manual : logi FALSE [01:59:27.208] | : . ' .. .. .. ..$ dryrun : logi FALSE [01:59:27.208] | : . ' .. .. .. ..$ quiet : logi FALSE [01:59:27.208] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.208] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.208] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.208] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.253] | : . ' Backend factory arguments: [n=1] [01:59:27.253] | : . ' Dotted pair list of 1 [01:59:27.253] | : . ' $ workers:List of 1 [01:59:27.253] | : . ' ..$ :List of 4 [01:59:27.253] | : . ' .. ..$ con : 'sockconn' int 4 [01:59:27.253] | : . ' .. .. ..- attr(*, "conn_id")= [01:59:27.253] | : . ' .. ..$ host : chr "localhost" [01:59:27.253] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.253] | : . ' .. ..$ rank : int 0 [01:59:27.253] | : . ' .. ..$ session_info:List of 6 [01:59:27.253] | : . ' .. .. ..$ r :List of 16 [01:59:27.253] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.253] | : . ' .. .. .. ..$ arch : chr "x86_64" [01:59:27.253] | : . ' .. .. .. ..$ os : chr "mingw32" [01:59:27.253] | : . ' .. .. .. ..$ crt : chr "ucrt" [01:59:27.253] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.253] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.253] | : . ' .. .. .. ..$ major : chr "4" [01:59:27.253] | : . ' .. .. .. ..$ minor : chr "6.0" [01:59:27.253] | : . ' .. .. .. ..$ year : chr "2025" [01:59:27.253] | : . ' .. .. .. ..$ month : chr "05" [01:59:27.253] | : . ' .. .. .. ..$ day : chr "08" [01:59:27.253] | : . ' .. .. .. ..$ svn rev : chr "88190" [01:59:27.253] | : . ' .. .. .. ..$ language : chr "R" [01:59:27.253] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.253] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.253] | : . ' .. .. .. ..$ os.type : chr "windows" [01:59:27.253] | : . ' .. .. ..$ system :List of 9 [01:59:27.253] | : . ' .. .. .. ..$ sysname : chr "Windows" [01:59:27.253] | : . ' .. .. .. ..$ release : chr "Server x64" [01:59:27.253] | : . ' .. .. .. ..$ version : chr "build 20348" [01:59:27.253] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.253] | : . ' .. .. .. ..$ machine : chr "x86-64" [01:59:27.253] | : . ' .. .. .. ..$ login : chr "CRAN" [01:59:27.253] | : . ' .. .. .. ..$ user : chr "CRAN" [01:59:27.253] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.253] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.253] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.253] | : . ' .. .. ..$ pkgs : NULL [01:59:27.253] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.253] | : . ' .. .. ..$ process:List of 1 [01:59:27.253] | : . ' .. .. .. ..$ pid: int 125688 [01:59:27.253] | : . ' .. ..- attr(*, "options")=List of 35 [01:59:27.253] | : . ' .. .. ..$ worker : chr "localhost" [01:59:27.253] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.253] | : . ' .. .. ..$ master : chr "localhost" [01:59:27.253] | : . ' .. .. ..$ port : int 29619 [01:59:27.253] | : . ' .. .. ..$ connectTimeout : num 120 [01:59:27.253] | : . ' .. .. ..$ timeout : num 120 [01:59:27.253] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.253] | : . ' .. .. ..$ homogeneous : logi TRUE [01:59:27.253] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.253] | : . ' .. .. ..$ rscript_envs : NULL [01:59:27.253] | : . ' .. .. ..$ rscript_libs : NULL [01:59:27.253] | : . ' .. .. ..$ rscript_startup : NULL [01:59:27.253] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.253] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.253] | : . ' .. .. ..$ methods : logi TRUE [01:59:27.253] | : . ' .. .. ..$ socketOptions : chr "no-delay" [01:59:27.253] | : . ' .. .. ..$ useXDR : logi FALSE [01:59:27.253] | : . ' .. .. ..$ outfile : chr "/dev/null" [01:59:27.253] | : . ' .. .. ..$ renice : int NA [01:59:27.253] | : . ' .. .. ..$ rshcmd : NULL [01:59:27.253] | : . ' .. .. ..$ user : chr(0) [01:59:27.253] | : . ' .. .. ..$ revtunnel : logi FALSE [01:59:27.253] | : . ' .. .. ..$ rshlogfile : NULL [01:59:27.253] | : . ' .. .. ..$ rshopts : chr(0) [01:59:27.253] | : . ' .. .. ..$ rank : int 0 [01:59:27.253] | : . ' .. .. ..$ manual : logi FALSE [01:59:27.253] | : . ' .. .. ..$ dryrun : logi FALSE [01:59:27.253] | : . ' .. .. ..$ quiet : logi FALSE [01:59:27.253] | : . ' .. .. ..$ setup_strategy : chr "parallel" [01:59:27.253] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.253] | : . ' .. .. ..$ rshcmd_label : NULL [01:59:27.253] | : . ' .. .. ..$ rsh_call : NULL [01:59:27.253] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.253] | : . ' .. .. ..$ localMachine : logi TRUE [01:59:27.253] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.253] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.253] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.253] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.253] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.253] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.253] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.253] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.253] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.253] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.253] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.253] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.253] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.253] | : . ' "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.253] | : . ' .. .. ..$ arguments :List of 28 [01:59:27.253] | : . ' .. .. .. ..$ worker : chr "localhost" [01:59:27.253] | : . ' .. .. .. ..$ master : NULL [01:59:27.253] | : . ' .. .. .. ..$ port : int 29619 [01:59:27.253] | : . ' .. .. .. ..$ connectTimeout : num 120 [01:59:27.253] | : . ' .. .. .. ..$ timeout : num 120 [01:59:27.253] | : . ' .. .. .. ..$ rscript : NULL [01:59:27.253] | : . ' .. .. .. ..$ homogeneous : NULL [01:59:27.253] | : . ' .. .. .. ..$ rscript_args : NULL [01:59:27.253] | : . ' .. .. .. ..$ rscript_envs : NULL [01:59:27.253] | : . ' .. .. .. ..$ rscript_libs : NULL [01:59:27.253] | : . ' .. .. .. ..$ rscript_startup : NULL [01:59:27.253] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.253] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.253] | : . ' .. .. .. ..$ methods : logi TRUE [01:59:27.253] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.253] | : . ' .. .. .. ..$ useXDR : logi FALSE [01:59:27.253] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.253] | : . ' .. .. .. ..$ renice : int NA [01:59:27.253] | : . ' .. .. .. ..$ rshcmd : NULL [01:59:27.253] | : . ' .. .. .. ..$ user : NULL [01:59:27.253] | : . ' .. .. .. ..$ revtunnel : logi NA [01:59:27.253] | : . ' .. .. .. ..$ rshlogfile : NULL [01:59:27.253] | : . ' .. .. .. ..$ rshopts : NULL [01:59:27.253] | : . ' .. .. .. ..$ rank : int 1 [01:59:27.253] | : . ' .. .. .. ..$ manual : logi FALSE [01:59:27.253] | : . ' .. .. .. ..$ dryrun : logi FALSE [01:59:27.253] | : . ' .. .. .. ..$ quiet : logi FALSE [01:59:27.253] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.253] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.253] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.253] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.297] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... [01:59:27.297] | : . ' , Stopping existing cluster ... [01:59:27.297] | : . ' , ; No pre-existing cluster. Skipping [01:59:27.297] | : . ' , Stopping existing cluster ... done [01:59:27.297] | : . ' , Number of workers: 1 [01:59:27.304] | : . ' , Generated workers UUID [01:59:27.304] | : . ' , Workers UUID: '274fcd4e058680afab15e96a18a716d5' [01:59:27.304] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... done [01:59:27.305] | : . ' Backend: <'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [01:59:27.305] | : . makeFutureBackend() ... done [01:59:27.305] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... done [01:59:27.305] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.305] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.306] | : plan(): nbrOfWorkers() = 1 [01:59:27.306] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:59:27.306] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.312] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.312] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.313] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:59:27.313] | : . all.equal() for FutureStrategyList ... [01:59:27.314] | : . ' New stack: [01:59:27.314] | : . ' List of 1 [01:59:27.314] | : . ' $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.314] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.314] | : . ' ..- attr(*, "init")= logi TRUE [01:59:27.314] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.314] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.314] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.314] | : . ' ..- attr(*, "call")= language plan(sequential) [01:59:27.314] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.319] | : . ' Old stack: [01:59:27.320] | : . ' List of 1 [01:59:27.320] | : . ' $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:27.320] | : . ' session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:27.320] | : . ' os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:27.320] | : . ' major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:27.320] | : . ' `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:27.320] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:27.320] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:27.320] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:27.320] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:27.320] | : . ' "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:27.320] | : . ' process = list(pid = 125688L)))), envir = parent.frame()) [01:59:27.320] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:27.320] | : . ' ..- attr(*, "init")= chr "done" [01:59:27.320] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.320] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.320] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.320] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.320] | : . ' ..- attr(*, "tweaks")=List of 1 [01:59:27.320] | : . ' .. ..$ workers:List of 1 [01:59:27.320] | : . ' .. .. ..$ :List of 4 [01:59:27.320] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [01:59:27.320] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [01:59:27.320] | : . ' .. .. .. ..$ host : chr "localhost" [01:59:27.320] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.320] | : . ' .. .. .. ..$ rank : int 0 [01:59:27.320] | : . ' .. .. .. ..$ session_info:List of 6 [01:59:27.320] | : . ' .. .. .. .. ..$ r :List of 16 [01:59:27.320] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.320] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [01:59:27.320] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [01:59:27.320] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [01:59:27.320] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.320] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.320] | : . ' .. .. .. .. .. ..$ major : chr "4" [01:59:27.320] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [01:59:27.320] | : . ' .. .. .. .. .. ..$ year : chr "2025" [01:59:27.320] | : . ' .. .. .. .. .. ..$ month : chr "05" [01:59:27.320] | : . ' .. .. .. .. .. ..$ day : chr "08" [01:59:27.320] | : . ' .. .. .. .. .. ..$ svn rev : chr "88190" [01:59:27.320] | : . ' .. .. .. .. .. ..$ language : chr "R" [01:59:27.320] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.320] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.320] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [01:59:27.320] | : . ' .. .. .. .. ..$ system :List of 9 [01:59:27.320] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [01:59:27.320] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [01:59:27.320] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [01:59:27.320] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.320] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [01:59:27.320] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [01:59:27.320] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [01:59:27.320] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.320] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.320] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.320] | : . ' .. .. .. .. ..$ pkgs : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.320] | : . ' .. .. .. .. ..$ process:List of 1 [01:59:27.320] | : . ' .. .. .. .. .. ..$ pid: int 125688 [01:59:27.320] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [01:59:27.320] | : . ' .. .. .. .. ..$ worker : chr "localhost" [01:59:27.320] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.320] | : . ' .. .. .. .. ..$ master : chr "localhost" [01:59:27.320] | : . ' .. .. .. .. ..$ port : int 29619 [01:59:27.320] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.320] | : . ' .. .. .. .. ..$ timeout : num 120 [01:59:27.320] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.320] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [01:59:27.320] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.320] | : . ' .. .. .. .. ..$ rscript_envs : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ rscript_libs : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ rscript_startup : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.320] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.320] | : . ' .. .. .. .. ..$ methods : logi TRUE [01:59:27.320] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.320] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.320] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.320] | : . ' .. .. .. .. ..$ renice : int NA [01:59:27.320] | : . ' .. .. .. .. ..$ rshcmd : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ user : chr(0) [01:59:27.320] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [01:59:27.320] | : . ' .. .. .. .. ..$ rshlogfile : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ rshopts : chr(0) [01:59:27.320] | : . ' .. .. .. .. ..$ rank : int 0 [01:59:27.320] | : . ' .. .. .. .. ..$ manual : logi FALSE [01:59:27.320] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.320] | : . ' .. .. .. .. ..$ quiet : logi FALSE [01:59:27.320] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.320] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.320] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ rsh_call : NULL [01:59:27.320] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.320] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [01:59:27.320] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.320] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.320] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.320] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.320] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.320] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.320] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.320] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.320] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.320] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.320] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.320] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.320] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.320] | : . ' "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.320] | : . ' .. .. .. .. ..$ arguments :List of 28 [01:59:27.320] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [01:59:27.320] | : . ' .. .. .. .. .. ..$ master : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ port : int 29619 [01:59:27.320] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.320] | : . ' .. .. .. .. .. ..$ timeout : num 120 [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.320] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.320] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [01:59:27.320] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.320] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.320] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.320] | : . ' .. .. .. .. .. ..$ renice : int NA [01:59:27.320] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ user : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [01:59:27.320] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rshopts : NULL [01:59:27.320] | : . ' .. .. .. .. .. ..$ rank : int 1 [01:59:27.320] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [01:59:27.320] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.320] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [01:59:27.320] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.320] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.320] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.320] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.320] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:27.320] | : . ' ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [01:59:27.320] | : . ' .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.320] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.320] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.320] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.381] | : . ' Not identical [01:59:27.381] | : . ' all.equal() for future ... [01:59:27.381] | : . ' , List of 2 [01:59:27.381] | : . ' , $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.381] | : . ' , ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.381] | : . ' , ..- attr(*, "init")= logi TRUE [01:59:27.381] | : . ' , ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.381] | : . ' , .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.381] | : . ' , ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.381] | : . ' , ..- attr(*, "call")= language plan(sequential) [01:59:27.381] | : . ' , $ current:function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [01:59:27.381] | : . ' , session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [01:59:27.381] | : . ' , os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "Under development (unstable)", [01:59:27.381] | : . ' , major = "4", minor = "6.0", year = "2025", month = "05", day = "08", [01:59:27.381] | : . ' , `svn rev` = "88190", language = "R", version.string = "R Under development (unstable) (2025-05-08 r88190 ucrt)", [01:59:27.381] | : . ' , nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [01:59:27.381] | : . ' , sysname = "Windows", release = "Server x64", version = "build 20348", [01:59:27.381] | : . ' , nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [01:59:27.381] | : . ' , effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0", [01:59:27.381] | : . ' , "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [01:59:27.381] | : . ' , process = list(pid = 125688L)))), envir = parent.frame()) [01:59:27.381] | : . ' , ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [01:59:27.381] | : . ' , ..- attr(*, "init")= chr "done" [01:59:27.381] | : . ' , ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.381] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.381] | : . ' , .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.381] | : . ' , ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.381] | : . ' , ..- attr(*, "tweaks")=List of 1 [01:59:27.381] | : . ' , .. ..$ workers:List of 1 [01:59:27.381] | : . ' , .. .. ..$ :List of 4 [01:59:27.381] | : . ' , .. .. .. ..$ con : 'sockconn' int 4 [01:59:27.381] | : . ' , .. .. .. .. ..- attr(*, "conn_id")= [01:59:27.381] | : . ' , .. .. .. ..$ host : chr "localhost" [01:59:27.381] | : . ' , .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.381] | : . ' , .. .. .. ..$ rank : int 0 [01:59:27.381] | : . ' , .. .. .. ..$ session_info:List of 6 [01:59:27.381] | : . ' , .. .. .. .. ..$ r :List of 16 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ arch : chr "x86_64" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ os : chr "mingw32" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ crt : chr "ucrt" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ status : chr "Under development (unstable)" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ major : chr "4" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ minor : chr "6.0" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ year : chr "2025" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ month : chr "05" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ day : chr "08" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ svn rev : chr "88190" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ language : chr "R" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-05-08 r88190 ucrt)" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ os.type : chr "windows" [01:59:27.381] | : . ' , .. .. .. .. ..$ system :List of 9 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ sysname : chr "Windows" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ release : chr "Server x64" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ version : chr "build 20348" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ machine : chr "x86-64" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ login : chr "CRAN" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ user : chr "CRAN" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ effective_user: chr "CRAN" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [01:59:27.381] | : . ' , .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:59:27.381] | : . ' , .. .. .. .. ..$ pkgs : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [01:59:27.381] | : . ' , .. .. .. .. ..$ process:List of 1 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ pid: int 125688 [01:59:27.381] | : . ' , .. .. .. ..- attr(*, "options")=List of 35 [01:59:27.381] | : . ' , .. .. .. .. ..$ worker : chr "localhost" [01:59:27.381] | : . ' , .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [01:59:27.381] | : . ' , .. .. .. .. ..$ master : chr "localhost" [01:59:27.381] | : . ' , .. .. .. .. ..$ port : int 29619 [01:59:27.381] | : . ' , .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.381] | : . ' , .. .. .. .. ..$ timeout : num 120 [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [01:59:27.381] | : . ' , .. .. .. .. ..$ homogeneous : logi TRUE [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:142612:CRANWIN3:CRA"| __truncated__ [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript_envs : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript_libs : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript_startup : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [01:59:27.381] | : . ' , .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.381] | : . ' , .. .. .. .. ..$ methods : logi TRUE [01:59:27.381] | : . ' , .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.381] | : . ' , .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.381] | : . ' , .. .. .. .. ..$ renice : int NA [01:59:27.381] | : . ' , .. .. .. .. ..$ rshcmd : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ user : chr(0) [01:59:27.381] | : . ' , .. .. .. .. ..$ revtunnel : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. ..$ rshlogfile : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ rshopts : chr(0) [01:59:27.381] | : . ' , .. .. .. .. ..$ rank : int 0 [01:59:27.381] | : . ' , .. .. .. .. ..$ manual : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. ..$ quiet : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.381] | : . ' , .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.381] | : . ' , .. .. .. .. ..$ rshcmd_label : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ rsh_call : NULL [01:59:27.381] | : . ' , .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [01:59:27.381] | : . ' , .. .. .. .. ..$ localMachine : logi TRUE [01:59:27.381] | : . ' , .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [01:59:27.381] | : . ' , master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [01:59:27.381] | : . ' , 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [01:59:27.381] | : . ' , 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [01:59:27.381] | : . ' , rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [01:59:27.381] | : . ' , "cmd", "sh", "none"), default_packages = c("datasets", "utils", [01:59:27.381] | : . ' , "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [01:59:27.381] | : . ' , socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [01:59:27.381] | : . ' , "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [01:59:27.381] | : . ' , FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [01:59:27.381] | : . ' , NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [01:59:27.381] | : . ' , NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [01:59:27.381] | : . ' , setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [01:59:27.381] | : . ' , "parallel"), action = c("launch", "options"), verbose = FALSE) [01:59:27.381] | : . ' , .. .. .. .. ..$ arguments :List of 28 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ worker : chr "localhost" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ master : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ port : int 29619 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ connectTimeout : num 120 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ timeout : num 120 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ homogeneous : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript_args : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript_envs : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript_libs : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript_startup : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rscript_sh : chr "auto" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [01:59:27.381] | : . ' , .. .. .. .. .. ..$ methods : logi TRUE [01:59:27.381] | : . ' , .. .. .. .. .. ..$ socketOptions : chr "no-delay" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ useXDR : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. .. ..$ outfile : chr "/dev/null" [01:59:27.381] | : . ' , .. .. .. .. .. ..$ renice : int NA [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rshcmd : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ user : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ revtunnel : logi NA [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rshlogfile : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rshopts : NULL [01:59:27.381] | : . ' , .. .. .. .. .. ..$ rank : int 1 [01:59:27.381] | : . ' , .. .. .. .. .. ..$ manual : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. .. ..$ dryrun : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. .. ..$ quiet : logi FALSE [01:59:27.381] | : . ' , .. .. .. .. .. ..$ setup_strategy : chr "parallel" [01:59:27.381] | : . ' , .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [01:59:27.381] | : . ' , .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [01:59:27.381] | : . ' , .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [01:59:27.381] | : . ' , ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [01:59:27.381] | : . ' , ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [01:59:27.381] | : . ' , .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [01:59:27.381] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [01:59:27.381] | : . ' , .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [01:59:27.442] | : . ' , Formals differ [01:59:27.442] | : . ' all.equal() for future ... done [01:59:27.442] | : . ' Future strategies differ at level 1 [01:59:27.443] | : . all.equal() for FutureStrategyList ... done [01:59:27.443] | : . plan(): Setting new future backend stack: [01:59:27.443] | : . List of future strategies: [01:59:27.443] | : . 1. sequential: [01:59:27.443] | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.443] | : . - tweaked: FALSE [01:59:27.443] | : . - call: plan(sequential) [01:59:27.444] | : . List of 1 [01:59:27.444] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.444] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.444] | : . ..- attr(*, "init")= logi TRUE [01:59:27.444] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.444] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.444] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.444] | : . ..- attr(*, "call")= language plan(sequential) [01:59:27.444] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.449] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... [01:59:27.450] | : . ' plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.450] | : . ' , Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [01:59:27.450] | : . ' plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.451] | : . ' stopWorkers() for ClusterFutureBackend ... [01:59:27.451] | : . ' , Interrupt active futures ... [01:59:27.453] | : . ' , ; Number of futures: 0 [01:59:27.453] | : . ' , Interrupt active futures ... done [01:59:27.454] | : . ' , Clear future registry ... [01:59:27.455] | : . ' , Clear future registry ... done [01:59:27.455] | : . ' , Stop cluster workers ... [01:59:27.455] | : . ' , ; Stopping existing cluster ... [01:59:27.455] | : . ' , ; ` No pre-existing cluster. Skipping [01:59:27.456] | : . ' , ; Stopping existing cluster ... done [01:59:27.456] | : . ' , Stop cluster workers ... done [01:59:27.457] | : . ' stopWorkers() for ClusterFutureBackend ... done [01:59:27.457] | : . ' Legacy shutdown of cluster workers ... [01:59:27.457] | : . ' , Stopping existing cluster ... [01:59:27.457] | : . ' , ; No pre-existing cluster. Skipping [01:59:27.458] | : . ' , Stopping existing cluster ... done [01:59:27.458] | : . ' Legacy shutdown of cluster workers ... done [01:59:27.458] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... done [01:59:27.459] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [01:59:27.459] | : . ' function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.459] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.459] | : . ' - attr(*, "init")= logi TRUE [01:59:27.459] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.459] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.459] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.459] | : . ' - attr(*, "call")= language plan(sequential) [01:59:27.463] | : . ' init: TRUE [01:59:27.464] | : . ' makeFutureBackend() ... [01:59:27.464] | : . ' , Backend function: <'NULL'> [01:59:27.464] | : . ' , Evaluator tweak arguments: [n=0] [01:59:27.465] | : . ' , list() [01:59:27.465] | : . ' , Evaluator formal arguments: [n=2] [01:59:27.466] | : . ' , list() [01:59:27.466] | : . ' , Backend factory arguments: [n=2] [01:59:27.466] | : . ' , Dotted pair list of 2 [01:59:27.466] | : . ' , $ gc : logi FALSE [01:59:27.466] | : . ' , $ earlySignal: logi FALSE [01:59:27.469] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:27.469] | : . ' makeFutureBackend() ... done [01:59:27.469] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:27.470] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.470] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.470] | : . plan(): nbrOfWorkers() = 1 [01:59:27.471] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:59:27.471] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.471] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > message("*** plan() - tweak without introducting package dependencies ... DONE") *** plan() - tweak without introducting package dependencies ... DONE > message("*** y %<-% { expr } %tweak% tweaks ...") *** y %<-% { expr } %tweak% tweaks ... > plan(sequential) [01:59:27.472] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.473] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:59:27.473] | : all.equal() for FutureStrategyList ... [01:59:27.473] | : . New stack: [01:59:27.474] | : . List of 1 [01:59:27.474] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.474] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.474] | : . ..- attr(*, "init")= logi TRUE [01:59:27.474] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.474] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.474] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.474] | : . ..- attr(*, "call")= language plan(sequential) [01:59:27.474] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.479] | : . Old stack: [01:59:27.479] | : . List of 1 [01:59:27.479] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.479] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.479] | : . ..- attr(*, "init")= chr "done" [01:59:27.479] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.479] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.479] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.479] | : . ..- attr(*, "call")= language plan(sequential) [01:59:27.479] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.479] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.479] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.479] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.486] | : . Not identical [01:59:27.486] | : . all.equal() for future ... [01:59:27.487] | : . ' List of 2 [01:59:27.487] | : . ' $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.487] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.487] | : . ' ..- attr(*, "init")= logi TRUE [01:59:27.487] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.487] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.487] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.487] | : . ' ..- attr(*, "call")= language plan(sequential) [01:59:27.487] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.487] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.487] | : . ' ..- attr(*, "init")= chr "done" [01:59:27.487] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.487] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.487] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.487] | : . ' ..- attr(*, "call")= language plan(sequential) [01:59:27.487] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.487] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.487] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.498] | : . all.equal() for future ... done [01:59:27.498] | : all.equal() for FutureStrategyList ... done [01:59:27.499] | : plan(): Skip setting new future backend stack because it is the same as the current one: [01:59:27.499] | : List of future strategies: [01:59:27.499] | : 1. sequential: [01:59:27.499] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.499] | : - tweaked: FALSE [01:59:27.499] | : - call: plan(sequential) [01:59:27.500] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:59:27.500] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [01:59:27.502] future(..., label = NULL) ... [01:59:27.503] | lazy: FALSE [01:59:27.503] | stdout: TRUE [01:59:27.503] | conditions: [n=1] 'condition' [01:59:27.503] | gc: FALSE [01:59:27.504] | earlySignal: FALSE [01:59:27.505] | getGlobalsAndPackages() ... [01:59:27.505] | : Searching for globals ... [01:59:27.533] | : . globals found: [2] '{', '<-' [01:59:27.533] | : Searching for globals ... done [01:59:27.534] | : Resolving globals: FALSE [01:59:27.534] | : Search for packages associated with the globals ... [01:59:27.535] | : . Packages associated with globals: [1] 'base' [01:59:27.536] | : . Packages: [1] 'base' [01:59:27.536] | : Search for packages associated with the globals ... done [01:59:27.536] | : Packages after dropping 'base': [0] [01:59:27.537] | : globals: [0] [01:59:27.537] | : packages: [0] [01:59:27.537] | getGlobalsAndPackages() ... done [01:59:27.543] | run() for 'Future' (NULL) ... [01:59:27.543] | : state: 'created' [01:59:27.544] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.544] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.544] | : Using SequentialFutureBackend ... [01:59:27.545] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:59:27.545] | : . Launching futures ... [01:59:27.545] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:59:27.546] | : . ' , getFutureData() ... [01:59:27.546] | : . ' , ; getFutureCore() ... [01:59:27.547] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:59:27.547] | : . ' , ; getFutureCore() ... done [01:59:27.547] | : . ' , ; getFutureCapture() ... [01:59:27.548] | : . ' , ; getFutureCapture() ... done [01:59:27.548] | : . ' , ; getFutureContext() ... [01:59:27.548] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.549] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:59:27.549] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.549] | : . ' , ; ` Packages needed by future backend (n = 0): [01:59:27.550] | : . ' , ; getFutureContext() ... done [01:59:27.550] | : . ' , getFutureData() ... done [01:59:27.552] | : . ' , attachPackages() ... [01:59:27.553] | : . ' , ; packages: [n=1] 'future' [01:59:27.553] | : . ' , attachPackages() ... done [01:59:27.553] | : . ' , attachPackages() ... [01:59:27.554] | : . ' , ; packages: [n=0] [01:59:27.554] | : . ' , attachPackages() ... done [01:59:27.555] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.555] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:59:27.555] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.556] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.557] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.557] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:59:27.557] | : . ' , ; ` | New stack: [01:59:27.558] | : . ' , ; ` | List of 1 [01:59:27.558] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.558] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.558] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:59:27.558] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.558] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.558] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.558] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.558] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.563] | : . ' , ; ` | Old stack: [01:59:27.564] | : . ' , ; ` | List of 1 [01:59:27.564] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.564] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.564] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:27.564] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.564] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.564] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.564] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:59:27.564] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.564] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.564] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.564] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.571] | : . ' , ; ` | Not identical [01:59:27.571] | : . ' , ; ` | all.equal() for future ... [01:59:27.571] | : . ' , ; ` | : List of 2 [01:59:27.571] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.571] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.571] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.571] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:59:27.571] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.571] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.571] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.583] | : . ' , ; ` | all.equal() for future ... done [01:59:27.584] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:59:27.584] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:59:27.584] | : . ' , ; ` List of future strategies: [01:59:27.584] | : . ' , ; ` 1. sequential: [01:59:27.584] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.584] | : . ' , ; ` - tweaked: FALSE [01:59:27.584] | : . ' , ; ` - call: plan(sequential) [01:59:27.585] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:27.585] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.591] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.592] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.592] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.592] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:59:27.593] | : . ' , ; ` | : New stack: [01:59:27.593] | : . ' , ; ` | : List of 1 [01:59:27.593] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.593] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:59:27.593] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.593] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.593] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.593] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.600] | : . ' , ; ` | : Old stack: [01:59:27.600] | : . ' , ; ` | : List of 1 [01:59:27.600] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.600] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:59:27.600] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.600] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.600] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.600] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.607] | : . ' , ; ` | : Identical [01:59:27.607] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:59:27.608] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:59:27.608] | : . ' , ; ` | List of future strategies: [01:59:27.608] | : . ' , ; ` | 1. sequential: [01:59:27.608] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.608] | : . ' , ; ` | - tweaked: FALSE [01:59:27.608] | : . ' , ; ` | - call: plan(sequential) [01:59:27.609] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:27.609] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.609] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.615] | : . ' , SequentialFuture started (and completed) [01:59:27.617] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:59:27.617] | : . Launching futures ... done [01:59:27.617] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:59:27.618] | : Using SequentialFutureBackend ... done [01:59:27.618] | run() for 'Future' (NULL) ... done [01:59:27.618] future(..., label = NULL) ... done > print(x) [01:59:27.619] value() for SequentialFuture (NULL) ... [01:59:27.620] | relay stdout ... [01:59:27.620] | relay stdout ... done [01:59:27.620] | check for misuse ... [01:59:27.620] | check for misuse ... done [01:59:27.621] value() for SequentialFuture (NULL) ... done [1] 1 > stopifnot(a == 0, x == 1) > plan(sequential, abc = FALSE) [01:59:27.621] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [01:59:27.623] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:59:27.623] | : all.equal() for FutureStrategyList ... [01:59:27.623] | : . New stack: [01:59:27.624] | : . List of 1 [01:59:27.624] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.624] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.624] | : . ..- attr(*, "init")= logi TRUE [01:59:27.624] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.624] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.624] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.624] | : . ..- attr(*, "tweaks")=List of 1 [01:59:27.624] | : . .. ..$ abc: logi FALSE [01:59:27.624] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.624] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.630] | : . Old stack: [01:59:27.631] | : . List of 1 [01:59:27.631] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.631] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.631] | : . ..- attr(*, "init")= chr "done" [01:59:27.631] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.631] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.631] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.631] | : . ..- attr(*, "call")= language plan(sequential) [01:59:27.631] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.631] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.631] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.631] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.638] | : . Not identical [01:59:27.638] | : . all.equal() for future ... [01:59:27.638] | : . ' List of 2 [01:59:27.638] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.638] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.638] | : . ' ..- attr(*, "init")= logi TRUE [01:59:27.638] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.638] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.638] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.638] | : . ' ..- attr(*, "tweaks")=List of 1 [01:59:27.638] | : . ' .. ..$ abc: logi FALSE [01:59:27.638] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.638] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.638] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.638] | : . ' ..- attr(*, "init")= chr "done" [01:59:27.638] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.638] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.638] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.638] | : . ' ..- attr(*, "call")= language plan(sequential) [01:59:27.638] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.638] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.638] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.650] | : . ' Formals differ [01:59:27.650] | : . all.equal() for future ... done [01:59:27.651] | : . Future strategies differ at level 1 [01:59:27.651] | : all.equal() for FutureStrategyList ... done [01:59:27.651] | : plan(): Setting new future backend stack: [01:59:27.652] | : List of future strategies: [01:59:27.652] | : 1. sequential: [01:59:27.652] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:27.652] | : - tweaked: TRUE [01:59:27.652] | : - call: plan(sequential, abc = FALSE) [01:59:27.653] | : List of 1 [01:59:27.653] | : $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.653] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.653] | : ..- attr(*, "init")= logi TRUE [01:59:27.653] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.653] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.653] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.653] | : ..- attr(*, "tweaks")=List of 1 [01:59:27.653] | : .. ..$ abc: logi FALSE [01:59:27.653] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.653] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.659] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [01:59:27.660] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.660] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [01:59:27.660] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.661] | : . Legacy shutdown of cluster workers ... [01:59:27.661] | : . ' Stopping existing cluster ... [01:59:27.661] | : . ' , No pre-existing cluster. Skipping [01:59:27.661] | : . ' Stopping existing cluster ... done [01:59:27.662] | : . Legacy shutdown of cluster workers ... done [01:59:27.662] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [01:59:27.662] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [01:59:27.663] | : . function (..., abc = FALSE, envir = parent.frame()) [01:59:27.663] | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.663] | : . - attr(*, "init")= logi TRUE [01:59:27.663] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.663] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.663] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.663] | : . - attr(*, "tweaks")=List of 1 [01:59:27.663] | : . ..$ abc: logi FALSE [01:59:27.663] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.668] | : . init: TRUE [01:59:27.668] | : . makeFutureBackend() ... [01:59:27.669] | : . ' Backend function: <'NULL'> [01:59:27.669] | : . ' Evaluator tweak arguments: [n=1] [01:59:27.669] | : . ' List of 1 [01:59:27.669] | : . ' $ abc: logi FALSE [01:59:27.671] | : . ' Evaluator formal arguments: [n=1] [01:59:27.671] | : . ' List of 1 [01:59:27.671] | : . ' $ abc: logi FALSE [01:59:27.676] | : . ' Backend factory arguments: [n=1] [01:59:27.676] | : . ' Dotted pair list of 1 [01:59:27.676] | : . ' $ abc: logi FALSE [01:59:27.678] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:27.678] | : . makeFutureBackend() ... done [01:59:27.679] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:27.679] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.679] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.679] | : plan(): nbrOfWorkers() = 1 [01:59:27.680] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:59:27.680] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [01:59:27.681] future(..., label = NULL) ... [01:59:27.681] | lazy: FALSE [01:59:27.681] | stdout: TRUE [01:59:27.682] | conditions: [n=1] 'condition' [01:59:27.682] | gc: FALSE [01:59:27.682] | earlySignal: FALSE [01:59:27.682] | getGlobalsAndPackages() ... [01:59:27.683] | : Searching for globals ... [01:59:27.696] | : . globals found: [2] '{', '<-' [01:59:27.697] | : Searching for globals ... done [01:59:27.697] | : Resolving globals: FALSE [01:59:27.697] | : Search for packages associated with the globals ... [01:59:27.698] | : . Packages associated with globals: [1] 'base' [01:59:27.698] | : . Packages: [1] 'base' [01:59:27.699] | : Search for packages associated with the globals ... done [01:59:27.699] | : Packages after dropping 'base': [0] [01:59:27.699] | : globals: [0] [01:59:27.700] | : packages: [0] [01:59:27.700] | getGlobalsAndPackages() ... done [01:59:27.700] | run() for 'Future' (NULL) ... [01:59:27.701] | : state: 'created' [01:59:27.701] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.701] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.702] | : Using SequentialFutureBackend ... [01:59:27.702] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:59:27.702] | : . Launching futures ... [01:59:27.703] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:59:27.703] | : . ' , getFutureData() ... [01:59:27.703] | : . ' , ; getFutureCore() ... [01:59:27.703] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:59:27.704] | : . ' , ; getFutureCore() ... done [01:59:27.704] | : . ' , ; getFutureCapture() ... [01:59:27.704] | : . ' , ; getFutureCapture() ... done [01:59:27.705] | : . ' , ; getFutureContext() ... [01:59:27.705] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.705] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:59:27.705] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.706] | : . ' , ; ` Packages needed by future backend (n = 0): [01:59:27.706] | : . ' , ; getFutureContext() ... done [01:59:27.706] | : . ' , getFutureData() ... done [01:59:27.707] | : . ' , attachPackages() ... [01:59:27.707] | : . ' , ; packages: [n=1] 'future' [01:59:27.707] | : . ' , attachPackages() ... done [01:59:27.708] | : . ' , attachPackages() ... [01:59:27.708] | : . ' , ; packages: [n=0] [01:59:27.708] | : . ' , attachPackages() ... done [01:59:27.709] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.709] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:27.710] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.710] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.711] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.711] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:59:27.711] | : . ' , ; ` | New stack: [01:59:27.712] | : . ' , ; ` | List of 1 [01:59:27.712] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.712] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.712] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:59:27.712] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.712] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.712] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.712] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.712] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.717] | : . ' , ; ` | Old stack: [01:59:27.718] | : . ' , ; ` | List of 1 [01:59:27.718] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.718] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.718] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:27.718] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.718] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.718] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.718] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [01:59:27.718] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:27.718] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.718] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.718] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.718] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.718] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.726] | : . ' , ; ` | Not identical [01:59:27.726] | : . ' , ; ` | all.equal() for future ... [01:59:27.726] | : . ' , ; ` | : List of 2 [01:59:27.726] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.726] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.726] | : . ' , ; ` | : $ current:function (..., abc = FALSE, envir = parent.frame()) [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.726] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [01:59:27.726] | : . ' , ; ` | : .. ..$ abc: logi FALSE [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.726] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.726] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.726] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.738] | : . ' , ; ` | : Formals differ [01:59:27.738] | : . ' , ; ` | all.equal() for future ... done [01:59:27.738] | : . ' , ; ` | Future strategies differ at level 1 [01:59:27.739] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:59:27.739] | : . ' , ; ` plan(): Setting new future backend stack: [01:59:27.739] | : . ' , ; ` List of future strategies: [01:59:27.739] | : . ' , ; ` 1. sequential: [01:59:27.739] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.739] | : . ' , ; ` - tweaked: FALSE [01:59:27.739] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.740] | : . ' , ; ` List of 1 [01:59:27.740] | : . ' , ; ` $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.740] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.740] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [01:59:27.740] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.740] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.740] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.740] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.740] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.745] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:27.746] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:27.746] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.746] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [01:59:27.747] | : . ' , ; ` | : function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.747] | : . ' , ; ` | : - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.747] | : . ' , ; ` | : - attr(*, "init")= logi TRUE [01:59:27.747] | : . ' , ; ` | : - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.747] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.747] | : . ' , ; ` | : - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.747] | : . ' , ; ` | : - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.751] | : . ' , ; ` | : init: TRUE [01:59:27.751] | : . ' , ; ` | : makeFutureBackend() ... [01:59:27.751] | : . ' , ; ` | : . Backend function: <'NULL'> [01:59:27.752] | : . ' , ; ` | : . Evaluator tweak arguments: [n=0] [01:59:27.752] | : . ' , ; ` | : . list() [01:59:27.753] | : . ' , ; ` | : . Evaluator formal arguments: [n=2] [01:59:27.753] | : . ' , ; ` | : . list() [01:59:27.754] | : . ' , ; ` | : . Backend factory arguments: [n=2] [01:59:27.754] | : . ' , ; ` | : . Dotted pair list of 2 [01:59:27.754] | : . ' , ; ` | : . $ gc : logi FALSE [01:59:27.754] | : . ' , ; ` | : . $ earlySignal: logi FALSE [01:59:27.756] | : . ' , ; ` | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:27.756] | : . ' , ; ` | : makeFutureBackend() ... done [01:59:27.757] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:27.757] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.757] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [01:59:27.758] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:27.758] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.762] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.762] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.762] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.763] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:59:27.763] | : . ' , ; ` | : New stack: [01:59:27.763] | : . ' , ; ` | : List of 1 [01:59:27.763] | : . ' , ; ` | : $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.763] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [01:59:27.763] | : . ' , ; ` | : .. ..$ abc: logi FALSE [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.763] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.763] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.763] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.763] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.772] | : . ' , ; ` | : Old stack: [01:59:27.772] | : . ' , ; ` | : List of 1 [01:59:27.772] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.772] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.772] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.772] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.772] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.772] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.779] | : . ' , ; ` | : Not identical [01:59:27.779] | : . ' , ; ` | : all.equal() for future ... [01:59:27.779] | : . ' , ; ` | : . List of 2 [01:59:27.779] | : . ' , ; ` | : . $ target :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.779] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 1 [01:59:27.779] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.779] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.779] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.779] | : . ' , ; ` | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.779] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.779] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.779] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.779] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.796] | : . ' , ; ` | : . Formals differ [01:59:27.796] | : . ' , ; ` | : all.equal() for future ... done [01:59:27.797] | : . ' , ; ` | : Future strategies differ at level 1 [01:59:27.797] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:59:27.797] | : . ' , ; ` | plan(): Setting new future backend stack: [01:59:27.798] | : . ' , ; ` | List of future strategies: [01:59:27.798] | : . ' , ; ` | 1. sequential: [01:59:27.798] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:27.798] | : . ' , ; ` | - tweaked: TRUE [01:59:27.798] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [01:59:27.799] | : . ' , ; ` | List of 1 [01:59:27.799] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.799] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.799] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:27.799] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.799] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.799] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.799] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [01:59:27.799] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:27.799] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.799] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.799] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.799] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.799] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.806] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:27.807] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:27.807] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.807] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.808] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [01:59:27.808] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:27.808] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.808] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.809] | : . ' , SequentialFuture started (and completed) [01:59:27.810] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:59:27.810] | : . Launching futures ... done [01:59:27.810] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:59:27.810] | : Using SequentialFutureBackend ... done [01:59:27.811] | run() for 'Future' (NULL) ... done [01:59:27.811] future(..., label = NULL) ... done > print(x) [01:59:27.812] value() for SequentialFuture (NULL) ... [01:59:27.812] | relay stdout ... [01:59:27.812] | relay stdout ... done [01:59:27.812] | check for misuse ... [01:59:27.813] | check for misuse ... done [01:59:27.813] value() for SequentialFuture (NULL) ... done [1] 1 > stopifnot(a == 0, x == 1) > x %<-% { + a <- 2 + a + } %tweak% list(abc = TRUE) [01:59:27.814] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.814] | Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:27.814] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.815] plan(, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... [01:59:27.816] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... [01:59:27.816] | : all.equal() for FutureStrategyList ... [01:59:27.816] | : . New stack: [01:59:27.816] | : . List of 1 [01:59:27.816] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.816] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.816] | : . ..- attr(*, "init")= logi TRUE [01:59:27.816] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.816] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.816] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.816] | : . ..- attr(*, "tweaks")=List of 2 [01:59:27.816] | : . .. ..$ abc: logi FALSE [01:59:27.816] | : . .. ..$ abc: logi TRUE [01:59:27.816] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.816] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.823] | : . Old stack: [01:59:27.824] | : . List of 1 [01:59:27.824] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:27.824] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.824] | : . ..- attr(*, "init")= chr "done" [01:59:27.824] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.824] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.824] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.824] | : . ..- attr(*, "tweaks")=List of 1 [01:59:27.824] | : . .. ..$ abc: logi FALSE [01:59:27.824] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.824] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.824] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.824] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.824] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.831] | : . Not identical [01:59:27.832] | : . all.equal() for future ... [01:59:27.832] | : . ' List of 2 [01:59:27.832] | : . ' $ target :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.832] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.832] | : . ' ..- attr(*, "init")= logi TRUE [01:59:27.832] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.832] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.832] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.832] | : . ' ..- attr(*, "tweaks")=List of 2 [01:59:27.832] | : . ' .. ..$ abc: logi FALSE [01:59:27.832] | : . ' .. ..$ abc: logi TRUE [01:59:27.832] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.832] | : . ' $ current:function (..., abc = FALSE, envir = parent.frame()) [01:59:27.832] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:27.832] | : . ' ..- attr(*, "init")= chr "done" [01:59:27.832] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.832] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.832] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.832] | : . ' ..- attr(*, "tweaks")=List of 1 [01:59:27.832] | : . ' .. ..$ abc: logi FALSE [01:59:27.832] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.832] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.832] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.832] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.847] | : . ' Formals differ [01:59:27.847] | : . all.equal() for future ... done [01:59:27.848] | : . Future strategies differ at level 1 [01:59:27.848] | : all.equal() for FutureStrategyList ... done [01:59:27.849] | : plan(): Setting new future backend stack: [01:59:27.849] | : List of future strategies: [01:59:27.849] | : 1. sequential: [01:59:27.849] | : - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [01:59:27.849] | : - tweaked: TRUE [01:59:27.849] | : - call: plan(sequential, abc = FALSE) [01:59:27.850] | : List of 1 [01:59:27.850] | : $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.850] | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.850] | : ..- attr(*, "init")= logi TRUE [01:59:27.850] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.850] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.850] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.850] | : ..- attr(*, "tweaks")=List of 2 [01:59:27.850] | : .. ..$ abc: logi FALSE [01:59:27.850] | : .. ..$ abc: logi TRUE [01:59:27.850] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.850] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.859] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:27.859] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:27.860] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [01:59:27.860] | : . function (..., abc = TRUE, envir = parent.frame()) [01:59:27.860] | : . - attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.860] | : . - attr(*, "init")= logi TRUE [01:59:27.860] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.860] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.860] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.860] | : . - attr(*, "tweaks")=List of 2 [01:59:27.860] | : . ..$ abc: logi FALSE [01:59:27.860] | : . ..$ abc: logi TRUE [01:59:27.860] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.867] | : . init: TRUE [01:59:27.868] | : . makeFutureBackend() ... [01:59:27.868] | : . ' Backend function: <'NULL'> [01:59:27.868] | : . ' Evaluator tweak arguments: [n=2] [01:59:27.869] | : . ' List of 2 [01:59:27.869] | : . ' $ abc: logi FALSE [01:59:27.869] | : . ' $ abc: logi TRUE [01:59:27.871] | : . ' Evaluator formal arguments: [n=1] [01:59:27.871] | : . ' List of 2 [01:59:27.871] | : . ' $ abc: logi FALSE [01:59:27.871] | : . ' $ abc: logi TRUE [01:59:27.874] | : . ' Backend factory arguments: [n=1] [01:59:27.874] | : . ' Dotted pair list of 1 [01:59:27.874] | : . ' $ abc: logi TRUE [01:59:27.876] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:27.876] | : . makeFutureBackend() ... done [01:59:27.877] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:27.877] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.878] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.878] | : plan(): nbrOfWorkers() = 1 [01:59:27.878] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... done [01:59:27.879] plan(, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... done [01:59:27.879] future(..., label = NULL) ... [01:59:27.880] | lazy: FALSE [01:59:27.880] | stdout: TRUE [01:59:27.880] | conditions: [n=1] 'condition' [01:59:27.881] | gc: FALSE [01:59:27.881] | earlySignal: FALSE [01:59:27.881] | getGlobalsAndPackages() ... [01:59:27.882] | : Searching for globals ... [01:59:27.897] | : . globals found: [2] '{', '<-' [01:59:27.897] | : Searching for globals ... done [01:59:27.897] | : Resolving globals: FALSE [01:59:27.898] | : Search for packages associated with the globals ... [01:59:27.898] | : . Packages associated with globals: [1] 'base' [01:59:27.899] | : . Packages: [1] 'base' [01:59:27.899] | : Search for packages associated with the globals ... done [01:59:27.899] | : Packages after dropping 'base': [0] [01:59:27.900] | : globals: [0] [01:59:27.900] | : packages: [0] [01:59:27.900] | getGlobalsAndPackages() ... done [01:59:27.901] | run() for 'Future' (NULL) ... [01:59:27.901] | : state: 'created' [01:59:27.901] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.902] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.902] | : Using SequentialFutureBackend ... [01:59:27.902] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:59:27.903] | : . Launching futures ... [01:59:27.903] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:59:27.903] | : . ' , getFutureData() ... [01:59:27.904] | : . ' , ; getFutureCore() ... [01:59:27.904] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:59:27.904] | : . ' , ; getFutureCore() ... done [01:59:27.904] | : . ' , ; getFutureCapture() ... [01:59:27.905] | : . ' , ; getFutureCapture() ... done [01:59:27.905] | : . ' , ; getFutureContext() ... [01:59:27.905] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.906] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:59:27.906] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.906] | : . ' , ; ` Packages needed by future backend (n = 0): [01:59:27.907] | : . ' , ; getFutureContext() ... done [01:59:27.907] | : . ' , getFutureData() ... done [01:59:27.907] | : . ' , attachPackages() ... [01:59:27.908] | : . ' , ; packages: [n=1] 'future' [01:59:27.908] | : . ' , attachPackages() ... done [01:59:27.908] | : . ' , attachPackages() ... [01:59:27.909] | : . ' , ; packages: [n=0] [01:59:27.909] | : . ' , attachPackages() ... done [01:59:27.910] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.910] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:27.910] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.911] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.912] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.912] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:59:27.912] | : . ' , ; ` | New stack: [01:59:27.912] | : . ' , ; ` | List of 1 [01:59:27.912] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.912] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.912] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:59:27.912] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.912] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.912] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.912] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.912] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.918] | : . ' , ; ` | Old stack: [01:59:27.919] | : . ' , ; ` | List of 1 [01:59:27.919] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.919] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.919] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:27.919] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.919] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.919] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.919] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [01:59:27.919] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:27.919] | : . ' , ; ` | .. ..$ abc: logi TRUE [01:59:27.919] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.919] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.919] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.919] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.919] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.931] | : . ' , ; ` | Not identical [01:59:27.931] | : . ' , ; ` | all.equal() for future ... [01:59:27.932] | : . ' , ; ` | : List of 2 [01:59:27.932] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.932] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.932] | : . ' , ; ` | : $ current:function (..., abc = TRUE, envir = parent.frame()) [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.932] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [01:59:27.932] | : . ' , ; ` | : .. ..$ abc: logi FALSE [01:59:27.932] | : . ' , ; ` | : .. ..$ abc: logi TRUE [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.932] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.932] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.932] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.944] | : . ' , ; ` | : Formals differ [01:59:27.944] | : . ' , ; ` | all.equal() for future ... done [01:59:27.945] | : . ' , ; ` | Future strategies differ at level 1 [01:59:27.945] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:59:27.945] | : . ' , ; ` plan(): Setting new future backend stack: [01:59:27.945] | : . ' , ; ` List of future strategies: [01:59:27.945] | : . ' , ; ` 1. sequential: [01:59:27.945] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:27.945] | : . ' , ; ` - tweaked: FALSE [01:59:27.945] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.946] | : . ' , ; ` List of 1 [01:59:27.946] | : . ' , ; ` $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.946] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.946] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [01:59:27.946] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.946] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.946] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.946] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.946] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.952] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:27.952] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:27.953] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:27.953] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [01:59:27.953] | : . ' , ; ` | : function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.953] | : . ' , ; ` | : - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.953] | : . ' , ; ` | : - attr(*, "init")= logi TRUE [01:59:27.953] | : . ' , ; ` | : - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.953] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.953] | : . ' , ; ` | : - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.953] | : . ' , ; ` | : - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.957] | : . ' , ; ` | : init: TRUE [01:59:27.957] | : . ' , ; ` | : makeFutureBackend() ... [01:59:27.958] | : . ' , ; ` | : . Backend function: <'NULL'> [01:59:27.958] | : . ' , ; ` | : . Evaluator tweak arguments: [n=0] [01:59:27.958] | : . ' , ; ` | : . list() [01:59:27.958] | : . ' , ; ` | : . Evaluator formal arguments: [n=2] [01:59:27.959] | : . ' , ; ` | : . list() [01:59:27.959] | : . ' , ; ` | : . Backend factory arguments: [n=2] [01:59:27.959] | : . ' , ; ` | : . Dotted pair list of 2 [01:59:27.959] | : . ' , ; ` | : . $ gc : logi FALSE [01:59:27.959] | : . ' , ; ` | : . $ earlySignal: logi FALSE [01:59:27.961] | : . ' , ; ` | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:27.961] | : . ' , ; ` | : makeFutureBackend() ... done [01:59:27.961] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:27.962] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:27.962] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [01:59:27.962] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:27.962] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:27.966] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.967] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:27.967] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:27.967] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:59:27.967] | : . ' , ; ` | : New stack: [01:59:27.968] | : . ' , ; ` | : List of 1 [01:59:27.968] | : . ' , ; ` | : $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.968] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [01:59:27.968] | : . ' , ; ` | : .. ..$ abc: logi FALSE [01:59:27.968] | : . ' , ; ` | : .. ..$ abc: logi TRUE [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.968] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.968] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.968] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.968] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.977] | : . ' , ; ` | : Old stack: [01:59:27.977] | : . ' , ; ` | : List of 1 [01:59:27.977] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.977] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.977] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.977] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.977] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.977] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:27.985] | : . ' , ; ` | : Not identical [01:59:27.985] | : . ' , ; ` | : all.equal() for future ... [01:59:27.986] | : . ' , ; ` | : . List of 2 [01:59:27.986] | : . ' , ; ` | : . $ target :function (..., abc = TRUE, envir = parent.frame()) [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.986] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 2 [01:59:27.986] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [01:59:27.986] | : . ' , ; ` | : . .. ..$ abc: logi TRUE [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.986] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.986] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.986] | : . ' , ; ` | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.986] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:59:27.986] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:27.986] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:27.986] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.002] | : . ' , ; ` | : . Formals differ [01:59:28.002] | : . ' , ; ` | : all.equal() for future ... done [01:59:28.002] | : . ' , ; ` | : Future strategies differ at level 1 [01:59:28.003] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:59:28.003] | : . ' , ; ` | plan(): Setting new future backend stack: [01:59:28.003] | : . ' , ; ` | List of future strategies: [01:59:28.003] | : . ' , ; ` | 1. sequential: [01:59:28.003] | : . ' , ; ` | - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [01:59:28.003] | : . ' , ; ` | - tweaked: TRUE [01:59:28.003] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [01:59:28.004] | : . ' , ; ` | List of 1 [01:59:28.004] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:28.004] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:28.004] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:28.004] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.004] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.004] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.004] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [01:59:28.004] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:28.004] | : . ' , ; ` | .. ..$ abc: logi TRUE [01:59:28.004] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.004] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.004] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.004] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.004] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.013] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:28.014] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:28.014] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.014] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.015] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [01:59:28.015] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:28.015] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.016] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.016] | : . ' , SequentialFuture started (and completed) [01:59:28.017] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:59:28.017] | : . Launching futures ... done [01:59:28.018] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:59:28.018] | : Using SequentialFutureBackend ... done [01:59:28.018] | run() for 'Future' (NULL) ... done [01:59:28.019] future(..., label = NULL) ... done [01:59:28.019] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:28.019] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:28.020] | : all.equal() for FutureStrategyList ... [01:59:28.020] | : . New stack: [01:59:28.020] | : . List of 1 [01:59:28.020] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:28.020] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.020] | : . ..- attr(*, "init")= chr "done" [01:59:28.020] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.020] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.020] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.020] | : . ..- attr(*, "tweaks")=List of 1 [01:59:28.020] | : . .. ..$ abc: logi FALSE [01:59:28.020] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.020] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.020] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.020] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.020] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.029] | : . Old stack: [01:59:28.029] | : . List of 1 [01:59:28.029] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [01:59:28.029] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:28.029] | : . ..- attr(*, "init")= chr "done" [01:59:28.029] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.029] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.029] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.029] | : . ..- attr(*, "tweaks")=List of 2 [01:59:28.029] | : . .. ..$ abc: logi FALSE [01:59:28.029] | : . .. ..$ abc: logi TRUE [01:59:28.029] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.029] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.029] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.029] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.029] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.038] | : . Not identical [01:59:28.038] | : . all.equal() for future ... [01:59:28.039] | : . ' List of 2 [01:59:28.039] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [01:59:28.039] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.039] | : . ' ..- attr(*, "init")= chr "done" [01:59:28.039] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.039] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.039] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.039] | : . ' ..- attr(*, "tweaks")=List of 1 [01:59:28.039] | : . ' .. ..$ abc: logi FALSE [01:59:28.039] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.039] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.039] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.039] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.039] | : . ' $ current:function (..., abc = TRUE, envir = parent.frame()) [01:59:28.039] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [01:59:28.039] | : . ' ..- attr(*, "init")= chr "done" [01:59:28.039] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.039] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.039] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.039] | : . ' ..- attr(*, "tweaks")=List of 2 [01:59:28.039] | : . ' .. ..$ abc: logi FALSE [01:59:28.039] | : . ' .. ..$ abc: logi TRUE [01:59:28.039] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.039] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.039] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.039] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.058] | : . ' Formals differ [01:59:28.059] | : . all.equal() for future ... done [01:59:28.059] | : . Future strategies differ at level 1 [01:59:28.059] | : all.equal() for FutureStrategyList ... done [01:59:28.060] | : plan(): Setting new future backend stack: [01:59:28.060] | : List of future strategies: [01:59:28.060] | : 1. sequential: [01:59:28.060] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:28.060] | : - tweaked: TRUE [01:59:28.060] | : - call: plan(sequential, abc = FALSE) [01:59:28.061] | : List of 1 [01:59:28.061] | : $ :function (..., abc = FALSE, envir = parent.frame()) [01:59:28.061] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.061] | : ..- attr(*, "init")= chr "done" [01:59:28.061] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.061] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.061] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.061] | : ..- attr(*, "tweaks")=List of 1 [01:59:28.061] | : .. ..$ abc: logi FALSE [01:59:28.061] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [01:59:28.061] | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.061] | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.061] | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.061] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.069] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:28.070] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:28.070] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.070] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.070] | : plan(): nbrOfWorkers() = 1 [01:59:28.071] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:28.071] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done > print(x) [01:59:28.071] value() for SequentialFuture (NULL) ... [01:59:28.072] | relay stdout ... [01:59:28.072] | relay stdout ... done [01:59:28.072] | check for misuse ... [01:59:28.073] | check for misuse ... done [01:59:28.073] value() for SequentialFuture (NULL) ... done [1] 2 > stopifnot(a == 0, x == 2) > plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.074] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [01:59:28.075] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:59:28.075] | : all.equal() for FutureStrategyList ... [01:59:28.076] | : . Different lengths [01:59:28.076] | : all.equal() for FutureStrategyList ... done [01:59:28.076] | : plan(): Setting new future backend stack: [01:59:28.076] | : List of future strategies: [01:59:28.076] | : 1. sequential: [01:59:28.076] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:28.076] | : - tweaked: FALSE [01:59:28.076] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.076] | : 2. sequential: [01:59:28.076] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:28.076] | : - tweaked: TRUE [01:59:28.076] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.078] | : List of 2 [01:59:28.078] | : $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:28.078] | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:28.078] | : ..- attr(*, "init")= logi TRUE [01:59:28.078] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.078] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.078] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.078] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.078] | : $ B:function (..., abc = FALSE, envir = parent.frame()) [01:59:28.078] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.078] | : ..- attr(*, "init")= logi TRUE [01:59:28.078] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.078] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.078] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.078] | : ..- attr(*, "tweaks")=List of 1 [01:59:28.078] | : .. ..$ abc: logi FALSE [01:59:28.078] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.078] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.089] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [01:59:28.089] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.090] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:28.090] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.090] | : . Legacy shutdown of cluster workers ... [01:59:28.091] | : . ' Stopping existing cluster ... [01:59:28.091] | : . ' , No pre-existing cluster. Skipping [01:59:28.091] | : . ' Stopping existing cluster ... done [01:59:28.091] | : . Legacy shutdown of cluster workers ... done [01:59:28.092] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [01:59:28.092] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [01:59:28.092] | : . function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:28.092] | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:28.092] | : . - attr(*, "init")= logi TRUE [01:59:28.092] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.092] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.092] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.092] | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.097] | : . init: TRUE [01:59:28.097] | : . makeFutureBackend() ... [01:59:28.097] | : . ' Backend function: <'NULL'> [01:59:28.098] | : . ' Evaluator tweak arguments: [n=0] [01:59:28.098] | : . ' list() [01:59:28.098] | : . ' Evaluator formal arguments: [n=2] [01:59:28.099] | : . ' list() [01:59:28.099] | : . ' Backend factory arguments: [n=2] [01:59:28.100] | : . ' Dotted pair list of 2 [01:59:28.100] | : . ' $ gc : logi FALSE [01:59:28.100] | : . ' $ earlySignal: logi FALSE [01:59:28.102] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:28.102] | : . makeFutureBackend() ... done [01:59:28.103] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:28.103] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.103] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.104] | : plan(): nbrOfWorkers() = 1 [01:59:28.104] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:59:28.104] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + stopifnot(identical(names(plan("list")), "B")) + a <- 1 + a + } [01:59:28.105] future(..., label = NULL) ... [01:59:28.105] | lazy: FALSE [01:59:28.106] | stdout: TRUE [01:59:28.106] | conditions: [n=1] 'condition' [01:59:28.106] | gc: FALSE [01:59:28.106] | earlySignal: FALSE [01:59:28.107] | getGlobalsAndPackages() ... [01:59:28.107] | : Searching for globals ... [01:59:28.138] | : . globals found: [6] '{', 'stopifnot', 'identical', 'names', 'plan', '<-' [01:59:28.138] | : Searching for globals ... done [01:59:28.138] | : Resolving globals: FALSE [01:59:28.138] | : Search for packages associated with the globals ... [01:59:28.139] | : . Packages associated with globals: [1] 'base' [01:59:28.140] | : . Packages: [1] 'base' [01:59:28.140] | : Search for packages associated with the globals ... done [01:59:28.140] | : Packages after dropping 'base': [0] [01:59:28.140] | : globals: [1] 'plan' [01:59:28.140] | : packages: [0] [01:59:28.141] | getGlobalsAndPackages() ... done [01:59:28.141] | run() for 'Future' (NULL) ... [01:59:28.141] | : state: 'created' [01:59:28.142] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.142] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.142] | : Using SequentialFutureBackend ... [01:59:28.142] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:59:28.142] | : . Launching futures ... [01:59:28.143] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:59:28.143] | : . ' , getFutureData() ... [01:59:28.143] | : . ' , ; getFutureCore() ... [01:59:28.143] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:59:28.143] | : . ' , ; getFutureCore() ... done [01:59:28.144] | : . ' , ; getFutureCapture() ... [01:59:28.144] | : . ' , ; getFutureCapture() ... done [01:59:28.144] | : . ' , ; getFutureContext() ... [01:59:28.144] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.144] | : . ' , ; ` | Getting stack without first backend: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:28.145] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.145] | : . ' , ; ` Packages needed by future strategies (n = 0): [01:59:28.145] | : . ' , ; getFutureContext() ... done [01:59:28.146] | : . ' , getFutureData() ... done [01:59:28.146] | : . ' , attachPackages() ... [01:59:28.146] | : . ' , ; packages: [n=0] [01:59:28.146] | : . ' , attachPackages() ... done [01:59:28.146] | : . ' , attachPackages() ... [01:59:28.147] | : . ' , ; packages: [n=0] [01:59:28.147] | : . ' , attachPackages() ... done [01:59:28.147] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.148] | : . ' , ; Getting full stack: [n=2] 'c("sequential", "uniprocess", "future", "function")', 'c("tweaked", "sequential", "uniprocess", "future", "function")' [01:59:28.148] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.148] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:28.149] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:28.149] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:28.149] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:59:28.149] | : . ' , ; ` | : Different lengths [01:59:28.150] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:59:28.150] | : . ' , ; ` | plan(): Setting new future backend stack: [01:59:28.150] | : . ' , ; ` | List of future strategies: [01:59:28.150] | : . ' , ; ` | 1. sequential: [01:59:28.150] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:28.150] | : . ' , ; ` | - tweaked: TRUE [01:59:28.150] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.151] | : . ' , ; ` | List of 1 [01:59:28.151] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [01:59:28.151] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.151] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:59:28.151] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.151] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.151] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.151] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [01:59:28.151] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:28.151] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.151] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.156] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:28.156] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:28.156] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.157] | : . ' , ; ` | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [01:59:28.159] | : . ' , ; ` | : . function (..., abc = FALSE, envir = parent.frame()) [01:59:28.159] | : . ' , ; ` | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.159] | : . ' , ; ` | : . - attr(*, "init")= logi TRUE [01:59:28.159] | : . ' , ; ` | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.159] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.159] | : . ' , ; ` | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.159] | : . ' , ; ` | : . - attr(*, "tweaks")=List of 1 [01:59:28.159] | : . ' , ; ` | : . ..$ abc: logi FALSE [01:59:28.159] | : . ' , ; ` | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.163] | : . ' , ; ` | : . init: TRUE [01:59:28.163] | : . ' , ; ` | : . makeFutureBackend() ... [01:59:28.164] | : . ' , ; ` | : . ' Backend function: <'NULL'> [01:59:28.164] | : . ' , ; ` | : . ' Evaluator tweak arguments: [n=1] [01:59:28.164] | : . ' , ; ` | : . ' List of 1 [01:59:28.164] | : . ' , ; ` | : . ' $ abc: logi FALSE [01:59:28.165] | : . ' , ; ` | : . ' Evaluator formal arguments: [n=1] [01:59:28.165] | : . ' , ; ` | : . ' List of 1 [01:59:28.165] | : . ' , ; ` | : . ' $ abc: logi FALSE [01:59:28.166] | : . ' , ; ` | : . ' Backend factory arguments: [n=1] [01:59:28.166] | : . ' , ; ` | : . ' Dotted pair list of 1 [01:59:28.166] | : . ' , ; ` | : . ' $ abc: logi FALSE [01:59:28.168] | : . ' , ; ` | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:59:28.168] | : . ' , ; ` | : . makeFutureBackend() ... done [01:59:28.168] | : . ' , ; ` | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [01:59:28.168] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.168] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [01:59:28.169] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:28.169] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.169] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.169] | : . ' , assign_globals() ... [01:59:28.170] | : . ' , List of 1 [01:59:28.170] | : . ' , $ plan:function (strategy = NULL, ..., substitute = TRUE, .skip = FALSE, .call = TRUE, [01:59:28.170] | : . ' , .cleanup = NA, .init = TRUE) [01:59:28.170] | : . ' , - attr(*, "where")=List of 1 [01:59:28.170] | : . ' , ..$ plan: [01:59:28.170] | : . ' , .. ..- attr(*, "name")= chr "package:future" [01:59:28.170] | : . ' , .. ..- attr(*, "path")= chr "D:/RCompile/CRANincoming/R-devel/lib/future" [01:59:28.170] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:59:28.170] | : . ' , - attr(*, "resolved")= logi FALSE [01:59:28.170] | : . ' , - attr(*, "total_size")= num NA [01:59:28.170] | : . ' , - attr(*, "already-done")= logi TRUE [01:59:28.174] | : . ' , - copied 'plan' to environment [01:59:28.174] | : . ' , assign_globals() ... done [01:59:28.178] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:28.178] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:59:28.179] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:59:28.179] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:59:28.179] | : . ' , ; ` | : Different lengths [01:59:28.179] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:59:28.179] | : . ' , ; ` | plan(): Setting new future backend stack: [01:59:28.180] | : . ' , ; ` | List of future strategies: [01:59:28.180] | : . ' , ; ` | 1. sequential: [01:59:28.180] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:59:28.180] | : . ' , ; ` | - tweaked: FALSE [01:59:28.180] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.180] | : . ' , ; ` | 2. sequential: [01:59:28.180] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [01:59:28.180] | : . ' , ; ` | - tweaked: TRUE [01:59:28.180] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.181] | : . ' , ; ` | List of 2 [01:59:28.181] | : . ' , ; ` | $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:59:28.181] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:59:28.181] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:59:28.181] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.181] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.181] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.181] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.181] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:59:28.181] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.181] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.181] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [01:59:28.181] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [01:59:28.181] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:59:28.181] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:59:28.181] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.181] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:59:28.181] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [01:59:28.181] | : . ' , ; ` | .. ..$ abc: logi FALSE [01:59:28.181] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [01:59:28.181] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:59:28.190] | : . ' , ; ` | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [01:59:28.190] | : . ' , ; ` | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [01:59:28.190] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.190] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.191] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [01:59:28.191] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:59:28.191] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.191] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:59:28.192] | : . ' , SequentialFuture started (and completed) [01:59:28.192] | : . ' , signalConditions() ... [01:59:28.192] | : . ' , ; include = 'immediateCondition' [01:59:28.193] | : . ' , ; exclude = [01:59:28.193] | : . ' , ; resignal = FALSE [01:59:28.193] | : . ' , ; Number of conditions: 3 [01:59:28.193] | : . ' , signalConditions() ... done [01:59:28.194] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:59:28.194] | : . Launching futures ... done [01:59:28.194] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:59:28.194] | : Using SequentialFutureBackend ... done [01:59:28.194] | run() for 'Future' (NULL) ... done [01:59:28.195] future(..., label = NULL) ... done > print(x) [01:59:28.195] value() for SequentialFuture (NULL) ... [01:59:28.195] | signalConditions() ... [01:59:28.195] | : include = 'immediateCondition' [01:59:28.196] | : exclude = [01:59:28.196] | : resignal = FALSE [01:59:28.197] | : Number of conditions: 3 [01:59:28.197] | signalConditions() ... done [01:59:28.197] | relay stdout ... [01:59:28.198] | relay stdout ... done [01:59:28.198] | check for misuse ... [01:59:28.198] | check for misuse ... done [01:59:28.199] | relay conditions ... [01:59:28.199] | : Future state: 'finished' [01:59:28.199] | : signalConditions() ... [01:59:28.200] | : . include = 'condition' [01:59:28.200] | : . exclude = 'immediateCondition' [01:59:28.200] | : . resignal = TRUE [01:59:28.201] | : . Number of conditions: 3 [01:59:28.201] | : . Condition #1: 'simpleMessage', 'message', 'condition' [01:59:28.175] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:59:28.201] | : . Condition #2: 'simpleMessage', 'message', 'condition' [01:59:28.175] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [01:59:28.202] | : . Condition #3: 'simpleMessage', 'message', 'condition' [01:59:28.175] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:59:28.202] | : signalConditions() ... done [01:59:28.202] | relay conditions ... done [01:59:28.203] value() for SequentialFuture (NULL) ... done [1] 1 > stopifnot(a == 0, x == 1) > message("*** y %<-% { expr } %tweak% tweaks ... DONE") *** y %<-% { expr } %tweak% tweaks ... DONE > message("*** tweak() - abc = TRUE ...") *** tweak() - abc = TRUE ... > res <- tryCatch(tweak(multisession, gc = TRUE), condition = identity) > stopifnot(inherits(res, "tweaked")) > res <- tryCatch(tweak(sequential, abc = TRUE), condition = identity) > stopifnot(inherits(res, "warning")) > res <- tryCatch(tweak(multicore, abc = TRUE), condition = identity) > stopifnot(inherits(res, "warning")) > message("*** tweak() - abc = TRUE ... DONE") *** tweak() - abc = TRUE ... DONE > message("*** tweak() - odds and ends ...") *** tweak() - odds and ends ... > length.Formula <- function(x) c(1, 1) > expr <- structure(y ~ x, class = "Formula") > stopifnot(length(length(expr)) == 2) > gp <- future::getGlobalsAndPackages(expr) [01:59:28.208] getGlobalsAndPackages() ... [01:59:28.208] | Searching for globals ... [01:59:28.220] | : globals found: [4] '{', 'y', 'x', '~' [01:59:28.220] | Searching for globals ... done [01:59:28.221] | Resolving globals: FALSE [01:59:28.221] | Search for packages associated with the globals ... [01:59:28.222] | : Packages associated with globals: [1] 'base' [01:59:28.222] | : Packages: [1] 'base' [01:59:28.223] | Search for packages associated with the globals ... done [01:59:28.224] | The total size of the 1 globals is 39 bytes (39 bytes) [01:59:28.224] | The total size of the 1 globals exported for future expression ('y ~ x') is 39 bytes There is one global: 'x' (39 bytes of class 'numeric') [01:59:28.225] | Packages after dropping 'base': [0] [01:59:28.225] | globals: [1] 'x' [01:59:28.225] | packages: [0] [01:59:28.226] getGlobalsAndPackages() ... done > stopifnot(!inherits(gp, "error"), is.list(gp), all(c("expr", + "globals", "packages") %in% names(gp))) > message("*** tweak() - odds and ends ... DONE") *** tweak() - odds and ends ... DONE > message("*** tweak() - exceptions ...") *** tweak() - exceptions ... > res <- try(tweak(""), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(base::eval), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, "unnamed-argument"), + silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, lazy = TRUE), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, asynchronous = FALSE), + silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, seed = 42), silent = TRUE) > stopifnot(inherits(res, "try-error")) > message("*** tweak() - exceptions ... DONE") *** tweak() - exceptions ... DONE > message("*** Tweaking future strategies ... DONE") *** Tweaking future strategies ... DONE Sourcing 6 epilogue scripts ... 01/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/001.undo-future.R' 02/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/002.undo-state.R' Failed to undo environment variables: - Expected environment variables: [n=213] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS44_HOME', 'RTOOLS45_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS45_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTME_NAME', 'R_TESTME_PACKAGE', 'R_TESTME_PATH', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_MAYBE_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_START_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_LOG_USE_INFO_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_NOTE_MISSING_PACKAGE_ANCHORS_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '_R_USE_STRICT_R_HEADERS_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_SPECIAL__', 'maj.version', 'nextArg--timingsnextArg--install', 'tempdirname' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: 03/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/090.gc.R' 04/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/099.session_info.R' 05/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/995.detritus-connections.R' 06/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/999.detritus-files.R' Skipping, because path appears not to be an 'R CMD check' folder: 'D:/temp/2025_05_09_01_55_17_23336' Sourcing 6 epilogue scripts ... done Test time: user.self=2s, sys.self=0.06s, elapsed=2s, user.child=NAs, sys.child=NAs Test 'tweak' ... success > > proc.time() user system elapsed 1.84 0.21 2.75