R Under development (unstable) (2025-06-04 r88278 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## This runs testme test script inst/testme/test-tweak.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future:::testme("tweak") Test 'tweak' ... Sourcing 9 prologue scripts ... 01/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/001.load.R' 02/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/002.record-state.R' 03/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/030.imports.R' 04/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/050.utils.R' 05/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.context.R' 06/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.options.R' 07/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/091.envvars.R' 08/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/099.future-setup.R' 09/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/test-tweak.R' > message("*** Tweaking future strategies ...") *** Tweaking future strategies ... > message("*** y <- tweak(future::sequential) ...") *** y <- tweak(future::sequential) ... > sequential2 <- future::tweak(future::sequential) > print(args(sequential2)) function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) NULL > stopifnot(identical(sequential2, future::sequential)) > stopifnot(!inherits(sequential2, "tweaked")) > message("*** y <- tweak(future::sequential, abc = FALSE) ...") *** y <- tweak(future::sequential, abc = FALSE) ... > sequential2 <- future::tweak(future::sequential, abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE) ...") *** y <- tweak('sequential', abc = FALSE) ... > sequential2 <- future::tweak("sequential", abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > library(future) [06:01:22.216] Option 'future.startup.script': TRUE [06:01:22.218] Future startup scripts considered: '.future.R', '~/.future.R' [06:01:22.218] 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 [06:01:23.055] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.056] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [06:01:23.057] | : all.equal() for FutureStrategyList ... [06:01:23.057] | : . New stack: [06:01:23.057] | : . List of 1 [06:01:23.057] | : . $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.057] | : . session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.057] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.057] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.057] | : . year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.057] | : . version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.057] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.057] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.057] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.057] | : . effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.057] | : . png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.057] | : . sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.057] | : . NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.057] | : . long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.057] | : . `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.057] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.057] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.057] | : . ..- attr(*, "init")= logi TRUE [06:01:23.057] | : . ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.057] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.057] | : . .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.057] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.057] | : . ..- attr(*, "tweaks")=List of 1 [06:01:23.057] | : . .. ..$ workers:List of 1 [06:01:23.057] | : . .. .. ..$ :List of 4 [06:01:23.057] | : . .. .. .. ..$ con : 'sockconn' int 4 [06:01:23.057] | : . .. .. .. .. ..- attr(*, "conn_id")= [06:01:23.057] | : . .. .. .. ..$ host : chr "localhost" [06:01:23.057] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.057] | : . .. .. .. ..$ rank : int 0 [06:01:23.057] | : . .. .. .. ..$ session_info:List of 10 [06:01:23.057] | : . .. .. .. .. ..$ process :List of 1 [06:01:23.057] | : . .. .. .. .. .. ..$ pid: int 105152 [06:01:23.057] | : . .. .. .. .. ..$ r :List of 16 [06:01:23.057] | : . .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.057] | : . .. .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.057] | : . .. .. .. .. .. ..$ os : chr "mingw32" [06:01:23.057] | : . .. .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.057] | : . .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.057] | : . .. .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.057] | : . .. .. .. .. .. ..$ major : chr "4" [06:01:23.057] | : . .. .. .. .. .. ..$ minor : chr "6.0" [06:01:23.057] | : . .. .. .. .. .. ..$ year : chr "2025" [06:01:23.057] | : . .. .. .. .. .. ..$ month : chr "06" [06:01:23.057] | : . .. .. .. .. .. ..$ day : chr "04" [06:01:23.057] | : . .. .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.057] | : . .. .. .. .. .. ..$ language : chr "R" [06:01:23.057] | : . .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.057] | : . .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.057] | : . .. .. .. .. .. ..$ os.type : chr "windows" [06:01:23.057] | : . .. .. .. .. ..$ system :List of 9 [06:01:23.057] | : . .. .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.057] | : . .. .. .. .. .. ..$ release : chr "Server x64" [06:01:23.057] | : . .. .. .. .. .. ..$ version : chr "build 20348" [06:01:23.057] | : . .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.057] | : . .. .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.057] | : . .. .. .. .. .. ..$ login : chr "CRAN" [06:01:23.057] | : . .. .. .. .. .. ..$ user : chr "CRAN" [06:01:23.057] | : . .. .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.057] | : . .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.057] | : . .. .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.057] | : . .. .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.057] | : . .. .. .. .. ..$ l10n :List of 5 [06:01:23.057] | : . .. .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.057] | : . .. .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.057] | : . .. .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.057] | : . .. .. .. .. .. ..$ codepage : int 65001 [06:01:23.057] | : . .. .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.057] | : . .. .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.057] | : . .. .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.057] | : . .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.057] | : . .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.057] | : . .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.057] | : . .. .. .. .. ..$ pkgs : NULL [06:01:23.057] | : . .. .. .. ..- attr(*, "options")=List of 35 [06:01:23.057] | : . .. .. .. .. ..$ worker : chr "localhost" [06:01:23.057] | : . .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.057] | : . .. .. .. .. ..$ master : chr "localhost" [06:01:23.057] | : . .. .. .. .. ..$ port : int 30777 [06:01:23.057] | : . .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.057] | : . .. .. .. .. ..$ timeout : num 120 [06:01:23.057] | : . .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.057] | : . .. .. .. .. ..$ homogeneous : logi TRUE [06:01:23.057] | : . .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.057] | : . .. .. .. .. ..$ rscript_envs : NULL [06:01:23.057] | : . .. .. .. .. ..$ rscript_libs : NULL [06:01:23.057] | : . .. .. .. .. ..$ rscript_startup : NULL [06:01:23.057] | : . .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.057] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.057] | : . .. .. .. .. ..$ methods : logi TRUE [06:01:23.057] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.057] | : . .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.057] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.057] | : . .. .. .. .. ..$ renice : int NA [06:01:23.057] | : . .. .. .. .. ..$ rshcmd : NULL [06:01:23.057] | : . .. .. .. .. ..$ user : chr(0) [06:01:23.057] | : . .. .. .. .. ..$ revtunnel : logi FALSE [06:01:23.057] | : . .. .. .. .. ..$ rshlogfile : NULL [06:01:23.057] | : . .. .. .. .. ..$ rshopts : chr(0) [06:01:23.057] | : . .. .. .. .. ..$ rank : int 0 [06:01:23.057] | : . .. .. .. .. ..$ manual : logi FALSE [06:01:23.057] | : . .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.057] | : . .. .. .. .. ..$ quiet : logi FALSE [06:01:23.057] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.057] | : . .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.057] | : . .. .. .. .. ..$ rshcmd_label : NULL [06:01:23.057] | : . .. .. .. .. ..$ rsh_call : NULL [06:01:23.057] | : . .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.057] | : . .. .. .. .. ..$ localMachine : logi TRUE [06:01:23.057] | : . .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.057] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.057] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.057] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.057] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.057] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.057] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.057] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.057] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.057] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.057] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.057] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.057] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.057] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.057] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.057] | : . .. .. .. .. ..$ arguments :List of 29 [06:01:23.057] | : . .. .. .. .. .. ..$ worker : chr "localhost" [06:01:23.057] | : . .. .. .. .. .. ..$ master : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ port : int 30777 [06:01:23.057] | : . .. .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.057] | : . .. .. .. .. .. ..$ timeout : num 120 [06:01:23.057] | : . .. .. .. .. .. ..$ rscript : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ homogeneous : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rscript_args : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rscript_envs : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rscript_libs : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rscript_startup : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.057] | : . .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.057] | : . .. .. .. .. .. ..$ methods : logi TRUE [06:01:23.057] | : . .. .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.057] | : . .. .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.057] | : . .. .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.057] | : . .. .. .. .. .. ..$ renice : int NA [06:01:23.057] | : . .. .. .. .. .. ..$ rshcmd : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ user : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ revtunnel : logi NA [06:01:23.057] | : . .. .. .. .. .. ..$ rshlogfile : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rshopts : NULL [06:01:23.057] | : . .. .. .. .. .. ..$ rank : int 1 [06:01:23.057] | : . .. .. .. .. .. ..$ manual : logi FALSE [06:01:23.057] | : . .. .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.057] | : . .. .. .. .. .. ..$ quiet : logi FALSE [06:01:23.057] | : . .. .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.057] | : . .. .. .. .. .. ..$ calls : logi FALSE [06:01:23.057] | : . .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.057] | : . .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.057] | : . .. .. .. .. ..$ : language future:::testme("tweak") [06:01:23.057] | : . .. .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.057] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.057] | : . .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.057] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.057] | : . .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.057] | : . .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(expr, p) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(expr, p) [06:01:23.057] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.057] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.057] | : . .. .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.057] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.057] | : . .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.057] | : . ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.057] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.146] | : . Old stack: [06:01:23.146] | : . List of 1 [06:01:23.146] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.146] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.146] | : . ..- attr(*, "init")= logi TRUE [06:01:23.146] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.146] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.146] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.146] | : . ..- attr(*, "call")= language plan(sequential) [06:01:23.146] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.152] | : . Not identical [06:01:23.153] | : . all.equal() for future ... [06:01:23.153] | : . ' List of 2 [06:01:23.153] | : . ' $ target :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.153] | : . ' session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.153] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.153] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.153] | : . ' year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.153] | : . ' version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.153] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.153] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.153] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.153] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.153] | : . ' png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.153] | : . ' sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.153] | : . ' NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.153] | : . ' long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.153] | : . ' `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.153] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.153] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.153] | : . ' ..- attr(*, "init")= logi TRUE [06:01:23.153] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.153] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.153] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.153] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.153] | : . ' ..- attr(*, "tweaks")=List of 1 [06:01:23.153] | : . ' .. ..$ workers:List of 1 [06:01:23.153] | : . ' .. .. ..$ :List of 4 [06:01:23.153] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [06:01:23.153] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [06:01:23.153] | : . ' .. .. .. ..$ host : chr "localhost" [06:01:23.153] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.153] | : . ' .. .. .. ..$ rank : int 0 [06:01:23.153] | : . ' .. .. .. ..$ session_info:List of 10 [06:01:23.153] | : . ' .. .. .. .. ..$ process :List of 1 [06:01:23.153] | : . ' .. .. .. .. .. ..$ pid: int 105152 [06:01:23.153] | : . ' .. .. .. .. ..$ r :List of 16 [06:01:23.153] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.153] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.153] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [06:01:23.153] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.153] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.153] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.153] | : . ' .. .. .. .. .. ..$ major : chr "4" [06:01:23.153] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [06:01:23.153] | : . ' .. .. .. .. .. ..$ year : chr "2025" [06:01:23.153] | : . ' .. .. .. .. .. ..$ month : chr "06" [06:01:23.153] | : . ' .. .. .. .. .. ..$ day : chr "04" [06:01:23.153] | : . ' .. .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.153] | : . ' .. .. .. .. .. ..$ language : chr "R" [06:01:23.153] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.153] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.153] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [06:01:23.153] | : . ' .. .. .. .. ..$ system :List of 9 [06:01:23.153] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.153] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [06:01:23.153] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [06:01:23.153] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.153] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.153] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [06:01:23.153] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [06:01:23.153] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.153] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.153] | : . ' .. .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.153] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.153] | : . ' .. .. .. .. ..$ l10n :List of 5 [06:01:23.153] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.153] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.153] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.153] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [06:01:23.153] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.153] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.153] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.153] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.153] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.153] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.153] | : . ' .. .. .. .. ..$ pkgs : NULL [06:01:23.153] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [06:01:23.153] | : . ' .. .. .. .. ..$ worker : chr "localhost" [06:01:23.153] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.153] | : . ' .. .. .. .. ..$ master : chr "localhost" [06:01:23.153] | : . ' .. .. .. .. ..$ port : int 30777 [06:01:23.153] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.153] | : . ' .. .. .. .. ..$ timeout : num 120 [06:01:23.153] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.153] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [06:01:23.153] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.153] | : . ' .. .. .. .. ..$ rscript_envs : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ rscript_libs : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ rscript_startup : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.153] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.153] | : . ' .. .. .. .. ..$ methods : logi TRUE [06:01:23.153] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.153] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.153] | : . ' .. .. .. .. ..$ renice : int NA [06:01:23.153] | : . ' .. .. .. .. ..$ rshcmd : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ user : chr(0) [06:01:23.153] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..$ rshlogfile : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ rshopts : chr(0) [06:01:23.153] | : . ' .. .. .. .. ..$ rank : int 0 [06:01:23.153] | : . ' .. .. .. .. ..$ manual : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..$ quiet : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.153] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.153] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ rsh_call : NULL [06:01:23.153] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.153] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [06:01:23.153] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.153] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.153] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.153] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.153] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.153] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.153] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.153] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.153] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.153] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.153] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.153] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.153] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.153] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.153] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.153] | : . ' .. .. .. .. ..$ arguments :List of 29 [06:01:23.153] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [06:01:23.153] | : . ' .. .. .. .. .. ..$ master : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ port : int 30777 [06:01:23.153] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.153] | : . ' .. .. .. .. .. ..$ timeout : num 120 [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.153] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.153] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [06:01:23.153] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.153] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.153] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.153] | : . ' .. .. .. .. .. ..$ renice : int NA [06:01:23.153] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ user : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [06:01:23.153] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rshopts : NULL [06:01:23.153] | : . ' .. .. .. .. .. ..$ rank : int 1 [06:01:23.153] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [06:01:23.153] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.153] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [06:01:23.153] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.153] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [06:01:23.153] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.153] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.153] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [06:01:23.153] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.153] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.153] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.153] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.153] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(expr, p) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(expr, p) [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.153] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.153] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.153] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.153] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.153] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.153] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.153] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.153] | : . ' ..- attr(*, "init")= logi TRUE [06:01:23.153] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.153] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.153] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.153] | : . ' ..- attr(*, "call")= language plan(sequential) [06:01:23.224] | : . ' Formals differ [06:01:23.225] | : . all.equal() for future ... done [06:01:23.225] | : . Future strategies differ at level 1 [06:01:23.225] | : all.equal() for FutureStrategyList ... done [06:01:23.225] | : plan(): Setting new future backend stack: [06:01:23.225] | : List of future strategies: [06:01:23.225] | : 1. cluster: [06:01:23.225] | : - args: function (..., workers = "", envir = parent.frame()) [06:01:23.225] | : - tweaked: TRUE [06:01:23.225] | : - call: future::plan(future::cluster, workers = cl) [06:01:23.228] | : List of 1 [06:01:23.228] | : $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.228] | : session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.228] | : arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.228] | : status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.228] | : year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.228] | : version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.228] | : nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.228] | : sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.228] | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.228] | : effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.228] | : png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.228] | : sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.228] | : NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.228] | : long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.228] | : `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.228] | : extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.228] | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.228] | : ..- attr(*, "init")= logi TRUE [06:01:23.228] | : ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.228] | : earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.228] | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.228] | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.228] | : ..- attr(*, "tweaks")=List of 1 [06:01:23.228] | : .. ..$ workers:List of 1 [06:01:23.228] | : .. .. ..$ :List of 4 [06:01:23.228] | : .. .. .. ..$ con : 'sockconn' int 4 [06:01:23.228] | : .. .. .. .. ..- attr(*, "conn_id")= [06:01:23.228] | : .. .. .. ..$ host : chr "localhost" [06:01:23.228] | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.228] | : .. .. .. ..$ rank : int 0 [06:01:23.228] | : .. .. .. ..$ session_info:List of 10 [06:01:23.228] | : .. .. .. .. ..$ process :List of 1 [06:01:23.228] | : .. .. .. .. .. ..$ pid: int 105152 [06:01:23.228] | : .. .. .. .. ..$ r :List of 16 [06:01:23.228] | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.228] | : .. .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.228] | : .. .. .. .. .. ..$ os : chr "mingw32" [06:01:23.228] | : .. .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.228] | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.228] | : .. .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.228] | : .. .. .. .. .. ..$ major : chr "4" [06:01:23.228] | : .. .. .. .. .. ..$ minor : chr "6.0" [06:01:23.228] | : .. .. .. .. .. ..$ year : chr "2025" [06:01:23.228] | : .. .. .. .. .. ..$ month : chr "06" [06:01:23.228] | : .. .. .. .. .. ..$ day : chr "04" [06:01:23.228] | : .. .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.228] | : .. .. .. .. .. ..$ language : chr "R" [06:01:23.228] | : .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.228] | : .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.228] | : .. .. .. .. .. ..$ os.type : chr "windows" [06:01:23.228] | : .. .. .. .. ..$ system :List of 9 [06:01:23.228] | : .. .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.228] | : .. .. .. .. .. ..$ release : chr "Server x64" [06:01:23.228] | : .. .. .. .. .. ..$ version : chr "build 20348" [06:01:23.228] | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.228] | : .. .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.228] | : .. .. .. .. .. ..$ login : chr "CRAN" [06:01:23.228] | : .. .. .. .. .. ..$ user : chr "CRAN" [06:01:23.228] | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.228] | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.228] | : .. .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.228] | : .. .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.228] | : .. .. .. .. ..$ l10n :List of 5 [06:01:23.228] | : .. .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.228] | : .. .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.228] | : .. .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.228] | : .. .. .. .. .. ..$ codepage : int 65001 [06:01:23.228] | : .. .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.228] | : .. .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.228] | : .. .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.228] | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.228] | : .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.228] | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.228] | : .. .. .. .. ..$ pkgs : NULL [06:01:23.228] | : .. .. .. ..- attr(*, "options")=List of 35 [06:01:23.228] | : .. .. .. .. ..$ worker : chr "localhost" [06:01:23.228] | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.228] | : .. .. .. .. ..$ master : chr "localhost" [06:01:23.228] | : .. .. .. .. ..$ port : int 30777 [06:01:23.228] | : .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.228] | : .. .. .. .. ..$ timeout : num 120 [06:01:23.228] | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.228] | : .. .. .. .. ..$ homogeneous : logi TRUE [06:01:23.228] | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.228] | : .. .. .. .. ..$ rscript_envs : NULL [06:01:23.228] | : .. .. .. .. ..$ rscript_libs : NULL [06:01:23.228] | : .. .. .. .. ..$ rscript_startup : NULL [06:01:23.228] | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.228] | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.228] | : .. .. .. .. ..$ methods : logi TRUE [06:01:23.228] | : .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.228] | : .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.228] | : .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.228] | : .. .. .. .. ..$ renice : int NA [06:01:23.228] | : .. .. .. .. ..$ rshcmd : NULL [06:01:23.228] | : .. .. .. .. ..$ user : chr(0) [06:01:23.228] | : .. .. .. .. ..$ revtunnel : logi FALSE [06:01:23.228] | : .. .. .. .. ..$ rshlogfile : NULL [06:01:23.228] | : .. .. .. .. ..$ rshopts : chr(0) [06:01:23.228] | : .. .. .. .. ..$ rank : int 0 [06:01:23.228] | : .. .. .. .. ..$ manual : logi FALSE [06:01:23.228] | : .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.228] | : .. .. .. .. ..$ quiet : logi FALSE [06:01:23.228] | : .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.228] | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.228] | : .. .. .. .. ..$ rshcmd_label : NULL [06:01:23.228] | : .. .. .. .. ..$ rsh_call : NULL [06:01:23.228] | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.228] | : .. .. .. .. ..$ localMachine : logi TRUE [06:01:23.228] | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.228] | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.228] | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.228] | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.228] | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.228] | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.228] | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.228] | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.228] | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.228] | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.228] | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.228] | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.228] | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.228] | : "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.228] | : FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.228] | : .. .. .. .. ..$ arguments :List of 29 [06:01:23.228] | : .. .. .. .. .. ..$ worker : chr "localhost" [06:01:23.228] | : .. .. .. .. .. ..$ master : NULL [06:01:23.228] | : .. .. .. .. .. ..$ port : int 30777 [06:01:23.228] | : .. .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.228] | : .. .. .. .. .. ..$ timeout : num 120 [06:01:23.228] | : .. .. .. .. .. ..$ rscript : NULL [06:01:23.228] | : .. .. .. .. .. ..$ homogeneous : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rscript_args : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rscript_envs : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rscript_libs : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rscript_startup : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.228] | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.228] | : .. .. .. .. .. ..$ methods : logi TRUE [06:01:23.228] | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.228] | : .. .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.228] | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.228] | : .. .. .. .. .. ..$ renice : int NA [06:01:23.228] | : .. .. .. .. .. ..$ rshcmd : NULL [06:01:23.228] | : .. .. .. .. .. ..$ user : NULL [06:01:23.228] | : .. .. .. .. .. ..$ revtunnel : logi NA [06:01:23.228] | : .. .. .. .. .. ..$ rshlogfile : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rshopts : NULL [06:01:23.228] | : .. .. .. .. .. ..$ rank : int 1 [06:01:23.228] | : .. .. .. .. .. ..$ manual : logi FALSE [06:01:23.228] | : .. .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.228] | : .. .. .. .. .. ..$ quiet : logi FALSE [06:01:23.228] | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.228] | : .. .. .. .. .. ..$ calls : logi FALSE [06:01:23.228] | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.228] | : .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.228] | : .. .. .. .. ..$ : language future:::testme("tweak") [06:01:23.228] | : .. .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.228] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.228] | : .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.228] | : .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.228] | : .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.228] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.228] | : .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.228] | : .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.228] | : .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.228] | : .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.228] | : .. .. .. .. ..$ : language eval(expr, p) [06:01:23.228] | : .. .. .. .. ..$ : language eval(expr, p) [06:01:23.228] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.228] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.228] | : .. .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.228] | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.228] | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.228] | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.228] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.297] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [06:01:23.298] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.298] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [06:01:23.299] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.299] | : . Legacy shutdown of cluster workers ... [06:01:23.299] | : . ' Stopping existing cluster ... [06:01:23.300] | : . ' , No pre-existing cluster. Skipping [06:01:23.300] | : . ' Stopping existing cluster ... done [06:01:23.300] | : . Legacy shutdown of cluster workers ... done [06:01:23.301] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [06:01:23.301] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... [06:01:23.301] | : . function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.301] | : . session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.301] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.301] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.301] | : . year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.301] | : . version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.301] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.301] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.301] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.301] | : . effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.301] | : . png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.301] | : . sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.301] | : . NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.301] | : . long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.301] | : . `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.301] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.301] | : . - attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.301] | : . - attr(*, "init")= logi TRUE [06:01:23.301] | : . - attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.301] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.301] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.301] | : . - attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.301] | : . - attr(*, "tweaks")=List of 1 [06:01:23.301] | : . ..$ workers:List of 1 [06:01:23.301] | : . .. ..$ :List of 4 [06:01:23.301] | : . .. .. ..$ con : 'sockconn' int 4 [06:01:23.301] | : . .. .. .. ..- attr(*, "conn_id")= [06:01:23.301] | : . .. .. ..$ host : chr "localhost" [06:01:23.301] | : . .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.301] | : . .. .. ..$ rank : int 0 [06:01:23.301] | : . .. .. ..$ session_info:List of 10 [06:01:23.301] | : . .. .. .. ..$ process :List of 1 [06:01:23.301] | : . .. .. .. .. ..$ pid: int 105152 [06:01:23.301] | : . .. .. .. ..$ r :List of 16 [06:01:23.301] | : . .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.301] | : . .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.301] | : . .. .. .. .. ..$ os : chr "mingw32" [06:01:23.301] | : . .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.301] | : . .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.301] | : . .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.301] | : . .. .. .. .. ..$ major : chr "4" [06:01:23.301] | : . .. .. .. .. ..$ minor : chr "6.0" [06:01:23.301] | : . .. .. .. .. ..$ year : chr "2025" [06:01:23.301] | : . .. .. .. .. ..$ month : chr "06" [06:01:23.301] | : . .. .. .. .. ..$ day : chr "04" [06:01:23.301] | : . .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.301] | : . .. .. .. .. ..$ language : chr "R" [06:01:23.301] | : . .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.301] | : . .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.301] | : . .. .. .. .. ..$ os.type : chr "windows" [06:01:23.301] | : . .. .. .. ..$ system :List of 9 [06:01:23.301] | : . .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.301] | : . .. .. .. .. ..$ release : chr "Server x64" [06:01:23.301] | : . .. .. .. .. ..$ version : chr "build 20348" [06:01:23.301] | : . .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.301] | : . .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.301] | : . .. .. .. .. ..$ login : chr "CRAN" [06:01:23.301] | : . .. .. .. .. ..$ user : chr "CRAN" [06:01:23.301] | : . .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.301] | : . .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.301] | : . .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.301] | : . .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.301] | : . .. .. .. ..$ l10n :List of 5 [06:01:23.301] | : . .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.301] | : . .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.301] | : . .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.301] | : . .. .. .. .. ..$ codepage : int 65001 [06:01:23.301] | : . .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.301] | : . .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.301] | : . .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.301] | : . .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.301] | : . .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.301] | : . .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.301] | : . .. .. .. ..$ pkgs : NULL [06:01:23.301] | : . .. .. ..- attr(*, "options")=List of 35 [06:01:23.301] | : . .. .. .. ..$ worker : chr "localhost" [06:01:23.301] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.301] | : . .. .. .. ..$ master : chr "localhost" [06:01:23.301] | : . .. .. .. ..$ port : int 30777 [06:01:23.301] | : . .. .. .. ..$ connectTimeout : num 120 [06:01:23.301] | : . .. .. .. ..$ timeout : num 120 [06:01:23.301] | : . .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.301] | : . .. .. .. ..$ homogeneous : logi TRUE [06:01:23.301] | : . .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.301] | : . .. .. .. ..$ rscript_envs : NULL [06:01:23.301] | : . .. .. .. ..$ rscript_libs : NULL [06:01:23.301] | : . .. .. .. ..$ rscript_startup : NULL [06:01:23.301] | : . .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.301] | : . .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.301] | : . .. .. .. ..$ methods : logi TRUE [06:01:23.301] | : . .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.301] | : . .. .. .. ..$ useXDR : logi FALSE [06:01:23.301] | : . .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.301] | : . .. .. .. ..$ renice : int NA [06:01:23.301] | : . .. .. .. ..$ rshcmd : NULL [06:01:23.301] | : . .. .. .. ..$ user : chr(0) [06:01:23.301] | : . .. .. .. ..$ revtunnel : logi FALSE [06:01:23.301] | : . .. .. .. ..$ rshlogfile : NULL [06:01:23.301] | : . .. .. .. ..$ rshopts : chr(0) [06:01:23.301] | : . .. .. .. ..$ rank : int 0 [06:01:23.301] | : . .. .. .. ..$ manual : logi FALSE [06:01:23.301] | : . .. .. .. ..$ dryrun : logi FALSE [06:01:23.301] | : . .. .. .. ..$ quiet : logi FALSE [06:01:23.301] | : . .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.301] | : . .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.301] | : . .. .. .. ..$ rshcmd_label : NULL [06:01:23.301] | : . .. .. .. ..$ rsh_call : NULL [06:01:23.301] | : . .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.301] | : . .. .. .. ..$ localMachine : logi TRUE [06:01:23.301] | : . .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.301] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.301] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.301] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.301] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.301] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.301] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.301] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.301] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.301] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.301] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.301] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.301] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.301] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.301] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.301] | : . .. .. .. ..$ arguments :List of 29 [06:01:23.301] | : . .. .. .. .. ..$ worker : chr "localhost" [06:01:23.301] | : . .. .. .. .. ..$ master : NULL [06:01:23.301] | : . .. .. .. .. ..$ port : int 30777 [06:01:23.301] | : . .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.301] | : . .. .. .. .. ..$ timeout : num 120 [06:01:23.301] | : . .. .. .. .. ..$ rscript : NULL [06:01:23.301] | : . .. .. .. .. ..$ homogeneous : NULL [06:01:23.301] | : . .. .. .. .. ..$ rscript_args : NULL [06:01:23.301] | : . .. .. .. .. ..$ rscript_envs : NULL [06:01:23.301] | : . .. .. .. .. ..$ rscript_libs : NULL [06:01:23.301] | : . .. .. .. .. ..$ rscript_startup : NULL [06:01:23.301] | : . .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.301] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.301] | : . .. .. .. .. ..$ methods : logi TRUE [06:01:23.301] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.301] | : . .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.301] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.301] | : . .. .. .. .. ..$ renice : int NA [06:01:23.301] | : . .. .. .. .. ..$ rshcmd : NULL [06:01:23.301] | : . .. .. .. .. ..$ user : NULL [06:01:23.301] | : . .. .. .. .. ..$ revtunnel : logi NA [06:01:23.301] | : . .. .. .. .. ..$ rshlogfile : NULL [06:01:23.301] | : . .. .. .. .. ..$ rshopts : NULL [06:01:23.301] | : . .. .. .. .. ..$ rank : int 1 [06:01:23.301] | : . .. .. .. .. ..$ manual : logi FALSE [06:01:23.301] | : . .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.301] | : . .. .. .. .. ..$ quiet : logi FALSE [06:01:23.301] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.301] | : . .. .. .. .. ..$ calls : logi FALSE [06:01:23.301] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.301] | : . .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.301] | : . .. .. .. ..$ : language future:::testme("tweak") [06:01:23.301] | : . .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.301] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.301] | : . .. .. .. ..$ : language eval(ei, envir) [06:01:23.301] | : . .. .. .. ..$ : language eval(ei, envir) [06:01:23.301] | : . .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.301] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.301] | : . .. .. .. ..$ : language eval(ei, envir) [06:01:23.301] | : . .. .. .. ..$ : language eval(ei, envir) [06:01:23.301] | : . .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.301] | : . .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.301] | : . .. .. .. ..$ : language eval(expr, p) [06:01:23.301] | : . .. .. .. ..$ : language eval(expr, p) [06:01:23.301] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.301] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.301] | : . .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.301] | : . .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.301] | : . .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.301] | : . - attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.369] | : . init: TRUE [06:01:23.369] | : . makeFutureBackend() ... [06:01:23.370] | : . ' Backend function: <'NULL'> [06:01:23.370] | : . ' Evaluator tweak arguments: [n=1] [06:01:23.370] | : . ' List of 1 [06:01:23.370] | : . ' $ workers:List of 1 [06:01:23.370] | : . ' ..$ :List of 4 [06:01:23.370] | : . ' .. ..$ con : 'sockconn' int 4 [06:01:23.370] | : . ' .. .. ..- attr(*, "conn_id")= [06:01:23.370] | : . ' .. ..$ host : chr "localhost" [06:01:23.370] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.370] | : . ' .. ..$ rank : int 0 [06:01:23.370] | : . ' .. ..$ session_info:List of 10 [06:01:23.370] | : . ' .. .. ..$ process :List of 1 [06:01:23.370] | : . ' .. .. .. ..$ pid: int 105152 [06:01:23.370] | : . ' .. .. ..$ r :List of 16 [06:01:23.370] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.370] | : . ' .. .. .. ..$ arch : chr "x86_64" [06:01:23.370] | : . ' .. .. .. ..$ os : chr "mingw32" [06:01:23.370] | : . ' .. .. .. ..$ crt : chr "ucrt" [06:01:23.370] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.370] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.370] | : . ' .. .. .. ..$ major : chr "4" [06:01:23.370] | : . ' .. .. .. ..$ minor : chr "6.0" [06:01:23.370] | : . ' .. .. .. ..$ year : chr "2025" [06:01:23.370] | : . ' .. .. .. ..$ month : chr "06" [06:01:23.370] | : . ' .. .. .. ..$ day : chr "04" [06:01:23.370] | : . ' .. .. .. ..$ svn rev : chr "88278" [06:01:23.370] | : . ' .. .. .. ..$ language : chr "R" [06:01:23.370] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.370] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.370] | : . ' .. .. .. ..$ os.type : chr "windows" [06:01:23.370] | : . ' .. .. ..$ system :List of 9 [06:01:23.370] | : . ' .. .. .. ..$ sysname : chr "Windows" [06:01:23.370] | : . ' .. .. .. ..$ release : chr "Server x64" [06:01:23.370] | : . ' .. .. .. ..$ version : chr "build 20348" [06:01:23.370] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.370] | : . ' .. .. .. ..$ machine : chr "x86-64" [06:01:23.370] | : . ' .. .. .. ..$ login : chr "CRAN" [06:01:23.370] | : . ' .. .. .. ..$ user : chr "CRAN" [06:01:23.370] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.370] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.370] | : . ' .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.370] | : . ' .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.370] | : . ' .. .. ..$ l10n :List of 5 [06:01:23.370] | : . ' .. .. .. ..$ MBCS : logi TRUE [06:01:23.370] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.370] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.370] | : . ' .. .. .. ..$ codepage : int 65001 [06:01:23.370] | : . ' .. .. .. ..$ system.codepage: int 65001 [06:01:23.370] | : . ' .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.370] | : . ' .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.370] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.370] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.370] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.370] | : . ' .. .. ..$ pkgs : NULL [06:01:23.370] | : . ' .. ..- attr(*, "options")=List of 35 [06:01:23.370] | : . ' .. .. ..$ worker : chr "localhost" [06:01:23.370] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.370] | : . ' .. .. ..$ master : chr "localhost" [06:01:23.370] | : . ' .. .. ..$ port : int 30777 [06:01:23.370] | : . ' .. .. ..$ connectTimeout : num 120 [06:01:23.370] | : . ' .. .. ..$ timeout : num 120 [06:01:23.370] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.370] | : . ' .. .. ..$ homogeneous : logi TRUE [06:01:23.370] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.370] | : . ' .. .. ..$ rscript_envs : NULL [06:01:23.370] | : . ' .. .. ..$ rscript_libs : NULL [06:01:23.370] | : . ' .. .. ..$ rscript_startup : NULL [06:01:23.370] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.370] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.370] | : . ' .. .. ..$ methods : logi TRUE [06:01:23.370] | : . ' .. .. ..$ socketOptions : chr "no-delay" [06:01:23.370] | : . ' .. .. ..$ useXDR : logi FALSE [06:01:23.370] | : . ' .. .. ..$ outfile : chr "/dev/null" [06:01:23.370] | : . ' .. .. ..$ renice : int NA [06:01:23.370] | : . ' .. .. ..$ rshcmd : NULL [06:01:23.370] | : . ' .. .. ..$ user : chr(0) [06:01:23.370] | : . ' .. .. ..$ revtunnel : logi FALSE [06:01:23.370] | : . ' .. .. ..$ rshlogfile : NULL [06:01:23.370] | : . ' .. .. ..$ rshopts : chr(0) [06:01:23.370] | : . ' .. .. ..$ rank : int 0 [06:01:23.370] | : . ' .. .. ..$ manual : logi FALSE [06:01:23.370] | : . ' .. .. ..$ dryrun : logi FALSE [06:01:23.370] | : . ' .. .. ..$ quiet : logi FALSE [06:01:23.370] | : . ' .. .. ..$ setup_strategy : chr "parallel" [06:01:23.370] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.370] | : . ' .. .. ..$ rshcmd_label : NULL [06:01:23.370] | : . ' .. .. ..$ rsh_call : NULL [06:01:23.370] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.370] | : . ' .. .. ..$ localMachine : logi TRUE [06:01:23.370] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.370] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.370] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.370] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.370] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.370] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.370] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.370] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.370] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.370] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.370] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.370] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.370] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.370] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.370] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.370] | : . ' .. .. ..$ arguments :List of 29 [06:01:23.370] | : . ' .. .. .. ..$ worker : chr "localhost" [06:01:23.370] | : . ' .. .. .. ..$ master : NULL [06:01:23.370] | : . ' .. .. .. ..$ port : int 30777 [06:01:23.370] | : . ' .. .. .. ..$ connectTimeout : num 120 [06:01:23.370] | : . ' .. .. .. ..$ timeout : num 120 [06:01:23.370] | : . ' .. .. .. ..$ rscript : NULL [06:01:23.370] | : . ' .. .. .. ..$ homogeneous : NULL [06:01:23.370] | : . ' .. .. .. ..$ rscript_args : NULL [06:01:23.370] | : . ' .. .. .. ..$ rscript_envs : NULL [06:01:23.370] | : . ' .. .. .. ..$ rscript_libs : NULL [06:01:23.370] | : . ' .. .. .. ..$ rscript_startup : NULL [06:01:23.370] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.370] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.370] | : . ' .. .. .. ..$ methods : logi TRUE [06:01:23.370] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.370] | : . ' .. .. .. ..$ useXDR : logi FALSE [06:01:23.370] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.370] | : . ' .. .. .. ..$ renice : int NA [06:01:23.370] | : . ' .. .. .. ..$ rshcmd : NULL [06:01:23.370] | : . ' .. .. .. ..$ user : NULL [06:01:23.370] | : . ' .. .. .. ..$ revtunnel : logi NA [06:01:23.370] | : . ' .. .. .. ..$ rshlogfile : NULL [06:01:23.370] | : . ' .. .. .. ..$ rshopts : NULL [06:01:23.370] | : . ' .. .. .. ..$ rank : int 1 [06:01:23.370] | : . ' .. .. .. ..$ manual : logi FALSE [06:01:23.370] | : . ' .. .. .. ..$ dryrun : logi FALSE [06:01:23.370] | : . ' .. .. .. ..$ quiet : logi FALSE [06:01:23.370] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.370] | : . ' .. .. .. ..$ calls : logi FALSE [06:01:23.370] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.370] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.370] | : . ' .. .. ..$ : language future:::testme("tweak") [06:01:23.370] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.370] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.370] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.370] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.370] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.370] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.370] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.370] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.370] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.370] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.370] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.370] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.370] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.370] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.370] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.370] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.370] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.441] | : . ' Evaluator formal arguments: [n=1] [06:01:23.441] | : . ' List of 1 [06:01:23.441] | : . ' $ workers:List of 1 [06:01:23.441] | : . ' ..$ :List of 4 [06:01:23.441] | : . ' .. ..$ con : 'sockconn' int 4 [06:01:23.441] | : . ' .. .. ..- attr(*, "conn_id")= [06:01:23.441] | : . ' .. ..$ host : chr "localhost" [06:01:23.441] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.441] | : . ' .. ..$ rank : int 0 [06:01:23.441] | : . ' .. ..$ session_info:List of 10 [06:01:23.441] | : . ' .. .. ..$ process :List of 1 [06:01:23.441] | : . ' .. .. .. ..$ pid: int 105152 [06:01:23.441] | : . ' .. .. ..$ r :List of 16 [06:01:23.441] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.441] | : . ' .. .. .. ..$ arch : chr "x86_64" [06:01:23.441] | : . ' .. .. .. ..$ os : chr "mingw32" [06:01:23.441] | : . ' .. .. .. ..$ crt : chr "ucrt" [06:01:23.441] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.441] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.441] | : . ' .. .. .. ..$ major : chr "4" [06:01:23.441] | : . ' .. .. .. ..$ minor : chr "6.0" [06:01:23.441] | : . ' .. .. .. ..$ year : chr "2025" [06:01:23.441] | : . ' .. .. .. ..$ month : chr "06" [06:01:23.441] | : . ' .. .. .. ..$ day : chr "04" [06:01:23.441] | : . ' .. .. .. ..$ svn rev : chr "88278" [06:01:23.441] | : . ' .. .. .. ..$ language : chr "R" [06:01:23.441] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.441] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.441] | : . ' .. .. .. ..$ os.type : chr "windows" [06:01:23.441] | : . ' .. .. ..$ system :List of 9 [06:01:23.441] | : . ' .. .. .. ..$ sysname : chr "Windows" [06:01:23.441] | : . ' .. .. .. ..$ release : chr "Server x64" [06:01:23.441] | : . ' .. .. .. ..$ version : chr "build 20348" [06:01:23.441] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.441] | : . ' .. .. .. ..$ machine : chr "x86-64" [06:01:23.441] | : . ' .. .. .. ..$ login : chr "CRAN" [06:01:23.441] | : . ' .. .. .. ..$ user : chr "CRAN" [06:01:23.441] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.441] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.441] | : . ' .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.441] | : . ' .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.441] | : . ' .. .. ..$ l10n :List of 5 [06:01:23.441] | : . ' .. .. .. ..$ MBCS : logi TRUE [06:01:23.441] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.441] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.441] | : . ' .. .. .. ..$ codepage : int 65001 [06:01:23.441] | : . ' .. .. .. ..$ system.codepage: int 65001 [06:01:23.441] | : . ' .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.441] | : . ' .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.441] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.441] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.441] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.441] | : . ' .. .. ..$ pkgs : NULL [06:01:23.441] | : . ' .. ..- attr(*, "options")=List of 35 [06:01:23.441] | : . ' .. .. ..$ worker : chr "localhost" [06:01:23.441] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.441] | : . ' .. .. ..$ master : chr "localhost" [06:01:23.441] | : . ' .. .. ..$ port : int 30777 [06:01:23.441] | : . ' .. .. ..$ connectTimeout : num 120 [06:01:23.441] | : . ' .. .. ..$ timeout : num 120 [06:01:23.441] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.441] | : . ' .. .. ..$ homogeneous : logi TRUE [06:01:23.441] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.441] | : . ' .. .. ..$ rscript_envs : NULL [06:01:23.441] | : . ' .. .. ..$ rscript_libs : NULL [06:01:23.441] | : . ' .. .. ..$ rscript_startup : NULL [06:01:23.441] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.441] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.441] | : . ' .. .. ..$ methods : logi TRUE [06:01:23.441] | : . ' .. .. ..$ socketOptions : chr "no-delay" [06:01:23.441] | : . ' .. .. ..$ useXDR : logi FALSE [06:01:23.441] | : . ' .. .. ..$ outfile : chr "/dev/null" [06:01:23.441] | : . ' .. .. ..$ renice : int NA [06:01:23.441] | : . ' .. .. ..$ rshcmd : NULL [06:01:23.441] | : . ' .. .. ..$ user : chr(0) [06:01:23.441] | : . ' .. .. ..$ revtunnel : logi FALSE [06:01:23.441] | : . ' .. .. ..$ rshlogfile : NULL [06:01:23.441] | : . ' .. .. ..$ rshopts : chr(0) [06:01:23.441] | : . ' .. .. ..$ rank : int 0 [06:01:23.441] | : . ' .. .. ..$ manual : logi FALSE [06:01:23.441] | : . ' .. .. ..$ dryrun : logi FALSE [06:01:23.441] | : . ' .. .. ..$ quiet : logi FALSE [06:01:23.441] | : . ' .. .. ..$ setup_strategy : chr "parallel" [06:01:23.441] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.441] | : . ' .. .. ..$ rshcmd_label : NULL [06:01:23.441] | : . ' .. .. ..$ rsh_call : NULL [06:01:23.441] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.441] | : . ' .. .. ..$ localMachine : logi TRUE [06:01:23.441] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.441] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.441] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.441] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.441] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.441] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.441] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.441] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.441] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.441] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.441] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.441] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.441] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.441] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.441] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.441] | : . ' .. .. ..$ arguments :List of 29 [06:01:23.441] | : . ' .. .. .. ..$ worker : chr "localhost" [06:01:23.441] | : . ' .. .. .. ..$ master : NULL [06:01:23.441] | : . ' .. .. .. ..$ port : int 30777 [06:01:23.441] | : . ' .. .. .. ..$ connectTimeout : num 120 [06:01:23.441] | : . ' .. .. .. ..$ timeout : num 120 [06:01:23.441] | : . ' .. .. .. ..$ rscript : NULL [06:01:23.441] | : . ' .. .. .. ..$ homogeneous : NULL [06:01:23.441] | : . ' .. .. .. ..$ rscript_args : NULL [06:01:23.441] | : . ' .. .. .. ..$ rscript_envs : NULL [06:01:23.441] | : . ' .. .. .. ..$ rscript_libs : NULL [06:01:23.441] | : . ' .. .. .. ..$ rscript_startup : NULL [06:01:23.441] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.441] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.441] | : . ' .. .. .. ..$ methods : logi TRUE [06:01:23.441] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.441] | : . ' .. .. .. ..$ useXDR : logi FALSE [06:01:23.441] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.441] | : . ' .. .. .. ..$ renice : int NA [06:01:23.441] | : . ' .. .. .. ..$ rshcmd : NULL [06:01:23.441] | : . ' .. .. .. ..$ user : NULL [06:01:23.441] | : . ' .. .. .. ..$ revtunnel : logi NA [06:01:23.441] | : . ' .. .. .. ..$ rshlogfile : NULL [06:01:23.441] | : . ' .. .. .. ..$ rshopts : NULL [06:01:23.441] | : . ' .. .. .. ..$ rank : int 1 [06:01:23.441] | : . ' .. .. .. ..$ manual : logi FALSE [06:01:23.441] | : . ' .. .. .. ..$ dryrun : logi FALSE [06:01:23.441] | : . ' .. .. .. ..$ quiet : logi FALSE [06:01:23.441] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.441] | : . ' .. .. .. ..$ calls : logi FALSE [06:01:23.441] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.441] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.441] | : . ' .. .. ..$ : language future:::testme("tweak") [06:01:23.441] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.441] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.441] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.441] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.441] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.441] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.441] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.441] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.441] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.441] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.441] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.441] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.441] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.441] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.441] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.441] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.441] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.516] | : . ' Backend factory arguments: [n=1] [06:01:23.516] | : . ' Dotted pair list of 1 [06:01:23.516] | : . ' $ workers:List of 1 [06:01:23.516] | : . ' ..$ :List of 4 [06:01:23.516] | : . ' .. ..$ con : 'sockconn' int 4 [06:01:23.516] | : . ' .. .. ..- attr(*, "conn_id")= [06:01:23.516] | : . ' .. ..$ host : chr "localhost" [06:01:23.516] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.516] | : . ' .. ..$ rank : int 0 [06:01:23.516] | : . ' .. ..$ session_info:List of 10 [06:01:23.516] | : . ' .. .. ..$ process :List of 1 [06:01:23.516] | : . ' .. .. .. ..$ pid: int 105152 [06:01:23.516] | : . ' .. .. ..$ r :List of 16 [06:01:23.516] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.516] | : . ' .. .. .. ..$ arch : chr "x86_64" [06:01:23.516] | : . ' .. .. .. ..$ os : chr "mingw32" [06:01:23.516] | : . ' .. .. .. ..$ crt : chr "ucrt" [06:01:23.516] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.516] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.516] | : . ' .. .. .. ..$ major : chr "4" [06:01:23.516] | : . ' .. .. .. ..$ minor : chr "6.0" [06:01:23.516] | : . ' .. .. .. ..$ year : chr "2025" [06:01:23.516] | : . ' .. .. .. ..$ month : chr "06" [06:01:23.516] | : . ' .. .. .. ..$ day : chr "04" [06:01:23.516] | : . ' .. .. .. ..$ svn rev : chr "88278" [06:01:23.516] | : . ' .. .. .. ..$ language : chr "R" [06:01:23.516] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.516] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.516] | : . ' .. .. .. ..$ os.type : chr "windows" [06:01:23.516] | : . ' .. .. ..$ system :List of 9 [06:01:23.516] | : . ' .. .. .. ..$ sysname : chr "Windows" [06:01:23.516] | : . ' .. .. .. ..$ release : chr "Server x64" [06:01:23.516] | : . ' .. .. .. ..$ version : chr "build 20348" [06:01:23.516] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.516] | : . ' .. .. .. ..$ machine : chr "x86-64" [06:01:23.516] | : . ' .. .. .. ..$ login : chr "CRAN" [06:01:23.516] | : . ' .. .. .. ..$ user : chr "CRAN" [06:01:23.516] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.516] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.516] | : . ' .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.516] | : . ' .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.516] | : . ' .. .. ..$ l10n :List of 5 [06:01:23.516] | : . ' .. .. .. ..$ MBCS : logi TRUE [06:01:23.516] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.516] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.516] | : . ' .. .. .. ..$ codepage : int 65001 [06:01:23.516] | : . ' .. .. .. ..$ system.codepage: int 65001 [06:01:23.516] | : . ' .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.516] | : . ' .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.516] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.516] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.516] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.516] | : . ' .. .. ..$ pkgs : NULL [06:01:23.516] | : . ' .. ..- attr(*, "options")=List of 35 [06:01:23.516] | : . ' .. .. ..$ worker : chr "localhost" [06:01:23.516] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.516] | : . ' .. .. ..$ master : chr "localhost" [06:01:23.516] | : . ' .. .. ..$ port : int 30777 [06:01:23.516] | : . ' .. .. ..$ connectTimeout : num 120 [06:01:23.516] | : . ' .. .. ..$ timeout : num 120 [06:01:23.516] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.516] | : . ' .. .. ..$ homogeneous : logi TRUE [06:01:23.516] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.516] | : . ' .. .. ..$ rscript_envs : NULL [06:01:23.516] | : . ' .. .. ..$ rscript_libs : NULL [06:01:23.516] | : . ' .. .. ..$ rscript_startup : NULL [06:01:23.516] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.516] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.516] | : . ' .. .. ..$ methods : logi TRUE [06:01:23.516] | : . ' .. .. ..$ socketOptions : chr "no-delay" [06:01:23.516] | : . ' .. .. ..$ useXDR : logi FALSE [06:01:23.516] | : . ' .. .. ..$ outfile : chr "/dev/null" [06:01:23.516] | : . ' .. .. ..$ renice : int NA [06:01:23.516] | : . ' .. .. ..$ rshcmd : NULL [06:01:23.516] | : . ' .. .. ..$ user : chr(0) [06:01:23.516] | : . ' .. .. ..$ revtunnel : logi FALSE [06:01:23.516] | : . ' .. .. ..$ rshlogfile : NULL [06:01:23.516] | : . ' .. .. ..$ rshopts : chr(0) [06:01:23.516] | : . ' .. .. ..$ rank : int 0 [06:01:23.516] | : . ' .. .. ..$ manual : logi FALSE [06:01:23.516] | : . ' .. .. ..$ dryrun : logi FALSE [06:01:23.516] | : . ' .. .. ..$ quiet : logi FALSE [06:01:23.516] | : . ' .. .. ..$ setup_strategy : chr "parallel" [06:01:23.516] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.516] | : . ' .. .. ..$ rshcmd_label : NULL [06:01:23.516] | : . ' .. .. ..$ rsh_call : NULL [06:01:23.516] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.516] | : . ' .. .. ..$ localMachine : logi TRUE [06:01:23.516] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.516] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.516] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.516] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.516] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.516] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.516] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.516] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.516] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.516] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.516] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.516] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.516] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.516] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.516] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.516] | : . ' .. .. ..$ arguments :List of 29 [06:01:23.516] | : . ' .. .. .. ..$ worker : chr "localhost" [06:01:23.516] | : . ' .. .. .. ..$ master : NULL [06:01:23.516] | : . ' .. .. .. ..$ port : int 30777 [06:01:23.516] | : . ' .. .. .. ..$ connectTimeout : num 120 [06:01:23.516] | : . ' .. .. .. ..$ timeout : num 120 [06:01:23.516] | : . ' .. .. .. ..$ rscript : NULL [06:01:23.516] | : . ' .. .. .. ..$ homogeneous : NULL [06:01:23.516] | : . ' .. .. .. ..$ rscript_args : NULL [06:01:23.516] | : . ' .. .. .. ..$ rscript_envs : NULL [06:01:23.516] | : . ' .. .. .. ..$ rscript_libs : NULL [06:01:23.516] | : . ' .. .. .. ..$ rscript_startup : NULL [06:01:23.516] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.516] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.516] | : . ' .. .. .. ..$ methods : logi TRUE [06:01:23.516] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.516] | : . ' .. .. .. ..$ useXDR : logi FALSE [06:01:23.516] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.516] | : . ' .. .. .. ..$ renice : int NA [06:01:23.516] | : . ' .. .. .. ..$ rshcmd : NULL [06:01:23.516] | : . ' .. .. .. ..$ user : NULL [06:01:23.516] | : . ' .. .. .. ..$ revtunnel : logi NA [06:01:23.516] | : . ' .. .. .. ..$ rshlogfile : NULL [06:01:23.516] | : . ' .. .. .. ..$ rshopts : NULL [06:01:23.516] | : . ' .. .. .. ..$ rank : int 1 [06:01:23.516] | : . ' .. .. .. ..$ manual : logi FALSE [06:01:23.516] | : . ' .. .. .. ..$ dryrun : logi FALSE [06:01:23.516] | : . ' .. .. .. ..$ quiet : logi FALSE [06:01:23.516] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.516] | : . ' .. .. .. ..$ calls : logi FALSE [06:01:23.516] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.516] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.516] | : . ' .. .. ..$ : language future:::testme("tweak") [06:01:23.516] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.516] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.516] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.516] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.516] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.516] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.516] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.516] | : . ' .. .. ..$ : language eval(ei, envir) [06:01:23.516] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.516] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.516] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.516] | : . ' .. .. ..$ : language eval(expr, p) [06:01:23.516] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.516] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.516] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.516] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.516] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.601] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... [06:01:23.601] | : . ' , Stopping existing cluster ... [06:01:23.602] | : . ' , ; No pre-existing cluster. Skipping [06:01:23.602] | : . ' , Stopping existing cluster ... done [06:01:23.602] | : . ' , Number of workers: 1 [06:01:23.612] | : . ' , Generated workers UUID [06:01:23.612] | : . ' , Workers UUID: 'e1117e17e44017bef9c415aef3586028' [06:01:23.613] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... done [06:01:23.613] | : . ' Backend: <'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [06:01:23.614] | : . makeFutureBackend() ... done [06:01:23.614] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... done [06:01:23.615] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.615] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.616] | : plan(): nbrOfWorkers() = 1 [06:01:23.616] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [06:01:23.616] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.623] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.623] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.623] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [06:01:23.624] | : . all.equal() for FutureStrategyList ... [06:01:23.624] | : . ' New stack: [06:01:23.624] | : . ' List of 1 [06:01:23.624] | : . ' $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.624] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.624] | : . ' ..- attr(*, "init")= logi TRUE [06:01:23.624] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.624] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.624] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.624] | : . ' ..- attr(*, "call")= language plan(sequential) [06:01:23.624] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.629] | : . ' Old stack: [06:01:23.630] | : . ' List of 1 [06:01:23.630] | : . ' $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.630] | : . ' session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.630] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.630] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.630] | : . ' year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.630] | : . ' version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.630] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.630] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.630] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.630] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.630] | : . ' png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.630] | : . ' sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.630] | : . ' NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.630] | : . ' long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.630] | : . ' `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.630] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.630] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.630] | : . ' ..- attr(*, "init")= chr "done" [06:01:23.630] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.630] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.630] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.630] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.630] | : . ' ..- attr(*, "tweaks")=List of 1 [06:01:23.630] | : . ' .. ..$ workers:List of 1 [06:01:23.630] | : . ' .. .. ..$ :List of 4 [06:01:23.630] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [06:01:23.630] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [06:01:23.630] | : . ' .. .. .. ..$ host : chr "localhost" [06:01:23.630] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.630] | : . ' .. .. .. ..$ rank : int 0 [06:01:23.630] | : . ' .. .. .. ..$ session_info:List of 10 [06:01:23.630] | : . ' .. .. .. .. ..$ process :List of 1 [06:01:23.630] | : . ' .. .. .. .. .. ..$ pid: int 105152 [06:01:23.630] | : . ' .. .. .. .. ..$ r :List of 16 [06:01:23.630] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.630] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.630] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [06:01:23.630] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.630] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.630] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.630] | : . ' .. .. .. .. .. ..$ major : chr "4" [06:01:23.630] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [06:01:23.630] | : . ' .. .. .. .. .. ..$ year : chr "2025" [06:01:23.630] | : . ' .. .. .. .. .. ..$ month : chr "06" [06:01:23.630] | : . ' .. .. .. .. .. ..$ day : chr "04" [06:01:23.630] | : . ' .. .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.630] | : . ' .. .. .. .. .. ..$ language : chr "R" [06:01:23.630] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.630] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.630] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [06:01:23.630] | : . ' .. .. .. .. ..$ system :List of 9 [06:01:23.630] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.630] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [06:01:23.630] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [06:01:23.630] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.630] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.630] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [06:01:23.630] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [06:01:23.630] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.630] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.630] | : . ' .. .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.630] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.630] | : . ' .. .. .. .. ..$ l10n :List of 5 [06:01:23.630] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.630] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.630] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.630] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [06:01:23.630] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.630] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.630] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.630] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.630] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.630] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.630] | : . ' .. .. .. .. ..$ pkgs : NULL [06:01:23.630] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [06:01:23.630] | : . ' .. .. .. .. ..$ worker : chr "localhost" [06:01:23.630] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.630] | : . ' .. .. .. .. ..$ master : chr "localhost" [06:01:23.630] | : . ' .. .. .. .. ..$ port : int 30777 [06:01:23.630] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.630] | : . ' .. .. .. .. ..$ timeout : num 120 [06:01:23.630] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.630] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [06:01:23.630] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.630] | : . ' .. .. .. .. ..$ rscript_envs : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ rscript_libs : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ rscript_startup : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.630] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.630] | : . ' .. .. .. .. ..$ methods : logi TRUE [06:01:23.630] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.630] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.630] | : . ' .. .. .. .. ..$ renice : int NA [06:01:23.630] | : . ' .. .. .. .. ..$ rshcmd : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ user : chr(0) [06:01:23.630] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..$ rshlogfile : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ rshopts : chr(0) [06:01:23.630] | : . ' .. .. .. .. ..$ rank : int 0 [06:01:23.630] | : . ' .. .. .. .. ..$ manual : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..$ quiet : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.630] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.630] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ rsh_call : NULL [06:01:23.630] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.630] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [06:01:23.630] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.630] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.630] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.630] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.630] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.630] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.630] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.630] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.630] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.630] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.630] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.630] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.630] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.630] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.630] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.630] | : . ' .. .. .. .. ..$ arguments :List of 29 [06:01:23.630] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [06:01:23.630] | : . ' .. .. .. .. .. ..$ master : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ port : int 30777 [06:01:23.630] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.630] | : . ' .. .. .. .. .. ..$ timeout : num 120 [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.630] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.630] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [06:01:23.630] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.630] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.630] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.630] | : . ' .. .. .. .. .. ..$ renice : int NA [06:01:23.630] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ user : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [06:01:23.630] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rshopts : NULL [06:01:23.630] | : . ' .. .. .. .. .. ..$ rank : int 1 [06:01:23.630] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [06:01:23.630] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.630] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [06:01:23.630] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.630] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [06:01:23.630] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.630] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.630] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [06:01:23.630] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.630] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.630] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.630] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.630] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(expr, p) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(expr, p) [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.630] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.630] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.630] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.630] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.630] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.630] | : . ' ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [06:01:23.630] | : . ' .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.630] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.630] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.630] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.721] | : . ' Not identical [06:01:23.722] | : . ' all.equal() for future ... [06:01:23.722] | : . ' , List of 2 [06:01:23.722] | : . ' , $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.722] | : . ' , ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.722] | : . ' , ..- attr(*, "init")= logi TRUE [06:01:23.722] | : . ' , ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.722] | : . ' , .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.722] | : . ' , ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.722] | : . ' , ..- attr(*, "call")= language plan(sequential) [06:01:23.722] | : . ' , $ current:function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [06:01:23.722] | : . ' , session_info = list(process = list(pid = 105152L), r = list(platform = "x86_64-w64-mingw32", [06:01:23.722] | : . ' , arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [06:01:23.722] | : . ' , status = "Under development (unstable)", major = "4", minor = "6.0", [06:01:23.722] | : . ' , year = "2025", month = "06", day = "04", `svn rev` = "88278", language = "R", [06:01:23.722] | : . ' , version.string = "R Under development (unstable) (2025-06-04 r88278 ucrt)", [06:01:23.722] | : . ' , nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [06:01:23.722] | : . ' , sysname = "Windows", release = "Server x64", version = "build 20348", [06:01:23.722] | : . ' , nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [06:01:23.722] | : . ' , effective_user = "CRAN", udomain = "CRANWIN3"), capabilities = c(jpeg = TRUE, [06:01:23.722] | : . ' , png = TRUE, tiff = TRUE, tcltk = TRUE, X11 = FALSE, aqua = FALSE, `http/ftp` = TRUE, [06:01:23.722] | : . ' , sockets = TRUE, libxml = FALSE, fifo = TRUE, cledit = FALSE, iconv = TRUE, [06:01:23.722] | : . ' , NLS = TRUE, Rprof = TRUE, profmem = TRUE, cairo = TRUE, ICU = TRUE, [06:01:23.722] | : . ' , long.double = TRUE, libcurl = TRUE), l10n = list(MBCS = TRUE, `UTF-8` = TRUE, [06:01:23.722] | : . ' , `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [06:01:23.722] | : . ' , extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [06:01:23.722] | : . ' , ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [06:01:23.722] | : . ' , ..- attr(*, "init")= chr "done" [06:01:23.722] | : . ' , ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.722] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.722] | : . ' , .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.722] | : . ' , ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.722] | : . ' , ..- attr(*, "tweaks")=List of 1 [06:01:23.722] | : . ' , .. ..$ workers:List of 1 [06:01:23.722] | : . ' , .. .. ..$ :List of 4 [06:01:23.722] | : . ' , .. .. .. ..$ con : 'sockconn' int 4 [06:01:23.722] | : . ' , .. .. .. .. ..- attr(*, "conn_id")= [06:01:23.722] | : . ' , .. .. .. ..$ host : chr "localhost" [06:01:23.722] | : . ' , .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.722] | : . ' , .. .. .. ..$ rank : int 0 [06:01:23.722] | : . ' , .. .. .. ..$ session_info:List of 10 [06:01:23.722] | : . ' , .. .. .. .. ..$ process :List of 1 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ pid: int 105152 [06:01:23.722] | : . ' , .. .. .. .. ..$ r :List of 16 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ arch : chr "x86_64" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ os : chr "mingw32" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ crt : chr "ucrt" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ status : chr "Under development (unstable)" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ major : chr "4" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ minor : chr "6.0" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ year : chr "2025" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ month : chr "06" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ day : chr "04" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ svn rev : chr "88278" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ language : chr "R" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-06-04 r88278 ucrt)" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ os.type : chr "windows" [06:01:23.722] | : . ' , .. .. .. .. ..$ system :List of 9 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ sysname : chr "Windows" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ release : chr "Server x64" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ version : chr "build 20348" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ machine : chr "x86-64" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ login : chr "CRAN" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ user : chr "CRAN" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ effective_user: chr "CRAN" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [06:01:23.722] | : . ' , .. .. .. .. ..$ capabilities : Named logi [1:19] TRUE TRUE TRUE TRUE FALSE FALSE ... [06:01:23.722] | : . ' , .. .. .. .. .. ..- attr(*, "names")= chr [1:19] "jpeg" "png" "tiff" "tcltk" ... [06:01:23.722] | : . ' , .. .. .. .. ..$ l10n :List of 5 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ MBCS : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ UTF-8 : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ Latin-1 : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ codepage : int 65001 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ system.codepage: int 65001 [06:01:23.722] | : . ' , .. .. .. .. ..$ extSoftVersion: Named chr [1:10] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [06:01:23.722] | : . ' , .. .. .. .. .. ..- attr(*, "names")= chr [1:10] "zlib" "bzlib" "xz" "libdeflate" ... [06:01:23.722] | : . ' , .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [06:01:23.722] | : . ' , .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_06_05_05_55_16_20588\\RtmpqMjF5C" [06:01:23.722] | : . ' , .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [06:01:23.722] | : . ' , .. .. .. .. ..$ pkgs : NULL [06:01:23.722] | : . ' , .. .. .. ..- attr(*, "options")=List of 35 [06:01:23.722] | : . ' , .. .. .. .. ..$ worker : chr "localhost" [06:01:23.722] | : . ' , .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [06:01:23.722] | : . ' , .. .. .. .. ..$ master : chr "localhost" [06:01:23.722] | : . ' , .. .. .. .. ..$ port : int 30777 [06:01:23.722] | : . ' , .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.722] | : . ' , .. .. .. .. ..$ timeout : num 120 [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [06:01:23.722] | : . ' , .. .. .. .. ..$ homogeneous : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:135244:CRANWIN3:CRA"| __truncated__ [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript_envs : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript_libs : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript_startup : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [06:01:23.722] | : . ' , .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.722] | : . ' , .. .. .. .. ..$ methods : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.722] | : . ' , .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.722] | : . ' , .. .. .. .. ..$ renice : int NA [06:01:23.722] | : . ' , .. .. .. .. ..$ rshcmd : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ user : chr(0) [06:01:23.722] | : . ' , .. .. .. .. ..$ revtunnel : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..$ rshlogfile : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ rshopts : chr(0) [06:01:23.722] | : . ' , .. .. .. .. ..$ rank : int 0 [06:01:23.722] | : . ' , .. .. .. .. ..$ manual : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..$ quiet : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.722] | : . ' , .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.722] | : . ' , .. .. .. .. ..$ rshcmd_label : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ rsh_call : NULL [06:01:23.722] | : . ' , .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [06:01:23.722] | : . ' , .. .. .. .. ..$ localMachine : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [06:01:23.722] | : . ' , master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [06:01:23.722] | : . ' , 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [06:01:23.722] | : . ' , 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [06:01:23.722] | : . ' , rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [06:01:23.722] | : . ' , "cmd", "sh", "none"), default_packages = c("datasets", "utils", [06:01:23.722] | : . ' , "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [06:01:23.722] | : . ' , socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [06:01:23.722] | : . ' , "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [06:01:23.722] | : . ' , FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [06:01:23.722] | : . ' , NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [06:01:23.722] | : . ' , NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [06:01:23.722] | : . ' , setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [06:01:23.722] | : . ' , "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [06:01:23.722] | : . ' , FALSE), action = c("launch", "options"), verbose = FALSE) [06:01:23.722] | : . ' , .. .. .. .. ..$ arguments :List of 29 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ worker : chr "localhost" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ master : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ port : int 30777 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ connectTimeout : num 120 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ timeout : num 120 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ homogeneous : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript_args : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript_envs : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript_libs : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript_startup : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rscript_sh : chr "auto" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [06:01:23.722] | : . ' , .. .. .. .. .. ..$ methods : logi TRUE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ socketOptions : chr "no-delay" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ useXDR : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ outfile : chr "/dev/null" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ renice : int NA [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rshcmd : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ user : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ revtunnel : logi NA [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rshlogfile : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rshopts : NULL [06:01:23.722] | : . ' , .. .. .. .. .. ..$ rank : int 1 [06:01:23.722] | : . ' , .. .. .. .. .. ..$ manual : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ dryrun : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ quiet : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. .. ..$ setup_strategy : chr "parallel" [06:01:23.722] | : . ' , .. .. .. .. .. ..$ calls : logi FALSE [06:01:23.722] | : . ' , .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [06:01:23.722] | : . ' , .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [06:01:23.722] | : . ' , .. .. .. .. ..$ : language future:::testme("tweak") [06:01:23.722] | : . ' , .. .. .. .. ..$ : language source(file.path(path, "run.R")) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.722] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [06:01:23.722] | : . ' , .. .. .. .. ..$ : language makeClusterPSOCK(1L) [06:01:23.722] | : . ' , .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [06:01:23.722] | : . ' , .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [06:01:23.722] | : . ' , ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [06:01:23.722] | : . ' , ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [06:01:23.722] | : . ' , .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [06:01:23.722] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [06:01:23.722] | : . ' , .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [06:01:23.826] | : . ' , Formals differ [06:01:23.827] | : . ' all.equal() for future ... done [06:01:23.827] | : . ' Future strategies differ at level 1 [06:01:23.827] | : . all.equal() for FutureStrategyList ... done [06:01:23.828] | : . plan(): Setting new future backend stack: [06:01:23.828] | : . List of future strategies: [06:01:23.828] | : . 1. sequential: [06:01:23.828] | : . - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:23.828] | : . - tweaked: FALSE [06:01:23.828] | : . - call: plan(sequential) [06:01:23.829] | : . List of 1 [06:01:23.829] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.829] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.829] | : . ..- attr(*, "init")= logi TRUE [06:01:23.829] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.829] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.829] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.829] | : . ..- attr(*, "call")= language plan(sequential) [06:01:23.829] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.835] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... [06:01:23.836] | : . ' plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.836] | : . ' , Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [06:01:23.836] | : . ' plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.837] | : . ' stopWorkers() for ClusterFutureBackend ... [06:01:23.837] | : . ' , Interrupt active futures ... [06:01:23.839] | : . ' , ; Number of futures: 0 [06:01:23.839] | : . ' , Interrupt active futures ... done [06:01:23.840] | : . ' , Clear future registry ... [06:01:23.841] | : . ' , Clear future registry ... done [06:01:23.841] | : . ' , Stop cluster workers ... [06:01:23.841] | : . ' , ; Stopping existing cluster ... [06:01:23.842] | : . ' , ; ` No pre-existing cluster. Skipping [06:01:23.842] | : . ' , ; Stopping existing cluster ... done [06:01:23.843] | : . ' , Stop cluster workers ... done [06:01:23.843] | : . ' stopWorkers() for ClusterFutureBackend ... done [06:01:23.843] | : . ' Legacy shutdown of cluster workers ... [06:01:23.844] | : . ' , Stopping existing cluster ... [06:01:23.844] | : . ' , ; No pre-existing cluster. Skipping [06:01:23.844] | : . ' , Stopping existing cluster ... done [06:01:23.845] | : . ' Legacy shutdown of cluster workers ... done [06:01:23.845] | : . plan(): plan_cleanup('tweaked', 'cluster', 'multiprocess', 'future', 'function', cleanup = NA) ... done [06:01:23.845] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [06:01:23.846] | : . ' function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.846] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.846] | : . ' - attr(*, "init")= logi TRUE [06:01:23.846] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.846] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.846] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.846] | : . ' - attr(*, "call")= language plan(sequential) [06:01:23.850] | : . ' init: TRUE [06:01:23.851] | : . ' makeFutureBackend() ... [06:01:23.851] | : . ' , Backend function: <'NULL'> [06:01:23.851] | : . ' , Evaluator tweak arguments: [n=0] [06:01:23.852] | : . ' , list() [06:01:23.852] | : . ' , Evaluator formal arguments: [n=2] [06:01:23.853] | : . ' , list() [06:01:23.853] | : . ' , Backend factory arguments: [n=2] [06:01:23.854] | : . ' , Dotted pair list of 2 [06:01:23.854] | : . ' , $ gc : logi FALSE [06:01:23.854] | : . ' , $ earlySignal: logi FALSE [06:01:23.856] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:23.857] | : . ' makeFutureBackend() ... done [06:01:23.857] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:23.857] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.858] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.858] | : . plan(): nbrOfWorkers() = 1 [06:01:23.858] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [06:01:23.858] | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.859] 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) [06:01:23.860] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.860] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [06:01:23.861] | : all.equal() for FutureStrategyList ... [06:01:23.861] | : . New stack: [06:01:23.861] | : . List of 1 [06:01:23.861] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.861] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.861] | : . ..- attr(*, "init")= logi TRUE [06:01:23.861] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.861] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.861] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.861] | : . ..- attr(*, "call")= language plan(sequential) [06:01:23.861] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.868] | : . Old stack: [06:01:23.868] | : . List of 1 [06:01:23.868] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.868] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.868] | : . ..- attr(*, "init")= chr "done" [06:01:23.868] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.868] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.868] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.868] | : . ..- attr(*, "call")= language plan(sequential) [06:01:23.868] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.868] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.868] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.868] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.876] | : . Not identical [06:01:23.876] | : . all.equal() for future ... [06:01:23.877] | : . ' List of 2 [06:01:23.877] | : . ' $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.877] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.877] | : . ' ..- attr(*, "init")= logi TRUE [06:01:23.877] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.877] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.877] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.877] | : . ' ..- attr(*, "call")= language plan(sequential) [06:01:23.877] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.877] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.877] | : . ' ..- attr(*, "init")= chr "done" [06:01:23.877] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.877] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.877] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.877] | : . ' ..- attr(*, "call")= language plan(sequential) [06:01:23.877] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.877] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.877] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.891] | : . all.equal() for future ... done [06:01:23.891] | : all.equal() for FutureStrategyList ... done [06:01:23.892] | : plan(): Skip setting new future backend stack because it is the same as the current one: [06:01:23.892] | : List of future strategies: [06:01:23.892] | : 1. sequential: [06:01:23.892] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:23.892] | : - tweaked: FALSE [06:01:23.892] | : - call: plan(sequential) [06:01:23.893] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [06:01:23.893] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [06:01:23.895] future(..., label = NULL) ... [06:01:23.896] | lazy: FALSE [06:01:23.896] | stdout: TRUE [06:01:23.896] | conditions: [n=1] 'condition' [06:01:23.896] | gc: FALSE [06:01:23.897] | earlySignal: FALSE [06:01:23.898] | getGlobalsAndPackages() ... [06:01:23.898] | : Searching for globals ... [06:01:23.916] | : . globals found: [2] '{', '<-' [06:01:23.916] | : Searching for globals ... done [06:01:23.917] | : Resolving globals: FALSE [06:01:23.917] | : Search for packages associated with the globals ... [06:01:23.917] | : . Packages associated with globals: [1] 'base' [06:01:23.918] | : . Packages: [1] 'base' [06:01:23.919] | : Search for packages associated with the globals ... done [06:01:23.919] | : Packages after dropping 'base': [0] [06:01:23.919] | : globals: [0] [06:01:23.919] | : packages: [0] [06:01:23.919] | getGlobalsAndPackages() ... done [06:01:23.920] | run() for 'Future' () ... [06:01:23.920] | : state: 'created' [06:01:23.921] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.921] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.921] | : Using SequentialFutureBackend ... [06:01:23.921] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [06:01:23.922] | : . Launching futures ... [06:01:23.922] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [06:01:23.923] | : . ' , getFutureData() ... [06:01:23.923] | : . ' , ; getFutureCore() ... [06:01:23.923] | : . ' , ; ` Packages needed by the future expression (n = 0): [06:01:23.924] | : . ' , ; getFutureCore() ... done [06:01:23.925] | : . ' , ; getFutureCapture() ... [06:01:23.925] | : . ' , ; getFutureCapture() ... done [06:01:23.926] | : . ' , ; getFutureContext() ... [06:01:23.926] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.926] | : . ' , ; ` | Getting stack without first backend: [n=0] [06:01:23.927] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.927] | : . ' , ; ` Packages needed by future backend (n = 0): [06:01:23.927] | : . ' , ; getFutureContext() ... done [06:01:23.928] | : . ' , getFutureData() ... done [06:01:23.933] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:23.933] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [06:01:23.934] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:23.934] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:23.935] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:23.935] | : . ' , ; ` all.equal() for FutureStrategyList ... [06:01:23.935] | : . ' , ; ` | New stack: [06:01:23.936] | : . ' , ; ` | List of 1 [06:01:23.936] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.936] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.936] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [06:01:23.936] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.936] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.936] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.936] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:23.936] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.941] | : . ' , ; ` | Old stack: [06:01:23.942] | : . ' , ; ` | List of 1 [06:01:23.942] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.942] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.942] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:23.942] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.942] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.942] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.942] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [06:01:23.942] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.942] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.942] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.942] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.948] | : . ' , ; ` | Not identical [06:01:23.949] | : . ' , ; ` | all.equal() for future ... [06:01:23.949] | : . ' , ; ` | : List of 2 [06:01:23.949] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.949] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:23.949] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.949] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [06:01:23.949] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.949] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.949] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.959] | : . ' , ; ` | all.equal() for future ... done [06:01:23.959] | : . ' , ; ` all.equal() for FutureStrategyList ... done [06:01:23.960] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [06:01:23.960] | : . ' , ; ` List of future strategies: [06:01:23.960] | : . ' , ; ` 1. sequential: [06:01:23.960] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:23.960] | : . ' , ; ` - tweaked: FALSE [06:01:23.960] | : . ' , ; ` - call: plan(sequential) [06:01:23.961] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:23.961] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:23.967] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:23.967] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:23.968] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:23.968] | : . ' , ; ` | all.equal() for FutureStrategyList ... [06:01:23.968] | : . ' , ; ` | : New stack: [06:01:23.968] | : . ' , ; ` | : List of 1 [06:01:23.968] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.968] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [06:01:23.968] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.968] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.968] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.968] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.973] | : . ' , ; ` | : Old stack: [06:01:23.974] | : . ' , ; ` | : List of 1 [06:01:23.974] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.974] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [06:01:23.974] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:23.974] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:23.974] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:23.974] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:23.978] | : . ' , ; ` | : Identical [06:01:23.978] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [06:01:23.978] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [06:01:23.978] | : . ' , ; ` | List of future strategies: [06:01:23.978] | : . ' , ; ` | 1. sequential: [06:01:23.978] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:23.978] | : . ' , ; ` | - tweaked: FALSE [06:01:23.978] | : . ' , ; ` | - call: plan(sequential) [06:01:23.979] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:23.979] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:23.980] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:23.984] | : . ' , SequentialFuture started (and completed) [06:01:23.985] | : . ' , signalConditions() ... [06:01:23.985] | : . ' , ; include = 'immediateCondition' [06:01:23.985] | : . ' , ; exclude = [06:01:23.985] | : . ' , ; resignal = FALSE [06:01:23.985] | : . ' , ; Number of conditions: 6 [06:01:23.986] | : . ' , ; int 6 [06:01:23.987] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.988] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.988] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.988] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.989] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.989] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.989] | : . ' , signalConditions() ... done [06:01:23.990] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [06:01:23.990] | : . Launching futures ... done [06:01:23.991] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [06:01:23.991] | : Using SequentialFutureBackend ... done [06:01:23.991] | run() for 'Future' () ... done [06:01:23.992] future(..., label = NULL) ... done > print(x) [06:01:23.993] value() for SequentialFuture () ... [06:01:23.993] | signalConditions() ... [06:01:23.994] | : include = 'immediateCondition' [06:01:23.994] | : exclude = [06:01:23.994] | : resignal = FALSE [06:01:23.995] | : Number of conditions: 6 [06:01:23.995] | : int 6 [06:01:23.996] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.996] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.996] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.997] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.997] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.997] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:23.998] | signalConditions() ... done [06:01:23.998] | relay stdout ... [06:01:23.998] | relay stdout ... done [06:01:23.999] | check for misuse ... [06:01:23.999] | check for misuse ... done [06:01:23.999] | relay conditions ... [06:01:23.999] | : Future state: 'finished' [06:01:24.000] | : signalConditions() ... [06:01:24.000] | : . include = 'condition' [06:01:24.000] | : . exclude = 'immediateCondition' [06:01:24.001] | : . resignal = TRUE [06:01:24.001] | : . Number of conditions: 6 [06:01:24.001] | : . int 6 [06:01:24.002] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.002] | : . Condition #1: 'simpleMessage', 'message', 'condition' [06:01:23.930] | : . ' , attachPackages() ... [06:01:24.003] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.003] | : . Condition #2: 'simpleMessage', 'message', 'condition' [06:01:23.931] | : . ' , ; packages: [n=1] 'future' [06:01:24.003] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.004] | : . Condition #3: 'simpleMessage', 'message', 'condition' [06:01:23.931] | : . ' , attachPackages() ... done [06:01:24.004] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.004] | : . Condition #4: 'simpleMessage', 'message', 'condition' [06:01:23.932] | : . ' , attachPackages() ... [06:01:24.005] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.005] | : . Condition #5: 'simpleMessage', 'message', 'condition' [06:01:23.932] | : . ' , ; packages: [n=0] [06:01:24.005] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.006] | : . Condition #6: 'simpleMessage', 'message', 'condition' [06:01:23.932] | : . ' , attachPackages() ... done [06:01:24.006] | : signalConditions() ... done [06:01:24.006] | relay conditions ... done [06:01:24.007] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > plan(sequential, abc = FALSE) [06:01:24.007] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [06:01:24.009] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [06:01:24.009] | : all.equal() for FutureStrategyList ... [06:01:24.009] | : . New stack: [06:01:24.009] | : . List of 1 [06:01:24.009] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.009] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.009] | : . ..- attr(*, "init")= logi TRUE [06:01:24.009] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.009] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.009] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.009] | : . ..- attr(*, "tweaks")=List of 1 [06:01:24.009] | : . .. ..$ abc: logi FALSE [06:01:24.009] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.009] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.022] | : . Old stack: [06:01:24.023] | : . List of 1 [06:01:24.023] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.023] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.023] | : . ..- attr(*, "init")= chr "done" [06:01:24.023] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.023] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.023] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.023] | : . ..- attr(*, "call")= language plan(sequential) [06:01:24.023] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.023] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.023] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.023] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.029] | : . Not identical [06:01:24.029] | : . all.equal() for future ... [06:01:24.030] | : . ' List of 2 [06:01:24.030] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.030] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.030] | : . ' ..- attr(*, "init")= logi TRUE [06:01:24.030] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.030] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.030] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.030] | : . ' ..- attr(*, "tweaks")=List of 1 [06:01:24.030] | : . ' .. ..$ abc: logi FALSE [06:01:24.030] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.030] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.030] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.030] | : . ' ..- attr(*, "init")= chr "done" [06:01:24.030] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.030] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.030] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.030] | : . ' ..- attr(*, "call")= language plan(sequential) [06:01:24.030] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.030] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.030] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.041] | : . ' Formals differ [06:01:24.041] | : . all.equal() for future ... done [06:01:24.041] | : . Future strategies differ at level 1 [06:01:24.042] | : all.equal() for FutureStrategyList ... done [06:01:24.042] | : plan(): Setting new future backend stack: [06:01:24.042] | : List of future strategies: [06:01:24.042] | : 1. sequential: [06:01:24.042] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.042] | : - tweaked: TRUE [06:01:24.042] | : - call: plan(sequential, abc = FALSE) [06:01:24.043] | : List of 1 [06:01:24.043] | : $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.043] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.043] | : ..- attr(*, "init")= logi TRUE [06:01:24.043] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.043] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.043] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.043] | : ..- attr(*, "tweaks")=List of 1 [06:01:24.043] | : .. ..$ abc: logi FALSE [06:01:24.043] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.043] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.049] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [06:01:24.050] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.050] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.050] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.051] | : . Legacy shutdown of cluster workers ... [06:01:24.051] | : . ' Stopping existing cluster ... [06:01:24.051] | : . ' , No pre-existing cluster. Skipping [06:01:24.052] | : . ' Stopping existing cluster ... done [06:01:24.052] | : . Legacy shutdown of cluster workers ... done [06:01:24.052] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [06:01:24.053] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.053] | : . function (..., abc = FALSE, envir = parent.frame()) [06:01:24.053] | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.053] | : . - attr(*, "init")= logi TRUE [06:01:24.053] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.053] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.053] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.053] | : . - attr(*, "tweaks")=List of 1 [06:01:24.053] | : . ..$ abc: logi FALSE [06:01:24.053] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.058] | : . init: TRUE [06:01:24.058] | : . makeFutureBackend() ... [06:01:24.059] | : . ' Backend function: <'NULL'> [06:01:24.059] | : . ' Evaluator tweak arguments: [n=1] [06:01:24.059] | : . ' List of 1 [06:01:24.059] | : . ' $ abc: logi FALSE [06:01:24.060] | : . ' Evaluator formal arguments: [n=1] [06:01:24.061] | : . ' List of 1 [06:01:24.061] | : . ' $ abc: logi FALSE [06:01:24.062] | : . ' Backend factory arguments: [n=1] [06:01:24.062] | : . ' Dotted pair list of 1 [06:01:24.062] | : . ' $ abc: logi FALSE [06:01:24.064] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.064] | : . makeFutureBackend() ... done [06:01:24.064] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.065] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.065] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.065] | : plan(): nbrOfWorkers() = 1 [06:01:24.066] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [06:01:24.066] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [06:01:24.067] future(..., label = NULL) ... [06:01:24.067] | lazy: FALSE [06:01:24.067] | stdout: TRUE [06:01:24.067] | conditions: [n=1] 'condition' [06:01:24.068] | gc: FALSE [06:01:24.068] | earlySignal: FALSE [06:01:24.068] | getGlobalsAndPackages() ... [06:01:24.069] | : Searching for globals ... [06:01:24.082] | : . globals found: [2] '{', '<-' [06:01:24.083] | : Searching for globals ... done [06:01:24.083] | : Resolving globals: FALSE [06:01:24.083] | : Search for packages associated with the globals ... [06:01:24.084] | : . Packages associated with globals: [1] 'base' [06:01:24.084] | : . Packages: [1] 'base' [06:01:24.084] | : Search for packages associated with the globals ... done [06:01:24.085] | : Packages after dropping 'base': [0] [06:01:24.085] | : globals: [0] [06:01:24.085] | : packages: [0] [06:01:24.086] | getGlobalsAndPackages() ... done [06:01:24.086] | run() for 'Future' () ... [06:01:24.086] | : state: 'created' [06:01:24.087] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.087] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.087] | : Using SequentialFutureBackend ... [06:01:24.088] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [06:01:24.088] | : . Launching futures ... [06:01:24.088] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [06:01:24.088] | : . ' , getFutureData() ... [06:01:24.089] | : . ' , ; getFutureCore() ... [06:01:24.089] | : . ' , ; ` Packages needed by the future expression (n = 0): [06:01:24.089] | : . ' , ; getFutureCore() ... done [06:01:24.090] | : . ' , ; getFutureCapture() ... [06:01:24.090] | : . ' , ; getFutureCapture() ... done [06:01:24.090] | : . ' , ; getFutureContext() ... [06:01:24.091] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.091] | : . ' , ; ` | Getting stack without first backend: [n=0] [06:01:24.091] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.091] | : . ' , ; ` Packages needed by future backend (n = 0): [06:01:24.092] | : . ' , ; getFutureContext() ... done [06:01:24.092] | : . ' , getFutureData() ... done [06:01:24.095] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.096] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.096] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.096] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.097] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.097] | : . ' , ; ` all.equal() for FutureStrategyList ... [06:01:24.098] | : . ' , ; ` | New stack: [06:01:24.098] | : . ' , ; ` | List of 1 [06:01:24.098] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.098] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.098] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [06:01:24.098] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.098] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.098] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.098] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.098] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.103] | : . ' , ; ` | Old stack: [06:01:24.104] | : . ' , ; ` | List of 1 [06:01:24.104] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.104] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.104] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:24.104] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.104] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.104] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.104] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [06:01:24.104] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.104] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.104] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.104] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.104] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.104] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.111] | : . ' , ; ` | Not identical [06:01:24.112] | : . ' , ; ` | all.equal() for future ... [06:01:24.112] | : . ' , ; ` | : List of 2 [06:01:24.112] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.112] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.112] | : . ' , ; ` | : $ current:function (..., abc = FALSE, envir = parent.frame()) [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.112] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [06:01:24.112] | : . ' , ; ` | : .. ..$ abc: logi FALSE [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.112] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.112] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.112] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.123] | : . ' , ; ` | : Formals differ [06:01:24.124] | : . ' , ; ` | all.equal() for future ... done [06:01:24.124] | : . ' , ; ` | Future strategies differ at level 1 [06:01:24.124] | : . ' , ; ` all.equal() for FutureStrategyList ... done [06:01:24.125] | : . ' , ; ` plan(): Setting new future backend stack: [06:01:24.125] | : . ' , ; ` List of future strategies: [06:01:24.125] | : . ' , ; ` 1. sequential: [06:01:24.125] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:24.125] | : . ' , ; ` - tweaked: FALSE [06:01:24.125] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.126] | : . ' , ; ` List of 1 [06:01:24.126] | : . ' , ; ` $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.126] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.126] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [06:01:24.126] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.126] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.126] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.126] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.126] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.134] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.134] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.135] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.135] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.135] | : . ' , ; ` | : function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.135] | : . ' , ; ` | : - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.135] | : . ' , ; ` | : - attr(*, "init")= logi TRUE [06:01:24.135] | : . ' , ; ` | : - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.135] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.135] | : . ' , ; ` | : - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.135] | : . ' , ; ` | : - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.139] | : . ' , ; ` | : init: TRUE [06:01:24.140] | : . ' , ; ` | : makeFutureBackend() ... [06:01:24.140] | : . ' , ; ` | : . Backend function: <'NULL'> [06:01:24.140] | : . ' , ; ` | : . Evaluator tweak arguments: [n=0] [06:01:24.140] | : . ' , ; ` | : . list() [06:01:24.141] | : . ' , ; ` | : . Evaluator formal arguments: [n=2] [06:01:24.141] | : . ' , ; ` | : . list() [06:01:24.142] | : . ' , ; ` | : . Backend factory arguments: [n=2] [06:01:24.142] | : . ' , ; ` | : . Dotted pair list of 2 [06:01:24.142] | : . ' , ; ` | : . $ gc : logi FALSE [06:01:24.142] | : . ' , ; ` | : . $ earlySignal: logi FALSE [06:01:24.144] | : . ' , ; ` | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.145] | : . ' , ; ` | : makeFutureBackend() ... done [06:01:24.145] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.145] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.145] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [06:01:24.146] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.146] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.150] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.150] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.150] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.151] | : . ' , ; ` | all.equal() for FutureStrategyList ... [06:01:24.151] | : . ' , ; ` | : New stack: [06:01:24.151] | : . ' , ; ` | : List of 1 [06:01:24.151] | : . ' , ; ` | : $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.151] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [06:01:24.151] | : . ' , ; ` | : .. ..$ abc: logi FALSE [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.151] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.151] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.151] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.151] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.159] | : . ' , ; ` | : Old stack: [06:01:24.159] | : . ' , ; ` | : List of 1 [06:01:24.159] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.159] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.159] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.159] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.159] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.159] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.166] | : . ' , ; ` | : Not identical [06:01:24.166] | : . ' , ; ` | : all.equal() for future ... [06:01:24.167] | : . ' , ; ` | : . List of 2 [06:01:24.167] | : . ' , ; ` | : . $ target :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.167] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 1 [06:01:24.167] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.167] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.167] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.167] | : . ' , ; ` | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.167] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.167] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.167] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.167] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.179] | : . ' , ; ` | : . Formals differ [06:01:24.180] | : . ' , ; ` | : all.equal() for future ... done [06:01:24.180] | : . ' , ; ` | : Future strategies differ at level 1 [06:01:24.180] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [06:01:24.180] | : . ' , ; ` | plan(): Setting new future backend stack: [06:01:24.181] | : . ' , ; ` | List of future strategies: [06:01:24.181] | : . ' , ; ` | 1. sequential: [06:01:24.181] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.181] | : . ' , ; ` | - tweaked: TRUE [06:01:24.181] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [06:01:24.182] | : . ' , ; ` | List of 1 [06:01:24.182] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.182] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.182] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:24.182] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.182] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.182] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.182] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [06:01:24.182] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.182] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.182] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.182] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.182] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.182] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.189] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.190] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.190] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.190] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.191] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [06:01:24.191] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.191] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.191] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.192] | : . ' , SequentialFuture started (and completed) [06:01:24.193] | : . ' , signalConditions() ... [06:01:24.193] | : . ' , ; include = 'immediateCondition' [06:01:24.193] | : . ' , ; exclude = [06:01:24.193] | : . ' , ; resignal = FALSE [06:01:24.194] | : . ' , ; Number of conditions: 6 [06:01:24.194] | : . ' , ; int 6 [06:01:24.195] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.195] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.195] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.196] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.196] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.196] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.196] | : . ' , signalConditions() ... done [06:01:24.197] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [06:01:24.197] | : . Launching futures ... done [06:01:24.197] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [06:01:24.198] | : Using SequentialFutureBackend ... done [06:01:24.198] | run() for 'Future' () ... done [06:01:24.198] future(..., label = NULL) ... done > print(x) [06:01:24.199] value() for SequentialFuture () ... [06:01:24.199] | signalConditions() ... [06:01:24.199] | : include = 'immediateCondition' [06:01:24.199] | : exclude = [06:01:24.200] | : resignal = FALSE [06:01:24.200] | : Number of conditions: 6 [06:01:24.200] | : int 6 [06:01:24.201] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.201] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.202] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.202] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.202] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.202] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.203] | signalConditions() ... done [06:01:24.203] | relay stdout ... [06:01:24.203] | relay stdout ... done [06:01:24.203] | check for misuse ... [06:01:24.204] | check for misuse ... done [06:01:24.204] | relay conditions ... [06:01:24.204] | : Future state: 'finished' [06:01:24.205] | : signalConditions() ... [06:01:24.205] | : . include = 'condition' [06:01:24.205] | : . exclude = 'immediateCondition' [06:01:24.205] | : . resignal = TRUE [06:01:24.206] | : . Number of conditions: 6 [06:01:24.206] | : . int 6 [06:01:24.207] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.207] | : . Condition #1: 'simpleMessage', 'message', 'condition' [06:01:24.093] | : . ' , attachPackages() ... [06:01:24.208] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.208] | : . Condition #2: 'simpleMessage', 'message', 'condition' [06:01:24.093] | : . ' , ; packages: [n=1] 'future' [06:01:24.208] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.208] | : . Condition #3: 'simpleMessage', 'message', 'condition' [06:01:24.093] | : . ' , attachPackages() ... done [06:01:24.209] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.209] | : . Condition #4: 'simpleMessage', 'message', 'condition' [06:01:24.094] | : . ' , attachPackages() ... [06:01:24.209] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.210] | : . Condition #5: 'simpleMessage', 'message', 'condition' [06:01:24.094] | : . ' , ; packages: [n=0] [06:01:24.210] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.210] | : . Condition #6: 'simpleMessage', 'message', 'condition' [06:01:24.094] | : . ' , attachPackages() ... done [06:01:24.211] | : signalConditions() ... done [06:01:24.211] | relay conditions ... done [06:01:24.211] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > x %<-% { + a <- 2 + a + } %tweak% list(abc = TRUE) [06:01:24.212] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.212] | Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.213] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.214] plan(, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... [06:01:24.214] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... [06:01:24.214] | : all.equal() for FutureStrategyList ... [06:01:24.214] | : . New stack: [06:01:24.215] | : . List of 1 [06:01:24.215] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.215] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.215] | : . ..- attr(*, "init")= logi TRUE [06:01:24.215] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.215] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.215] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.215] | : . ..- attr(*, "tweaks")=List of 2 [06:01:24.215] | : . .. ..$ abc: logi FALSE [06:01:24.215] | : . .. ..$ abc: logi TRUE [06:01:24.215] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.215] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.222] | : . Old stack: [06:01:24.222] | : . List of 1 [06:01:24.222] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.222] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.222] | : . ..- attr(*, "init")= chr "done" [06:01:24.222] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.222] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.222] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.222] | : . ..- attr(*, "tweaks")=List of 1 [06:01:24.222] | : . .. ..$ abc: logi FALSE [06:01:24.222] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.222] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.222] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.222] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.222] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.230] | : . Not identical [06:01:24.230] | : . all.equal() for future ... [06:01:24.230] | : . ' List of 2 [06:01:24.230] | : . ' $ target :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.230] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.230] | : . ' ..- attr(*, "init")= logi TRUE [06:01:24.230] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.230] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.230] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.230] | : . ' ..- attr(*, "tweaks")=List of 2 [06:01:24.230] | : . ' .. ..$ abc: logi FALSE [06:01:24.230] | : . ' .. ..$ abc: logi TRUE [06:01:24.230] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.230] | : . ' $ current:function (..., abc = FALSE, envir = parent.frame()) [06:01:24.230] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.230] | : . ' ..- attr(*, "init")= chr "done" [06:01:24.230] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.230] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.230] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.230] | : . ' ..- attr(*, "tweaks")=List of 1 [06:01:24.230] | : . ' .. ..$ abc: logi FALSE [06:01:24.230] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.230] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.230] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.230] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.243] | : . ' Formals differ [06:01:24.243] | : . all.equal() for future ... done [06:01:24.244] | : . Future strategies differ at level 1 [06:01:24.244] | : all.equal() for FutureStrategyList ... done [06:01:24.244] | : plan(): Setting new future backend stack: [06:01:24.245] | : List of future strategies: [06:01:24.245] | : 1. sequential: [06:01:24.245] | : - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [06:01:24.245] | : - tweaked: TRUE [06:01:24.245] | : - call: plan(sequential, abc = FALSE) [06:01:24.246] | : List of 1 [06:01:24.246] | : $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.246] | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.246] | : ..- attr(*, "init")= logi TRUE [06:01:24.246] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.246] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.246] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.246] | : ..- attr(*, "tweaks")=List of 2 [06:01:24.246] | : .. ..$ abc: logi FALSE [06:01:24.246] | : .. ..$ abc: logi TRUE [06:01:24.246] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.246] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.255] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.256] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.256] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.256] | : . function (..., abc = TRUE, envir = parent.frame()) [06:01:24.256] | : . - attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.256] | : . - attr(*, "init")= logi TRUE [06:01:24.256] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.256] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.256] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.256] | : . - attr(*, "tweaks")=List of 2 [06:01:24.256] | : . ..$ abc: logi FALSE [06:01:24.256] | : . ..$ abc: logi TRUE [06:01:24.256] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.262] | : . init: TRUE [06:01:24.262] | : . makeFutureBackend() ... [06:01:24.263] | : . ' Backend function: <'NULL'> [06:01:24.263] | : . ' Evaluator tweak arguments: [n=2] [06:01:24.263] | : . ' List of 2 [06:01:24.263] | : . ' $ abc: logi FALSE [06:01:24.263] | : . ' $ abc: logi TRUE [06:01:24.265] | : . ' Evaluator formal arguments: [n=1] [06:01:24.265] | : . ' List of 2 [06:01:24.265] | : . ' $ abc: logi FALSE [06:01:24.265] | : . ' $ abc: logi TRUE [06:01:24.267] | : . ' Backend factory arguments: [n=1] [06:01:24.267] | : . ' Dotted pair list of 1 [06:01:24.267] | : . ' $ abc: logi TRUE [06:01:24.269] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.269] | : . makeFutureBackend() ... done [06:01:24.269] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.270] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.270] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.270] | : plan(): nbrOfWorkers() = 1 [06:01:24.270] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... done [06:01:24.271] plan(, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... done [06:01:24.271] future(..., label = NULL) ... [06:01:24.272] | lazy: FALSE [06:01:24.272] | stdout: TRUE [06:01:24.272] | conditions: [n=1] 'condition' [06:01:24.272] | gc: FALSE [06:01:24.273] | earlySignal: FALSE [06:01:24.273] | getGlobalsAndPackages() ... [06:01:24.273] | : Searching for globals ... [06:01:24.286] | : . globals found: [2] '{', '<-' [06:01:24.287] | : Searching for globals ... done [06:01:24.287] | : Resolving globals: FALSE [06:01:24.287] | : Search for packages associated with the globals ... [06:01:24.288] | : . Packages associated with globals: [1] 'base' [06:01:24.288] | : . Packages: [1] 'base' [06:01:24.288] | : Search for packages associated with the globals ... done [06:01:24.289] | : Packages after dropping 'base': [0] [06:01:24.289] | : globals: [0] [06:01:24.289] | : packages: [0] [06:01:24.290] | getGlobalsAndPackages() ... done [06:01:24.290] | run() for 'Future' () ... [06:01:24.290] | : state: 'created' [06:01:24.291] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.291] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.291] | : Using SequentialFutureBackend ... [06:01:24.291] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [06:01:24.292] | : . Launching futures ... [06:01:24.292] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [06:01:24.292] | : . ' , getFutureData() ... [06:01:24.293] | : . ' , ; getFutureCore() ... [06:01:24.293] | : . ' , ; ` Packages needed by the future expression (n = 0): [06:01:24.293] | : . ' , ; getFutureCore() ... done [06:01:24.293] | : . ' , ; getFutureCapture() ... [06:01:24.294] | : . ' , ; getFutureCapture() ... done [06:01:24.294] | : . ' , ; getFutureContext() ... [06:01:24.294] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.295] | : . ' , ; ` | Getting stack without first backend: [n=0] [06:01:24.295] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.295] | : . ' , ; ` Packages needed by future backend (n = 0): [06:01:24.295] | : . ' , ; getFutureContext() ... done [06:01:24.296] | : . ' , getFutureData() ... done [06:01:24.299] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.299] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.299] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.300] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.300] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.300] | : . ' , ; ` all.equal() for FutureStrategyList ... [06:01:24.301] | : . ' , ; ` | New stack: [06:01:24.301] | : . ' , ; ` | List of 1 [06:01:24.301] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.301] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.301] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [06:01:24.301] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.301] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.301] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.301] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.301] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.306] | : . ' , ; ` | Old stack: [06:01:24.306] | : . ' , ; ` | List of 1 [06:01:24.306] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.306] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.306] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:24.306] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.306] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.306] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.306] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [06:01:24.306] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.306] | : . ' , ; ` | .. ..$ abc: logi TRUE [06:01:24.306] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.306] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.306] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.306] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.306] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.315] | : . ' , ; ` | Not identical [06:01:24.315] | : . ' , ; ` | all.equal() for future ... [06:01:24.315] | : . ' , ; ` | : List of 2 [06:01:24.315] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.315] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.315] | : . ' , ; ` | : $ current:function (..., abc = TRUE, envir = parent.frame()) [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.315] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [06:01:24.315] | : . ' , ; ` | : .. ..$ abc: logi FALSE [06:01:24.315] | : . ' , ; ` | : .. ..$ abc: logi TRUE [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.315] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.315] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.315] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.327] | : . ' , ; ` | : Formals differ [06:01:24.327] | : . ' , ; ` | all.equal() for future ... done [06:01:24.328] | : . ' , ; ` | Future strategies differ at level 1 [06:01:24.328] | : . ' , ; ` all.equal() for FutureStrategyList ... done [06:01:24.328] | : . ' , ; ` plan(): Setting new future backend stack: [06:01:24.328] | : . ' , ; ` List of future strategies: [06:01:24.328] | : . ' , ; ` 1. sequential: [06:01:24.328] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:24.328] | : . ' , ; ` - tweaked: FALSE [06:01:24.328] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.329] | : . ' , ; ` List of 1 [06:01:24.329] | : . ' , ; ` $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.329] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.329] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [06:01:24.329] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.329] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.329] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.329] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.329] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.334] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.335] | : . ' , ; ` plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.335] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.335] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.335] | : . ' , ; ` | : function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.335] | : . ' , ; ` | : - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.335] | : . ' , ; ` | : - attr(*, "init")= logi TRUE [06:01:24.335] | : . ' , ; ` | : - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.335] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.335] | : . ' , ; ` | : - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.335] | : . ' , ; ` | : - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.339] | : . ' , ; ` | : init: TRUE [06:01:24.339] | : . ' , ; ` | : makeFutureBackend() ... [06:01:24.340] | : . ' , ; ` | : . Backend function: <'NULL'> [06:01:24.340] | : . ' , ; ` | : . Evaluator tweak arguments: [n=0] [06:01:24.340] | : . ' , ; ` | : . list() [06:01:24.341] | : . ' , ; ` | : . Evaluator formal arguments: [n=2] [06:01:24.341] | : . ' , ; ` | : . list() [06:01:24.341] | : . ' , ; ` | : . Backend factory arguments: [n=2] [06:01:24.342] | : . ' , ; ` | : . Dotted pair list of 2 [06:01:24.342] | : . ' , ; ` | : . $ gc : logi FALSE [06:01:24.342] | : . ' , ; ` | : . $ earlySignal: logi FALSE [06:01:24.344] | : . ' , ; ` | : . Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.344] | : . ' , ; ` | : makeFutureBackend() ... done [06:01:24.344] | : . ' , ; ` | plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.344] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.345] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [06:01:24.345] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.345] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.349] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.349] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.349] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.350] | : . ' , ; ` | all.equal() for FutureStrategyList ... [06:01:24.350] | : . ' , ; ` | : New stack: [06:01:24.350] | : . ' , ; ` | : List of 1 [06:01:24.350] | : . ' , ; ` | : $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.350] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [06:01:24.350] | : . ' , ; ` | : .. ..$ abc: logi FALSE [06:01:24.350] | : . ' , ; ` | : .. ..$ abc: logi TRUE [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.350] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.350] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.350] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.350] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.358] | : . ' , ; ` | : Old stack: [06:01:24.358] | : . ' , ; ` | : List of 1 [06:01:24.358] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.358] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.358] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.358] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.358] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.358] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.367] | : . ' , ; ` | : Not identical [06:01:24.368] | : . ' , ; ` | : all.equal() for future ... [06:01:24.368] | : . ' , ; ` | : . List of 2 [06:01:24.368] | : . ' , ; ` | : . $ target :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.368] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 2 [06:01:24.368] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [06:01:24.368] | : . ' , ; ` | : . .. ..$ abc: logi TRUE [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.368] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.368] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.368] | : . ' , ; ` | : . $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.368] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [06:01:24.368] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.368] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.368] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.380] | : . ' , ; ` | : . Formals differ [06:01:24.380] | : . ' , ; ` | : all.equal() for future ... done [06:01:24.380] | : . ' , ; ` | : Future strategies differ at level 1 [06:01:24.381] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [06:01:24.381] | : . ' , ; ` | plan(): Setting new future backend stack: [06:01:24.381] | : . ' , ; ` | List of future strategies: [06:01:24.381] | : . ' , ; ` | 1. sequential: [06:01:24.381] | : . ' , ; ` | - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [06:01:24.381] | : . ' , ; ` | - tweaked: TRUE [06:01:24.381] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [06:01:24.382] | : . ' , ; ` | List of 1 [06:01:24.382] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.382] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.382] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:24.382] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.382] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.382] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.382] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [06:01:24.382] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.382] | : . ' , ; ` | .. ..$ abc: logi TRUE [06:01:24.382] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.382] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.382] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.382] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.382] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.390] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.390] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.390] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.391] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.391] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [06:01:24.391] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.391] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.392] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.392] | : . ' , SequentialFuture started (and completed) [06:01:24.393] | : . ' , signalConditions() ... [06:01:24.393] | : . ' , ; include = 'immediateCondition' [06:01:24.393] | : . ' , ; exclude = [06:01:24.393] | : . ' , ; resignal = FALSE [06:01:24.394] | : . ' , ; Number of conditions: 6 [06:01:24.394] | : . ' , ; int 6 [06:01:24.395] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.395] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.395] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.396] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.396] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.396] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.396] | : . ' , signalConditions() ... done [06:01:24.397] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [06:01:24.397] | : . Launching futures ... done [06:01:24.397] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [06:01:24.397] | : Using SequentialFutureBackend ... done [06:01:24.398] | run() for 'Future' () ... done [06:01:24.398] future(..., label = NULL) ... done [06:01:24.398] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.399] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.399] | : all.equal() for FutureStrategyList ... [06:01:24.399] | : . New stack: [06:01:24.399] | : . List of 1 [06:01:24.399] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.399] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.399] | : . ..- attr(*, "init")= chr "done" [06:01:24.399] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.399] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.399] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.399] | : . ..- attr(*, "tweaks")=List of 1 [06:01:24.399] | : . .. ..$ abc: logi FALSE [06:01:24.399] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.399] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.399] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.399] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.399] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.407] | : . Old stack: [06:01:24.407] | : . List of 1 [06:01:24.407] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [06:01:24.407] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.407] | : . ..- attr(*, "init")= chr "done" [06:01:24.407] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.407] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.407] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.407] | : . ..- attr(*, "tweaks")=List of 2 [06:01:24.407] | : . .. ..$ abc: logi FALSE [06:01:24.407] | : . .. ..$ abc: logi TRUE [06:01:24.407] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.407] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.407] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.407] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.407] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.415] | : . Not identical [06:01:24.415] | : . all.equal() for future ... [06:01:24.416] | : . ' List of 2 [06:01:24.416] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.416] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.416] | : . ' ..- attr(*, "init")= chr "done" [06:01:24.416] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.416] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.416] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.416] | : . ' ..- attr(*, "tweaks")=List of 1 [06:01:24.416] | : . ' .. ..$ abc: logi FALSE [06:01:24.416] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.416] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.416] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.416] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.416] | : . ' $ current:function (..., abc = TRUE, envir = parent.frame()) [06:01:24.416] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [06:01:24.416] | : . ' ..- attr(*, "init")= chr "done" [06:01:24.416] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.416] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.416] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.416] | : . ' ..- attr(*, "tweaks")=List of 2 [06:01:24.416] | : . ' .. ..$ abc: logi FALSE [06:01:24.416] | : . ' .. ..$ abc: logi TRUE [06:01:24.416] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.416] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.416] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.416] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.430] | : . ' Formals differ [06:01:24.430] | : . all.equal() for future ... done [06:01:24.430] | : . Future strategies differ at level 1 [06:01:24.430] | : all.equal() for FutureStrategyList ... done [06:01:24.431] | : plan(): Setting new future backend stack: [06:01:24.431] | : List of future strategies: [06:01:24.431] | : 1. sequential: [06:01:24.431] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.431] | : - tweaked: TRUE [06:01:24.431] | : - call: plan(sequential, abc = FALSE) [06:01:24.432] | : List of 1 [06:01:24.432] | : $ :function (..., abc = FALSE, envir = parent.frame()) [06:01:24.432] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.432] | : ..- attr(*, "init")= chr "done" [06:01:24.432] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.432] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.432] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.432] | : ..- attr(*, "tweaks")=List of 1 [06:01:24.432] | : .. ..$ abc: logi FALSE [06:01:24.432] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [06:01:24.432] | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.432] | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.432] | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.432] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.439] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.439] | : plan(): plan_cleanup('tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.440] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.440] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.440] | : plan(): nbrOfWorkers() = 1 [06:01:24.441] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.441] plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done > print(x) [06:01:24.441] value() for SequentialFuture () ... [06:01:24.442] | signalConditions() ... [06:01:24.442] | : include = 'immediateCondition' [06:01:24.442] | : exclude = [06:01:24.442] | : resignal = FALSE [06:01:24.443] | : Number of conditions: 6 [06:01:24.443] | : int 6 [06:01:24.444] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.444] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.444] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.445] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.445] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.445] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.445] | signalConditions() ... done [06:01:24.446] | relay stdout ... [06:01:24.446] | relay stdout ... done [06:01:24.446] | check for misuse ... [06:01:24.446] | check for misuse ... done [06:01:24.447] | relay conditions ... [06:01:24.447] | : Future state: 'finished' [06:01:24.447] | : signalConditions() ... [06:01:24.447] | : . include = 'condition' [06:01:24.448] | : . exclude = 'immediateCondition' [06:01:24.448] | : . resignal = TRUE [06:01:24.448] | : . Number of conditions: 6 [06:01:24.448] | : . int 6 [06:01:24.449] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.449] | : . Condition #1: 'simpleMessage', 'message', 'condition' [06:01:24.296] | : . ' , attachPackages() ... [06:01:24.450] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.450] | : . Condition #2: 'simpleMessage', 'message', 'condition' [06:01:24.297] | : . ' , ; packages: [n=1] 'future' [06:01:24.450] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.451] | : . Condition #3: 'simpleMessage', 'message', 'condition' [06:01:24.297] | : . ' , attachPackages() ... done [06:01:24.451] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.451] | : . Condition #4: 'simpleMessage', 'message', 'condition' [06:01:24.297] | : . ' , attachPackages() ... [06:01:24.452] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.452] | : . Condition #5: 'simpleMessage', 'message', 'condition' [06:01:24.297] | : . ' , ; packages: [n=0] [06:01:24.452] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.452] | : . Condition #6: 'simpleMessage', 'message', 'condition' [06:01:24.298] | : . ' , attachPackages() ... done [06:01:24.453] | : signalConditions() ... done [06:01:24.453] | relay conditions ... done [06:01:24.453] value() for SequentialFuture () ... done [1] 2 > stopifnot(a == 0, x == 2) > plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.454] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [06:01:24.455] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [06:01:24.455] | : all.equal() for FutureStrategyList ... [06:01:24.456] | : . Different lengths [06:01:24.456] | : all.equal() for FutureStrategyList ... done [06:01:24.456] | : plan(): Setting new future backend stack: [06:01:24.456] | : List of future strategies: [06:01:24.456] | : 1. sequential: [06:01:24.456] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:24.456] | : - tweaked: FALSE [06:01:24.456] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.456] | : 2. sequential: [06:01:24.456] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.456] | : - tweaked: TRUE [06:01:24.456] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.458] | : List of 2 [06:01:24.458] | : $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.458] | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.458] | : ..- attr(*, "init")= logi TRUE [06:01:24.458] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.458] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.458] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.458] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.458] | : $ B:function (..., abc = FALSE, envir = parent.frame()) [06:01:24.458] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.458] | : ..- attr(*, "init")= logi TRUE [06:01:24.458] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.458] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.458] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.458] | : ..- attr(*, "tweaks")=List of 1 [06:01:24.458] | : .. ..$ abc: logi FALSE [06:01:24.458] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.458] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.470] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [06:01:24.470] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.470] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.471] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.471] | : . Legacy shutdown of cluster workers ... [06:01:24.471] | : . ' Stopping existing cluster ... [06:01:24.471] | : . ' , No pre-existing cluster. Skipping [06:01:24.472] | : . ' Stopping existing cluster ... done [06:01:24.472] | : . Legacy shutdown of cluster workers ... done [06:01:24.472] | : plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [06:01:24.472] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.473] | : . function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.473] | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.473] | : . - attr(*, "init")= logi TRUE [06:01:24.473] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.473] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.473] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.473] | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.476] | : . init: TRUE [06:01:24.476] | : . makeFutureBackend() ... [06:01:24.477] | : . ' Backend function: <'NULL'> [06:01:24.477] | : . ' Evaluator tweak arguments: [n=0] [06:01:24.477] | : . ' list() [06:01:24.478] | : . ' Evaluator formal arguments: [n=2] [06:01:24.478] | : . ' list() [06:01:24.478] | : . ' Backend factory arguments: [n=2] [06:01:24.479] | : . ' Dotted pair list of 2 [06:01:24.479] | : . ' $ gc : logi FALSE [06:01:24.479] | : . ' $ earlySignal: logi FALSE [06:01:24.480] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.481] | : . makeFutureBackend() ... done [06:01:24.481] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.481] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.481] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.482] | : plan(): nbrOfWorkers() = 1 [06:01:24.482] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [06:01:24.482] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + stopifnot(identical(names(plan("list")), "B")) + a <- 1 + a + } [06:01:24.483] future(..., label = NULL) ... [06:01:24.483] | lazy: FALSE [06:01:24.483] | stdout: TRUE [06:01:24.484] | conditions: [n=1] 'condition' [06:01:24.484] | gc: FALSE [06:01:24.484] | earlySignal: FALSE [06:01:24.484] | getGlobalsAndPackages() ... [06:01:24.484] | : Searching for globals ... [06:01:24.511] | : . globals found: [6] '{', 'stopifnot', 'identical', 'names', 'plan', '<-' [06:01:24.512] | : Searching for globals ... done [06:01:24.512] | : Resolving globals: FALSE [06:01:24.512] | : Search for packages associated with the globals ... [06:01:24.513] | : . Packages associated with globals: [1] 'base' [06:01:24.514] | : . Packages: [1] 'base' [06:01:24.514] | : Search for packages associated with the globals ... done [06:01:24.514] | : Packages after dropping 'base': [0] [06:01:24.514] | : globals: [1] 'plan' [06:01:24.515] | : packages: [0] [06:01:24.515] | getGlobalsAndPackages() ... done [06:01:24.515] | run() for 'Future' () ... [06:01:24.516] | : state: 'created' [06:01:24.516] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.516] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.517] | : Using SequentialFutureBackend ... [06:01:24.517] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [06:01:24.517] | : . Launching futures ... [06:01:24.517] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [06:01:24.518] | : . ' , getFutureData() ... [06:01:24.518] | : . ' , ; getFutureCore() ... [06:01:24.518] | : . ' , ; ` Packages needed by the future expression (n = 0): [06:01:24.518] | : . ' , ; getFutureCore() ... done [06:01:24.519] | : . ' , ; getFutureCapture() ... [06:01:24.519] | : . ' , ; getFutureCapture() ... done [06:01:24.519] | : . ' , ; getFutureContext() ... [06:01:24.519] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.520] | : . ' , ; ` | Getting stack without first backend: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.520] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.520] | : . ' , ; ` Packages needed by future strategies (n = 0): [06:01:24.521] | : . ' , ; getFutureContext() ... done [06:01:24.521] | : . ' , getFutureData() ... done [06:01:24.524] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.524] | : . ' , ; Getting full stack: [n=2] 'c("sequential", "uniprocess", "future", "function")', 'c("tweaked", "sequential", "uniprocess", "future", "function")' [06:01:24.525] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.525] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.525] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.526] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.526] | : . ' , ; ` | all.equal() for FutureStrategyList ... [06:01:24.526] | : . ' , ; ` | : Different lengths [06:01:24.526] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [06:01:24.527] | : . ' , ; ` | plan(): Setting new future backend stack: [06:01:24.527] | : . ' , ; ` | List of future strategies: [06:01:24.527] | : . ' , ; ` | 1. sequential: [06:01:24.527] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.527] | : . ' , ; ` | - tweaked: TRUE [06:01:24.527] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.528] | : . ' , ; ` | List of 1 [06:01:24.528] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [06:01:24.528] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.528] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [06:01:24.528] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.528] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.528] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.528] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [06:01:24.528] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.528] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.528] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.534] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.534] | : . ' , ; ` | plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.535] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.535] | : . ' , ; ` | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [06:01:24.535] | : . ' , ; ` | : . function (..., abc = FALSE, envir = parent.frame()) [06:01:24.535] | : . ' , ; ` | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.535] | : . ' , ; ` | : . - attr(*, "init")= logi TRUE [06:01:24.535] | : . ' , ; ` | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.535] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.535] | : . ' , ; ` | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.535] | : . ' , ; ` | : . - attr(*, "tweaks")=List of 1 [06:01:24.535] | : . ' , ; ` | : . ..$ abc: logi FALSE [06:01:24.535] | : . ' , ; ` | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.540] | : . ' , ; ` | : . init: TRUE [06:01:24.540] | : . ' , ; ` | : . makeFutureBackend() ... [06:01:24.540] | : . ' , ; ` | : . ' Backend function: <'NULL'> [06:01:24.541] | : . ' , ; ` | : . ' Evaluator tweak arguments: [n=1] [06:01:24.541] | : . ' , ; ` | : . ' List of 1 [06:01:24.541] | : . ' , ; ` | : . ' $ abc: logi FALSE [06:01:24.542] | : . ' , ; ` | : . ' Evaluator formal arguments: [n=1] [06:01:24.542] | : . ' , ; ` | : . ' List of 1 [06:01:24.542] | : . ' , ; ` | : . ' $ abc: logi FALSE [06:01:24.544] | : . ' , ; ` | : . ' Backend factory arguments: [n=1] [06:01:24.544] | : . ' , ; ` | : . ' Dotted pair list of 1 [06:01:24.544] | : . ' , ; ` | : . ' $ abc: logi FALSE [06:01:24.545] | : . ' , ; ` | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [06:01:24.546] | : . ' , ; ` | : . makeFutureBackend() ... done [06:01:24.546] | : . ' , ; ` | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [06:01:24.546] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.546] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [06:01:24.547] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.547] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.547] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.548] | : . ' , assign_globals() ... [06:01:24.548] | : . ' , List of 1 [06:01:24.548] | : . ' , $ plan:function (strategy = NULL, ..., substitute = TRUE, .skip = FALSE, .call = TRUE, [06:01:24.548] | : . ' , .cleanup = NA, .init = TRUE) [06:01:24.548] | : . ' , - attr(*, "where")=List of 1 [06:01:24.548] | : . ' , ..$ plan: [06:01:24.548] | : . ' , .. ..- attr(*, "name")= chr "package:future" [06:01:24.548] | : . ' , .. ..- attr(*, "path")= chr "D:/RCompile/CRANincoming/R-devel/lib/future" [06:01:24.548] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [06:01:24.548] | : . ' , - attr(*, "resolved")= logi FALSE [06:01:24.548] | : . ' , - attr(*, "total_size")= num NA [06:01:24.548] | : . ' , - attr(*, "already-done")= logi TRUE [06:01:24.554] | : . ' , - copied 'plan' to environment [06:01:24.554] | : . ' , assign_globals() ... done [06:01:24.558] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.558] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [06:01:24.558] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [06:01:24.558] | : . ' , ; ` | all.equal() for FutureStrategyList ... [06:01:24.558] | : . ' , ; ` | : Different lengths [06:01:24.559] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [06:01:24.559] | : . ' , ; ` | plan(): Setting new future backend stack: [06:01:24.559] | : . ' , ; ` | List of future strategies: [06:01:24.559] | : . ' , ; ` | 1. sequential: [06:01:24.559] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [06:01:24.559] | : . ' , ; ` | - tweaked: FALSE [06:01:24.559] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.559] | : . ' , ; ` | 2. sequential: [06:01:24.559] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [06:01:24.559] | : . ' , ; ` | - tweaked: TRUE [06:01:24.559] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.560] | : . ' , ; ` | List of 2 [06:01:24.560] | : . ' , ; ` | $ A:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [06:01:24.560] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [06:01:24.560] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [06:01:24.560] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.560] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.560] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.560] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.560] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [06:01:24.560] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.560] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.560] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [06:01:24.560] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [06:01:24.560] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [06:01:24.560] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [06:01:24.560] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.560] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [06:01:24.560] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [06:01:24.560] | : . ' , ; ` | .. ..$ abc: logi FALSE [06:01:24.560] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [06:01:24.560] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [06:01:24.571] | : . ' , ; ` | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... [06:01:24.571] | : . ' , ; ` | plan(): plan_cleanup('tweaked', 'sequential', 'uniprocess', 'future', 'function', cleanup = FALSE) ... done [06:01:24.572] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.572] | : . ' , ; ` | plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.572] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [06:01:24.572] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [06:01:24.573] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.573] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [06:01:24.573] | : . ' , SequentialFuture started (and completed) [06:01:24.574] | : . ' , signalConditions() ... [06:01:24.574] | : . ' , ; include = 'immediateCondition' [06:01:24.574] | : . ' , ; exclude = [06:01:24.574] | : . ' , ; resignal = FALSE [06:01:24.574] | : . ' , ; Number of conditions: 9 [06:01:24.574] | : . ' , ; int 9 [06:01:24.575] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.575] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.575] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.575] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.576] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.576] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.576] | : . ' , ; Condition #7 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.576] | : . ' , ; Condition #8 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.576] | : . ' , ; Condition #9 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.577] | : . ' , signalConditions() ... done [06:01:24.577] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [06:01:24.577] | : . Launching futures ... done [06:01:24.577] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [06:01:24.577] | : Using SequentialFutureBackend ... done [06:01:24.578] | run() for 'Future' () ... done [06:01:24.578] future(..., label = NULL) ... done > print(x) [06:01:24.579] value() for SequentialFuture () ... [06:01:24.579] | signalConditions() ... [06:01:24.579] | : include = 'immediateCondition' [06:01:24.580] | : exclude = [06:01:24.580] | : resignal = FALSE [06:01:24.580] | : Number of conditions: 9 [06:01:24.580] | : int 9 [06:01:24.581] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.582] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.582] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.582] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.582] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.583] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.583] | : Condition #7 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.583] | : Condition #8 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.583] | : Condition #9 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.584] | signalConditions() ... done [06:01:24.584] | relay stdout ... [06:01:24.584] | relay stdout ... done [06:01:24.584] | check for misuse ... [06:01:24.584] | check for misuse ... done [06:01:24.584] | relay conditions ... [06:01:24.585] | : Future state: 'finished' [06:01:24.585] | : signalConditions() ... [06:01:24.585] | : . include = 'condition' [06:01:24.585] | : . exclude = 'immediateCondition' [06:01:24.585] | : . resignal = TRUE [06:01:24.585] | : . Number of conditions: 9 [06:01:24.585] | : . int 9 [06:01:24.586] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.586] | : . Condition #1: 'simpleMessage', 'message', 'condition' [06:01:24.522] | : . ' , attachPackages() ... [06:01:24.586] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.587] | : . Condition #2: 'simpleMessage', 'message', 'condition' [06:01:24.522] | : . ' , ; packages: [n=0] [06:01:24.587] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.587] | : . Condition #3: 'simpleMessage', 'message', 'condition' [06:01:24.522] | : . ' , attachPackages() ... done [06:01:24.587] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.587] | : . Condition #4: 'simpleMessage', 'message', 'condition' [06:01:24.522] | : . ' , attachPackages() ... [06:01:24.588] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.588] | : . Condition #5: 'simpleMessage', 'message', 'condition' [06:01:24.523] | : . ' , ; packages: [n=0] [06:01:24.588] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.588] | : . Condition #6: 'simpleMessage', 'message', 'condition' [06:01:24.523] | : . ' , attachPackages() ... done [06:01:24.588] | : . Condition #7 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.589] | : . Condition #7: 'simpleMessage', 'message', 'condition' [06:01:24.555] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [06:01:24.589] | : . Condition #8 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.589] | : . Condition #8: 'simpleMessage', 'message', 'condition' [06:01:24.555] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [06:01:24.589] | : . Condition #9 (class: 'simpleMessage', 'message', 'condition'): [06:01:24.589] | : . Condition #9: 'simpleMessage', 'message', 'condition' [06:01:24.555] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [06:01:24.590] | : signalConditions() ... done [06:01:24.590] | relay conditions ... done [06:01:24.590] value() for SequentialFuture () ... 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) [06:01:24.593] getGlobalsAndPackages() ... [06:01:24.593] | Searching for globals ... [06:01:24.602] | : globals found: [4] '{', 'y', 'x', '~' [06:01:24.603] | Searching for globals ... done [06:01:24.603] | Resolving globals: FALSE [06:01:24.603] | Search for packages associated with the globals ... [06:01:24.604] | : Packages associated with globals: [1] 'base' [06:01:24.604] | : Packages: [1] 'base' [06:01:24.604] | Search for packages associated with the globals ... done [06:01:24.605] | The total size of the 1 globals is 39 bytes (39 bytes) [06:01:24.606] | 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') [06:01:24.606] | Packages after dropping 'base': [0] [06:01:24.607] | globals: [1] 'x' [06:01:24.607] | packages: [0] [06:01:24.607] 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_06_05_05_55_16_20588' Sourcing 6 epilogue scripts ... done Test time: user.self=2s, sys.self=0.07s, elapsed=3s, user.child=NAs, sys.child=NAs Test 'tweak' ... success > > proc.time() user system elapsed 2.12 0.25 3.01