R version 4.5.0 RC (2025-04-04 r88126 ucrt) -- "How About a Twenty-Six" 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 incl/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) [08:50:18.219] Option 'future.startup.script': TRUE [08:50:18.221] Future startup scripts considered: '.future.R', '~/.future.R' [08:50:18.221] 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 [08:50:19.160] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.161] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [08:50:19.162] | : all.equal() for FutureStrategyList ... [08:50:19.162] | : . New stack: [08:50:19.163] | : . List of 1 [08:50:19.163] | : . $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.163] | : . session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.163] | : . os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.163] | : . major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.163] | : . `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.163] | : . nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.163] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.163] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.163] | : . effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.163] | : . "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.163] | : . process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.163] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.163] | : . ..- attr(*, "init")= logi TRUE [08:50:19.163] | : . ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.163] | : . interrupts = FALSE, persistent = FALSE, ...) [08:50:19.163] | : . .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.163] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.163] | : . ..- attr(*, "tweaks")=List of 1 [08:50:19.163] | : . .. ..$ workers:List of 1 [08:50:19.163] | : . .. .. ..$ :List of 4 [08:50:19.163] | : . .. .. .. ..$ con : 'sockconn' int 4 [08:50:19.163] | : . .. .. .. .. ..- attr(*, "conn_id")= [08:50:19.163] | : . .. .. .. ..$ host : chr "localhost" [08:50:19.163] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.163] | : . .. .. .. ..$ rank : int 0 [08:50:19.163] | : . .. .. .. ..$ session_info:List of 6 [08:50:19.163] | : . .. .. .. .. ..$ r :List of 16 [08:50:19.163] | : . .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.163] | : . .. .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.163] | : . .. .. .. .. .. ..$ os : chr "mingw32" [08:50:19.163] | : . .. .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.163] | : . .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.163] | : . .. .. .. .. .. ..$ status : chr "RC" [08:50:19.163] | : . .. .. .. .. .. ..$ major : chr "4" [08:50:19.163] | : . .. .. .. .. .. ..$ minor : chr "5.0" [08:50:19.163] | : . .. .. .. .. .. ..$ year : chr "2025" [08:50:19.163] | : . .. .. .. .. .. ..$ month : chr "04" [08:50:19.163] | : . .. .. .. .. .. ..$ day : chr "04" [08:50:19.163] | : . .. .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.163] | : . .. .. .. .. .. ..$ language : chr "R" [08:50:19.163] | : . .. .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.163] | : . .. .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.163] | : . .. .. .. .. .. ..$ os.type : chr "windows" [08:50:19.163] | : . .. .. .. .. ..$ system :List of 9 [08:50:19.163] | : . .. .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.163] | : . .. .. .. .. .. ..$ release : chr "Server x64" [08:50:19.163] | : . .. .. .. .. .. ..$ version : chr "build 20348" [08:50:19.163] | : . .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.163] | : . .. .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.163] | : . .. .. .. .. .. ..$ login : chr "CRAN" [08:50:19.163] | : . .. .. .. .. .. ..$ user : chr "CRAN" [08:50:19.163] | : . .. .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.163] | : . .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.163] | : . .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.163] | : . .. .. .. .. ..$ pkgs : NULL [08:50:19.163] | : . .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.163] | : . .. .. .. .. ..$ process:List of 1 [08:50:19.163] | : . .. .. .. .. .. ..$ pid: int 36540 [08:50:19.163] | : . .. .. .. ..- attr(*, "options")=List of 35 [08:50:19.163] | : . .. .. .. .. ..$ worker : chr "localhost" [08:50:19.163] | : . .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.163] | : . .. .. .. .. ..$ master : chr "localhost" [08:50:19.163] | : . .. .. .. .. ..$ port : int 23499 [08:50:19.163] | : . .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.163] | : . .. .. .. .. ..$ timeout : num 120 [08:50:19.163] | : . .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.163] | : . .. .. .. .. ..$ homogeneous : logi TRUE [08:50:19.163] | : . .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.163] | : . .. .. .. .. ..$ rscript_envs : NULL [08:50:19.163] | : . .. .. .. .. ..$ rscript_libs : NULL [08:50:19.163] | : . .. .. .. .. ..$ rscript_startup : NULL [08:50:19.163] | : . .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.163] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.163] | : . .. .. .. .. ..$ methods : logi TRUE [08:50:19.163] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.163] | : . .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.163] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.163] | : . .. .. .. .. ..$ renice : int NA [08:50:19.163] | : . .. .. .. .. ..$ rshcmd : NULL [08:50:19.163] | : . .. .. .. .. ..$ user : chr(0) [08:50:19.163] | : . .. .. .. .. ..$ revtunnel : logi FALSE [08:50:19.163] | : . .. .. .. .. ..$ rshlogfile : NULL [08:50:19.163] | : . .. .. .. .. ..$ rshopts : chr(0) [08:50:19.163] | : . .. .. .. .. ..$ rank : int 0 [08:50:19.163] | : . .. .. .. .. ..$ manual : logi FALSE [08:50:19.163] | : . .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.163] | : . .. .. .. .. ..$ quiet : logi FALSE [08:50:19.163] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.163] | : . .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.163] | : . .. .. .. .. ..$ rshcmd_label : NULL [08:50:19.163] | : . .. .. .. .. ..$ rsh_call : NULL [08:50:19.163] | : . .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.163] | : . .. .. .. .. ..$ localMachine : logi TRUE [08:50:19.163] | : . .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.163] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.163] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.163] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.163] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.163] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.163] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.163] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.163] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.163] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.163] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.163] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.163] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.163] | : . "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.163] | : . .. .. .. .. ..$ arguments :List of 28 [08:50:19.163] | : . .. .. .. .. .. ..$ worker : chr "localhost" [08:50:19.163] | : . .. .. .. .. .. ..$ master : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ port : int 23499 [08:50:19.163] | : . .. .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.163] | : . .. .. .. .. .. ..$ timeout : num 120 [08:50:19.163] | : . .. .. .. .. .. ..$ rscript : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ homogeneous : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rscript_args : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rscript_envs : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rscript_libs : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rscript_startup : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.163] | : . .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.163] | : . .. .. .. .. .. ..$ methods : logi TRUE [08:50:19.163] | : . .. .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.163] | : . .. .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.163] | : . .. .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.163] | : . .. .. .. .. .. ..$ renice : int NA [08:50:19.163] | : . .. .. .. .. .. ..$ rshcmd : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ user : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ revtunnel : logi NA [08:50:19.163] | : . .. .. .. .. .. ..$ rshlogfile : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rshopts : NULL [08:50:19.163] | : . .. .. .. .. .. ..$ rank : int 1 [08:50:19.163] | : . .. .. .. .. .. ..$ manual : logi FALSE [08:50:19.163] | : . .. .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.163] | : . .. .. .. .. .. ..$ quiet : logi FALSE [08:50:19.163] | : . .. .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.163] | : . .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.163] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.163] | : . .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.163] | : . ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.163] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.231] | : . Old stack: [08:50:19.231] | : . List of 1 [08:50:19.231] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.231] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.231] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.231] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.231] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.231] | : . ..- attr(*, "call")= language plan(sequential) [08:50:19.231] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.236] | : . Not identical [08:50:19.236] | : . all.equal() for future ... [08:50:19.236] | : . | List of 2 [08:50:19.236] | : . | $ target :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.236] | : . | session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.236] | : . | os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.236] | : . | major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.236] | : . | `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.236] | : . | nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.236] | : . | sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.236] | : . | nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.236] | : . | effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.236] | : . | "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.236] | : . | process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.236] | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.236] | : . | ..- attr(*, "init")= logi TRUE [08:50:19.236] | : . | ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.236] | : . | interrupts = FALSE, persistent = FALSE, ...) [08:50:19.236] | : . | .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.236] | : . | ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.236] | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.236] | : . | .. ..$ workers:List of 1 [08:50:19.236] | : . | .. .. ..$ :List of 4 [08:50:19.236] | : . | .. .. .. ..$ con : 'sockconn' int 4 [08:50:19.236] | : . | .. .. .. .. ..- attr(*, "conn_id")= [08:50:19.236] | : . | .. .. .. ..$ host : chr "localhost" [08:50:19.236] | : . | .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.236] | : . | .. .. .. ..$ rank : int 0 [08:50:19.236] | : . | .. .. .. ..$ session_info:List of 6 [08:50:19.236] | : . | .. .. .. .. ..$ r :List of 16 [08:50:19.236] | : . | .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.236] | : . | .. .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.236] | : . | .. .. .. .. .. ..$ os : chr "mingw32" [08:50:19.236] | : . | .. .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.236] | : . | .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.236] | : . | .. .. .. .. .. ..$ status : chr "RC" [08:50:19.236] | : . | .. .. .. .. .. ..$ major : chr "4" [08:50:19.236] | : . | .. .. .. .. .. ..$ minor : chr "5.0" [08:50:19.236] | : . | .. .. .. .. .. ..$ year : chr "2025" [08:50:19.236] | : . | .. .. .. .. .. ..$ month : chr "04" [08:50:19.236] | : . | .. .. .. .. .. ..$ day : chr "04" [08:50:19.236] | : . | .. .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.236] | : . | .. .. .. .. .. ..$ language : chr "R" [08:50:19.236] | : . | .. .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.236] | : . | .. .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.236] | : . | .. .. .. .. .. ..$ os.type : chr "windows" [08:50:19.236] | : . | .. .. .. .. ..$ system :List of 9 [08:50:19.236] | : . | .. .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.236] | : . | .. .. .. .. .. ..$ release : chr "Server x64" [08:50:19.236] | : . | .. .. .. .. .. ..$ version : chr "build 20348" [08:50:19.236] | : . | .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.236] | : . | .. .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.236] | : . | .. .. .. .. .. ..$ login : chr "CRAN" [08:50:19.236] | : . | .. .. .. .. .. ..$ user : chr "CRAN" [08:50:19.236] | : . | .. .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.236] | : . | .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.236] | : . | .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.236] | : . | .. .. .. .. ..$ pkgs : NULL [08:50:19.236] | : . | .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.236] | : . | .. .. .. .. ..$ process:List of 1 [08:50:19.236] | : . | .. .. .. .. .. ..$ pid: int 36540 [08:50:19.236] | : . | .. .. .. ..- attr(*, "options")=List of 35 [08:50:19.236] | : . | .. .. .. .. ..$ worker : chr "localhost" [08:50:19.236] | : . | .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.236] | : . | .. .. .. .. ..$ master : chr "localhost" [08:50:19.236] | : . | .. .. .. .. ..$ port : int 23499 [08:50:19.236] | : . | .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.236] | : . | .. .. .. .. ..$ timeout : num 120 [08:50:19.236] | : . | .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.236] | : . | .. .. .. .. ..$ homogeneous : logi TRUE [08:50:19.236] | : . | .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.236] | : . | .. .. .. .. ..$ rscript_envs : NULL [08:50:19.236] | : . | .. .. .. .. ..$ rscript_libs : NULL [08:50:19.236] | : . | .. .. .. .. ..$ rscript_startup : NULL [08:50:19.236] | : . | .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.236] | : . | .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.236] | : . | .. .. .. .. ..$ methods : logi TRUE [08:50:19.236] | : . | .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.236] | : . | .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.236] | : . | .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.236] | : . | .. .. .. .. ..$ renice : int NA [08:50:19.236] | : . | .. .. .. .. ..$ rshcmd : NULL [08:50:19.236] | : . | .. .. .. .. ..$ user : chr(0) [08:50:19.236] | : . | .. .. .. .. ..$ revtunnel : logi FALSE [08:50:19.236] | : . | .. .. .. .. ..$ rshlogfile : NULL [08:50:19.236] | : . | .. .. .. .. ..$ rshopts : chr(0) [08:50:19.236] | : . | .. .. .. .. ..$ rank : int 0 [08:50:19.236] | : . | .. .. .. .. ..$ manual : logi FALSE [08:50:19.236] | : . | .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.236] | : . | .. .. .. .. ..$ quiet : logi FALSE [08:50:19.236] | : . | .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.236] | : . | .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.236] | : . | .. .. .. .. ..$ rshcmd_label : NULL [08:50:19.236] | : . | .. .. .. .. ..$ rsh_call : NULL [08:50:19.236] | : . | .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.236] | : . | .. .. .. .. ..$ localMachine : logi TRUE [08:50:19.236] | : . | .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.236] | : . | master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.236] | : . | 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.236] | : . | 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.236] | : . | rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.236] | : . | "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.236] | : . | "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.236] | : . | socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.236] | : . | "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.236] | : . | FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.236] | : . | NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.236] | : . | NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.236] | : . | setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.236] | : . | "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.236] | : . | .. .. .. .. ..$ arguments :List of 28 [08:50:19.236] | : . | .. .. .. .. .. ..$ worker : chr "localhost" [08:50:19.236] | : . | .. .. .. .. .. ..$ master : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ port : int 23499 [08:50:19.236] | : . | .. .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.236] | : . | .. .. .. .. .. ..$ timeout : num 120 [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ homogeneous : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript_args : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript_envs : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript_libs : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript_startup : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.236] | : . | .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.236] | : . | .. .. .. .. .. ..$ methods : logi TRUE [08:50:19.236] | : . | .. .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.236] | : . | .. .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.236] | : . | .. .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.236] | : . | .. .. .. .. .. ..$ renice : int NA [08:50:19.236] | : . | .. .. .. .. .. ..$ rshcmd : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ user : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ revtunnel : logi NA [08:50:19.236] | : . | .. .. .. .. .. ..$ rshlogfile : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rshopts : NULL [08:50:19.236] | : . | .. .. .. .. .. ..$ rank : int 1 [08:50:19.236] | : . | .. .. .. .. .. ..$ manual : logi FALSE [08:50:19.236] | : . | .. .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.236] | : . | .. .. .. .. .. ..$ quiet : logi FALSE [08:50:19.236] | : . | .. .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.236] | : . | .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.236] | : . | .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.236] | : . | .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.236] | : . | ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.236] | : . | $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.236] | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.236] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.236] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.236] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.236] | : . | ..- attr(*, "call")= language plan(sequential) [08:50:19.304] | : . | Formals differ [08:50:19.304] | : . all.equal() for future ... done [08:50:19.304] | : . Future strategies differ at level 1 [08:50:19.305] | : all.equal() for FutureStrategyList ... done [08:50:19.305] | : plan(): Setting new future strategy stack: [08:50:19.305] | : List of future strategies: [08:50:19.305] | : 1. cluster: [08:50:19.305] | : - args: function (..., workers = "", envir = parent.frame()) [08:50:19.305] | : - tweaked: TRUE [08:50:19.305] | : - call: future::plan(future::cluster, workers = cl) [08:50:19.309] | : List of 1 [08:50:19.309] | : $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.309] | : session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.309] | : os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.309] | : major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.309] | : `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.309] | : nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.309] | : sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.309] | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.309] | : effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.309] | : "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.309] | : process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.309] | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.309] | : ..- attr(*, "init")= logi TRUE [08:50:19.309] | : ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.309] | : interrupts = FALSE, persistent = FALSE, ...) [08:50:19.309] | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.309] | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.309] | : ..- attr(*, "tweaks")=List of 1 [08:50:19.309] | : .. ..$ workers:List of 1 [08:50:19.309] | : .. .. ..$ :List of 4 [08:50:19.309] | : .. .. .. ..$ con : 'sockconn' int 4 [08:50:19.309] | : .. .. .. .. ..- attr(*, "conn_id")= [08:50:19.309] | : .. .. .. ..$ host : chr "localhost" [08:50:19.309] | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.309] | : .. .. .. ..$ rank : int 0 [08:50:19.309] | : .. .. .. ..$ session_info:List of 6 [08:50:19.309] | : .. .. .. .. ..$ r :List of 16 [08:50:19.309] | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.309] | : .. .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.309] | : .. .. .. .. .. ..$ os : chr "mingw32" [08:50:19.309] | : .. .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.309] | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.309] | : .. .. .. .. .. ..$ status : chr "RC" [08:50:19.309] | : .. .. .. .. .. ..$ major : chr "4" [08:50:19.309] | : .. .. .. .. .. ..$ minor : chr "5.0" [08:50:19.309] | : .. .. .. .. .. ..$ year : chr "2025" [08:50:19.309] | : .. .. .. .. .. ..$ month : chr "04" [08:50:19.309] | : .. .. .. .. .. ..$ day : chr "04" [08:50:19.309] | : .. .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.309] | : .. .. .. .. .. ..$ language : chr "R" [08:50:19.309] | : .. .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.309] | : .. .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.309] | : .. .. .. .. .. ..$ os.type : chr "windows" [08:50:19.309] | : .. .. .. .. ..$ system :List of 9 [08:50:19.309] | : .. .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.309] | : .. .. .. .. .. ..$ release : chr "Server x64" [08:50:19.309] | : .. .. .. .. .. ..$ version : chr "build 20348" [08:50:19.309] | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.309] | : .. .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.309] | : .. .. .. .. .. ..$ login : chr "CRAN" [08:50:19.309] | : .. .. .. .. .. ..$ user : chr "CRAN" [08:50:19.309] | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.309] | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.309] | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.309] | : .. .. .. .. ..$ pkgs : NULL [08:50:19.309] | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.309] | : .. .. .. .. ..$ process:List of 1 [08:50:19.309] | : .. .. .. .. .. ..$ pid: int 36540 [08:50:19.309] | : .. .. .. ..- attr(*, "options")=List of 35 [08:50:19.309] | : .. .. .. .. ..$ worker : chr "localhost" [08:50:19.309] | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.309] | : .. .. .. .. ..$ master : chr "localhost" [08:50:19.309] | : .. .. .. .. ..$ port : int 23499 [08:50:19.309] | : .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.309] | : .. .. .. .. ..$ timeout : num 120 [08:50:19.309] | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.309] | : .. .. .. .. ..$ homogeneous : logi TRUE [08:50:19.309] | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.309] | : .. .. .. .. ..$ rscript_envs : NULL [08:50:19.309] | : .. .. .. .. ..$ rscript_libs : NULL [08:50:19.309] | : .. .. .. .. ..$ rscript_startup : NULL [08:50:19.309] | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.309] | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.309] | : .. .. .. .. ..$ methods : logi TRUE [08:50:19.309] | : .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.309] | : .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.309] | : .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.309] | : .. .. .. .. ..$ renice : int NA [08:50:19.309] | : .. .. .. .. ..$ rshcmd : NULL [08:50:19.309] | : .. .. .. .. ..$ user : chr(0) [08:50:19.309] | : .. .. .. .. ..$ revtunnel : logi FALSE [08:50:19.309] | : .. .. .. .. ..$ rshlogfile : NULL [08:50:19.309] | : .. .. .. .. ..$ rshopts : chr(0) [08:50:19.309] | : .. .. .. .. ..$ rank : int 0 [08:50:19.309] | : .. .. .. .. ..$ manual : logi FALSE [08:50:19.309] | : .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.309] | : .. .. .. .. ..$ quiet : logi FALSE [08:50:19.309] | : .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.309] | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.309] | : .. .. .. .. ..$ rshcmd_label : NULL [08:50:19.309] | : .. .. .. .. ..$ rsh_call : NULL [08:50:19.309] | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.309] | : .. .. .. .. ..$ localMachine : logi TRUE [08:50:19.309] | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.309] | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.309] | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.309] | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.309] | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.309] | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.309] | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.309] | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.309] | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.309] | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.309] | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.309] | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.309] | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.309] | : "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.309] | : .. .. .. .. ..$ arguments :List of 28 [08:50:19.309] | : .. .. .. .. .. ..$ worker : chr "localhost" [08:50:19.309] | : .. .. .. .. .. ..$ master : NULL [08:50:19.309] | : .. .. .. .. .. ..$ port : int 23499 [08:50:19.309] | : .. .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.309] | : .. .. .. .. .. ..$ timeout : num 120 [08:50:19.309] | : .. .. .. .. .. ..$ rscript : NULL [08:50:19.309] | : .. .. .. .. .. ..$ homogeneous : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rscript_args : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rscript_envs : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rscript_libs : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rscript_startup : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.309] | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.309] | : .. .. .. .. .. ..$ methods : logi TRUE [08:50:19.309] | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.309] | : .. .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.309] | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.309] | : .. .. .. .. .. ..$ renice : int NA [08:50:19.309] | : .. .. .. .. .. ..$ rshcmd : NULL [08:50:19.309] | : .. .. .. .. .. ..$ user : NULL [08:50:19.309] | : .. .. .. .. .. ..$ revtunnel : logi NA [08:50:19.309] | : .. .. .. .. .. ..$ rshlogfile : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rshopts : NULL [08:50:19.309] | : .. .. .. .. .. ..$ rank : int 1 [08:50:19.309] | : .. .. .. .. .. ..$ manual : logi FALSE [08:50:19.309] | : .. .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.309] | : .. .. .. .. .. ..$ quiet : logi FALSE [08:50:19.309] | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.309] | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.309] | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.309] | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.309] | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.309] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.367] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [08:50:19.368] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.368] | : . | Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.368] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.369] | : . Legacy shutdown of cluster workers ... [08:50:19.369] | : . | Stopping existing cluster ... [08:50:19.370] | : . | : No pre-existing cluster. Skipping [08:50:19.370] | : . | Stopping existing cluster ... done [08:50:19.370] | : . Legacy shutdown of cluster workers ... done [08:50:19.370] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [08:50:19.371] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... [08:50:19.371] | : . function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.371] | : . session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.371] | : . os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.371] | : . major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.371] | : . `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.371] | : . nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.371] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.371] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.371] | : . effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.371] | : . "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.371] | : . process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.371] | : . - attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.371] | : . - attr(*, "init")= logi TRUE [08:50:19.371] | : . - attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.371] | : . interrupts = FALSE, persistent = FALSE, ...) [08:50:19.371] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.371] | : . - attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.371] | : . - attr(*, "tweaks")=List of 1 [08:50:19.371] | : . ..$ workers:List of 1 [08:50:19.371] | : . .. ..$ :List of 4 [08:50:19.371] | : . .. .. ..$ con : 'sockconn' int 4 [08:50:19.371] | : . .. .. .. ..- attr(*, "conn_id")= [08:50:19.371] | : . .. .. ..$ host : chr "localhost" [08:50:19.371] | : . .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.371] | : . .. .. ..$ rank : int 0 [08:50:19.371] | : . .. .. ..$ session_info:List of 6 [08:50:19.371] | : . .. .. .. ..$ r :List of 16 [08:50:19.371] | : . .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.371] | : . .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.371] | : . .. .. .. .. ..$ os : chr "mingw32" [08:50:19.371] | : . .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.371] | : . .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.371] | : . .. .. .. .. ..$ status : chr "RC" [08:50:19.371] | : . .. .. .. .. ..$ major : chr "4" [08:50:19.371] | : . .. .. .. .. ..$ minor : chr "5.0" [08:50:19.371] | : . .. .. .. .. ..$ year : chr "2025" [08:50:19.371] | : . .. .. .. .. ..$ month : chr "04" [08:50:19.371] | : . .. .. .. .. ..$ day : chr "04" [08:50:19.371] | : . .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.371] | : . .. .. .. .. ..$ language : chr "R" [08:50:19.371] | : . .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.371] | : . .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.371] | : . .. .. .. .. ..$ os.type : chr "windows" [08:50:19.371] | : . .. .. .. ..$ system :List of 9 [08:50:19.371] | : . .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.371] | : . .. .. .. .. ..$ release : chr "Server x64" [08:50:19.371] | : . .. .. .. .. ..$ version : chr "build 20348" [08:50:19.371] | : . .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.371] | : . .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.371] | : . .. .. .. .. ..$ login : chr "CRAN" [08:50:19.371] | : . .. .. .. .. ..$ user : chr "CRAN" [08:50:19.371] | : . .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.371] | : . .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.371] | : . .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.371] | : . .. .. .. ..$ pkgs : NULL [08:50:19.371] | : . .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.371] | : . .. .. .. ..$ process:List of 1 [08:50:19.371] | : . .. .. .. .. ..$ pid: int 36540 [08:50:19.371] | : . .. .. ..- attr(*, "options")=List of 35 [08:50:19.371] | : . .. .. .. ..$ worker : chr "localhost" [08:50:19.371] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.371] | : . .. .. .. ..$ master : chr "localhost" [08:50:19.371] | : . .. .. .. ..$ port : int 23499 [08:50:19.371] | : . .. .. .. ..$ connectTimeout : num 120 [08:50:19.371] | : . .. .. .. ..$ timeout : num 120 [08:50:19.371] | : . .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.371] | : . .. .. .. ..$ homogeneous : logi TRUE [08:50:19.371] | : . .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.371] | : . .. .. .. ..$ rscript_envs : NULL [08:50:19.371] | : . .. .. .. ..$ rscript_libs : NULL [08:50:19.371] | : . .. .. .. ..$ rscript_startup : NULL [08:50:19.371] | : . .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.371] | : . .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.371] | : . .. .. .. ..$ methods : logi TRUE [08:50:19.371] | : . .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.371] | : . .. .. .. ..$ useXDR : logi FALSE [08:50:19.371] | : . .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.371] | : . .. .. .. ..$ renice : int NA [08:50:19.371] | : . .. .. .. ..$ rshcmd : NULL [08:50:19.371] | : . .. .. .. ..$ user : chr(0) [08:50:19.371] | : . .. .. .. ..$ revtunnel : logi FALSE [08:50:19.371] | : . .. .. .. ..$ rshlogfile : NULL [08:50:19.371] | : . .. .. .. ..$ rshopts : chr(0) [08:50:19.371] | : . .. .. .. ..$ rank : int 0 [08:50:19.371] | : . .. .. .. ..$ manual : logi FALSE [08:50:19.371] | : . .. .. .. ..$ dryrun : logi FALSE [08:50:19.371] | : . .. .. .. ..$ quiet : logi FALSE [08:50:19.371] | : . .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.371] | : . .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.371] | : . .. .. .. ..$ rshcmd_label : NULL [08:50:19.371] | : . .. .. .. ..$ rsh_call : NULL [08:50:19.371] | : . .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.371] | : . .. .. .. ..$ localMachine : logi TRUE [08:50:19.371] | : . .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.371] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.371] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.371] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.371] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.371] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.371] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.371] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.371] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.371] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.371] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.371] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.371] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.371] | : . "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.371] | : . .. .. .. ..$ arguments :List of 28 [08:50:19.371] | : . .. .. .. .. ..$ worker : chr "localhost" [08:50:19.371] | : . .. .. .. .. ..$ master : NULL [08:50:19.371] | : . .. .. .. .. ..$ port : int 23499 [08:50:19.371] | : . .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.371] | : . .. .. .. .. ..$ timeout : num 120 [08:50:19.371] | : . .. .. .. .. ..$ rscript : NULL [08:50:19.371] | : . .. .. .. .. ..$ homogeneous : NULL [08:50:19.371] | : . .. .. .. .. ..$ rscript_args : NULL [08:50:19.371] | : . .. .. .. .. ..$ rscript_envs : NULL [08:50:19.371] | : . .. .. .. .. ..$ rscript_libs : NULL [08:50:19.371] | : . .. .. .. .. ..$ rscript_startup : NULL [08:50:19.371] | : . .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.371] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.371] | : . .. .. .. .. ..$ methods : logi TRUE [08:50:19.371] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.371] | : . .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.371] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.371] | : . .. .. .. .. ..$ renice : int NA [08:50:19.371] | : . .. .. .. .. ..$ rshcmd : NULL [08:50:19.371] | : . .. .. .. .. ..$ user : NULL [08:50:19.371] | : . .. .. .. .. ..$ revtunnel : logi NA [08:50:19.371] | : . .. .. .. .. ..$ rshlogfile : NULL [08:50:19.371] | : . .. .. .. .. ..$ rshopts : NULL [08:50:19.371] | : . .. .. .. .. ..$ rank : int 1 [08:50:19.371] | : . .. .. .. .. ..$ manual : logi FALSE [08:50:19.371] | : . .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.371] | : . .. .. .. .. ..$ quiet : logi FALSE [08:50:19.371] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.371] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.371] | : . .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.371] | : . .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.371] | : . - attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.435] | : . init: TRUE [08:50:19.435] | : . makeFutureBackend() ... [08:50:19.436] | : . | Backend function: <'NULL'> [08:50:19.436] | : . | ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... [08:50:19.436] | : . | : Stopping existing cluster ... [08:50:19.436] | : . | : . No pre-existing cluster. Skipping [08:50:19.437] | : . | : Stopping existing cluster ... done [08:50:19.437] | : . | : Number of workers: 1 [08:50:19.445] | : . | : Generated workers UUID [08:50:19.445] | : . | : Workers UUID: '0f8c2e338e5e2f3c60f1bf8be31f198d' [08:50:19.446] | : . | ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... done [08:50:19.446] | : . | Backend: <'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [08:50:19.446] | : . makeFutureBackend() ... done [08:50:19.446] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... done [08:50:19.447] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.447] | : . Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [08:50:19.447] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.448] | : plan(): nbrOfWorkers() = 1 [08:50:19.448] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [08:50:19.449] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.454] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.454] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.454] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [08:50:19.455] | : . all.equal() for FutureStrategyList ... [08:50:19.455] | : . | New stack: [08:50:19.455] | : . | List of 1 [08:50:19.455] | : . | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.455] | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.455] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.455] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.455] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.455] | : . | ..- attr(*, "call")= language plan(sequential) [08:50:19.455] | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.460] | : . | Old stack: [08:50:19.460] | : . | List of 1 [08:50:19.460] | : . | $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.460] | : . | session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.460] | : . | os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.460] | : . | major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.460] | : . | `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.460] | : . | nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.460] | : . | sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.460] | : . | nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.460] | : . | effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.460] | : . | "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.460] | : . | process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.460] | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.460] | : . | ..- attr(*, "init")= chr "done" [08:50:19.460] | : . | ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.460] | : . | interrupts = FALSE, persistent = FALSE, ...) [08:50:19.460] | : . | .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.460] | : . | ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.460] | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.460] | : . | .. ..$ workers:List of 1 [08:50:19.460] | : . | .. .. ..$ :List of 4 [08:50:19.460] | : . | .. .. .. ..$ con : 'sockconn' int 4 [08:50:19.460] | : . | .. .. .. .. ..- attr(*, "conn_id")= [08:50:19.460] | : . | .. .. .. ..$ host : chr "localhost" [08:50:19.460] | : . | .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.460] | : . | .. .. .. ..$ rank : int 0 [08:50:19.460] | : . | .. .. .. ..$ session_info:List of 6 [08:50:19.460] | : . | .. .. .. .. ..$ r :List of 16 [08:50:19.460] | : . | .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.460] | : . | .. .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.460] | : . | .. .. .. .. .. ..$ os : chr "mingw32" [08:50:19.460] | : . | .. .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.460] | : . | .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.460] | : . | .. .. .. .. .. ..$ status : chr "RC" [08:50:19.460] | : . | .. .. .. .. .. ..$ major : chr "4" [08:50:19.460] | : . | .. .. .. .. .. ..$ minor : chr "5.0" [08:50:19.460] | : . | .. .. .. .. .. ..$ year : chr "2025" [08:50:19.460] | : . | .. .. .. .. .. ..$ month : chr "04" [08:50:19.460] | : . | .. .. .. .. .. ..$ day : chr "04" [08:50:19.460] | : . | .. .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.460] | : . | .. .. .. .. .. ..$ language : chr "R" [08:50:19.460] | : . | .. .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.460] | : . | .. .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.460] | : . | .. .. .. .. .. ..$ os.type : chr "windows" [08:50:19.460] | : . | .. .. .. .. ..$ system :List of 9 [08:50:19.460] | : . | .. .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.460] | : . | .. .. .. .. .. ..$ release : chr "Server x64" [08:50:19.460] | : . | .. .. .. .. .. ..$ version : chr "build 20348" [08:50:19.460] | : . | .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.460] | : . | .. .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.460] | : . | .. .. .. .. .. ..$ login : chr "CRAN" [08:50:19.460] | : . | .. .. .. .. .. ..$ user : chr "CRAN" [08:50:19.460] | : . | .. .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.460] | : . | .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.460] | : . | .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.460] | : . | .. .. .. .. ..$ pkgs : NULL [08:50:19.460] | : . | .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.460] | : . | .. .. .. .. ..$ process:List of 1 [08:50:19.460] | : . | .. .. .. .. .. ..$ pid: int 36540 [08:50:19.460] | : . | .. .. .. ..- attr(*, "options")=List of 35 [08:50:19.460] | : . | .. .. .. .. ..$ worker : chr "localhost" [08:50:19.460] | : . | .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.460] | : . | .. .. .. .. ..$ master : chr "localhost" [08:50:19.460] | : . | .. .. .. .. ..$ port : int 23499 [08:50:19.460] | : . | .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.460] | : . | .. .. .. .. ..$ timeout : num 120 [08:50:19.460] | : . | .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.460] | : . | .. .. .. .. ..$ homogeneous : logi TRUE [08:50:19.460] | : . | .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.460] | : . | .. .. .. .. ..$ rscript_envs : NULL [08:50:19.460] | : . | .. .. .. .. ..$ rscript_libs : NULL [08:50:19.460] | : . | .. .. .. .. ..$ rscript_startup : NULL [08:50:19.460] | : . | .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.460] | : . | .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.460] | : . | .. .. .. .. ..$ methods : logi TRUE [08:50:19.460] | : . | .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.460] | : . | .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.460] | : . | .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.460] | : . | .. .. .. .. ..$ renice : int NA [08:50:19.460] | : . | .. .. .. .. ..$ rshcmd : NULL [08:50:19.460] | : . | .. .. .. .. ..$ user : chr(0) [08:50:19.460] | : . | .. .. .. .. ..$ revtunnel : logi FALSE [08:50:19.460] | : . | .. .. .. .. ..$ rshlogfile : NULL [08:50:19.460] | : . | .. .. .. .. ..$ rshopts : chr(0) [08:50:19.460] | : . | .. .. .. .. ..$ rank : int 0 [08:50:19.460] | : . | .. .. .. .. ..$ manual : logi FALSE [08:50:19.460] | : . | .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.460] | : . | .. .. .. .. ..$ quiet : logi FALSE [08:50:19.460] | : . | .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.460] | : . | .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.460] | : . | .. .. .. .. ..$ rshcmd_label : NULL [08:50:19.460] | : . | .. .. .. .. ..$ rsh_call : NULL [08:50:19.460] | : . | .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.460] | : . | .. .. .. .. ..$ localMachine : logi TRUE [08:50:19.460] | : . | .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.460] | : . | master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.460] | : . | 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.460] | : . | 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.460] | : . | rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.460] | : . | "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.460] | : . | "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.460] | : . | socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.460] | : . | "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.460] | : . | FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.460] | : . | NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.460] | : . | NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.460] | : . | setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.460] | : . | "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.460] | : . | .. .. .. .. ..$ arguments :List of 28 [08:50:19.460] | : . | .. .. .. .. .. ..$ worker : chr "localhost" [08:50:19.460] | : . | .. .. .. .. .. ..$ master : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ port : int 23499 [08:50:19.460] | : . | .. .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.460] | : . | .. .. .. .. .. ..$ timeout : num 120 [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ homogeneous : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript_args : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript_envs : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript_libs : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript_startup : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.460] | : . | .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.460] | : . | .. .. .. .. .. ..$ methods : logi TRUE [08:50:19.460] | : . | .. .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.460] | : . | .. .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.460] | : . | .. .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.460] | : . | .. .. .. .. .. ..$ renice : int NA [08:50:19.460] | : . | .. .. .. .. .. ..$ rshcmd : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ user : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ revtunnel : logi NA [08:50:19.460] | : . | .. .. .. .. .. ..$ rshlogfile : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rshopts : NULL [08:50:19.460] | : . | .. .. .. .. .. ..$ rank : int 1 [08:50:19.460] | : . | .. .. .. .. .. ..$ manual : logi FALSE [08:50:19.460] | : . | .. .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.460] | : . | .. .. .. .. .. ..$ quiet : logi FALSE [08:50:19.460] | : . | .. .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.460] | : . | .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.460] | : . | .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.460] | : . | .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.460] | : . | ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.460] | : . | ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [08:50:19.460] | : . | .. ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.460] | : . | interrupts = FALSE, persistent = FALSE, ...) [08:50:19.460] | : . | .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.460] | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.512] | : . | Not identical [08:50:19.513] | : . | all.equal() for future ... [08:50:19.513] | : . | : List of 2 [08:50:19.513] | : . | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.513] | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.513] | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.513] | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.513] | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.513] | : . | : ..- attr(*, "call")= language plan(sequential) [08:50:19.513] | : . | : $ current:function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [08:50:19.513] | : . | : session_info = list(r = list(platform = "x86_64-w64-mingw32", arch = "x86_64", [08:50:19.513] | : . | : os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", status = "RC", [08:50:19.513] | : . | : major = "4", minor = "5.0", year = "2025", month = "04", day = "04", [08:50:19.513] | : . | : `svn rev` = "88126", language = "R", version.string = "R version 4.5.0 RC (2025-04-04 r88126 ucrt)", [08:50:19.513] | : . | : nickname = "How About a Twenty-Six", os.type = "windows"), system = list( [08:50:19.513] | : . | : sysname = "Windows", release = "Server x64", version = "build 20348", [08:50:19.513] | : . | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [08:50:19.513] | : . | : effective_user = "CRAN", udomain = "CRANWIN3"), libs = c("D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd", [08:50:19.513] | : . | : "D:/RCompile/recent/R/library"), pkgs = NULL, pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [08:50:19.513] | : . | : process = list(pid = 36540L)))), envir = parent.frame()) [08:50:19.513] | : . | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [08:50:19.513] | : . | : ..- attr(*, "init")= chr "done" [08:50:19.513] | : . | : ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.513] | : . | : interrupts = FALSE, persistent = FALSE, ...) [08:50:19.513] | : . | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.513] | : . | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.513] | : . | : ..- attr(*, "tweaks")=List of 1 [08:50:19.513] | : . | : .. ..$ workers:List of 1 [08:50:19.513] | : . | : .. .. ..$ :List of 4 [08:50:19.513] | : . | : .. .. .. ..$ con : 'sockconn' int 4 [08:50:19.513] | : . | : .. .. .. .. ..- attr(*, "conn_id")= [08:50:19.513] | : . | : .. .. .. ..$ host : chr "localhost" [08:50:19.513] | : . | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.513] | : . | : .. .. .. ..$ rank : int 0 [08:50:19.513] | : . | : .. .. .. ..$ session_info:List of 6 [08:50:19.513] | : . | : .. .. .. .. ..$ r :List of 16 [08:50:19.513] | : . | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [08:50:19.513] | : . | : .. .. .. .. .. ..$ arch : chr "x86_64" [08:50:19.513] | : . | : .. .. .. .. .. ..$ os : chr "mingw32" [08:50:19.513] | : . | : .. .. .. .. .. ..$ crt : chr "ucrt" [08:50:19.513] | : . | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [08:50:19.513] | : . | : .. .. .. .. .. ..$ status : chr "RC" [08:50:19.513] | : . | : .. .. .. .. .. ..$ major : chr "4" [08:50:19.513] | : . | : .. .. .. .. .. ..$ minor : chr "5.0" [08:50:19.513] | : . | : .. .. .. .. .. ..$ year : chr "2025" [08:50:19.513] | : . | : .. .. .. .. .. ..$ month : chr "04" [08:50:19.513] | : . | : .. .. .. .. .. ..$ day : chr "04" [08:50:19.513] | : . | : .. .. .. .. .. ..$ svn rev : chr "88126" [08:50:19.513] | : . | : .. .. .. .. .. ..$ language : chr "R" [08:50:19.513] | : . | : .. .. .. .. .. ..$ version.string: chr "R version 4.5.0 RC (2025-04-04 r88126 ucrt)" [08:50:19.513] | : . | : .. .. .. .. .. ..$ nickname : chr "How About a Twenty-Six" [08:50:19.513] | : . | : .. .. .. .. .. ..$ os.type : chr "windows" [08:50:19.513] | : . | : .. .. .. .. ..$ system :List of 9 [08:50:19.513] | : . | : .. .. .. .. .. ..$ sysname : chr "Windows" [08:50:19.513] | : . | : .. .. .. .. .. ..$ release : chr "Server x64" [08:50:19.513] | : . | : .. .. .. .. .. ..$ version : chr "build 20348" [08:50:19.513] | : . | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [08:50:19.513] | : . | : .. .. .. .. .. ..$ machine : chr "x86-64" [08:50:19.513] | : . | : .. .. .. .. .. ..$ login : chr "CRAN" [08:50:19.513] | : . | : .. .. .. .. .. ..$ user : chr "CRAN" [08:50:19.513] | : . | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [08:50:19.513] | : . | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [08:50:19.513] | : . | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_04_10_08_45_16_15127/RtmpUpSTwM/RLIBS_ba78790269fd" "D:/RCompile/recent/R/library" [08:50:19.513] | : . | : .. .. .. .. ..$ pkgs : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [08:50:19.513] | : . | : .. .. .. .. ..$ process:List of 1 [08:50:19.513] | : . | : .. .. .. .. .. ..$ pid: int 36540 [08:50:19.513] | : . | : .. .. .. ..- attr(*, "options")=List of 35 [08:50:19.513] | : . | : .. .. .. .. ..$ worker : chr "localhost" [08:50:19.513] | : . | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [08:50:19.513] | : . | : .. .. .. .. ..$ master : chr "localhost" [08:50:19.513] | : . | : .. .. .. .. ..$ port : int 23499 [08:50:19.513] | : . | : .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.513] | : . | : .. .. .. .. ..$ timeout : num 120 [08:50:19.513] | : . | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [08:50:19.513] | : . | : .. .. .. .. ..$ homogeneous : logi TRUE [08:50:19.513] | : . | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:32408:CRANWIN3:CRAN"| __truncated__ [08:50:19.513] | : . | : .. .. .. .. ..$ rscript_envs : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ rscript_libs : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ rscript_startup : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [08:50:19.513] | : . | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.513] | : . | : .. .. .. .. ..$ methods : logi TRUE [08:50:19.513] | : . | : .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.513] | : . | : .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.513] | : . | : .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.513] | : . | : .. .. .. .. ..$ renice : int NA [08:50:19.513] | : . | : .. .. .. .. ..$ rshcmd : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ user : chr(0) [08:50:19.513] | : . | : .. .. .. .. ..$ revtunnel : logi FALSE [08:50:19.513] | : . | : .. .. .. .. ..$ rshlogfile : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ rshopts : chr(0) [08:50:19.513] | : . | : .. .. .. .. ..$ rank : int 0 [08:50:19.513] | : . | : .. .. .. .. ..$ manual : logi FALSE [08:50:19.513] | : . | : .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.513] | : . | : .. .. .. .. ..$ quiet : logi FALSE [08:50:19.513] | : . | : .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.513] | : . | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.513] | : . | : .. .. .. .. ..$ rshcmd_label : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ rsh_call : NULL [08:50:19.513] | : . | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [08:50:19.513] | : . | : .. .. .. .. ..$ localMachine : logi TRUE [08:50:19.513] | : . | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [08:50:19.513] | : . | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [08:50:19.513] | : . | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [08:50:19.513] | : . | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [08:50:19.513] | : . | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [08:50:19.513] | : . | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [08:50:19.513] | : . | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [08:50:19.513] | : . | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [08:50:19.513] | : . | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [08:50:19.513] | : . | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [08:50:19.513] | : . | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [08:50:19.513] | : . | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [08:50:19.513] | : . | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [08:50:19.513] | : . | : "parallel"), action = c("launch", "options"), verbose = FALSE) [08:50:19.513] | : . | : .. .. .. .. ..$ arguments :List of 28 [08:50:19.513] | : . | : .. .. .. .. .. ..$ worker : chr "localhost" [08:50:19.513] | : . | : .. .. .. .. .. ..$ master : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ port : int 23499 [08:50:19.513] | : . | : .. .. .. .. .. ..$ connectTimeout : num 120 [08:50:19.513] | : . | : .. .. .. .. .. ..$ timeout : num 120 [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ homogeneous : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript_args : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript_envs : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript_libs : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript_startup : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [08:50:19.513] | : . | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [08:50:19.513] | : . | : .. .. .. .. .. ..$ methods : logi TRUE [08:50:19.513] | : . | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [08:50:19.513] | : . | : .. .. .. .. .. ..$ useXDR : logi FALSE [08:50:19.513] | : . | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [08:50:19.513] | : . | : .. .. .. .. .. ..$ renice : int NA [08:50:19.513] | : . | : .. .. .. .. .. ..$ rshcmd : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ user : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ revtunnel : logi NA [08:50:19.513] | : . | : .. .. .. .. .. ..$ rshlogfile : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rshopts : NULL [08:50:19.513] | : . | : .. .. .. .. .. ..$ rank : int 1 [08:50:19.513] | : . | : .. .. .. .. .. ..$ manual : logi FALSE [08:50:19.513] | : . | : .. .. .. .. .. ..$ dryrun : logi FALSE [08:50:19.513] | : . | : .. .. .. .. .. ..$ quiet : logi FALSE [08:50:19.513] | : . | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [08:50:19.513] | : . | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [08:50:19.513] | : . | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [08:50:19.513] | : . | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [08:50:19.513] | : . | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [08:50:19.513] | : . | : ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [08:50:19.513] | : . | : .. ..- attr(*, "factory")=function (workers = availableWorkers(), gc = TRUE, earlySignal = TRUE, [08:50:19.513] | : . | : interrupts = FALSE, persistent = FALSE, ...) [08:50:19.513] | : . | : .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [08:50:19.562] | : . | : Formals differ [08:50:19.562] | : . | all.equal() for future ... done [08:50:19.562] | : . | Future strategies differ at level 1 [08:50:19.562] | : . all.equal() for FutureStrategyList ... done [08:50:19.563] | : . plan(): Setting new future strategy stack: [08:50:19.563] | : . List of future strategies: [08:50:19.563] | : . 1. sequential: [08:50:19.563] | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.563] | : . - tweaked: FALSE [08:50:19.563] | : . - call: plan(sequential) [08:50:19.563] | : . List of 1 [08:50:19.563] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.563] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.563] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.563] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.563] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.563] | : . ..- attr(*, "call")= language plan(sequential) [08:50:19.563] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.566] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... [08:50:19.567] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.567] | : . | : Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [08:50:19.567] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.567] | : . | stopWorkers() for ClusterFutureBackend ... [08:50:19.567] | : . | : Interrupt active futures ... [08:50:19.569] | : . | : . Number of futures: 0 [08:50:19.569] | : . | : Interrupt active futures ... done [08:50:19.569] | : . | : Clear future registry ... [08:50:19.570] | : . | : Clear future registry ... done [08:50:19.570] | : . | : Stop cluster workers ... [08:50:19.570] | : . | : . Stopping existing cluster ... [08:50:19.570] | : . | : . | No pre-existing cluster. Skipping [08:50:19.571] | : . | : . Stopping existing cluster ... done [08:50:19.571] | : . | : Stop cluster workers ... done [08:50:19.571] | : . | stopWorkers() for ClusterFutureBackend ... done [08:50:19.571] | : . | Legacy shutdown of cluster workers ... [08:50:19.571] | : . | : Stopping existing cluster ... [08:50:19.572] | : . | : . No pre-existing cluster. Skipping [08:50:19.572] | : . | : Stopping existing cluster ... done [08:50:19.572] | : . | Legacy shutdown of cluster workers ... done [08:50:19.572] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... done [08:50:19.572] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [08:50:19.572] | : . | function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.572] | : . | - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.572] | : . | - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.572] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.572] | : . | - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.572] | : . | - attr(*, "call")= language plan(sequential) [08:50:19.575] | : . | init: NULL [08:50:19.575] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [08:50:19.575] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.575] | : . | Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.575] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.576] | : . Backend function: <'NULL'> [08:50:19.576] | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.576] | : . plan(): nbrOfWorkers() = 1 [08:50:19.576] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [08:50:19.577] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.577] 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) [08:50:19.578] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.578] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [08:50:19.578] | : all.equal() for FutureStrategyList ... [08:50:19.578] | : . New stack: [08:50:19.578] | : . List of 1 [08:50:19.578] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.578] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.578] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.578] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.578] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.578] | : . ..- attr(*, "call")= language plan(sequential) [08:50:19.578] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.582] | : . Old stack: [08:50:19.582] | : . List of 1 [08:50:19.582] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.582] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.582] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.582] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.582] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.582] | : . ..- attr(*, "call")= language plan(sequential) [08:50:19.582] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.586] | : . Identical [08:50:19.586] | : all.equal() for FutureStrategyList ... done [08:50:19.586] | : plan(): Skip setting new future strategy stack because it is the same as the current one: [08:50:19.586] | : List of future strategies: [08:50:19.586] | : 1. sequential: [08:50:19.586] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.586] | : - tweaked: FALSE [08:50:19.586] | : - call: plan(sequential) [08:50:19.587] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [08:50:19.587] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [08:50:19.589] getGlobalsAndPackages() ... [08:50:19.589] | Searching for globals ... [08:50:19.598] | : globals found: [2] '{', '<-' [08:50:19.598] | Searching for globals ... DONE [08:50:19.599] | Resolving globals: FALSE [08:50:19.599] | Search for packages associated with the globals ... [08:50:19.600] | : Packages associated with globals: [1] 'base' [08:50:19.600] | : Packages: [1] 'base' [08:50:19.601] | Search for packages associated with the globals ... DONE [08:50:19.601] | Packages after dropping 'base': [0] [08:50:19.601] | globals: [0] [08:50:19.601] | packages: [0] [08:50:19.602] getGlobalsAndPackages() ... done [08:50:19.603] run() for Future ('Future') ... [08:50:19.603] | state: 'created' [08:50:19.603] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.604] | : makeFutureBackend() ... [08:50:19.604] | : . Backend function: <'NULL'> [08:50:19.604] | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.605] | : makeFutureBackend() ... done [08:50:19.605] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.605] | Using SequentialFutureBackend ... [08:50:19.606] | : Launching futures ... [08:50:19.606] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [08:50:19.606] | : . | getFutureData() ... [08:50:19.607] | : . | : getFutureCore() ... [08:50:19.607] | : . | : . Packages needed by the future expression (n = 0): [08:50:19.607] | : . | : getFutureCore() ... done [08:50:19.608] | : . | : getFutureCapture() ... [08:50:19.608] | : . | : getFutureCapture() ... done [08:50:19.608] | : . | : getFutureContext() ... [08:50:19.609] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.609] | : . | : . | Getting stack without first strategy: [n=0] [08:50:19.609] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.609] | : . | : . Packages needed by future strategies (n = 0): [08:50:19.609] | : . | : getFutureContext() ... done [08:50:19.610] | : . | getFutureData() ... done [08:50:19.611] | : . | attachPackages() ... [08:50:19.611] | : . | : packages: [n=1] 'future' [08:50:19.612] | : . | attachPackages() ... DONE [08:50:19.612] | : . | attachPackages() ... [08:50:19.612] | : . | : packages: [n=0] [08:50:19.612] | : . | attachPackages() ... DONE [08:50:19.613] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.613] | : . | : Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [08:50:19.613] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.614] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.614] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.614] | : . | : . all.equal() for FutureStrategyList ... [08:50:19.615] | : . | : . | New stack: [08:50:19.615] | : . | : . | List of 1 [08:50:19.615] | : . | : . | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.615] | : . | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.615] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.615] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.615] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.615] | : . | : . | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.615] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.618] | : . | : . | Old stack: [08:50:19.619] | : . | : . | List of 1 [08:50:19.619] | : . | : . | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.619] | : . | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.619] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.619] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.619] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.619] | : . | : . | ..- attr(*, "call")= language plan(sequential) [08:50:19.619] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.619] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.619] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.619] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.622] | : . | : . | Not identical [08:50:19.622] | : . | : . | all.equal() for future ... [08:50:19.622] | : . | : . | : List of 2 [08:50:19.622] | : . | : . | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.622] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.622] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.622] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.622] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.622] | : . | : . | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.622] | : . | : . | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.622] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.622] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.622] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.622] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.622] | : . | : . | : ..- attr(*, "call")= language plan(sequential) [08:50:19.622] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.622] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.622] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.628] | : . | : . | all.equal() for future ... done [08:50:19.628] | : . | : . all.equal() for FutureStrategyList ... done [08:50:19.629] | : . | : . plan(): Skip setting new future strategy stack because it is the same as the current one: [08:50:19.629] | : . | : . List of future strategies: [08:50:19.629] | : . | : . 1. sequential: [08:50:19.629] | : . | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.629] | : . | : . - tweaked: FALSE [08:50:19.629] | : . | : . - call: plan(sequential) [08:50:19.629] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.630] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.635] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.635] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.635] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.636] | : . | : . | all.equal() for FutureStrategyList ... [08:50:19.636] | : . | : . | : New stack: [08:50:19.636] | : . | : . | : List of 1 [08:50:19.636] | : . | : . | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.636] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.636] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.636] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.636] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.636] | : . | : . | : ..- attr(*, "call")= language plan(sequential) [08:50:19.636] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.636] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.636] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.636] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.643] | : . | : . | : Old stack: [08:50:19.643] | : . | : . | : List of 1 [08:50:19.643] | : . | : . | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.643] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.643] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.643] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.643] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.643] | : . | : . | : ..- attr(*, "call")= language plan(sequential) [08:50:19.643] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.643] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.643] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.643] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.649] | : . | : . | : Identical [08:50:19.649] | : . | : . | all.equal() for FutureStrategyList ... done [08:50:19.649] | : . | : . | plan(): Skip setting new future strategy stack because it is the same as the current one: [08:50:19.650] | : . | : . | List of future strategies: [08:50:19.650] | : . | : . | 1. sequential: [08:50:19.650] | : . | : . | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.650] | : . | : . | - tweaked: FALSE [08:50:19.650] | : . | : . | - call: plan(sequential) [08:50:19.651] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.651] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.651] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.652] | : . | SequentialFuture started (and completed) [08:50:19.653] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... DONE [08:50:19.653] | : Launching futures ... done [08:50:19.654] | : Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [08:50:19.654] | Using SequentialFutureBackend ... done [08:50:19.654] run() for Future ('SequentialFuture') ... done > print(x) [1] 1 > stopifnot(a == 0, x == 1) > plan(sequential, abc = FALSE) [08:50:19.656] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [08:50:19.657] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [08:50:19.657] | : all.equal() for FutureStrategyList ... [08:50:19.657] | : . New stack: [08:50:19.658] | : . List of 1 [08:50:19.658] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.658] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.658] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.658] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.658] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.658] | : . ..- attr(*, "tweaks")=List of 1 [08:50:19.658] | : . .. ..$ abc: logi FALSE [08:50:19.658] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.658] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.663] | : . Old stack: [08:50:19.663] | : . List of 1 [08:50:19.663] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.663] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.663] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.663] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.663] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.663] | : . ..- attr(*, "call")= language plan(sequential) [08:50:19.663] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.663] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.663] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.663] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.669] | : . Not identical [08:50:19.669] | : . all.equal() for future ... [08:50:19.670] | : . | List of 2 [08:50:19.670] | : . | $ target :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.670] | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.670] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.670] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.670] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.670] | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.670] | : . | .. ..$ abc: logi FALSE [08:50:19.670] | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.670] | : . | $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.670] | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.670] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.670] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.670] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.670] | : . | ..- attr(*, "call")= language plan(sequential) [08:50:19.670] | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.670] | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.670] | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.680] | : . | Formals differ [08:50:19.680] | : . all.equal() for future ... done [08:50:19.680] | : . Future strategies differ at level 1 [08:50:19.681] | : all.equal() for FutureStrategyList ... done [08:50:19.681] | : plan(): Setting new future strategy stack: [08:50:19.681] | : List of future strategies: [08:50:19.681] | : 1. sequential: [08:50:19.681] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.681] | : - tweaked: TRUE [08:50:19.681] | : - call: plan(sequential, abc = FALSE) [08:50:19.682] | : List of 1 [08:50:19.682] | : $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.682] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.682] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.682] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.682] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.682] | : ..- attr(*, "tweaks")=List of 1 [08:50:19.682] | : .. ..$ abc: logi FALSE [08:50:19.682] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.682] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.687] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [08:50:19.687] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.688] | : . | Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.688] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.688] | : . Legacy shutdown of cluster workers ... [08:50:19.689] | : . | Stopping existing cluster ... [08:50:19.689] | : . | : No pre-existing cluster. Skipping [08:50:19.689] | : . | Stopping existing cluster ... done [08:50:19.689] | : . Legacy shutdown of cluster workers ... done [08:50:19.690] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [08:50:19.690] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [08:50:19.690] | : . function (..., abc = FALSE, envir = parent.frame()) [08:50:19.690] | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.690] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.690] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.690] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.690] | : . - attr(*, "tweaks")=List of 1 [08:50:19.690] | : . ..$ abc: logi FALSE [08:50:19.690] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.694] | : . init: NULL [08:50:19.695] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [08:50:19.695] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.695] | : . Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.695] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.696] | : Backend function: <'NULL'> [08:50:19.696] | : Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.696] | : plan(): nbrOfWorkers() = 1 [08:50:19.697] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [08:50:19.697] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [08:50:19.698] getGlobalsAndPackages() ... [08:50:19.698] | Searching for globals ... [08:50:19.700] | : globals found: [2] '{', '<-' [08:50:19.700] | Searching for globals ... DONE [08:50:19.701] | Resolving globals: FALSE [08:50:19.701] | Search for packages associated with the globals ... [08:50:19.701] | : Packages associated with globals: [1] 'base' [08:50:19.702] | : Packages: [1] 'base' [08:50:19.702] | Search for packages associated with the globals ... DONE [08:50:19.703] | Packages after dropping 'base': [0] [08:50:19.703] | globals: [0] [08:50:19.703] | packages: [0] [08:50:19.703] getGlobalsAndPackages() ... done [08:50:19.704] run() for Future ('Future') ... [08:50:19.704] | state: 'created' [08:50:19.705] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.705] | : makeFutureBackend() ... [08:50:19.705] | : . Backend function: <'NULL'> [08:50:19.705] | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.706] | : makeFutureBackend() ... done [08:50:19.706] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.706] | Using SequentialFutureBackend ... [08:50:19.707] | : Launching futures ... [08:50:19.707] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [08:50:19.707] | : . | getFutureData() ... [08:50:19.708] | : . | : getFutureCore() ... [08:50:19.708] | : . | : . Packages needed by the future expression (n = 0): [08:50:19.708] | : . | : getFutureCore() ... done [08:50:19.708] | : . | : getFutureCapture() ... [08:50:19.709] | : . | : getFutureCapture() ... done [08:50:19.709] | : . | : getFutureContext() ... [08:50:19.709] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.710] | : . | : . | Getting stack without first strategy: [n=0] [08:50:19.710] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.710] | : . | : . Packages needed by future strategies (n = 0): [08:50:19.710] | : . | : getFutureContext() ... done [08:50:19.711] | : . | getFutureData() ... done [08:50:19.711] | : . | attachPackages() ... [08:50:19.715] | : . | : packages: [n=1] 'future' [08:50:19.716] | : . | attachPackages() ... DONE [08:50:19.716] | : . | attachPackages() ... [08:50:19.716] | : . | : packages: [n=0] [08:50:19.717] | : . | attachPackages() ... DONE [08:50:19.717] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.718] | : . | : Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.718] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.718] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.719] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.719] | : . | : . all.equal() for FutureStrategyList ... [08:50:19.719] | : . | : . | New stack: [08:50:19.720] | : . | : . | List of 1 [08:50:19.720] | : . | : . | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.720] | : . | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.720] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.720] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.720] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.720] | : . | : . | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.720] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.724] | : . | : . | Old stack: [08:50:19.724] | : . | : . | List of 1 [08:50:19.724] | : . | : . | $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.724] | : . | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.724] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.724] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.724] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.724] | : . | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.724] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.724] | : . | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.724] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.724] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.724] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.724] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.730] | : . | : . | Not identical [08:50:19.730] | : . | : . | all.equal() for future ... [08:50:19.730] | : . | : . | : List of 2 [08:50:19.730] | : . | : . | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.730] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.730] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.730] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.730] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.730] | : . | : . | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.730] | : . | : . | : $ current:function (..., abc = FALSE, envir = parent.frame()) [08:50:19.730] | : . | : . | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.730] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.730] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.730] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.730] | : . | : . | : ..- attr(*, "tweaks")=List of 1 [08:50:19.730] | : . | : . | : .. ..$ abc: logi FALSE [08:50:19.730] | : . | : . | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.730] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.730] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.730] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.739] | : . | : . | : Formals differ [08:50:19.739] | : . | : . | all.equal() for future ... done [08:50:19.739] | : . | : . | Future strategies differ at level 1 [08:50:19.739] | : . | : . all.equal() for FutureStrategyList ... done [08:50:19.740] | : . | : . plan(): Setting new future strategy stack: [08:50:19.740] | : . | : . List of future strategies: [08:50:19.740] | : . | : . 1. sequential: [08:50:19.740] | : . | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.740] | : . | : . - tweaked: FALSE [08:50:19.740] | : . | : . - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.741] | : . | : . List of 1 [08:50:19.741] | : . | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.741] | : . | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.741] | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.741] | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.741] | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.741] | : . | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.741] | : . | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.744] | : . | : . plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.745] | : . | : . plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.745] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.745] | : . | : . | Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.746] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.746] | : . | : . Backend function: <'NULL'> [08:50:19.746] | : . | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.747] | : . | : . plan(): nbrOfWorkers() = 1 [08:50:19.747] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.747] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.750] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.751] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.751] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.751] | : . | : . | all.equal() for FutureStrategyList ... [08:50:19.752] | : . | : . | : New stack: [08:50:19.752] | : . | : . | : List of 1 [08:50:19.752] | : . | : . | : $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.752] | : . | : . | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.752] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.752] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.752] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.752] | : . | : . | : ..- attr(*, "tweaks")=List of 1 [08:50:19.752] | : . | : . | : .. ..$ abc: logi FALSE [08:50:19.752] | : . | : . | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.752] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.752] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.752] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.752] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.758] | : . | : . | : Old stack: [08:50:19.758] | : . | : . | : List of 1 [08:50:19.758] | : . | : . | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.758] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.758] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.758] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.758] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.758] | : . | : . | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.758] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.762] | : . | : . | : Not identical [08:50:19.763] | : . | : . | : all.equal() for future ... [08:50:19.763] | : . | : . | : . List of 2 [08:50:19.763] | : . | : . | : . $ target :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.763] | : . | : . | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.763] | : . | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.763] | : . | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.763] | : . | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.763] | : . | : . | : . ..- attr(*, "tweaks")=List of 1 [08:50:19.763] | : . | : . | : . .. ..$ abc: logi FALSE [08:50:19.763] | : . | : . | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.763] | : . | : . | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.763] | : . | : . | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.763] | : . | : . | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.763] | : . | : . | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.763] | : . | : . | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.763] | : . | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.763] | : . | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.763] | : . | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.763] | : . | : . | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.772] | : . | : . | : . Formals differ [08:50:19.772] | : . | : . | : all.equal() for future ... done [08:50:19.773] | : . | : . | : Future strategies differ at level 1 [08:50:19.773] | : . | : . | all.equal() for FutureStrategyList ... done [08:50:19.773] | : . | : . | plan(): Setting new future strategy stack: [08:50:19.773] | : . | : . | List of future strategies: [08:50:19.773] | : . | : . | 1. sequential: [08:50:19.773] | : . | : . | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.773] | : . | : . | - tweaked: TRUE [08:50:19.773] | : . | : . | - call: plan(sequential, abc = FALSE) [08:50:19.774] | : . | : . | List of 1 [08:50:19.774] | : . | : . | $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.774] | : . | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.774] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.774] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.774] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.774] | : . | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.774] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.774] | : . | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.774] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.774] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.774] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.774] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.780] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.780] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.781] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.781] | : . | : . | : Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.781] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.781] | : . | : . | plan(): nbrOfWorkers() = 1 [08:50:19.782] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.782] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.782] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.783] | : . | SequentialFuture started (and completed) [08:50:19.783] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... DONE [08:50:19.784] | : Launching futures ... done [08:50:19.784] | : Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [08:50:19.784] | Using SequentialFutureBackend ... done [08:50:19.784] run() for Future ('SequentialFuture') ... done > print(x) [1] 1 > stopifnot(a == 0, x == 1) > x %<-% { + a <- 2 + a + } %tweak% list(abc = TRUE) [08:50:19.785] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.786] | Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.786] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.787] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.787] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.787] | : all.equal() for FutureStrategyList ... [08:50:19.788] | : . New stack: [08:50:19.788] | : . List of 1 [08:50:19.788] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.788] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.788] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.788] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.788] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.788] | : . ..- attr(*, "tweaks")=List of 2 [08:50:19.788] | : . .. ..$ abc: logi FALSE [08:50:19.788] | : . .. ..$ abc: logi TRUE [08:50:19.788] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.788] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.793] | : . Old stack: [08:50:19.793] | : . List of 1 [08:50:19.793] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.793] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.793] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.793] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.793] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.793] | : . ..- attr(*, "tweaks")=List of 1 [08:50:19.793] | : . .. ..$ abc: logi FALSE [08:50:19.793] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.793] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.793] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.793] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.793] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.799] | : . Not identical [08:50:19.799] | : . all.equal() for future ... [08:50:19.800] | : . | List of 2 [08:50:19.800] | : . | $ target :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.800] | : . | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.800] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.800] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.800] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.800] | : . | ..- attr(*, "tweaks")=List of 2 [08:50:19.800] | : . | .. ..$ abc: logi FALSE [08:50:19.800] | : . | .. ..$ abc: logi TRUE [08:50:19.800] | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.800] | : . | $ current:function (..., abc = FALSE, envir = parent.frame()) [08:50:19.800] | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.800] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.800] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.800] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.800] | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.800] | : . | .. ..$ abc: logi FALSE [08:50:19.800] | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.800] | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.800] | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.800] | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.810] | : . | Formals differ [08:50:19.810] | : . all.equal() for future ... done [08:50:19.810] | : . Future strategies differ at level 1 [08:50:19.811] | : all.equal() for FutureStrategyList ... done [08:50:19.811] | : plan(): Setting new future strategy stack: [08:50:19.811] | : List of future strategies: [08:50:19.811] | : 1. sequential: [08:50:19.811] | : - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [08:50:19.811] | : - tweaked: TRUE [08:50:19.811] | : - call: plan(sequential, abc = FALSE) [08:50:19.812] | : List of 1 [08:50:19.812] | : $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.812] | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.812] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.812] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.812] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.812] | : ..- attr(*, "tweaks")=List of 2 [08:50:19.812] | : .. ..$ abc: logi FALSE [08:50:19.812] | : .. ..$ abc: logi TRUE [08:50:19.812] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.812] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.820] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.820] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.821] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.821] | : . Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.821] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.822] | : Backend function: <'NULL'> [08:50:19.822] | : Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.822] | : plan(): nbrOfWorkers() = 1 [08:50:19.823] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.823] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.823] getGlobalsAndPackages() ... [08:50:19.824] | Searching for globals ... [08:50:19.825] | : globals found: [2] '{', '<-' [08:50:19.826] | Searching for globals ... DONE [08:50:19.826] | Resolving globals: FALSE [08:50:19.826] | Search for packages associated with the globals ... [08:50:19.827] | : Packages associated with globals: [1] 'base' [08:50:19.827] | : Packages: [1] 'base' [08:50:19.827] | Search for packages associated with the globals ... DONE [08:50:19.828] | Packages after dropping 'base': [0] [08:50:19.828] | globals: [0] [08:50:19.828] | packages: [0] [08:50:19.829] getGlobalsAndPackages() ... done [08:50:19.829] run() for Future ('Future') ... [08:50:19.829] | state: 'created' [08:50:19.830] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.830] | : makeFutureBackend() ... [08:50:19.830] | : . Backend function: <'NULL'> [08:50:19.831] | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.831] | : makeFutureBackend() ... done [08:50:19.831] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.831] | Using SequentialFutureBackend ... [08:50:19.832] | : Launching futures ... [08:50:19.832] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [08:50:19.832] | : . | getFutureData() ... [08:50:19.832] | : . | : getFutureCore() ... [08:50:19.833] | : . | : . Packages needed by the future expression (n = 0): [08:50:19.833] | : . | : getFutureCore() ... done [08:50:19.833] | : . | : getFutureCapture() ... [08:50:19.834] | : . | : getFutureCapture() ... done [08:50:19.834] | : . | : getFutureContext() ... [08:50:19.834] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.834] | : . | : . | Getting stack without first strategy: [n=0] [08:50:19.835] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.835] | : . | : . Packages needed by future strategies (n = 0): [08:50:19.835] | : . | : getFutureContext() ... done [08:50:19.835] | : . | getFutureData() ... done [08:50:19.836] | : . | attachPackages() ... [08:50:19.836] | : . | : packages: [n=1] 'future' [08:50:19.836] | : . | attachPackages() ... DONE [08:50:19.837] | : . | attachPackages() ... [08:50:19.837] | : . | : packages: [n=0] [08:50:19.837] | : . | attachPackages() ... DONE [08:50:19.838] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.838] | : . | : Getting full stack: [n=1] 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.839] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.839] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.840] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.840] | : . | : . all.equal() for FutureStrategyList ... [08:50:19.840] | : . | : . | New stack: [08:50:19.840] | : . | : . | List of 1 [08:50:19.840] | : . | : . | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.840] | : . | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.840] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.840] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.840] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.840] | : . | : . | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.840] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.844] | : . | : . | Old stack: [08:50:19.845] | : . | : . | List of 1 [08:50:19.845] | : . | : . | $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.845] | : . | : . | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.845] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.845] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.845] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.845] | : . | : . | ..- attr(*, "tweaks")=List of 2 [08:50:19.845] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.845] | : . | : . | .. ..$ abc: logi TRUE [08:50:19.845] | : . | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.845] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.845] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.845] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.845] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.851] | : . | : . | Not identical [08:50:19.852] | : . | : . | all.equal() for future ... [08:50:19.852] | : . | : . | : List of 2 [08:50:19.852] | : . | : . | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.852] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.852] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.852] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.852] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.852] | : . | : . | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.852] | : . | : . | : $ current:function (..., abc = TRUE, envir = parent.frame()) [08:50:19.852] | : . | : . | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.852] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.852] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.852] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.852] | : . | : . | : ..- attr(*, "tweaks")=List of 2 [08:50:19.852] | : . | : . | : .. ..$ abc: logi FALSE [08:50:19.852] | : . | : . | : .. ..$ abc: logi TRUE [08:50:19.852] | : . | : . | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.852] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.852] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.852] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.861] | : . | : . | : Formals differ [08:50:19.861] | : . | : . | all.equal() for future ... done [08:50:19.862] | : . | : . | Future strategies differ at level 1 [08:50:19.862] | : . | : . all.equal() for FutureStrategyList ... done [08:50:19.862] | : . | : . plan(): Setting new future strategy stack: [08:50:19.862] | : . | : . List of future strategies: [08:50:19.862] | : . | : . 1. sequential: [08:50:19.862] | : . | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.862] | : . | : . - tweaked: FALSE [08:50:19.862] | : . | : . - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.863] | : . | : . List of 1 [08:50:19.863] | : . | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.863] | : . | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.863] | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.863] | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.863] | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.863] | : . | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.863] | : . | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.866] | : . | : . plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.867] | : . | : . plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.867] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.867] | : . | : . | Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.867] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.868] | : . | : . Backend function: <'NULL'> [08:50:19.868] | : . | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.868] | : . | : . plan(): nbrOfWorkers() = 1 [08:50:19.868] | : . | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.869] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.872] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.872] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.872] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.873] | : . | : . | all.equal() for FutureStrategyList ... [08:50:19.873] | : . | : . | : New stack: [08:50:19.873] | : . | : . | : List of 1 [08:50:19.873] | : . | : . | : $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.873] | : . | : . | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.873] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.873] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.873] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.873] | : . | : . | : ..- attr(*, "tweaks")=List of 2 [08:50:19.873] | : . | : . | : .. ..$ abc: logi FALSE [08:50:19.873] | : . | : . | : .. ..$ abc: logi TRUE [08:50:19.873] | : . | : . | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.873] | : . | : . | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.873] | : . | : . | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.873] | : . | : . | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.873] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.880] | : . | : . | : Old stack: [08:50:19.880] | : . | : . | : List of 1 [08:50:19.880] | : . | : . | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.880] | : . | : . | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.880] | : . | : . | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.880] | : . | : . | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.880] | : . | : . | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.880] | : . | : . | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.880] | : . | : . | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.884] | : . | : . | : Not identical [08:50:19.884] | : . | : . | : all.equal() for future ... [08:50:19.885] | : . | : . | : . List of 2 [08:50:19.885] | : . | : . | : . $ target :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.885] | : . | : . | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.885] | : . | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.885] | : . | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.885] | : . | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.885] | : . | : . | : . ..- attr(*, "tweaks")=List of 2 [08:50:19.885] | : . | : . | : . .. ..$ abc: logi FALSE [08:50:19.885] | : . | : . | : . .. ..$ abc: logi TRUE [08:50:19.885] | : . | : . | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.885] | : . | : . | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.885] | : . | : . | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.885] | : . | : . | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.885] | : . | : . | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.885] | : . | : . | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.885] | : . | : . | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.885] | : . | : . | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.885] | : . | : . | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.885] | : . | : . | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [08:50:19.892] | : . | : . | : . Formals differ [08:50:19.892] | : . | : . | : all.equal() for future ... done [08:50:19.893] | : . | : . | : Future strategies differ at level 1 [08:50:19.893] | : . | : . | all.equal() for FutureStrategyList ... done [08:50:19.893] | : . | : . | plan(): Setting new future strategy stack: [08:50:19.893] | : . | : . | List of future strategies: [08:50:19.893] | : . | : . | 1. sequential: [08:50:19.893] | : . | : . | - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [08:50:19.893] | : . | : . | - tweaked: TRUE [08:50:19.893] | : . | : . | - call: plan(sequential, abc = FALSE) [08:50:19.894] | : . | : . | List of 1 [08:50:19.894] | : . | : . | $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.894] | : . | : . | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.894] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.894] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.894] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.894] | : . | : . | ..- attr(*, "tweaks")=List of 2 [08:50:19.894] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.894] | : . | : . | .. ..$ abc: logi TRUE [08:50:19.894] | : . | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.894] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.894] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.894] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.894] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.899] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.899] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.899] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.899] | : . | : . | : Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.899] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.900] | : . | : . | plan(): nbrOfWorkers() = 1 [08:50:19.900] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.900] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.900] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.901] | : . | SequentialFuture started (and completed) [08:50:19.901] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... DONE [08:50:19.901] | : Launching futures ... done [08:50:19.901] | : Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [08:50:19.901] | Using SequentialFutureBackend ... done [08:50:19.902] run() for Future ('SequentialFuture') ... done [08:50:19.902] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.902] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.902] | : all.equal() for FutureStrategyList ... [08:50:19.902] | : . New stack: [08:50:19.903] | : . List of 1 [08:50:19.903] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.903] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.903] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.903] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.903] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.903] | : . ..- attr(*, "tweaks")=List of 1 [08:50:19.903] | : . .. ..$ abc: logi FALSE [08:50:19.903] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.903] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.903] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.903] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.903] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.907] | : . Old stack: [08:50:19.907] | : . List of 1 [08:50:19.907] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [08:50:19.907] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.907] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.907] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.907] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.907] | : . ..- attr(*, "tweaks")=List of 2 [08:50:19.907] | : . .. ..$ abc: logi FALSE [08:50:19.907] | : . .. ..$ abc: logi TRUE [08:50:19.907] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.907] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.907] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.907] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.907] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.914] | : . Not identical [08:50:19.914] | : . all.equal() for future ... [08:50:19.914] | : . | List of 2 [08:50:19.914] | : . | $ target :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.914] | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.914] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.914] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.914] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.914] | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.914] | : . | .. ..$ abc: logi FALSE [08:50:19.914] | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.914] | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.914] | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.914] | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.914] | : . | $ current:function (..., abc = TRUE, envir = parent.frame()) [08:50:19.914] | : . | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [08:50:19.914] | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.914] | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.914] | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.914] | : . | ..- attr(*, "tweaks")=List of 2 [08:50:19.914] | : . | .. ..$ abc: logi FALSE [08:50:19.914] | : . | .. ..$ abc: logi TRUE [08:50:19.914] | : . | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.914] | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.914] | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.914] | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.921] | : . | Formals differ [08:50:19.921] | : . all.equal() for future ... done [08:50:19.921] | : . Future strategies differ at level 1 [08:50:19.921] | : all.equal() for FutureStrategyList ... done [08:50:19.921] | : plan(): Setting new future strategy stack: [08:50:19.922] | : List of future strategies: [08:50:19.922] | : 1. sequential: [08:50:19.922] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.922] | : - tweaked: TRUE [08:50:19.922] | : - call: plan(sequential, abc = FALSE) [08:50:19.922] | : List of 1 [08:50:19.922] | : $ :function (..., abc = FALSE, envir = parent.frame()) [08:50:19.922] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.922] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.922] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.922] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.922] | : ..- attr(*, "tweaks")=List of 1 [08:50:19.922] | : .. ..$ abc: logi FALSE [08:50:19.922] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [08:50:19.922] | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.922] | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.922] | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.922] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.926] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.926] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.926] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.926] | : . Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.927] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.927] | : plan(): nbrOfWorkers() = 1 [08:50:19.927] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.927] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done > print(x) [1] 2 > stopifnot(a == 0, x == 2) > plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.928] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [08:50:19.928] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [08:50:19.928] | : all.equal() for FutureStrategyList ... [08:50:19.929] | : . Different lengths [08:50:19.929] | : all.equal() for FutureStrategyList ... done [08:50:19.929] | : plan(): Setting new future strategy stack: [08:50:19.929] | : List of future strategies: [08:50:19.929] | : 1. sequential: [08:50:19.929] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.929] | : - tweaked: FALSE [08:50:19.929] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.929] | : 2. sequential: [08:50:19.929] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.929] | : - tweaked: TRUE [08:50:19.929] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.930] | : List of 2 [08:50:19.930] | : $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.930] | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.930] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.930] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.930] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.930] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.930] | : $ B:function (..., abc = FALSE, envir = parent.frame()) [08:50:19.930] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.930] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.930] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.930] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.930] | : ..- attr(*, "tweaks")=List of 1 [08:50:19.930] | : .. ..$ abc: logi FALSE [08:50:19.930] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.930] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.935] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [08:50:19.935] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.936] | : . | Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.936] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.936] | : . Legacy shutdown of cluster workers ... [08:50:19.936] | : . | Stopping existing cluster ... [08:50:19.936] | : . | : No pre-existing cluster. Skipping [08:50:19.937] | : . | Stopping existing cluster ... done [08:50:19.937] | : . Legacy shutdown of cluster workers ... done [08:50:19.937] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [08:50:19.937] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [08:50:19.937] | : . function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.937] | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.937] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.937] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.937] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.937] | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.939] | : . init: NULL [08:50:19.940] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [08:50:19.940] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.940] | : . Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.940] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.940] | : Backend function: <'NULL'> [08:50:19.941] | : Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.941] | : plan(): nbrOfWorkers() = 1 [08:50:19.941] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [08:50:19.941] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + stopifnot(identical(names(plan("list")), "B")) + a <- 1 + a + } [08:50:19.942] getGlobalsAndPackages() ... [08:50:19.942] | Searching for globals ... [08:50:19.947] | : globals found: [6] '{', 'stopifnot', 'identical', 'names', 'plan', '<-' [08:50:19.947] | Searching for globals ... DONE [08:50:19.947] | Resolving globals: FALSE [08:50:19.947] | Search for packages associated with the globals ... [08:50:19.948] | : Packages associated with globals: [1] 'base' [08:50:19.948] | : Packages: [1] 'base' [08:50:19.948] | Search for packages associated with the globals ... DONE [08:50:19.949] | Packages after dropping 'base': [0] [08:50:19.949] | globals: [1] 'plan' [08:50:19.949] | packages: [0] [08:50:19.949] getGlobalsAndPackages() ... done [08:50:19.950] run() for Future ('Future') ... [08:50:19.950] | state: 'created' [08:50:19.950] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.950] | : makeFutureBackend() ... [08:50:19.950] | : . Backend function: <'NULL'> [08:50:19.951] | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.951] | : makeFutureBackend() ... done [08:50:19.951] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.951] | Using SequentialFutureBackend ... [08:50:19.951] | : Launching futures ... [08:50:19.952] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [08:50:19.952] | : . | getFutureData() ... [08:50:19.952] | : . | : getFutureCore() ... [08:50:19.952] | : . | : . Packages needed by the future expression (n = 0): [08:50:19.952] | : . | : getFutureCore() ... done [08:50:19.953] | : . | : getFutureCapture() ... [08:50:19.953] | : . | : getFutureCapture() ... done [08:50:19.953] | : . | : getFutureContext() ... [08:50:19.953] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.953] | : . | : . | Getting stack without first strategy: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.954] | : . | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.954] | : . | : . Packages needed by future strategies (n = 0): [08:50:19.954] | : . | : getFutureContext() ... done [08:50:19.954] | : . | getFutureData() ... done [08:50:19.954] | : . | attachPackages() ... [08:50:19.955] | : . | : packages: [n=0] [08:50:19.955] | : . | attachPackages() ... DONE [08:50:19.955] | : . | attachPackages() ... [08:50:19.955] | : . | : packages: [n=0] [08:50:19.955] | : . | attachPackages() ... DONE [08:50:19.956] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.956] | : . | : Getting full stack: [n=2] 'c("sequential", "uniprocess", "future", "function")', 'c("tweaked", "sequential", "uniprocess", "future", "function")' [08:50:19.956] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.957] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.957] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.957] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.957] | : . | : . | all.equal() for FutureStrategyList ... [08:50:19.958] | : . | : . | : Different lengths [08:50:19.958] | : . | : . | all.equal() for FutureStrategyList ... done [08:50:19.958] | : . | : . | plan(): Setting new future strategy stack: [08:50:19.958] | : . | : . | List of future strategies: [08:50:19.958] | : . | : . | 1. sequential: [08:50:19.958] | : . | : . | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.958] | : . | : . | - tweaked: TRUE [08:50:19.958] | : . | : . | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.959] | : . | : . | List of 1 [08:50:19.959] | : . | : . | $ B:function (..., abc = FALSE, envir = parent.frame()) [08:50:19.959] | : . | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.959] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.959] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.959] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.959] | : . | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.959] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.959] | : . | : . | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.959] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.962] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.963] | : . | : . | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.963] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.963] | : . | : . | : Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.963] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.963] | : . | : . | Backend function: <'NULL'> [08:50:19.964] | : . | : . | Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [08:50:19.964] | : . | : . | plan(): nbrOfWorkers() = 1 [08:50:19.964] | : . | : . plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.964] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.964] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.965] | : . | assign_globals() ... [08:50:19.965] | : . | List of 1 [08:50:19.965] | : . | $ plan:function (strategy = NULL, ..., substitute = TRUE, .skip = FALSE, .call = TRUE, [08:50:19.965] | : . | .cleanup = NA, .init = TRUE) [08:50:19.965] | : . | - attr(*, "where")=List of 1 [08:50:19.965] | : . | ..$ plan: [08:50:19.965] | : . | - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [08:50:19.965] | : . | - attr(*, "resolved")= logi FALSE [08:50:19.965] | : . | - attr(*, "total_size")= num NA [08:50:19.965] | : . | - attr(*, "already-done")= logi TRUE [08:50:19.968] | : . | - copied 'plan' to environment [08:50:19.968] | : . | assign_globals() ... done [08:50:19.972] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.972] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [08:50:19.972] | : . | : . plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [08:50:19.972] | : . | : . | all.equal() for FutureStrategyList ... [08:50:19.973] | : . | : . | : Different lengths [08:50:19.973] | : . | : . | all.equal() for FutureStrategyList ... done [08:50:19.973] | : . | : . | plan(): Setting new future strategy stack: [08:50:19.973] | : . | : . | List of future strategies: [08:50:19.973] | : . | : . | 1. sequential: [08:50:19.973] | : . | : . | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [08:50:19.973] | : . | : . | - tweaked: FALSE [08:50:19.973] | : . | : . | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.973] | : . | : . | 2. sequential: [08:50:19.973] | : . | : . | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [08:50:19.973] | : . | : . | - tweaked: TRUE [08:50:19.973] | : . | : . | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.974] | : . | : . | List of 2 [08:50:19.974] | : . | : . | $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [08:50:19.974] | : . | : . | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [08:50:19.974] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.974] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.974] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.974] | : . | : . | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.974] | : . | : . | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [08:50:19.974] | : . | : . | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.974] | : . | : . | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.974] | : . | : . | $ B:function (..., abc = FALSE, envir = parent.frame()) [08:50:19.974] | : . | : . | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [08:50:19.974] | : . | : . | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [08:50:19.974] | : . | : . | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.974] | : . | : . | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [08:50:19.974] | : . | : . | ..- attr(*, "tweaks")=List of 1 [08:50:19.974] | : . | : . | .. ..$ abc: logi FALSE [08:50:19.974] | : . | : . | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [08:50:19.974] | : . | : . | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [08:50:19.982] | : . | : . | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [08:50:19.982] | : . | : . | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [08:50:19.983] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.983] | : . | : . | : Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.983] | : . | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.983] | : . | : . | plan(): nbrOfWorkers() = 1 [08:50:19.983] | : . | : . plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [08:50:19.984] | : . | : plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.984] | : . | plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [08:50:19.984] | : . | SequentialFuture started (and completed) [08:50:19.984] | : . | signalConditions() ... [08:50:19.985] | : . | : include = 'immediateCondition' [08:50:19.985] | : . | : exclude = [08:50:19.985] | : . | : resignal = FALSE [08:50:19.985] | : . | : Number of conditions: 3 [08:50:19.985] | : . | signalConditions() ... done [08:50:19.986] | : . launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... DONE [08:50:19.986] | : Launching futures ... done [08:50:19.986] | : Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [08:50:19.986] | Using SequentialFutureBackend ... done [08:50:19.986] run() for Future ('SequentialFuture') ... done > print(x) [08:50:19.987] signalConditions() ... [08:50:19.987] | include = 'immediateCondition' [08:50:19.987] | exclude = [08:50:19.987] | resignal = FALSE [08:50:19.988] | Number of conditions: 3 [08:50:19.988] signalConditions() ... done [08:50:19.988] Future state: 'finished' [08:50:19.988] signalConditions() ... [08:50:19.989] | include = 'condition' [08:50:19.989] | exclude = 'immediateCondition' [08:50:19.989] | resignal = TRUE [08:50:19.989] | Number of conditions: 3 [08:50:19.989] | Condition #1: 'simpleMessage', 'message', 'condition' [08:50:19.969] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [08:50:19.990] | Condition #2: 'simpleMessage', 'message', 'condition' [08:50:19.969] | : . | : Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [08:50:19.990] | Condition #3: 'simpleMessage', 'message', 'condition' [08:50:19.969] | : . | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [08:50:19.990] signalConditions() ... 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) [08:50:19.996] getGlobalsAndPackages() ... [08:50:19.996] | Searching for globals ... [08:50:19.999] | : globals found: [4] '{', 'y', 'x', '~' [08:50:19.999] | Searching for globals ... DONE [08:50:19.999] | Resolving globals: FALSE [08:50:20.000] | Search for packages associated with the globals ... [08:50:20.000] | : Packages associated with globals: [1] 'base' [08:50:20.000] | : Packages: [1] 'base' [08:50:20.001] | Search for packages associated with the globals ... DONE [08:50:20.001] | The total size of the 1 globals is 39 bytes (39 bytes) [08:50:20.002] | 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') [08:50:20.002] | Packages after dropping 'base': [0] [08:50:20.002] | globals: [1] 'x' [08:50:20.002] | packages: [0] [08:50:20.003] 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_04_10_08_45_16_15127' Sourcing 6 epilogue scripts ... done Test time: user.self=1s, sys.self=0.1s, elapsed=2s, user.child=NAs, sys.child=NAs Test 'tweak' ... success > > proc.time() user system elapsed 1.28 0.26 2.32