R Under development (unstable) (2025-11-15 r89024 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-globals,formulas.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future:::testme("globals,formulas") Test 'globals,formulas' ... 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-globals,formulas.R' > library(future) [23:13:33.416] Option 'future.startup.script': TRUE [23:13:33.418] Future startup scripts considered: '.future.R', '~/.future.R' [23:13:33.419] Future startup scripts found: > library(datasets) > library(stats) > message("*** Globals - formulas ...") *** Globals - formulas ... > ctl <- c(4.17, 5.58, 5.18, 6.11, 4.5, 4.61, 5.17, + 4.53, 5.33, 5.14) > trt <- c(4.81, 4.17, 4.41, 3.59, 5.87, 3.83, 6.03, + 4.89, 4.32, 4.69) > group <- gl(2, 10, 20, labels = c("Ctl", "Trt")) > weight <- c(ctl, trt) > ctl <- trt <- NULL > fit_i <- lm(weight ~ group - 1) > print(fit_i) Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 > x <- c(1, 1, 2, 2, 2) > tbl_ii <- xtabs(~x) > print(tbl_ii) x 1 2 2 3 > exprs <- list(a = substitute({ + lm(dist ~ . - 1, data = cars) + }), b = substitute({ + lm(dist ~ . + 0, data = cars) + }), c = substitute({ .... [TRUNCATED] > map <- function(.x, .f, ...) { + if (inherits(.f, "formula")) { + expr <- .f[[-1]] + .f <- eval(bquote(function(...) { + .... [TRUNCATED] > inner_function <- function(x) { + x + 1 + } > outer_function <- function(x) { + map(1:2, ~inner_function(.x)) + } > y_iv <- outer_function(1) > str(y_iv) List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 > for (cores in 1:availCores) { + message(sprintf("Testing with %d cores ...", cores)) + options(mc.cores = cores) + message("availableCor ..." ... [TRUNCATED] Testing with 1 cores ... availableCores(): 1 - plan('sequential') ... [23:13:33.506] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.507] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:13:33.507] | : all.equal() for FutureStrategyList ... [23:13:33.507] | : . New stack: [23:13:33.511] | : . List of 1 [23:13:33.511] | : . $ :function (..., envir = parent.frame()) [23:13:33.511] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.511] | : . ..- attr(*, "init")= logi TRUE [23:13:33.511] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.511] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.511] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.511] | : . ..- attr(*, "call")= language plan(strategy) [23:13:33.511] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.516] | : . Old stack: [23:13:33.516] | : . List of 1 [23:13:33.516] | : . $ :function (..., envir = parent.frame()) [23:13:33.516] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.516] | : . ..- attr(*, "init")= logi TRUE [23:13:33.516] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.516] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.516] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.516] | : . ..- attr(*, "call")= language plan(sequential) [23:13:33.516] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.521] | : . Not identical [23:13:33.521] | : . all.equal() for future ... [23:13:33.522] | : . ' List of 2 [23:13:33.522] | : . ' $ target :function (..., envir = parent.frame()) [23:13:33.522] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.522] | : . ' ..- attr(*, "init")= logi TRUE [23:13:33.522] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.522] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.522] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.522] | : . ' ..- attr(*, "call")= language plan(strategy) [23:13:33.522] | : . ' $ current:function (..., envir = parent.frame()) [23:13:33.522] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.522] | : . ' ..- attr(*, "init")= logi TRUE [23:13:33.522] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.522] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.522] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.522] | : . ' ..- attr(*, "call")= language plan(sequential) [23:13:33.530] | : . all.equal() for future ... done [23:13:33.531] | : all.equal() for FutureStrategyList ... done [23:13:33.531] | : plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.531] | : List of future strategies: [23:13:33.531] | : 1. sequential: [23:13:33.531] | : - args: function (..., envir = parent.frame(), workers = "") [23:13:33.531] | : - tweaked: FALSE [23:13:33.531] | : - call: plan(sequential) [23:13:33.532] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:13:33.533] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done - lm() ... [23:13:33.533] future(..., label = NULL) ... [23:13:33.533] | lazy: FALSE [23:13:33.533] | stdout: TRUE [23:13:33.534] | conditions: [n=1] 'condition' [23:13:33.534] | gc: FALSE [23:13:33.534] | earlySignal: FALSE [23:13:33.535] | getGlobalsAndPackages() ... [23:13:33.535] | : Searching for globals ... [23:13:33.580] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:33.580] | : Searching for globals ... done [23:13:33.581] | : Resolving globals: FALSE [23:13:33.581] | : Search for packages associated with the globals ... [23:13:33.582] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:33.582] | : . Packages: [2] 'base', 'stats' [23:13:33.583] | : Search for packages associated with the globals ... done [23:13:33.583] | : Packages after dropping 'base': [1] 'stats' [23:13:33.583] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:33.584] | : globals: [2] 'weight', 'group' [23:13:33.584] | : packages: [1] 'stats' [23:13:33.584] | getGlobalsAndPackages() ... done [23:13:33.585] | run() for 'Future' () ... [23:13:33.585] | : state: 'created' [23:13:33.586] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.586] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [23:13:33.586] | : . ' function (..., envir = parent.frame()) [23:13:33.586] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.586] | : . ' - attr(*, "init")= logi TRUE [23:13:33.586] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.586] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.586] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.586] | : . ' - attr(*, "call")= language plan(sequential) [23:13:33.590] | : . ' init: TRUE [23:13:33.590] | : . ' makeFutureBackend() ... [23:13:33.590] | : . ' , Backend function: <'NULL'> [23:13:33.591] | : . ' , Evaluator tweak arguments: [n=0] [23:13:33.591] | : . ' , list() [23:13:33.591] | : . ' , Evaluator formal arguments: [n=0] [23:13:33.591] | : . ' , NULL [23:13:33.592] | : . ' , Arguments passed to the future-backend factory: [n=0] [23:13:33.592] | : . ' , list() [23:13:33.593] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [23:13:33.593] | : . ' makeFutureBackend() ... done [23:13:33.593] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [23:13:33.593] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.594] | : Using SequentialFutureBackend ... [23:13:33.594] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:13:33.594] | : . Launching futures ... [23:13:33.594] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:33.595] | : . ' , getFutureData() ... [23:13:33.595] | : . ' , ; getFutureCore() ... [23:13:33.595] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:33.595] | : . ' , ; getFutureCore() ... done [23:13:33.596] | : . ' , ; getFutureCapture() ... [23:13:33.596] | : . ' , ; getFutureCapture() ... done [23:13:33.596] | : . ' , ; getFutureContext() ... [23:13:33.597] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.597] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:33.597] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.597] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:33.597] | : . ' , ; getFutureContext() ... done [23:13:33.598] | : . ' , getFutureData() ... done [23:13:33.602] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.602] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:33.602] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.603] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.603] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.604] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:33.604] | : . ' , ; ` | New stack: [23:13:33.604] | : . ' , ; ` | List of 1 [23:13:33.604] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.604] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.604] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:33.604] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.604] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.604] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.604] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.604] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.674] | : . ' , ; ` | Old stack: [23:13:33.674] | : . ' , ; ` | List of 1 [23:13:33.674] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.674] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.674] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:33.674] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.674] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.674] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.674] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:33.674] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.674] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.674] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.674] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.681] | : . ' , ; ` | Not identical [23:13:33.682] | : . ' , ; ` | all.equal() for future ... [23:13:33.682] | : . ' , ; ` | : List of 2 [23:13:33.682] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.682] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.682] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.682] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.682] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.682] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.682] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.692] | : . ' , ; ` | all.equal() for future ... done [23:13:33.693] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:33.693] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.693] | : . ' , ; ` List of future strategies: [23:13:33.693] | : . ' , ; ` 1. sequential: [23:13:33.693] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:33.693] | : . ' , ; ` - tweaked: FALSE [23:13:33.693] | : . ' , ; ` - call: plan(sequential) [23:13:33.694] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.694] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.695] | : . ' , assign_globals() ... [23:13:33.695] | : . ' , List of 2 [23:13:33.695] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:33.695] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:33.695] | : . ' , - attr(*, "where")=List of 2 [23:13:33.695] | : . ' , ..$ weight: [23:13:33.695] | : . ' , ..$ group : [23:13:33.695] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:33.695] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:33.695] | : . ' , - attr(*, "total_size")= num NA [23:13:33.695] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:33.743] | : . ' , - copied 'weight' to environment [23:13:33.743] | : . ' , - copied 'group' to environment [23:13:33.744] | : . ' , assign_globals() ... done [23:13:33.751] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.751] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.751] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.752] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:33.752] | : . ' , ; ` | : New stack: [23:13:33.752] | : . ' , ; ` | : List of 1 [23:13:33.752] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.752] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.752] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.752] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.752] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.752] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.759] | : . ' , ; ` | : Old stack: [23:13:33.759] | : . ' , ; ` | : List of 1 [23:13:33.759] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.759] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.759] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.759] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.759] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.759] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.763] | : . ' , ; ` | : Identical [23:13:33.763] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:33.763] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.764] | : . ' , ; ` | List of future strategies: [23:13:33.764] | : . ' , ; ` | 1. sequential: [23:13:33.764] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:33.764] | : . ' , ; ` | - tweaked: FALSE [23:13:33.764] | : . ' , ; ` | - call: plan(sequential) [23:13:33.764] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.764] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.765] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.769] | : . ' , SequentialFuture started (and completed) [23:13:33.770] | : . ' , signalConditions() ... [23:13:33.770] | : . ' , ; include = 'immediateCondition' [23:13:33.770] | : . ' , ; exclude = [23:13:33.770] | : . ' , ; resignal = FALSE [23:13:33.771] | : . ' , ; Number of conditions: 6 [23:13:33.771] | : . ' , ; int 6 [23:13:33.772] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.772] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.772] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.772] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.772] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.773] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.773] | : . ' , signalConditions() ... done [23:13:33.773] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:33.773] | : . Launching futures ... done [23:13:33.774] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:33.774] | : Using SequentialFutureBackend ... done [23:13:33.774] | run() for 'Future' () ... done [23:13:33.774] future(..., label = NULL) ... done [23:13:33.775] value() for SequentialFuture () ... [23:13:33.776] | signalConditions() ... [23:13:33.776] | : include = 'immediateCondition' [23:13:33.776] | : exclude = [23:13:33.776] | : resignal = FALSE [23:13:33.777] | : Number of conditions: 6 [23:13:33.777] | : int 6 [23:13:33.777] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.778] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.778] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.778] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.778] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.779] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.779] | signalConditions() ... done [23:13:33.779] | relay stdout ... [23:13:33.779] | relay stdout ... done [23:13:33.779] | check for misuse ... [23:13:33.780] | check for misuse ... done [23:13:33.780] | relay conditions ... [23:13:33.780] | : Future state: 'finished' [23:13:33.780] | : signalConditions() ... [23:13:33.780] | : . include = 'condition' [23:13:33.781] | : . exclude = 'immediateCondition' [23:13:33.781] | : . resignal = TRUE [23:13:33.781] | : . Number of conditions: 6 [23:13:33.781] | : . int 6 [23:13:33.782] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.782] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:33.600] | : . ' , attachPackages() ... [23:13:33.782] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.782] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:33.600] | : . ' , ; packages: [n=1] 'future' [23:13:33.783] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.783] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:33.600] | : . ' , attachPackages() ... done [23:13:33.783] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.783] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:33.601] | : . ' , attachPackages() ... [23:13:33.784] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.784] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:33.601] | : . ' , ; packages: [n=1] 'stats' [23:13:33.784] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.784] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:33.601] | : . ' , attachPackages() ... done [23:13:33.785] | : signalConditions() ... done [23:13:33.785] | relay conditions ... done [23:13:33.785] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:33.788] future(..., label = NULL) ... [23:13:33.788] | lazy: TRUE [23:13:33.788] | stdout: TRUE [23:13:33.789] | conditions: [n=1] 'condition' [23:13:33.789] | gc: FALSE [23:13:33.789] | earlySignal: FALSE [23:13:33.789] | getGlobalsAndPackages() ... [23:13:33.789] | : Searching for globals ... [23:13:33.810] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:33.811] | : Searching for globals ... done [23:13:33.811] | : Resolving globals: FALSE [23:13:33.811] | : Search for packages associated with the globals ... [23:13:33.811] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:33.812] | : . Packages: [2] 'base', 'stats' [23:13:33.812] | : Search for packages associated with the globals ... done [23:13:33.812] | : Packages after dropping 'base': [1] 'stats' [23:13:33.813] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:33.813] | : globals: [2] 'weight', 'group' [23:13:33.813] | : packages: [1] 'stats' [23:13:33.813] | getGlobalsAndPackages() ... done [23:13:33.814] future(..., label = NULL) ... done [23:13:33.814] value() for Future () ... [23:13:33.814] | run() for 'Future' () ... [23:13:33.814] | : state: 'created' [23:13:33.814] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.815] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.815] | : Using SequentialFutureBackend ... [23:13:33.815] | : . Number of futures since start: 1 (1 created, 1 launched, 1 finished) [23:13:33.815] | : . Launching futures ... [23:13:33.816] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:33.816] | : . ' , getFutureData() ... [23:13:33.816] | : . ' , ; getFutureCore() ... [23:13:33.816] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:33.816] | : . ' , ; getFutureCore() ... done [23:13:33.817] | : . ' , ; getFutureCapture() ... [23:13:33.817] | : . ' , ; getFutureCapture() ... done [23:13:33.817] | : . ' , ; getFutureContext() ... [23:13:33.817] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.817] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:33.818] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.818] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:33.818] | : . ' , ; getFutureContext() ... done [23:13:33.818] | : . ' , getFutureData() ... done [23:13:33.821] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.821] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:33.822] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.822] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.823] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.823] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:33.824] | : . ' , ; ` | New stack: [23:13:33.824] | : . ' , ; ` | List of 1 [23:13:33.824] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.824] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.824] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:33.824] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.824] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.824] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.824] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.824] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.830] | : . ' , ; ` | Old stack: [23:13:33.831] | : . ' , ; ` | List of 1 [23:13:33.831] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.831] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.831] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:33.831] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.831] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.831] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.831] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:33.831] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.831] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.831] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.831] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.838] | : . ' , ; ` | Not identical [23:13:33.839] | : . ' , ; ` | all.equal() for future ... [23:13:33.839] | : . ' , ; ` | : List of 2 [23:13:33.839] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.839] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.839] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.839] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.839] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.839] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.839] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.852] | : . ' , ; ` | all.equal() for future ... done [23:13:33.853] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:33.853] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.853] | : . ' , ; ` List of future strategies: [23:13:33.853] | : . ' , ; ` 1. sequential: [23:13:33.853] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:33.853] | : . ' , ; ` - tweaked: FALSE [23:13:33.853] | : . ' , ; ` - call: plan(sequential) [23:13:33.854] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.855] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.855] | : . ' , assign_globals() ... [23:13:33.855] | : . ' , List of 2 [23:13:33.855] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:33.855] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:33.855] | : . ' , - attr(*, "where")=List of 2 [23:13:33.855] | : . ' , ..$ weight: [23:13:33.855] | : . ' , ..$ group : [23:13:33.855] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:33.855] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:33.855] | : . ' , - attr(*, "total_size")= num NA [23:13:33.855] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:33.862] | : . ' , - copied 'weight' to environment [23:13:33.863] | : . ' , - copied 'group' to environment [23:13:33.863] | : . ' , assign_globals() ... done [23:13:33.868] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.869] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.869] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.870] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:33.870] | : . ' , ; ` | : New stack: [23:13:33.870] | : . ' , ; ` | : List of 1 [23:13:33.870] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.870] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.870] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.870] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.870] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.870] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.877] | : . ' , ; ` | : Old stack: [23:13:33.878] | : . ' , ; ` | : List of 1 [23:13:33.878] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.878] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.878] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.878] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.878] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.878] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.887] | : . ' , ; ` | : Identical [23:13:33.887] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:33.888] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.888] | : . ' , ; ` | List of future strategies: [23:13:33.888] | : . ' , ; ` | 1. sequential: [23:13:33.888] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:33.888] | : . ' , ; ` | - tweaked: FALSE [23:13:33.888] | : . ' , ; ` | - call: plan(sequential) [23:13:33.889] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.889] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.889] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.890] | : . ' , SequentialFuture started (and completed) [23:13:33.890] | : . ' , signalConditions() ... [23:13:33.891] | : . ' , ; include = 'immediateCondition' [23:13:33.891] | : . ' , ; exclude = [23:13:33.891] | : . ' , ; resignal = FALSE [23:13:33.891] | : . ' , ; Number of conditions: 6 [23:13:33.892] | : . ' , ; int 6 [23:13:33.892] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.893] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.893] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.893] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.893] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.894] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.894] | : . ' , signalConditions() ... done [23:13:33.894] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:33.894] | : . Launching futures ... done [23:13:33.895] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:33.895] | : Using SequentialFutureBackend ... done [23:13:33.895] | run() for 'Future' () ... done [23:13:33.895] | signalConditions() ... [23:13:33.896] | : include = 'immediateCondition' [23:13:33.896] | : exclude = [23:13:33.896] | : resignal = FALSE [23:13:33.896] | : Number of conditions: 6 [23:13:33.897] | : int 6 [23:13:33.897] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.898] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.898] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.898] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.898] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.899] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.899] | signalConditions() ... done [23:13:33.899] | relay stdout ... [23:13:33.899] | relay stdout ... done [23:13:33.899] | check for misuse ... [23:13:33.900] | check for misuse ... done [23:13:33.900] | relay conditions ... [23:13:33.900] | : Future state: 'finished' [23:13:33.900] | : signalConditions() ... [23:13:33.900] | : . include = 'condition' [23:13:33.900] | : . exclude = 'immediateCondition' [23:13:33.901] | : . resignal = TRUE [23:13:33.901] | : . Number of conditions: 6 [23:13:33.901] | : . int 6 [23:13:33.902] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.902] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:33.819] | : . ' , attachPackages() ... [23:13:33.902] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.902] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:33.819] | : . ' , ; packages: [n=1] 'future' [23:13:33.902] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.903] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:33.819] | : . ' , attachPackages() ... done [23:13:33.903] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.903] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:33.820] | : . ' , attachPackages() ... [23:13:33.903] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.903] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:33.820] | : . ' , ; packages: [n=1] 'stats' [23:13:33.904] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.904] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:33.820] | : . ' , attachPackages() ... done [23:13:33.904] | : signalConditions() ... done [23:13:33.904] | relay conditions ... done [23:13:33.904] value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:33.907] future(..., label = NULL) ... [23:13:33.908] | lazy: FALSE [23:13:33.908] | stdout: TRUE [23:13:33.908] | conditions: [n=1] 'condition' [23:13:33.908] | gc: FALSE [23:13:33.908] | earlySignal: FALSE [23:13:33.908] | getGlobalsAndPackages() ... [23:13:33.909] | : Searching for globals ... [23:13:33.931] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:33.931] | : Searching for globals ... done [23:13:33.931] | : Resolving globals: FALSE [23:13:33.932] | : Search for packages associated with the globals ... [23:13:33.932] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:33.932] | : . Packages: [2] 'base', 'stats' [23:13:33.933] | : Search for packages associated with the globals ... done [23:13:33.933] | : Packages after dropping 'base': [1] 'stats' [23:13:33.933] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:33.933] | : globals: [2] 'weight', 'group' [23:13:33.934] | : packages: [1] 'stats' [23:13:33.934] | getGlobalsAndPackages() ... done [23:13:33.934] | run() for 'Future' () ... [23:13:33.934] | : state: 'created' [23:13:33.935] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.935] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.935] | : Using SequentialFutureBackend ... [23:13:33.935] | : . Number of futures since start: 2 (2 created, 2 launched, 2 finished) [23:13:33.936] | : . Launching futures ... [23:13:33.936] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:33.936] | : . ' , getFutureData() ... [23:13:33.937] | : . ' , ; getFutureCore() ... [23:13:33.937] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:33.937] | : . ' , ; getFutureCore() ... done [23:13:33.938] | : . ' , ; getFutureCapture() ... [23:13:33.938] | : . ' , ; getFutureCapture() ... done [23:13:33.938] | : . ' , ; getFutureContext() ... [23:13:33.938] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.939] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:33.939] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.939] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:33.940] | : . ' , ; getFutureContext() ... done [23:13:33.940] | : . ' , getFutureData() ... done [23:13:33.943] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:33.943] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:33.944] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:33.944] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.945] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.945] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:33.945] | : . ' , ; ` | New stack: [23:13:33.945] | : . ' , ; ` | List of 1 [23:13:33.945] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.945] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.945] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:33.945] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.945] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.945] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.945] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.945] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.950] | : . ' , ; ` | Old stack: [23:13:33.951] | : . ' , ; ` | List of 1 [23:13:33.951] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:33.951] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.951] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:33.951] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.951] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.951] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.951] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:33.951] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.951] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.951] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.951] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.956] | : . ' , ; ` | Not identical [23:13:33.956] | : . ' , ; ` | all.equal() for future ... [23:13:33.956] | : . ' , ; ` | : List of 2 [23:13:33.956] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.956] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:33.956] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.956] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.956] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.956] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.956] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.965] | : . ' , ; ` | all.equal() for future ... done [23:13:33.965] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:33.965] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.965] | : . ' , ; ` List of future strategies: [23:13:33.965] | : . ' , ; ` 1. sequential: [23:13:33.965] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:33.965] | : . ' , ; ` - tweaked: FALSE [23:13:33.965] | : . ' , ; ` - call: plan(sequential) [23:13:33.966] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.966] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.966] | : . ' , assign_globals() ... [23:13:33.966] | : . ' , List of 2 [23:13:33.966] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:33.966] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:33.966] | : . ' , - attr(*, "where")=List of 2 [23:13:33.966] | : . ' , ..$ weight: [23:13:33.966] | : . ' , ..$ group : [23:13:33.966] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:33.966] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:33.966] | : . ' , - attr(*, "total_size")= num NA [23:13:33.966] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:33.970] | : . ' , - copied 'weight' to environment [23:13:33.971] | : . ' , - copied 'group' to environment [23:13:33.971] | : . ' , assign_globals() ... done [23:13:33.975] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.975] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:33.975] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:33.976] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:33.976] | : . ' , ; ` | : New stack: [23:13:33.976] | : . ' , ; ` | : List of 1 [23:13:33.976] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.976] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.976] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.976] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.976] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.976] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.983] | : . ' , ; ` | : Old stack: [23:13:33.983] | : . ' , ; ` | : List of 1 [23:13:33.983] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.983] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:33.983] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:33.983] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:33.983] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:33.983] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:33.990] | : . ' , ; ` | : Identical [23:13:33.991] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:33.991] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:33.991] | : . ' , ; ` | List of future strategies: [23:13:33.991] | : . ' , ; ` | 1. sequential: [23:13:33.991] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:33.991] | : . ' , ; ` | - tweaked: FALSE [23:13:33.991] | : . ' , ; ` | - call: plan(sequential) [23:13:33.992] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:33.993] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.993] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:33.994] | : . ' , SequentialFuture started (and completed) [23:13:33.994] | : . ' , signalConditions() ... [23:13:33.994] | : . ' , ; include = 'immediateCondition' [23:13:33.995] | : . ' , ; exclude = [23:13:33.995] | : . ' , ; resignal = FALSE [23:13:33.995] | : . ' , ; Number of conditions: 6 [23:13:33.996] | : . ' , ; int 6 [23:13:33.996] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.997] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.997] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.997] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.998] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.998] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:33.998] | : . ' , signalConditions() ... done [23:13:33.999] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:33.999] | : . Launching futures ... done [23:13:33.999] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.000] | : Using SequentialFutureBackend ... done [23:13:34.000] | run() for 'Future' () ... done [23:13:34.000] future(..., label = NULL) ... done [23:13:34.001] value() for SequentialFuture () ... [23:13:34.001] | signalConditions() ... [23:13:34.001] | : include = 'immediateCondition' [23:13:34.002] | : exclude = [23:13:34.002] | : resignal = FALSE [23:13:34.002] | : Number of conditions: 6 [23:13:34.002] | : int 6 [23:13:34.003] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.004] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.004] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.004] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.004] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.005] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.005] | signalConditions() ... done [23:13:34.005] | relay stdout ... [23:13:34.006] | relay stdout ... done [23:13:34.006] | check for misuse ... [23:13:34.006] | check for misuse ... done [23:13:34.007] | relay conditions ... [23:13:34.007] | : Future state: 'finished' [23:13:34.007] | : signalConditions() ... [23:13:34.008] | : . include = 'condition' [23:13:34.008] | : . exclude = 'immediateCondition' [23:13:34.008] | : . resignal = TRUE [23:13:34.008] | : . Number of conditions: 6 [23:13:34.009] | : . int 6 [23:13:34.009] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.010] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:33.940] | : . ' , attachPackages() ... [23:13:34.010] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.010] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:33.941] | : . ' , ; packages: [n=1] 'future' [23:13:34.011] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.011] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:33.941] | : . ' , attachPackages() ... done [23:13:34.012] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.012] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:33.941] | : . ' , attachPackages() ... [23:13:34.012] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.013] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:33.942] | : . ' , ; packages: [n=1] 'stats' [23:13:34.013] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.013] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:33.942] | : . ' , attachPackages() ... done [23:13:34.014] | : signalConditions() ... done [23:13:34.014] | relay conditions ... done [23:13:34.014] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:34.017] future(..., label = NULL) ... [23:13:34.018] | lazy: FALSE [23:13:34.018] | stdout: TRUE [23:13:34.018] | conditions: [n=1] 'condition' [23:13:34.018] | gc: FALSE [23:13:34.019] | earlySignal: FALSE [23:13:34.019] | getGlobalsAndPackages() ... [23:13:34.019] | : Searching for globals ... [23:13:34.052] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:34.053] | : Searching for globals ... done [23:13:34.053] | : Resolving globals: FALSE [23:13:34.053] | : Search for packages associated with the globals ... [23:13:34.054] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:34.055] | : . Packages: [2] 'base', 'stats' [23:13:34.055] | : Search for packages associated with the globals ... done [23:13:34.056] | : Packages after dropping 'base': [1] 'stats' [23:13:34.056] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:34.056] | : globals: [2] 'weight', 'group' [23:13:34.057] | : packages: [1] 'stats' [23:13:34.057] | getGlobalsAndPackages() ... done [23:13:34.058] | run() for 'Future' () ... [23:13:34.058] | : state: 'created' [23:13:34.058] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.059] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.059] | : Using SequentialFutureBackend ... [23:13:34.059] | : . Number of futures since start: 3 (3 created, 3 launched, 3 finished) [23:13:34.060] | : . Launching futures ... [23:13:34.060] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.060] | : . ' , getFutureData() ... [23:13:34.061] | : . ' , ; getFutureCore() ... [23:13:34.061] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:34.061] | : . ' , ; getFutureCore() ... done [23:13:34.062] | : . ' , ; getFutureCapture() ... [23:13:34.062] | : . ' , ; getFutureCapture() ... done [23:13:34.062] | : . ' , ; getFutureContext() ... [23:13:34.063] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.063] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.063] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.063] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.064] | : . ' , ; getFutureContext() ... done [23:13:34.064] | : . ' , getFutureData() ... done [23:13:34.068] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.068] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.069] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.069] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.070] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.070] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.070] | : . ' , ; ` | New stack: [23:13:34.071] | : . ' , ; ` | List of 1 [23:13:34.071] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.071] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.071] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.071] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.071] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.071] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.071] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.071] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.076] | : . ' , ; ` | Old stack: [23:13:34.077] | : . ' , ; ` | List of 1 [23:13:34.077] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.077] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.077] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.077] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.077] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.077] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.077] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.077] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.077] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.077] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.077] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.084] | : . ' , ; ` | Not identical [23:13:34.084] | : . ' , ; ` | all.equal() for future ... [23:13:34.084] | : . ' , ; ` | : List of 2 [23:13:34.084] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.084] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.084] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.084] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.084] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.084] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.084] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.096] | : . ' , ; ` | all.equal() for future ... done [23:13:34.096] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.097] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.097] | : . ' , ; ` List of future strategies: [23:13:34.097] | : . ' , ; ` 1. sequential: [23:13:34.097] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.097] | : . ' , ; ` - tweaked: FALSE [23:13:34.097] | : . ' , ; ` - call: plan(sequential) [23:13:34.098] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.098] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.099] | : . ' , assign_globals() ... [23:13:34.099] | : . ' , List of 2 [23:13:34.099] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:34.099] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:34.099] | : . ' , - attr(*, "where")=List of 2 [23:13:34.099] | : . ' , ..$ weight: [23:13:34.099] | : . ' , ..$ group : [23:13:34.099] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:34.099] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:34.099] | : . ' , - attr(*, "total_size")= num NA [23:13:34.099] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:34.106] | : . ' , - copied 'weight' to environment [23:13:34.106] | : . ' , - copied 'group' to environment [23:13:34.107] | : . ' , assign_globals() ... done [23:13:34.113] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.113] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.113] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.114] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.114] | : . ' , ; ` | : New stack: [23:13:34.114] | : . ' , ; ` | : List of 1 [23:13:34.114] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.114] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.114] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.114] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.114] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.114] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.122] | : . ' , ; ` | : Old stack: [23:13:34.122] | : . ' , ; ` | : List of 1 [23:13:34.122] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.122] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.122] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.122] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.122] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.122] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.129] | : . ' , ; ` | : Identical [23:13:34.129] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.129] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.130] | : . ' , ; ` | List of future strategies: [23:13:34.130] | : . ' , ; ` | 1. sequential: [23:13:34.130] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.130] | : . ' , ; ` | - tweaked: FALSE [23:13:34.130] | : . ' , ; ` | - call: plan(sequential) [23:13:34.131] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.131] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.131] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.132] | : . ' , SequentialFuture started (and completed) [23:13:34.133] | : . ' , signalConditions() ... [23:13:34.133] | : . ' , ; include = 'immediateCondition' [23:13:34.133] | : . ' , ; exclude = [23:13:34.134] | : . ' , ; resignal = FALSE [23:13:34.134] | : . ' , ; Number of conditions: 6 [23:13:34.134] | : . ' , ; int 6 [23:13:34.135] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.135] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.136] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.136] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.136] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.137] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.137] | : . ' , signalConditions() ... done [23:13:34.137] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.138] | : . Launching futures ... done [23:13:34.138] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.138] | : Using SequentialFutureBackend ... done [23:13:34.139] | run() for 'Future' () ... done [23:13:34.139] future(..., label = NULL) ... done [23:13:34.139] value() for SequentialFuture () ... [23:13:34.140] | signalConditions() ... [23:13:34.140] | : include = 'immediateCondition' [23:13:34.140] | : exclude = [23:13:34.141] | : resignal = FALSE [23:13:34.141] | : Number of conditions: 6 [23:13:34.141] | : int 6 [23:13:34.142] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.143] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.143] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.143] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.144] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.144] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.144] | signalConditions() ... done [23:13:34.145] | relay stdout ... [23:13:34.145] | relay stdout ... done [23:13:34.145] | check for misuse ... [23:13:34.146] | check for misuse ... done [23:13:34.146] | relay conditions ... [23:13:34.146] | : Future state: 'finished' [23:13:34.146] | : signalConditions() ... [23:13:34.147] | : . include = 'condition' [23:13:34.147] | : . exclude = 'immediateCondition' [23:13:34.147] | : . resignal = TRUE [23:13:34.148] | : . Number of conditions: 6 [23:13:34.148] | : . int 6 [23:13:34.149] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.149] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.065] | : . ' , attachPackages() ... [23:13:34.150] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.150] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.065] | : . ' , ; packages: [n=1] 'future' [23:13:34.150] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.151] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.066] | : . ' , attachPackages() ... done [23:13:34.151] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.151] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.066] | : . ' , attachPackages() ... [23:13:34.152] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.152] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.066] | : . ' , ; packages: [n=1] 'stats' [23:13:34.152] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.153] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.067] | : . ' , attachPackages() ... done [23:13:34.153] | : signalConditions() ... done [23:13:34.154] | relay conditions ... done [23:13:34.154] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:34.158] future(..., label = NULL) ... [23:13:34.158] | lazy: TRUE [23:13:34.158] | stdout: TRUE [23:13:34.159] | conditions: [n=1] 'condition' [23:13:34.159] | gc: FALSE [23:13:34.159] | earlySignal: FALSE [23:13:34.160] | getGlobalsAndPackages() ... [23:13:34.160] | : Searching for globals ... [23:13:34.191] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:34.191] | : Searching for globals ... done [23:13:34.191] | : Resolving globals: FALSE [23:13:34.192] | : Search for packages associated with the globals ... [23:13:34.192] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:34.193] | : . Packages: [2] 'base', 'stats' [23:13:34.193] | : Search for packages associated with the globals ... done [23:13:34.193] | : Packages after dropping 'base': [1] 'stats' [23:13:34.194] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:34.194] | : globals: [2] 'weight', 'group' [23:13:34.194] | : packages: [1] 'stats' [23:13:34.195] | getGlobalsAndPackages() ... done [23:13:34.195] future(..., label = NULL) ... done [23:13:34.196] value() for Future () ... [23:13:34.196] | run() for 'Future' () ... [23:13:34.196] | : state: 'created' [23:13:34.197] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.197] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.197] | : Using SequentialFutureBackend ... [23:13:34.198] | : . Number of futures since start: 4 (4 created, 4 launched, 4 finished) [23:13:34.198] | : . Launching futures ... [23:13:34.198] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.198] | : . ' , getFutureData() ... [23:13:34.199] | : . ' , ; getFutureCore() ... [23:13:34.199] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:34.199] | : . ' , ; getFutureCore() ... done [23:13:34.200] | : . ' , ; getFutureCapture() ... [23:13:34.200] | : . ' , ; getFutureCapture() ... done [23:13:34.200] | : . ' , ; getFutureContext() ... [23:13:34.200] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.201] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.201] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.201] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.202] | : . ' , ; getFutureContext() ... done [23:13:34.202] | : . ' , getFutureData() ... done [23:13:34.205] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.206] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.206] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.206] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.207] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.207] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.207] | : . ' , ; ` | New stack: [23:13:34.208] | : . ' , ; ` | List of 1 [23:13:34.208] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.208] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.208] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.208] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.208] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.208] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.208] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.208] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.213] | : . ' , ; ` | Old stack: [23:13:34.214] | : . ' , ; ` | List of 1 [23:13:34.214] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.214] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.214] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.214] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.214] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.214] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.214] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.214] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.214] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.214] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.214] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.220] | : . ' , ; ` | Not identical [23:13:34.220] | : . ' , ; ` | all.equal() for future ... [23:13:34.221] | : . ' , ; ` | : List of 2 [23:13:34.221] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.221] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.221] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.221] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.221] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.221] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.221] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.232] | : . ' , ; ` | all.equal() for future ... done [23:13:34.233] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.233] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.233] | : . ' , ; ` List of future strategies: [23:13:34.233] | : . ' , ; ` 1. sequential: [23:13:34.233] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.233] | : . ' , ; ` - tweaked: FALSE [23:13:34.233] | : . ' , ; ` - call: plan(sequential) [23:13:34.234] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.235] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.235] | : . ' , assign_globals() ... [23:13:34.235] | : . ' , List of 2 [23:13:34.235] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:34.235] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:34.235] | : . ' , - attr(*, "where")=List of 2 [23:13:34.235] | : . ' , ..$ weight: [23:13:34.235] | : . ' , ..$ group : [23:13:34.235] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:34.235] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:34.235] | : . ' , - attr(*, "total_size")= num NA [23:13:34.235] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:34.242] | : . ' , - copied 'weight' to environment [23:13:34.242] | : . ' , - copied 'group' to environment [23:13:34.242] | : . ' , assign_globals() ... done [23:13:34.248] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.249] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.249] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.249] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.249] | : . ' , ; ` | : New stack: [23:13:34.250] | : . ' , ; ` | : List of 1 [23:13:34.250] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.250] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.250] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.250] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.250] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.250] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.257] | : . ' , ; ` | : Old stack: [23:13:34.257] | : . ' , ; ` | : List of 1 [23:13:34.257] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.257] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.257] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.257] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.257] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.257] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.264] | : . ' , ; ` | : Identical [23:13:34.264] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.265] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.265] | : . ' , ; ` | List of future strategies: [23:13:34.265] | : . ' , ; ` | 1. sequential: [23:13:34.265] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.265] | : . ' , ; ` | - tweaked: FALSE [23:13:34.265] | : . ' , ; ` | - call: plan(sequential) [23:13:34.266] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.266] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.266] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.267] | : . ' , SequentialFuture started (and completed) [23:13:34.268] | : . ' , signalConditions() ... [23:13:34.268] | : . ' , ; include = 'immediateCondition' [23:13:34.268] | : . ' , ; exclude = [23:13:34.268] | : . ' , ; resignal = FALSE [23:13:34.269] | : . ' , ; Number of conditions: 6 [23:13:34.269] | : . ' , ; int 6 [23:13:34.270] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.270] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.270] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.270] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.271] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.271] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.271] | : . ' , signalConditions() ... done [23:13:34.272] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.272] | : . Launching futures ... done [23:13:34.272] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.272] | : Using SequentialFutureBackend ... done [23:13:34.273] | run() for 'Future' () ... done [23:13:34.273] | signalConditions() ... [23:13:34.273] | : include = 'immediateCondition' [23:13:34.273] | : exclude = [23:13:34.274] | : resignal = FALSE [23:13:34.274] | : Number of conditions: 6 [23:13:34.274] | : int 6 [23:13:34.275] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.275] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.276] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.276] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.276] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.276] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.277] | signalConditions() ... done [23:13:34.277] | relay stdout ... [23:13:34.277] | relay stdout ... done [23:13:34.277] | check for misuse ... [23:13:34.278] | check for misuse ... done [23:13:34.278] | relay conditions ... [23:13:34.278] | : Future state: 'finished' [23:13:34.278] | : signalConditions() ... [23:13:34.279] | : . include = 'condition' [23:13:34.279] | : . exclude = 'immediateCondition' [23:13:34.279] | : . resignal = TRUE [23:13:34.279] | : . Number of conditions: 6 [23:13:34.280] | : . int 6 [23:13:34.281] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.281] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.202] | : . ' , attachPackages() ... [23:13:34.281] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.281] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.203] | : . ' , ; packages: [n=1] 'future' [23:13:34.282] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.282] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.203] | : . ' , attachPackages() ... done [23:13:34.282] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.283] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.204] | : . ' , attachPackages() ... [23:13:34.283] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.283] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.204] | : . ' , ; packages: [n=1] 'stats' [23:13:34.284] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.284] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.204] | : . ' , attachPackages() ... done [23:13:34.284] | : signalConditions() ... done [23:13:34.285] | relay conditions ... done [23:13:34.285] value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 - Globals - one-side formulas, e.g. xtabs(~ x) ... [23:13:34.289] future(..., label = NULL) ... [23:13:34.289] | lazy: FALSE [23:13:34.289] | stdout: TRUE [23:13:34.289] | conditions: [n=1] 'condition' [23:13:34.290] | gc: FALSE [23:13:34.290] | earlySignal: FALSE [23:13:34.290] | getGlobalsAndPackages() ... [23:13:34.290] | : Searching for globals ... [23:13:34.306] | : . globals found: [4] '{', 'xtabs', 'x', '~' [23:13:34.307] | : Searching for globals ... done [23:13:34.307] | : Resolving globals: FALSE [23:13:34.307] | : Search for packages associated with the globals ... [23:13:34.308] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:34.308] | : . Packages: [2] 'base', 'stats' [23:13:34.309] | : Search for packages associated with the globals ... done [23:13:34.309] | : Packages after dropping 'base': [1] 'stats' [23:13:34.309] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:34.310] | : globals: [1] 'x' [23:13:34.310] | : packages: [1] 'stats' [23:13:34.310] | getGlobalsAndPackages() ... done [23:13:34.311] | run() for 'Future' () ... [23:13:34.311] | : state: 'created' [23:13:34.311] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.312] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.312] | : Using SequentialFutureBackend ... [23:13:34.312] | : . Number of futures since start: 5 (5 created, 5 launched, 5 finished) [23:13:34.313] | : . Launching futures ... [23:13:34.313] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.313] | : . ' , getFutureData() ... [23:13:34.313] | : . ' , ; getFutureCore() ... [23:13:34.314] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:34.314] | : . ' , ; getFutureCore() ... done [23:13:34.314] | : . ' , ; getFutureCapture() ... [23:13:34.314] | : . ' , ; getFutureCapture() ... done [23:13:34.315] | : . ' , ; getFutureContext() ... [23:13:34.315] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.315] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.316] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.316] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.316] | : . ' , ; getFutureContext() ... done [23:13:34.316] | : . ' , getFutureData() ... done [23:13:34.320] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.320] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.320] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.321] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.321] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.322] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.322] | : . ' , ; ` | New stack: [23:13:34.322] | : . ' , ; ` | List of 1 [23:13:34.322] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.322] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.322] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.322] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.322] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.322] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.322] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.322] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.327] | : . ' , ; ` | Old stack: [23:13:34.328] | : . ' , ; ` | List of 1 [23:13:34.328] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.328] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.328] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.328] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.328] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.328] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.328] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.328] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.328] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.328] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.328] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.334] | : . ' , ; ` | Not identical [23:13:34.334] | : . ' , ; ` | all.equal() for future ... [23:13:34.335] | : . ' , ; ` | : List of 2 [23:13:34.335] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.335] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.335] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.335] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.335] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.335] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.335] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.350] | : . ' , ; ` | all.equal() for future ... done [23:13:34.350] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.350] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.351] | : . ' , ; ` List of future strategies: [23:13:34.351] | : . ' , ; ` 1. sequential: [23:13:34.351] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.351] | : . ' , ; ` - tweaked: FALSE [23:13:34.351] | : . ' , ; ` - call: plan(sequential) [23:13:34.352] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.352] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.352] | : . ' , assign_globals() ... [23:13:34.353] | : . ' , List of 1 [23:13:34.353] | : . ' , $ x: num [1:5] 1 1 2 2 2 [23:13:34.353] | : . ' , - attr(*, "where")=List of 1 [23:13:34.353] | : . ' , ..$ x: [23:13:34.353] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:34.353] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:34.353] | : . ' , - attr(*, "total_size")= num NA [23:13:34.353] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:34.357] | : . ' , - copied 'x' to environment [23:13:34.358] | : . ' , assign_globals() ... done [23:13:34.362] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.363] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.363] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.363] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.364] | : . ' , ; ` | : New stack: [23:13:34.364] | : . ' , ; ` | : List of 1 [23:13:34.364] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.364] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.364] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.364] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.364] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.364] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.370] | : . ' , ; ` | : Old stack: [23:13:34.370] | : . ' , ; ` | : List of 1 [23:13:34.370] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.370] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.370] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.370] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.370] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.370] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.376] | : . ' , ; ` | : Identical [23:13:34.377] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.377] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.377] | : . ' , ; ` | List of future strategies: [23:13:34.377] | : . ' , ; ` | 1. sequential: [23:13:34.377] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.377] | : . ' , ; ` | - tweaked: FALSE [23:13:34.377] | : . ' , ; ` | - call: plan(sequential) [23:13:34.378] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.378] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.379] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.379] | : . ' , SequentialFuture started (and completed) [23:13:34.380] | : . ' , signalConditions() ... [23:13:34.380] | : . ' , ; include = 'immediateCondition' [23:13:34.380] | : . ' , ; exclude = [23:13:34.380] | : . ' , ; resignal = FALSE [23:13:34.380] | : . ' , ; Number of conditions: 6 [23:13:34.381] | : . ' , ; int 6 [23:13:34.381] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.381] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.381] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.382] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.382] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.382] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.382] | : . ' , signalConditions() ... done [23:13:34.382] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.383] | : . Launching futures ... done [23:13:34.383] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.383] | : Using SequentialFutureBackend ... done [23:13:34.383] | run() for 'Future' () ... done [23:13:34.383] future(..., label = NULL) ... done [23:13:34.383] value() for SequentialFuture () ... [23:13:34.384] | signalConditions() ... [23:13:34.384] | : include = 'immediateCondition' [23:13:34.384] | : exclude = [23:13:34.385] | : resignal = FALSE [23:13:34.385] | : Number of conditions: 6 [23:13:34.385] | : int 6 [23:13:34.386] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.386] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.386] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.387] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.387] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.387] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.387] | signalConditions() ... done [23:13:34.387] | relay stdout ... [23:13:34.387] | relay stdout ... done [23:13:34.388] | check for misuse ... [23:13:34.388] | check for misuse ... done [23:13:34.388] | relay conditions ... [23:13:34.388] | : Future state: 'finished' [23:13:34.389] | : signalConditions() ... [23:13:34.389] | : . include = 'condition' [23:13:34.389] | : . exclude = 'immediateCondition' [23:13:34.389] | : . resignal = TRUE [23:13:34.389] | : . Number of conditions: 6 [23:13:34.390] | : . int 6 [23:13:34.390] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.390] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.317] | : . ' , attachPackages() ... [23:13:34.391] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.391] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.317] | : . ' , ; packages: [n=1] 'future' [23:13:34.391] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.392] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.318] | : . ' , attachPackages() ... done [23:13:34.392] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.392] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.318] | : . ' , attachPackages() ... [23:13:34.392] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.393] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.318] | : . ' , ; packages: [n=1] 'stats' [23:13:34.393] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.393] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.319] | : . ' , attachPackages() ... done [23:13:34.393] | : signalConditions() ... done [23:13:34.394] | relay conditions ... done [23:13:34.394] value() for SequentialFuture () ... done x 1 2 2 3 [23:13:34.395] future(..., label = NULL) ... [23:13:34.395] | lazy: FALSE [23:13:34.395] | stdout: TRUE [23:13:34.396] | conditions: [n=1] 'condition' [23:13:34.396] | gc: FALSE [23:13:34.396] | earlySignal: FALSE [23:13:34.396] | getGlobalsAndPackages() ... [23:13:34.397] | : Searching for globals ... [23:13:34.410] | : . globals found: [4] '{', 'xtabs', 'x', '~' [23:13:34.410] | : Searching for globals ... done [23:13:34.410] | : Resolving globals: FALSE [23:13:34.411] | : Search for packages associated with the globals ... [23:13:34.411] | : . Packages associated with globals: [2] 'base', 'stats' [23:13:34.412] | : . Packages: [2] 'base', 'stats' [23:13:34.412] | : Search for packages associated with the globals ... done [23:13:34.412] | : Packages after dropping 'base': [1] 'stats' [23:13:34.412] | : Packages after dropping non-attached packages: [1] 'stats' [23:13:34.413] | : globals: [1] 'x' [23:13:34.413] | : packages: [1] 'stats' [23:13:34.413] | getGlobalsAndPackages() ... done [23:13:34.414] | run() for 'Future' () ... [23:13:34.414] | : state: 'created' [23:13:34.414] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.414] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.415] | : Using SequentialFutureBackend ... [23:13:34.415] | : . Number of futures since start: 6 (6 created, 6 launched, 6 finished) [23:13:34.415] | : . Launching futures ... [23:13:34.415] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.416] | : . ' , getFutureData() ... [23:13:34.416] | : . ' , ; getFutureCore() ... [23:13:34.416] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [23:13:34.416] | : . ' , ; getFutureCore() ... done [23:13:34.417] | : . ' , ; getFutureCapture() ... [23:13:34.417] | : . ' , ; getFutureCapture() ... done [23:13:34.417] | : . ' , ; getFutureContext() ... [23:13:34.417] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.417] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.418] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.418] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.418] | : . ' , ; getFutureContext() ... done [23:13:34.418] | : . ' , getFutureData() ... done [23:13:34.421] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.421] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.422] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.422] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.422] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.423] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.423] | : . ' , ; ` | New stack: [23:13:34.423] | : . ' , ; ` | List of 1 [23:13:34.423] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.423] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.423] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.423] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.423] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.423] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.423] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.423] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.428] | : . ' , ; ` | Old stack: [23:13:34.428] | : . ' , ; ` | List of 1 [23:13:34.428] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.428] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.428] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.428] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.428] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.428] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.428] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.428] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.428] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.428] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.428] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.433] | : . ' , ; ` | Not identical [23:13:34.433] | : . ' , ; ` | all.equal() for future ... [23:13:34.433] | : . ' , ; ` | : List of 2 [23:13:34.433] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.433] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.433] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.433] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.433] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.433] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.433] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.439] | : . ' , ; ` | all.equal() for future ... done [23:13:34.440] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.440] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.440] | : . ' , ; ` List of future strategies: [23:13:34.440] | : . ' , ; ` 1. sequential: [23:13:34.440] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.440] | : . ' , ; ` - tweaked: FALSE [23:13:34.440] | : . ' , ; ` - call: plan(sequential) [23:13:34.441] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.441] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.441] | : . ' , assign_globals() ... [23:13:34.441] | : . ' , List of 1 [23:13:34.441] | : . ' , $ x: num [1:5] 1 1 2 2 2 [23:13:34.441] | : . ' , - attr(*, "where")=List of 1 [23:13:34.441] | : . ' , ..$ x: [23:13:34.441] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:34.441] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:34.441] | : . ' , - attr(*, "total_size")= num NA [23:13:34.441] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:34.444] | : . ' , - copied 'x' to environment [23:13:34.444] | : . ' , assign_globals() ... done [23:13:34.448] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.448] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.448] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.448] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.448] | : . ' , ; ` | : New stack: [23:13:34.449] | : . ' , ; ` | : List of 1 [23:13:34.449] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.449] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.449] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.449] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.449] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.449] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.452] | : . ' , ; ` | : Old stack: [23:13:34.453] | : . ' , ; ` | : List of 1 [23:13:34.453] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.453] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.453] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.453] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.453] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.453] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.456] | : . ' , ; ` | : Identical [23:13:34.457] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.457] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.457] | : . ' , ; ` | List of future strategies: [23:13:34.457] | : . ' , ; ` | 1. sequential: [23:13:34.457] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.457] | : . ' , ; ` | - tweaked: FALSE [23:13:34.457] | : . ' , ; ` | - call: plan(sequential) [23:13:34.458] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.458] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.458] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.459] | : . ' , SequentialFuture started (and completed) [23:13:34.459] | : . ' , signalConditions() ... [23:13:34.459] | : . ' , ; include = 'immediateCondition' [23:13:34.459] | : . ' , ; exclude = [23:13:34.459] | : . ' , ; resignal = FALSE [23:13:34.459] | : . ' , ; Number of conditions: 6 [23:13:34.460] | : . ' , ; int 6 [23:13:34.460] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.460] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.460] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.461] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.461] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.461] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.461] | : . ' , signalConditions() ... done [23:13:34.461] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.462] | : . Launching futures ... done [23:13:34.462] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.462] | : Using SequentialFutureBackend ... done [23:13:34.462] | run() for 'Future' () ... done [23:13:34.463] future(..., label = NULL) ... done [23:13:34.463] value() for SequentialFuture () ... [23:13:34.464] | signalConditions() ... [23:13:34.464] | : include = 'immediateCondition' [23:13:34.464] | : exclude = [23:13:34.465] | : resignal = FALSE [23:13:34.465] | : Number of conditions: 6 [23:13:34.465] | : int 6 [23:13:34.466] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.467] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.467] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.467] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.467] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.468] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.468] | signalConditions() ... done [23:13:34.468] | relay stdout ... [23:13:34.469] | relay stdout ... done [23:13:34.469] | check for misuse ... [23:13:34.469] | check for misuse ... done [23:13:34.469] | relay conditions ... [23:13:34.470] | : Future state: 'finished' [23:13:34.470] | : signalConditions() ... [23:13:34.470] | : . include = 'condition' [23:13:34.471] | : . exclude = 'immediateCondition' [23:13:34.471] | : . resignal = TRUE [23:13:34.471] | : . Number of conditions: 6 [23:13:34.471] | : . int 6 [23:13:34.472] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.473] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.419] | : . ' , attachPackages() ... [23:13:34.473] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.473] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.419] | : . ' , ; packages: [n=1] 'future' [23:13:34.474] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.474] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.419] | : . ' , attachPackages() ... done [23:13:34.474] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.475] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.420] | : . ' , attachPackages() ... [23:13:34.475] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.475] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.420] | : . ' , ; packages: [n=1] 'stats' [23:13:34.479] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.479] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.420] | : . ' , attachPackages() ... done [23:13:34.479] | : signalConditions() ... done [23:13:34.480] | relay conditions ... done [23:13:34.480] value() for SequentialFuture () ... done x 1 2 2 3 - Globals - lm(, data = cars) ... - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ . - 1, data = cars) Coefficients: speed 2.909 [23:13:34.483] future(..., label = NULL) ... [23:13:34.483] | lazy: FALSE [23:13:34.484] | stdout: TRUE [23:13:34.484] | conditions: [n=1] 'condition' [23:13:34.484] | gc: FALSE [23:13:34.485] | earlySignal: FALSE [23:13:34.485] | getGlobalsAndPackages() ... [23:13:34.485] | : Searching for globals ... [23:13:34.513] | : . globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [23:13:34.513] | : Searching for globals ... done [23:13:34.513] | : Resolving globals: FALSE [23:13:34.514] | : Search for packages associated with the globals ... [23:13:34.514] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:34.515] | : . Packages: [3] 'base', 'stats', 'datasets' [23:13:34.515] | : Search for packages associated with the globals ... done [23:13:34.516] | : Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:34.516] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:34.516] | : globals: [0] [23:13:34.517] | : packages: [2] 'stats', 'datasets' [23:13:34.517] | getGlobalsAndPackages() ... done [23:13:34.517] | run() for 'Future' () ... [23:13:34.518] | : state: 'created' [23:13:34.518] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.518] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.518] | : Using SequentialFutureBackend ... [23:13:34.519] | : . Number of futures since start: 7 (7 created, 7 launched, 7 finished) [23:13:34.519] | : . Launching futures ... [23:13:34.519] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.520] | : . ' , getFutureData() ... [23:13:34.520] | : . ' , ; getFutureCore() ... [23:13:34.520] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:34.520] | : . ' , ; getFutureCore() ... done [23:13:34.521] | : . ' , ; getFutureCapture() ... [23:13:34.521] | : . ' , ; getFutureCapture() ... done [23:13:34.521] | : . ' , ; getFutureContext() ... [23:13:34.522] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.522] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.522] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.522] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.523] | : . ' , ; getFutureContext() ... done [23:13:34.523] | : . ' , getFutureData() ... done [23:13:34.526] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.526] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.527] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.527] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.527] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.528] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.528] | : . ' , ; ` | New stack: [23:13:34.528] | : . ' , ; ` | List of 1 [23:13:34.528] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.528] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.528] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.528] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.528] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.528] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.528] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.528] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.533] | : . ' , ; ` | Old stack: [23:13:34.533] | : . ' , ; ` | List of 1 [23:13:34.533] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.533] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.533] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.533] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.533] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.533] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.533] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.533] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.533] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.533] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.533] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.540] | : . ' , ; ` | Not identical [23:13:34.541] | : . ' , ; ` | all.equal() for future ... [23:13:34.541] | : . ' , ; ` | : List of 2 [23:13:34.541] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.541] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.541] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.541] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.541] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.541] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.541] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.552] | : . ' , ; ` | all.equal() for future ... done [23:13:34.552] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.552] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.553] | : . ' , ; ` List of future strategies: [23:13:34.553] | : . ' , ; ` 1. sequential: [23:13:34.553] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.553] | : . ' , ; ` - tweaked: FALSE [23:13:34.553] | : . ' , ; ` - call: plan(sequential) [23:13:34.554] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.554] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.559] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.559] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.559] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.560] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.560] | : . ' , ; ` | : New stack: [23:13:34.560] | : . ' , ; ` | : List of 1 [23:13:34.560] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.560] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.560] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.560] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.560] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.560] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.567] | : . ' , ; ` | : Old stack: [23:13:34.567] | : . ' , ; ` | : List of 1 [23:13:34.567] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.567] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.567] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.567] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.567] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.567] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.573] | : . ' , ; ` | : Identical [23:13:34.574] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.574] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.574] | : . ' , ; ` | List of future strategies: [23:13:34.574] | : . ' , ; ` | 1. sequential: [23:13:34.574] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.574] | : . ' , ; ` | - tweaked: FALSE [23:13:34.574] | : . ' , ; ` | - call: plan(sequential) [23:13:34.575] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.575] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.576] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.576] | : . ' , SequentialFuture started (and completed) [23:13:34.577] | : . ' , signalConditions() ... [23:13:34.577] | : . ' , ; include = 'immediateCondition' [23:13:34.577] | : . ' , ; exclude = [23:13:34.578] | : . ' , ; resignal = FALSE [23:13:34.578] | : . ' , ; Number of conditions: 6 [23:13:34.578] | : . ' , ; int 6 [23:13:34.579] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.579] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.579] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.580] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.580] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.580] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.581] | : . ' , signalConditions() ... done [23:13:34.581] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.581] | : . Launching futures ... done [23:13:34.581] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.582] | : Using SequentialFutureBackend ... done [23:13:34.582] | run() for 'Future' () ... done [23:13:34.582] future(..., label = NULL) ... done [23:13:34.582] value() for SequentialFuture () ... [23:13:34.583] | signalConditions() ... [23:13:34.583] | : include = 'immediateCondition' [23:13:34.583] | : exclude = [23:13:34.584] | : resignal = FALSE [23:13:34.584] | : Number of conditions: 6 [23:13:34.584] | : int 6 [23:13:34.585] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.585] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.586] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.586] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.586] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.586] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.587] | signalConditions() ... done [23:13:34.587] | relay stdout ... [23:13:34.587] | relay stdout ... done [23:13:34.587] | check for misuse ... [23:13:34.588] | check for misuse ... done [23:13:34.588] | relay conditions ... [23:13:34.588] | : Future state: 'finished' [23:13:34.588] | : signalConditions() ... [23:13:34.588] | : . include = 'condition' [23:13:34.589] | : . exclude = 'immediateCondition' [23:13:34.589] | : . resignal = TRUE [23:13:34.589] | : . Number of conditions: 6 [23:13:34.589] | : . int 6 [23:13:34.590] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.590] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.523] | : . ' , attachPackages() ... [23:13:34.590] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.590] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.524] | : . ' , ; packages: [n=1] 'future' [23:13:34.590] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.590] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.524] | : . ' , attachPackages() ... done [23:13:34.591] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.591] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.524] | : . ' , attachPackages() ... [23:13:34.591] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.591] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.525] | : . ' , ; packages: [n=2] 'stats', 'datasets' [23:13:34.591] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.592] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.525] | : . ' , attachPackages() ... done [23:13:34.592] | : signalConditions() ... done [23:13:34.592] | relay conditions ... done [23:13:34.592] value() for SequentialFuture () ... done Call: lm(formula = dist ~ . - 1, data = cars) Coefficients: speed 2.909 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ . + 0, data = cars) Coefficients: speed 2.909 [23:13:34.595] future(..., label = NULL) ... [23:13:34.595] | lazy: FALSE [23:13:34.595] | stdout: TRUE [23:13:34.595] | conditions: [n=1] 'condition' [23:13:34.596] | gc: FALSE [23:13:34.596] | earlySignal: FALSE [23:13:34.596] | getGlobalsAndPackages() ... [23:13:34.596] | : Searching for globals ... [23:13:34.614] | : . globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [23:13:34.614] | : Searching for globals ... done [23:13:34.615] | : Resolving globals: FALSE [23:13:34.615] | : Search for packages associated with the globals ... [23:13:34.615] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:34.615] | : . Packages: [3] 'base', 'stats', 'datasets' [23:13:34.616] | : Search for packages associated with the globals ... done [23:13:34.616] | : Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:34.616] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:34.616] | : globals: [0] [23:13:34.616] | : packages: [2] 'stats', 'datasets' [23:13:34.617] | getGlobalsAndPackages() ... done [23:13:34.617] | run() for 'Future' () ... [23:13:34.617] | : state: 'created' [23:13:34.617] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.618] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.618] | : Using SequentialFutureBackend ... [23:13:34.618] | : . Number of futures since start: 8 (8 created, 8 launched, 8 finished) [23:13:34.618] | : . Launching futures ... [23:13:34.619] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.620] | : . ' , getFutureData() ... [23:13:34.620] | : . ' , ; getFutureCore() ... [23:13:34.620] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:34.621] | : . ' , ; getFutureCore() ... done [23:13:34.621] | : . ' , ; getFutureCapture() ... [23:13:34.621] | : . ' , ; getFutureCapture() ... done [23:13:34.621] | : . ' , ; getFutureContext() ... [23:13:34.622] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.622] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.622] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.622] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.623] | : . ' , ; getFutureContext() ... done [23:13:34.623] | : . ' , getFutureData() ... done [23:13:34.626] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.627] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.627] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.627] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.628] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.628] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.628] | : . ' , ; ` | New stack: [23:13:34.629] | : . ' , ; ` | List of 1 [23:13:34.629] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.629] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.629] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.629] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.629] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.629] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.629] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.629] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.634] | : . ' , ; ` | Old stack: [23:13:34.634] | : . ' , ; ` | List of 1 [23:13:34.634] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.634] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.634] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.634] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.634] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.634] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.634] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.634] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.634] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.634] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.634] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.641] | : . ' , ; ` | Not identical [23:13:34.641] | : . ' , ; ` | all.equal() for future ... [23:13:34.641] | : . ' , ; ` | : List of 2 [23:13:34.641] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.641] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.641] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.641] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.641] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.641] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.641] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.652] | : . ' , ; ` | all.equal() for future ... done [23:13:34.652] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.653] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.653] | : . ' , ; ` List of future strategies: [23:13:34.653] | : . ' , ; ` 1. sequential: [23:13:34.653] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.653] | : . ' , ; ` - tweaked: FALSE [23:13:34.653] | : . ' , ; ` - call: plan(sequential) [23:13:34.654] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.654] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.660] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.660] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.660] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.661] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.661] | : . ' , ; ` | : New stack: [23:13:34.661] | : . ' , ; ` | : List of 1 [23:13:34.661] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.661] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.661] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.661] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.661] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.661] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.668] | : . ' , ; ` | : Old stack: [23:13:34.669] | : . ' , ; ` | : List of 1 [23:13:34.669] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.669] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.669] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.669] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.669] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.669] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.675] | : . ' , ; ` | : Identical [23:13:34.675] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.676] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.676] | : . ' , ; ` | List of future strategies: [23:13:34.676] | : . ' , ; ` | 1. sequential: [23:13:34.676] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.676] | : . ' , ; ` | - tweaked: FALSE [23:13:34.676] | : . ' , ; ` | - call: plan(sequential) [23:13:34.677] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.677] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.677] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.678] | : . ' , SequentialFuture started (and completed) [23:13:34.679] | : . ' , signalConditions() ... [23:13:34.679] | : . ' , ; include = 'immediateCondition' [23:13:34.679] | : . ' , ; exclude = [23:13:34.679] | : . ' , ; resignal = FALSE [23:13:34.680] | : . ' , ; Number of conditions: 6 [23:13:34.680] | : . ' , ; int 6 [23:13:34.681] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.681] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.681] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.682] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.682] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.682] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.682] | : . ' , signalConditions() ... done [23:13:34.683] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.683] | : . Launching futures ... done [23:13:34.683] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.684] | : Using SequentialFutureBackend ... done [23:13:34.684] | run() for 'Future' () ... done [23:13:34.684] future(..., label = NULL) ... done [23:13:34.684] value() for SequentialFuture () ... [23:13:34.685] | signalConditions() ... [23:13:34.685] | : include = 'immediateCondition' [23:13:34.685] | : exclude = [23:13:34.686] | : resignal = FALSE [23:13:34.686] | : Number of conditions: 6 [23:13:34.686] | : int 6 [23:13:34.687] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.687] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.687] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.688] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.688] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.688] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.689] | signalConditions() ... done [23:13:34.689] | relay stdout ... [23:13:34.689] | relay stdout ... done [23:13:34.689] | check for misuse ... [23:13:34.690] | check for misuse ... done [23:13:34.690] | relay conditions ... [23:13:34.690] | : Future state: 'finished' [23:13:34.690] | : signalConditions() ... [23:13:34.691] | : . include = 'condition' [23:13:34.691] | : . exclude = 'immediateCondition' [23:13:34.691] | : . resignal = TRUE [23:13:34.691] | : . Number of conditions: 6 [23:13:34.692] | : . int 6 [23:13:34.693] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.693] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.624] | : . ' , attachPackages() ... [23:13:34.693] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.694] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.624] | : . ' , ; packages: [n=1] 'future' [23:13:34.694] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.694] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.624] | : . ' , attachPackages() ... done [23:13:34.695] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.695] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.625] | : . ' , attachPackages() ... [23:13:34.695] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.695] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.625] | : . ' , ; packages: [n=2] 'stats', 'datasets' [23:13:34.696] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.696] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.625] | : . ' , attachPackages() ... done [23:13:34.696] | : signalConditions() ... done [23:13:34.697] | relay conditions ... done [23:13:34.697] value() for SequentialFuture () ... done Call: lm(formula = dist ~ . + 0, data = cars) Coefficients: speed 2.909 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ speed + speed^2, data = cars) Coefficients: (Intercept) speed -17.579 3.932 [23:13:34.702] future(..., label = NULL) ... [23:13:34.702] | lazy: FALSE [23:13:34.703] | stdout: TRUE [23:13:34.703] | conditions: [n=1] 'condition' [23:13:34.703] | gc: FALSE [23:13:34.703] | earlySignal: FALSE [23:13:34.704] | getGlobalsAndPackages() ... [23:13:34.704] | : Searching for globals ... [23:13:34.741] | : . globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [23:13:34.742] | : Searching for globals ... done [23:13:34.742] | : Resolving globals: FALSE [23:13:34.742] | : Search for packages associated with the globals ... [23:13:34.743] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:34.744] | : . Packages: [3] 'base', 'stats', 'datasets' [23:13:34.744] | : Search for packages associated with the globals ... done [23:13:34.744] | : Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:34.745] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:34.745] | : globals: [0] [23:13:34.745] | : packages: [2] 'stats', 'datasets' [23:13:34.745] | getGlobalsAndPackages() ... done [23:13:34.746] | run() for 'Future' () ... [23:13:34.746] | : state: 'created' [23:13:34.747] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.747] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.747] | : Using SequentialFutureBackend ... [23:13:34.748] | : . Number of futures since start: 9 (9 created, 9 launched, 9 finished) [23:13:34.748] | : . Launching futures ... [23:13:34.748] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.748] | : . ' , getFutureData() ... [23:13:34.749] | : . ' , ; getFutureCore() ... [23:13:34.749] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:34.749] | : . ' , ; getFutureCore() ... done [23:13:34.750] | : . ' , ; getFutureCapture() ... [23:13:34.750] | : . ' , ; getFutureCapture() ... done [23:13:34.750] | : . ' , ; getFutureContext() ... [23:13:34.750] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.751] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.751] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.751] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.752] | : . ' , ; getFutureContext() ... done [23:13:34.752] | : . ' , getFutureData() ... done [23:13:34.755] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.755] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.756] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.756] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.757] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.757] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.757] | : . ' , ; ` | New stack: [23:13:34.757] | : . ' , ; ` | List of 1 [23:13:34.757] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.757] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.757] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.757] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.757] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.757] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.757] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.757] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.768] | : . ' , ; ` | Old stack: [23:13:34.768] | : . ' , ; ` | List of 1 [23:13:34.768] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.768] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.768] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.768] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.768] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.768] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.768] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.768] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.768] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.768] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.768] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.774] | : . ' , ; ` | Not identical [23:13:34.774] | : . ' , ; ` | all.equal() for future ... [23:13:34.775] | : . ' , ; ` | : List of 2 [23:13:34.775] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.775] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.775] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.775] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.775] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.775] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.775] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.785] | : . ' , ; ` | all.equal() for future ... done [23:13:34.785] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.786] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.786] | : . ' , ; ` List of future strategies: [23:13:34.786] | : . ' , ; ` 1. sequential: [23:13:34.786] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.786] | : . ' , ; ` - tweaked: FALSE [23:13:34.786] | : . ' , ; ` - call: plan(sequential) [23:13:34.787] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.787] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.792] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.792] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.793] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.793] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.793] | : . ' , ; ` | : New stack: [23:13:34.793] | : . ' , ; ` | : List of 1 [23:13:34.793] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.793] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.793] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.793] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.793] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.793] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.800] | : . ' , ; ` | : Old stack: [23:13:34.800] | : . ' , ; ` | : List of 1 [23:13:34.800] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.800] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.800] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.800] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.800] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.800] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.806] | : . ' , ; ` | : Identical [23:13:34.806] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.806] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.807] | : . ' , ; ` | List of future strategies: [23:13:34.807] | : . ' , ; ` | 1. sequential: [23:13:34.807] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.807] | : . ' , ; ` | - tweaked: FALSE [23:13:34.807] | : . ' , ; ` | - call: plan(sequential) [23:13:34.808] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.808] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.808] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.809] | : . ' , SequentialFuture started (and completed) [23:13:34.809] | : . ' , signalConditions() ... [23:13:34.809] | : . ' , ; include = 'immediateCondition' [23:13:34.810] | : . ' , ; exclude = [23:13:34.810] | : . ' , ; resignal = FALSE [23:13:34.810] | : . ' , ; Number of conditions: 6 [23:13:34.810] | : . ' , ; int 6 [23:13:34.811] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.812] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.812] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.812] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.812] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.813] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.813] | : . ' , signalConditions() ... done [23:13:34.813] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.814] | : . Launching futures ... done [23:13:34.814] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.814] | : Using SequentialFutureBackend ... done [23:13:34.814] | run() for 'Future' () ... done [23:13:34.815] future(..., label = NULL) ... done [23:13:34.815] value() for SequentialFuture () ... [23:13:34.815] | signalConditions() ... [23:13:34.815] | : include = 'immediateCondition' [23:13:34.816] | : exclude = [23:13:34.816] | : resignal = FALSE [23:13:34.816] | : Number of conditions: 6 [23:13:34.816] | : int 6 [23:13:34.817] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.818] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.818] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.818] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.818] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.819] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.819] | signalConditions() ... done [23:13:34.819] | relay stdout ... [23:13:34.819] | relay stdout ... done [23:13:34.820] | check for misuse ... [23:13:34.820] | check for misuse ... done [23:13:34.820] | relay conditions ... [23:13:34.820] | : Future state: 'finished' [23:13:34.821] | : signalConditions() ... [23:13:34.821] | : . include = 'condition' [23:13:34.821] | : . exclude = 'immediateCondition' [23:13:34.822] | : . resignal = TRUE [23:13:34.822] | : . Number of conditions: 6 [23:13:34.822] | : . int 6 [23:13:34.823] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.823] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.752] | : . ' , attachPackages() ... [23:13:34.823] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.824] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.753] | : . ' , ; packages: [n=1] 'future' [23:13:34.824] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.825] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.753] | : . ' , attachPackages() ... done [23:13:34.825] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.825] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.753] | : . ' , attachPackages() ... [23:13:34.826] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.826] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.754] | : . ' , ; packages: [n=2] 'stats', 'datasets' [23:13:34.827] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.827] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.754] | : . ' , attachPackages() ... done [23:13:34.827] | : signalConditions() ... done [23:13:34.828] | relay conditions ... done [23:13:34.828] value() for SequentialFuture () ... done Call: lm(formula = dist ~ speed + speed^2, data = cars) Coefficients: (Intercept) speed -17.579 3.932 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ speed + I(speed^2), data = cars) Coefficients: (Intercept) speed I(speed^2) 2.47014 0.91329 0.09996 [23:13:34.834] future(..., label = NULL) ... [23:13:34.835] | lazy: FALSE [23:13:34.835] | stdout: TRUE [23:13:34.835] | conditions: [n=1] 'condition' [23:13:34.836] | gc: FALSE [23:13:34.836] | earlySignal: FALSE [23:13:34.836] | getGlobalsAndPackages() ... [23:13:34.837] | : Searching for globals ... [23:13:34.883] | : . globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [23:13:34.884] | : Searching for globals ... done [23:13:34.884] | : Resolving globals: FALSE [23:13:34.885] | : Search for packages associated with the globals ... [23:13:34.885] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:34.886] | : . Packages: [3] 'base', 'stats', 'datasets' [23:13:34.886] | : Search for packages associated with the globals ... done [23:13:34.887] | : Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:34.887] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:34.887] | : globals: [0] [23:13:34.888] | : packages: [2] 'stats', 'datasets' [23:13:34.888] | getGlobalsAndPackages() ... done [23:13:34.889] | run() for 'Future' () ... [23:13:34.889] | : state: 'created' [23:13:34.889] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.890] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.890] | : Using SequentialFutureBackend ... [23:13:34.890] | : . Number of futures since start: 10 (10 created, 10 launched, 10 finished) [23:13:34.891] | : . Launching futures ... [23:13:34.891] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:34.891] | : . ' , getFutureData() ... [23:13:34.891] | : . ' , ; getFutureCore() ... [23:13:34.892] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:34.892] | : . ' , ; getFutureCore() ... done [23:13:34.892] | : . ' , ; getFutureCapture() ... [23:13:34.893] | : . ' , ; getFutureCapture() ... done [23:13:34.893] | : . ' , ; getFutureContext() ... [23:13:34.893] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.894] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:34.894] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.894] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:34.895] | : . ' , ; getFutureContext() ... done [23:13:34.895] | : . ' , getFutureData() ... done [23:13:34.898] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:34.899] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:34.899] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:34.900] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.900] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.900] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:34.901] | : . ' , ; ` | New stack: [23:13:34.901] | : . ' , ; ` | List of 1 [23:13:34.901] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.901] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.901] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:34.901] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.901] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.901] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.901] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.901] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.907] | : . ' , ; ` | Old stack: [23:13:34.907] | : . ' , ; ` | List of 1 [23:13:34.907] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:34.907] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.907] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:34.907] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.907] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.907] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.907] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:34.907] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.907] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.907] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.907] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.914] | : . ' , ; ` | Not identical [23:13:34.914] | : . ' , ; ` | all.equal() for future ... [23:13:34.915] | : . ' , ; ` | : List of 2 [23:13:34.915] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.915] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:34.915] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.915] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.915] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.915] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.915] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.930] | : . ' , ; ` | all.equal() for future ... done [23:13:34.930] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:34.931] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.931] | : . ' , ; ` List of future strategies: [23:13:34.931] | : . ' , ; ` 1. sequential: [23:13:34.931] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:34.931] | : . ' , ; ` - tweaked: FALSE [23:13:34.931] | : . ' , ; ` - call: plan(sequential) [23:13:34.932] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.932] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.938] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.938] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:34.938] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:34.939] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:34.939] | : . ' , ; ` | : New stack: [23:13:34.939] | : . ' , ; ` | : List of 1 [23:13:34.939] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.939] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.939] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.939] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.939] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.939] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.946] | : . ' , ; ` | : Old stack: [23:13:34.946] | : . ' , ; ` | : List of 1 [23:13:34.946] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.946] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:34.946] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:34.946] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:34.946] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:34.946] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:34.953] | : . ' , ; ` | : Identical [23:13:34.953] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:34.953] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:34.954] | : . ' , ; ` | List of future strategies: [23:13:34.954] | : . ' , ; ` | 1. sequential: [23:13:34.954] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:34.954] | : . ' , ; ` | - tweaked: FALSE [23:13:34.954] | : . ' , ; ` | - call: plan(sequential) [23:13:34.955] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:34.955] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.955] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:34.956] | : . ' , SequentialFuture started (and completed) [23:13:34.956] | : . ' , signalConditions() ... [23:13:34.957] | : . ' , ; include = 'immediateCondition' [23:13:34.957] | : . ' , ; exclude = [23:13:34.957] | : . ' , ; resignal = FALSE [23:13:34.957] | : . ' , ; Number of conditions: 6 [23:13:34.958] | : . ' , ; int 6 [23:13:34.958] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.959] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.959] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.959] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.959] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.960] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.960] | : . ' , signalConditions() ... done [23:13:34.960] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:34.961] | : . Launching futures ... done [23:13:34.961] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:34.961] | : Using SequentialFutureBackend ... done [23:13:34.961] | run() for 'Future' () ... done [23:13:34.962] future(..., label = NULL) ... done [23:13:34.962] value() for SequentialFuture () ... [23:13:34.963] | signalConditions() ... [23:13:34.963] | : include = 'immediateCondition' [23:13:34.963] | : exclude = [23:13:34.963] | : resignal = FALSE [23:13:34.963] | : Number of conditions: 6 [23:13:34.964] | : int 6 [23:13:34.965] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.965] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.965] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.966] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.966] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.966] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.966] | signalConditions() ... done [23:13:34.967] | relay stdout ... [23:13:34.967] | relay stdout ... done [23:13:34.967] | check for misuse ... [23:13:34.968] | check for misuse ... done [23:13:34.968] | relay conditions ... [23:13:34.968] | : Future state: 'finished' [23:13:34.968] | : signalConditions() ... [23:13:34.969] | : . include = 'condition' [23:13:34.969] | : . exclude = 'immediateCondition' [23:13:34.969] | : . resignal = TRUE [23:13:34.969] | : . Number of conditions: 6 [23:13:34.970] | : . int 6 [23:13:34.971] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.971] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:34.895] | : . ' , attachPackages() ... [23:13:34.971] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.972] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:34.896] | : . ' , ; packages: [n=1] 'future' [23:13:34.972] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.972] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:34.896] | : . ' , attachPackages() ... done [23:13:34.973] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.973] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:34.897] | : . ' , attachPackages() ... [23:13:34.973] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.973] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:34.897] | : . ' , ; packages: [n=2] 'stats', 'datasets' [23:13:34.974] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:34.974] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:34.897] | : . ' , attachPackages() ... done [23:13:34.974] | : signalConditions() ... done [23:13:34.975] | relay conditions ... done [23:13:34.975] value() for SequentialFuture () ... done Call: lm(formula = dist ~ speed + I(speed^2), data = cars) Coefficients: (Intercept) speed I(speed^2) 2.47014 0.91329 0.09996 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ poly(speed, 2), data = cars) Coefficients: (Intercept) poly(speed, 2)1 poly(speed, 2)2 42.98 145.55 23.00 [23:13:34.981] future(..., label = NULL) ... [23:13:34.982] | lazy: FALSE [23:13:34.982] | stdout: TRUE [23:13:34.982] | conditions: [n=1] 'condition' [23:13:34.983] | gc: FALSE [23:13:34.983] | earlySignal: FALSE [23:13:34.983] | getGlobalsAndPackages() ... [23:13:34.984] | : Searching for globals ... [23:13:35.012] | : . globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [23:13:35.012] | : Searching for globals ... done [23:13:35.013] | : Resolving globals: FALSE [23:13:35.013] | : Search for packages associated with the globals ... [23:13:35.014] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:35.014] | : . Packages: [3] 'base', 'stats', 'datasets' [23:13:35.015] | : Search for packages associated with the globals ... done [23:13:35.015] | : Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:35.015] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:35.016] | : globals: [0] [23:13:35.016] | : packages: [2] 'stats', 'datasets' [23:13:35.016] | getGlobalsAndPackages() ... done [23:13:35.017] | run() for 'Future' () ... [23:13:35.017] | : state: 'created' [23:13:35.018] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.018] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.018] | : Using SequentialFutureBackend ... [23:13:35.018] | : . Number of futures since start: 11 (11 created, 11 launched, 11 finished) [23:13:35.019] | : . Launching futures ... [23:13:35.019] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:35.019] | : . ' , getFutureData() ... [23:13:35.020] | : . ' , ; getFutureCore() ... [23:13:35.020] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:35.020] | : . ' , ; getFutureCore() ... done [23:13:35.021] | : . ' , ; getFutureCapture() ... [23:13:35.021] | : . ' , ; getFutureCapture() ... done [23:13:35.021] | : . ' , ; getFutureContext() ... [23:13:35.022] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.022] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:35.022] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.022] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:35.023] | : . ' , ; getFutureContext() ... done [23:13:35.023] | : . ' , getFutureData() ... done [23:13:35.027] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.027] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:35.027] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.028] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.028] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.029] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:35.029] | : . ' , ; ` | New stack: [23:13:35.029] | : . ' , ; ` | List of 1 [23:13:35.029] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.029] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.029] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:35.029] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.029] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.029] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.029] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.029] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.034] | : . ' , ; ` | Old stack: [23:13:35.035] | : . ' , ; ` | List of 1 [23:13:35.035] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.035] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.035] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:35.035] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.035] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.035] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.035] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:35.035] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.035] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.035] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.035] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.040] | : . ' , ; ` | Not identical [23:13:35.041] | : . ' , ; ` | all.equal() for future ... [23:13:35.041] | : . ' , ; ` | : List of 2 [23:13:35.041] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.041] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.041] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.041] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.041] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.041] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.041] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.053] | : . ' , ; ` | all.equal() for future ... done [23:13:35.053] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:35.053] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.054] | : . ' , ; ` List of future strategies: [23:13:35.054] | : . ' , ; ` 1. sequential: [23:13:35.054] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:35.054] | : . ' , ; ` - tweaked: FALSE [23:13:35.054] | : . ' , ; ` - call: plan(sequential) [23:13:35.055] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.055] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.060] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.061] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.061] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.061] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:35.062] | : . ' , ; ` | : New stack: [23:13:35.062] | : . ' , ; ` | : List of 1 [23:13:35.062] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.062] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.062] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.062] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.062] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.062] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.069] | : . ' , ; ` | : Old stack: [23:13:35.069] | : . ' , ; ` | : List of 1 [23:13:35.069] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.069] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.069] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.069] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.069] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.069] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.079] | : . ' , ; ` | : Identical [23:13:35.080] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:35.080] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.080] | : . ' , ; ` | List of future strategies: [23:13:35.080] | : . ' , ; ` | 1. sequential: [23:13:35.080] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:35.080] | : . ' , ; ` | - tweaked: FALSE [23:13:35.080] | : . ' , ; ` | - call: plan(sequential) [23:13:35.081] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.081] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.082] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.082] | : . ' , SequentialFuture started (and completed) [23:13:35.083] | : . ' , signalConditions() ... [23:13:35.083] | : . ' , ; include = 'immediateCondition' [23:13:35.083] | : . ' , ; exclude = [23:13:35.084] | : . ' , ; resignal = FALSE [23:13:35.084] | : . ' , ; Number of conditions: 6 [23:13:35.084] | : . ' , ; int 6 [23:13:35.085] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.085] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.086] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.086] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.086] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.087] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.087] | : . ' , signalConditions() ... done [23:13:35.087] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:35.087] | : . Launching futures ... done [23:13:35.088] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:35.088] | : Using SequentialFutureBackend ... done [23:13:35.088] | run() for 'Future' () ... done [23:13:35.089] future(..., label = NULL) ... done [23:13:35.089] value() for SequentialFuture () ... [23:13:35.089] | signalConditions() ... [23:13:35.090] | : include = 'immediateCondition' [23:13:35.090] | : exclude = [23:13:35.090] | : resignal = FALSE [23:13:35.090] | : Number of conditions: 6 [23:13:35.091] | : int 6 [23:13:35.092] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.092] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.092] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.092] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.093] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.093] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.093] | signalConditions() ... done [23:13:35.094] | relay stdout ... [23:13:35.094] | relay stdout ... done [23:13:35.094] | check for misuse ... [23:13:35.095] | check for misuse ... done [23:13:35.095] | relay conditions ... [23:13:35.095] | : Future state: 'finished' [23:13:35.095] | : signalConditions() ... [23:13:35.096] | : . include = 'condition' [23:13:35.096] | : . exclude = 'immediateCondition' [23:13:35.096] | : . resignal = TRUE [23:13:35.096] | : . Number of conditions: 6 [23:13:35.097] | : . int 6 [23:13:35.097] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.098] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:35.024] | : . ' , attachPackages() ... [23:13:35.098] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.098] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:35.024] | : . ' , ; packages: [n=1] 'future' [23:13:35.099] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.099] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:35.025] | : . ' , attachPackages() ... done [23:13:35.099] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.100] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:35.025] | : . ' , attachPackages() ... [23:13:35.100] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.100] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:35.025] | : . ' , ; packages: [n=2] 'stats', 'datasets' [23:13:35.100] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.101] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:35.026] | : . ' , attachPackages() ... done [23:13:35.101] | : signalConditions() ... done [23:13:35.101] | relay conditions ... done [23:13:35.102] value() for SequentialFuture () ... done Call: lm(formula = dist ~ poly(speed, 2), data = cars) Coefficients: (Intercept) poly(speed, 2)1 poly(speed, 2)2 42.98 145.55 23.00 - Globals - map(x, ~ expr) ... [23:13:35.106] future(..., label = NULL) ... [23:13:35.106] | lazy: FALSE [23:13:35.106] | stdout: TRUE [23:13:35.106] | conditions: [n=1] 'condition' [23:13:35.107] | gc: FALSE [23:13:35.107] | earlySignal: FALSE [23:13:35.107] | getGlobalsAndPackages() ... [23:13:35.107] | : Searching for globals ... [23:13:35.176] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [23:13:35.176] | : Searching for globals ... done [23:13:35.177] | : Resolving globals: FALSE [23:13:35.177] | : Search for packages associated with the globals ... [23:13:35.178] | : . Packages associated with globals: [1] 'base' [23:13:35.179] | : . Packages: [1] 'base' [23:13:35.179] | : Search for packages associated with the globals ... done [23:13:35.179] | : Packages after dropping 'base': [0] [23:13:35.180] | : globals: [3] 'outer_function', 'map', 'inner_function' [23:13:35.180] | : packages: [0] [23:13:35.180] | getGlobalsAndPackages() ... done [23:13:35.181] | run() for 'Future' () ... [23:13:35.181] | : state: 'created' [23:13:35.181] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.182] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.182] | : Using SequentialFutureBackend ... [23:13:35.182] | : . Number of futures since start: 12 (12 created, 12 launched, 12 finished) [23:13:35.182] | : . Launching futures ... [23:13:35.183] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:35.183] | : . ' , getFutureData() ... [23:13:35.183] | : . ' , ; getFutureCore() ... [23:13:35.184] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:13:35.184] | : . ' , ; getFutureCore() ... done [23:13:35.184] | : . ' , ; getFutureCapture() ... [23:13:35.185] | : . ' , ; getFutureCapture() ... done [23:13:35.185] | : . ' , ; getFutureContext() ... [23:13:35.185] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.185] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:35.186] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.186] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:35.186] | : . ' , ; getFutureContext() ... done [23:13:35.187] | : . ' , getFutureData() ... done [23:13:35.190] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.190] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:35.190] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.191] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.191] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.192] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:35.192] | : . ' , ; ` | New stack: [23:13:35.192] | : . ' , ; ` | List of 1 [23:13:35.192] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.192] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.192] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:35.192] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.192] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.192] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.192] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.192] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.197] | : . ' , ; ` | Old stack: [23:13:35.198] | : . ' , ; ` | List of 1 [23:13:35.198] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.198] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.198] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:35.198] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.198] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.198] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.198] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:35.198] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.198] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.198] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.198] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.204] | : . ' , ; ` | Not identical [23:13:35.204] | : . ' , ; ` | all.equal() for future ... [23:13:35.205] | : . ' , ; ` | : List of 2 [23:13:35.205] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.205] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.205] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.205] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.205] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.205] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.205] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.218] | : . ' , ; ` | all.equal() for future ... done [23:13:35.219] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:35.219] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.219] | : . ' , ; ` List of future strategies: [23:13:35.219] | : . ' , ; ` 1. sequential: [23:13:35.219] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:35.219] | : . ' , ; ` - tweaked: FALSE [23:13:35.219] | : . ' , ; ` - call: plan(sequential) [23:13:35.220] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.221] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.221] | : . ' , assign_globals() ... [23:13:35.221] | : . ' , List of 3 [23:13:35.221] | : . ' , $ outer_function:function (x) [23:13:35.221] | : . ' , $ map :function (.x, .f, ...) [23:13:35.221] | : . ' , $ inner_function:function (x) [23:13:35.221] | : . ' , - attr(*, "where")=List of 3 [23:13:35.221] | : . ' , ..$ outer_function: [23:13:35.221] | : . ' , ..$ map : [23:13:35.221] | : . ' , ..$ inner_function: [23:13:35.221] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:35.221] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:35.221] | : . ' , - attr(*, "total_size")= num NA [23:13:35.221] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:35.228] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [23:13:35.228] | : . ' , - copied 'outer_function' to environment [23:13:35.228] | : . ' , - reassign environment for 'map' [where=globalenv()] [23:13:35.229] | : . ' , - copied 'map' to environment [23:13:35.229] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [23:13:35.229] | : . ' , - copied 'inner_function' to environment [23:13:35.230] | : . ' , assign_globals() ... done [23:13:35.241] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.242] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.242] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.243] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:35.243] | : . ' , ; ` | : New stack: [23:13:35.243] | : . ' , ; ` | : List of 1 [23:13:35.243] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.243] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.243] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.243] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.243] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.243] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.250] | : . ' , ; ` | : Old stack: [23:13:35.250] | : . ' , ; ` | : List of 1 [23:13:35.250] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.250] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.250] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.250] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.250] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.250] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.256] | : . ' , ; ` | : Identical [23:13:35.257] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:35.257] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.257] | : . ' , ; ` | List of future strategies: [23:13:35.257] | : . ' , ; ` | 1. sequential: [23:13:35.257] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:35.257] | : . ' , ; ` | - tweaked: FALSE [23:13:35.257] | : . ' , ; ` | - call: plan(sequential) [23:13:35.258] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.258] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.259] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.260] | : . ' , SequentialFuture started (and completed) [23:13:35.260] | : . ' , signalConditions() ... [23:13:35.260] | : . ' , ; include = 'immediateCondition' [23:13:35.260] | : . ' , ; exclude = [23:13:35.261] | : . ' , ; resignal = FALSE [23:13:35.261] | : . ' , ; Number of conditions: 6 [23:13:35.261] | : . ' , ; int 6 [23:13:35.262] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.262] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.263] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.263] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.263] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.264] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.264] | : . ' , signalConditions() ... done [23:13:35.264] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:35.264] | : . Launching futures ... done [23:13:35.265] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:35.265] | : Using SequentialFutureBackend ... done [23:13:35.265] | run() for 'Future' () ... done [23:13:35.266] future(..., label = NULL) ... done [23:13:35.266] value() for SequentialFuture () ... [23:13:35.266] | signalConditions() ... [23:13:35.267] | : include = 'immediateCondition' [23:13:35.267] | : exclude = [23:13:35.267] | : resignal = FALSE [23:13:35.267] | : Number of conditions: 6 [23:13:35.268] | : int 6 [23:13:35.268] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.269] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.269] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.269] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.270] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.270] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.270] | signalConditions() ... done [23:13:35.270] | relay stdout ... [23:13:35.271] | relay stdout ... done [23:13:35.271] | check for misuse ... [23:13:35.271] | check for misuse ... done [23:13:35.272] | relay conditions ... [23:13:35.272] | : Future state: 'finished' [23:13:35.272] | : signalConditions() ... [23:13:35.272] | : . include = 'condition' [23:13:35.273] | : . exclude = 'immediateCondition' [23:13:35.273] | : . resignal = TRUE [23:13:35.273] | : . Number of conditions: 6 [23:13:35.274] | : . int 6 [23:13:35.274] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.275] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:35.187] | : . ' , attachPackages() ... [23:13:35.275] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.275] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:35.188] | : . ' , ; packages: [n=1] 'future' [23:13:35.276] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.276] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:35.188] | : . ' , attachPackages() ... done [23:13:35.276] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.277] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:35.188] | : . ' , attachPackages() ... [23:13:35.277] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.277] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:35.189] | : . ' , ; packages: [n=0] [23:13:35.278] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.278] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:35.189] | : . ' , attachPackages() ... done [23:13:35.278] | : signalConditions() ... done [23:13:35.279] | relay conditions ... done [23:13:35.279] value() for SequentialFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [23:13:35.281] future(..., label = NULL) ... [23:13:35.282] | lazy: FALSE [23:13:35.282] | stdout: TRUE [23:13:35.282] | conditions: [n=1] 'condition' [23:13:35.282] | gc: FALSE [23:13:35.283] | earlySignal: FALSE [23:13:35.283] | getGlobalsAndPackages() ... [23:13:35.283] | : Searching for globals ... [23:13:35.358] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [23:13:35.358] | : Searching for globals ... done [23:13:35.359] | : Resolving globals: FALSE [23:13:35.359] | : Search for packages associated with the globals ... [23:13:35.360] | : . Packages associated with globals: [1] 'base' [23:13:35.361] | : . Packages: [1] 'base' [23:13:35.361] | : Search for packages associated with the globals ... done [23:13:35.362] | : Packages after dropping 'base': [0] [23:13:35.362] | : globals: [3] 'outer_function', 'map', 'inner_function' [23:13:35.362] | : packages: [0] [23:13:35.363] | getGlobalsAndPackages() ... done [23:13:35.363] | run() for 'Future' () ... [23:13:35.364] | : state: 'created' [23:13:35.364] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.364] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.365] | : Using SequentialFutureBackend ... [23:13:35.365] | : . Number of futures since start: 13 (13 created, 13 launched, 13 finished) [23:13:35.365] | : . Launching futures ... [23:13:35.366] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:13:35.366] | : . ' , getFutureData() ... [23:13:35.366] | : . ' , ; getFutureCore() ... [23:13:35.367] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:13:35.367] | : . ' , ; getFutureCore() ... done [23:13:35.367] | : . ' , ; getFutureCapture() ... [23:13:35.368] | : . ' , ; getFutureCapture() ... done [23:13:35.368] | : . ' , ; getFutureContext() ... [23:13:35.368] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.369] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:13:35.369] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.370] | : . ' , ; ` Packages needed by future backend (n = 0): [23:13:35.370] | : . ' , ; getFutureContext() ... done [23:13:35.370] | : . ' , getFutureData() ... done [23:13:35.373] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.373] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:13:35.374] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.374] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.375] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.375] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:13:35.375] | : . ' , ; ` | New stack: [23:13:35.375] | : . ' , ; ` | List of 1 [23:13:35.375] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.375] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.375] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:13:35.375] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.375] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.375] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.375] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.375] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.380] | : . ' , ; ` | Old stack: [23:13:35.381] | : . ' , ; ` | List of 1 [23:13:35.381] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:13:35.381] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.381] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:13:35.381] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.381] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.381] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.381] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:13:35.381] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.381] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.381] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.381] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.387] | : . ' , ; ` | Not identical [23:13:35.387] | : . ' , ; ` | all.equal() for future ... [23:13:35.387] | : . ' , ; ` | : List of 2 [23:13:35.387] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.387] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:13:35.387] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.387] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.387] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.387] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.387] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.397] | : . ' , ; ` | all.equal() for future ... done [23:13:35.398] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:13:35.398] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.398] | : . ' , ; ` List of future strategies: [23:13:35.398] | : . ' , ; ` 1. sequential: [23:13:35.398] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:13:35.398] | : . ' , ; ` - tweaked: FALSE [23:13:35.398] | : . ' , ; ` - call: plan(sequential) [23:13:35.399] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.399] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.400] | : . ' , assign_globals() ... [23:13:35.400] | : . ' , List of 3 [23:13:35.400] | : . ' , $ outer_function:function (x) [23:13:35.400] | : . ' , $ map :function (.x, .f, ...) [23:13:35.400] | : . ' , $ inner_function:function (x) [23:13:35.400] | : . ' , - attr(*, "where")=List of 3 [23:13:35.400] | : . ' , ..$ outer_function: [23:13:35.400] | : . ' , ..$ map : [23:13:35.400] | : . ' , ..$ inner_function: [23:13:35.400] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:13:35.400] | : . ' , - attr(*, "resolved")= logi FALSE [23:13:35.400] | : . ' , - attr(*, "total_size")= num NA [23:13:35.400] | : . ' , - attr(*, "already-done")= logi TRUE [23:13:35.407] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [23:13:35.407] | : . ' , - copied 'outer_function' to environment [23:13:35.407] | : . ' , - reassign environment for 'map' [where=globalenv()] [23:13:35.408] | : . ' , - copied 'map' to environment [23:13:35.408] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [23:13:35.408] | : . ' , - copied 'inner_function' to environment [23:13:35.408] | : . ' , assign_globals() ... done [23:13:35.412] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.412] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:13:35.413] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:13:35.413] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:13:35.413] | : . ' , ; ` | : New stack: [23:13:35.413] | : . ' , ; ` | : List of 1 [23:13:35.413] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.413] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.413] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.413] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.413] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.413] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.420] | : . ' , ; ` | : Old stack: [23:13:35.420] | : . ' , ; ` | : List of 1 [23:13:35.420] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.420] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:13:35.420] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.420] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.420] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.420] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.426] | : . ' , ; ` | : Identical [23:13:35.426] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:13:35.427] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:13:35.427] | : . ' , ; ` | List of future strategies: [23:13:35.427] | : . ' , ; ` | 1. sequential: [23:13:35.427] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:13:35.427] | : . ' , ; ` | - tweaked: FALSE [23:13:35.427] | : . ' , ; ` | - call: plan(sequential) [23:13:35.428] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:13:35.428] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.428] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:13:35.429] | : . ' , SequentialFuture started (and completed) [23:13:35.430] | : . ' , signalConditions() ... [23:13:35.430] | : . ' , ; include = 'immediateCondition' [23:13:35.430] | : . ' , ; exclude = [23:13:35.430] | : . ' , ; resignal = FALSE [23:13:35.431] | : . ' , ; Number of conditions: 6 [23:13:35.431] | : . ' , ; int 6 [23:13:35.432] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.432] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.432] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.432] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.433] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.433] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.433] | : . ' , signalConditions() ... done [23:13:35.434] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:13:35.434] | : . Launching futures ... done [23:13:35.434] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:13:35.434] | : Using SequentialFutureBackend ... done [23:13:35.435] | run() for 'Future' () ... done [23:13:35.435] future(..., label = NULL) ... done [23:13:35.435] value() for SequentialFuture () ... [23:13:35.436] | signalConditions() ... [23:13:35.436] | : include = 'immediateCondition' [23:13:35.436] | : exclude = [23:13:35.436] | : resignal = FALSE [23:13:35.437] | : Number of conditions: 6 [23:13:35.437] | : int 6 [23:13:35.438] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.438] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.438] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.439] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.439] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.439] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.439] | signalConditions() ... done [23:13:35.440] | relay stdout ... [23:13:35.440] | relay stdout ... done [23:13:35.440] | check for misuse ... [23:13:35.440] | check for misuse ... done [23:13:35.441] | relay conditions ... [23:13:35.441] | : Future state: 'finished' [23:13:35.441] | : signalConditions() ... [23:13:35.442] | : . include = 'condition' [23:13:35.442] | : . exclude = 'immediateCondition' [23:13:35.442] | : . resignal = TRUE [23:13:35.442] | : . Number of conditions: 6 [23:13:35.443] | : . int 6 [23:13:35.443] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.444] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:13:35.371] | : . ' , attachPackages() ... [23:13:35.444] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.444] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:13:35.371] | : . ' , ; packages: [n=1] 'future' [23:13:35.445] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.445] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:13:35.371] | : . ' , attachPackages() ... done [23:13:35.445] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.445] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:13:35.372] | : . ' , attachPackages() ... [23:13:35.446] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.446] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:13:35.372] | : . ' , ; packages: [n=0] [23:13:35.446] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:13:35.447] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:13:35.372] | : . ' , attachPackages() ... done [23:13:35.447] | : signalConditions() ... done [23:13:35.447] | relay conditions ... done [23:13:35.448] value() for SequentialFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 Testing with 1 cores ... DONE Testing with 2 cores ... availableCores(): 2 - plan('multisession') ... [23:13:35.453] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.454] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:13:35.454] | : all.equal() for FutureStrategyList ... [23:13:35.454] | : . New stack: [23:13:35.455] | : . List of 1 [23:13:35.455] | : . $ :function (..., workers = availableCores(constraints = "connections-16"), [23:13:35.455] | : . rscript_libs = .libPaths()) [23:13:35.455] | : . ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [23:13:35.455] | : . ..- attr(*, "init")= logi TRUE [23:13:35.455] | : . ..- attr(*, "factory")=function (workers = availableCores(constraints = "connections-16"), rscript_libs = .libPaths(), [23:13:35.455] | : . interrupts = TRUE, gc = FALSE, earlySignal = FALSE, ...) [23:13:35.455] | : . .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.455] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.455] | : . ..- attr(*, "untweakable")= chr "persistent" [23:13:35.455] | : . ..- attr(*, "call")= language plan(strategy) [23:13:35.455] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.460] | : . Old stack: [23:13:35.460] | : . List of 1 [23:13:35.460] | : . $ :function (..., envir = parent.frame()) [23:13:35.460] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.460] | : . ..- attr(*, "init")= chr "done" [23:13:35.460] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.460] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.460] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.460] | : . ..- attr(*, "call")= language plan(sequential) [23:13:35.460] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.460] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.460] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.460] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.466] | : . Not identical [23:13:35.466] | : . all.equal() for future ... [23:13:35.467] | : . ' List of 2 [23:13:35.467] | : . ' $ target :function (..., workers = availableCores(constraints = "connections-16"), [23:13:35.467] | : . ' rscript_libs = .libPaths()) [23:13:35.467] | : . ' ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [23:13:35.467] | : . ' ..- attr(*, "init")= logi TRUE [23:13:35.467] | : . ' ..- attr(*, "factory")=function (workers = availableCores(constraints = "connections-16"), rscript_libs = .libPaths(), [23:13:35.467] | : . ' interrupts = TRUE, gc = FALSE, earlySignal = FALSE, ...) [23:13:35.467] | : . ' .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.467] | : . ' ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.467] | : . ' ..- attr(*, "untweakable")= chr "persistent" [23:13:35.467] | : . ' ..- attr(*, "call")= language plan(strategy) [23:13:35.467] | : . ' $ current:function (..., envir = parent.frame()) [23:13:35.467] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:13:35.467] | : . ' ..- attr(*, "init")= chr "done" [23:13:35.467] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.467] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.467] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.467] | : . ' ..- attr(*, "call")= language plan(sequential) [23:13:35.467] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:13:35.467] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:13:35.467] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:13:35.477] | : . ' Formals differ [23:13:35.477] | : . all.equal() for future ... done [23:13:35.477] | : . Future strategies differ at level 1 [23:13:35.478] | : all.equal() for FutureStrategyList ... done [23:13:35.478] | : plan(): Setting new future backend stack: [23:13:35.478] | : List of future strategies: [23:13:35.478] | : 1. multisession: [23:13:35.478] | : - args: function (..., workers = availableCores(constraints = "connections-16"), rscript_libs = .libPaths()) [23:13:35.478] | : - tweaked: FALSE [23:13:35.478] | : - call: plan(strategy) [23:13:35.479] | : List of 1 [23:13:35.479] | : $ :function (..., workers = availableCores(constraints = "connections-16"), [23:13:35.479] | : rscript_libs = .libPaths()) [23:13:35.479] | : ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [23:13:35.479] | : ..- attr(*, "init")= logi TRUE [23:13:35.479] | : ..- attr(*, "factory")=function (workers = availableCores(constraints = "connections-16"), rscript_libs = .libPaths(), [23:13:35.479] | : interrupts = TRUE, gc = FALSE, earlySignal = FALSE, ...) [23:13:35.479] | : .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.479] | : ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.479] | : ..- attr(*, "untweakable")= chr "persistent" [23:13:35.479] | : ..- attr(*, "call")= language plan(strategy) [23:13:35.479] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:13:35.484] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [23:13:35.485] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:35.485] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [23:13:35.485] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:35.486] | : . Legacy shutdown of cluster workers ... [23:13:35.486] | : . ' Stopping existing cluster ... [23:13:35.487] | : . ' , No pre-existing cluster. Skipping [23:13:35.487] | : . ' Stopping existing cluster ... done [23:13:35.487] | : . Legacy shutdown of cluster workers ... done [23:13:35.487] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [23:13:35.488] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... [23:13:35.488] | : . function (..., workers = availableCores(constraints = "connections-16"), [23:13:35.488] | : . rscript_libs = .libPaths()) [23:13:35.488] | : . - attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [23:13:35.488] | : . - attr(*, "init")= logi TRUE [23:13:35.488] | : . - attr(*, "factory")=function (workers = availableCores(constraints = "connections-16"), rscript_libs = .libPaths(), [23:13:35.488] | : . interrupts = TRUE, gc = FALSE, earlySignal = FALSE, ...) [23:13:35.488] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.488] | : . - attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [23:13:35.488] | : . - attr(*, "untweakable")= chr "persistent" [23:13:35.488] | : . - attr(*, "call")= language plan(strategy) [23:13:35.492] | : . init: TRUE [23:13:35.493] | : . makeFutureBackend() ... [23:13:35.493] | : . ' Backend function: <'NULL'> [23:13:35.493] | : . ' Evaluator tweak arguments: [n=0] [23:13:35.493] | : . ' list() [23:13:35.494] | : . ' Evaluator formal arguments: [n=2] [23:13:35.494] | : . ' Dotted pair list of 2 [23:13:35.494] | : . ' $ workers : language availableCores(constraints = "connections-16") [23:13:35.494] | : . ' $ rscript_libs: language .libPaths() [23:13:35.496] | : . ' Arguments passed to the future-backend factory: [n=2] [23:13:35.496] | : . ' List of 2 [23:13:35.496] | : . ' $ workers : language availableCores(constraints = "connections-16") [23:13:35.496] | : . ' $ rscript_libs: language .libPaths() [23:13:35.501] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... [23:13:35.501] | : . ' , Arguments: [23:13:35.501] | : . ' , List of 5 [23:13:35.501] | : . ' , $ workers : Named int 2 [23:13:35.501] | : . ' , ..- attr(*, "names")= chr "mc.cores" [23:13:35.501] | : . ' , $ rscript_libs: chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:13:35.501] | : . ' , $ interrupts : logi TRUE [23:13:35.501] | : . ' , $ gc : logi FALSE [23:13:35.501] | : . ' , $ earlySignal : logi FALSE [23:13:35.565] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... [23:13:35.565] | : . ' , ; workers: 2 [23:13:35.565] | : . ' , ; getCluster() ... [23:13:35.566] | : . ' , ; getCluster() ... done [23:13:35.566] | : . ' , ; Stopping existing cluster ... [23:13:35.566] | : . ' , ; ` No pre-existing cluster. Skipping [23:13:35.566] | : . ' , ; Stopping existing cluster ... done [23:13:35.567] | : . ' , ; Starting new cluster ... [23:13:35.567] | : . ' , ; ` makeCluster(workers, ...) ... [23:13:35.567] | : . ' , ; ` | Arguments: [23:13:35.567] | : . ' , ; ` | List of 2 [23:13:35.567] | : . ' , ; ` | $ : int 2 [23:13:35.567] | : . ' , ; ` | $ rscript_libs: chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:13:35.569] | : . ' , ; ` | .makeCluster() ... [23:13:35.570] | : . ' , ; ` | : workers: '2' [23:13:35.570] | : . ' , ; ` | : R_FUTURE_PLAN: NA [23:13:35.570] | : . ' , ; ` | : parallelly::makeClusterPSOCK() arguments: [23:13:35.571] | : . ' , ; ` | : List of 2 [23:13:35.571] | : . ' , ; ` | : $ : int 2 [23:13:35.571] | : . ' , ; ` | : $ rscript_libs: chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:13:36.665] | : . ' , ; ` | : Generated cluster UUID [23:13:36.666] | : . ' , ; ` | : Cluster UUID: 'e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:36.666] | : . ' , ; ` | : Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:36.670] | : . ' , ; ` | .makeCluster() ... done [23:13:36.671] | : . ' , ; ` | Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:36.673] | : . ' , ; ` makeCluster(workers, ...) ... done [23:13:36.674] | : . ' , ; ` Number of workers: 2 [23:13:36.674] | : . ' , ; ` Workers UUID: 'e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:36.675] | : . ' , ; Starting new cluster ... done [23:13:36.675] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... done [23:13:36.675] | : . ' , Backend: <'MultisessionFutureBackend', 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [23:13:36.675] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... done [23:13:36.676] | : . makeFutureBackend() ... done [23:13:36.676] | : . nbrOfWorkers(NULL) ... [23:13:36.677] | : . ' List of 4 [23:13:36.677] | : . ' $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:13:36.677] | : . ' $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:13:36.677] | : . ' $ : language nbrOfWorkers() [23:13:36.677] | : . ' $ : language nbrOfWorkers.NULL() [23:13:36.680] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:36.680] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:36.681] | : . ' Number of workers: 2 [23:13:36.681] | : . nbrOfWorkers(NULL) ... done [23:13:36.681] | : . plan(): nbrOfWorkers() = 2 [23:13:36.681] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... done [23:13:36.682] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done - lm() ... [23:13:36.682] | future(..., label = NULL) ... [23:13:36.682] | : lazy: FALSE [23:13:36.683] | : stdout: TRUE [23:13:36.683] | : conditions: [n=1] 'condition' [23:13:36.683] | : gc: FALSE [23:13:36.683] | : earlySignal: FALSE [23:13:36.684] | : getGlobalsAndPackages() ... [23:13:36.684] | : . Searching for globals ... [23:13:36.708] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:36.708] | : . Searching for globals ... done [23:13:36.709] | : . Resolving globals: FALSE [23:13:36.709] | : . Search for packages associated with the globals ... [23:13:36.710] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:36.710] | : . ' Packages: [2] 'base', 'stats' [23:13:36.711] | : . Search for packages associated with the globals ... done [23:13:36.711] | : . Packages after dropping 'base': [1] 'stats' [23:13:36.711] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:36.712] | : . globals: [2] 'weight', 'group' [23:13:36.712] | : . packages: [1] 'stats' [23:13:36.712] | : getGlobalsAndPackages() ... done [23:13:36.713] | : run() for 'Future' () ... [23:13:36.713] | : . state: 'created' [23:13:36.713] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:36.714] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:36.714] | : . Using MultisessionFutureBackend ... [23:13:36.714] | : . ' Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:13:36.715] | : . ' Launching futures ... [23:13:36.715] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:36.716] | : . ' , ; Workers: [n=2] [23:13:36.716] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:36.719] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:36.719] | : . ' , ; requestWorker() ... [23:13:36.720] | : . ' , ; ` requestNode() ... [23:13:36.720] | : . ' , ; ` | Number of workers: 2 [23:13:36.720] | : . ' , ; ` | Polling for a free worker ... [23:13:36.720] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.721] | : . ' , ; ` | : . Created empty registry 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:36.721] | : . ' , ; ` | : . Listing all futures [23:13:36.721] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:36.721] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.722] | : . ' , ; ` | : Total time: 0 [23:13:36.722] | : . ' , ; ` | Polling for a free worker ... done [23:13:36.722] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.723] | : . ' , ; ` | : Listing all futures [23:13:36.723] | : . ' , ; ` | : Number of registered futures: 0 [23:13:36.723] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.723] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:36.724] | : . ' , ; ` | Index of first available worker: 1 [23:13:36.724] | : . ' , ; ` | Validate that the worker is functional ... [23:13:36.725] | : . ' , ; ` | : Worker is functional [23:13:36.726] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.726] | : . ' , ; ` | : . Listing all futures [23:13:36.726] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:36.726] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.727] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:36.727] | : . ' , ; ` requestNode() ... done [23:13:36.727] | : . ' , ; ` cluster node index: 1 [23:13:36.728] | : . ' , ; requestWorker() ... done [23:13:36.728] | : . ' , ; eraseGlobalEnvironment() ... [23:13:36.729] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:36.730] | : . ' , ; launchFuture() ... [23:13:36.730] | : . ' , ; ` cluster node index: 1 [23:13:36.730] | : . ' , ; ` getFutureData() ... [23:13:36.731] | : . ' , ; ` | getFutureCore() ... [23:13:36.731] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:36.731] | : . ' , ; ` | getFutureCore() ... done [23:13:36.732] | : . ' , ; ` | getFutureCapture() ... [23:13:36.732] | : . ' , ; ` | getFutureCapture() ... done [23:13:36.732] | : . ' , ; ` | getFutureContext() ... [23:13:36.733] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:36.733] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:36.733] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:36.733] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:36.734] | : . ' , ; ` | getFutureContext() ... done [23:13:36.734] | : . ' , ; ` getFutureData() ... done [23:13:36.735] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:36.735] | : . ' , ; ` | Appended future to position #1 [23:13:36.736] | : . ' , ; ` | Number of registered futures: 1 [23:13:36.736] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:36.736] | : . ' , ; launchFuture() ... done [23:13:36.737] | : . ' , ; MultisessionFuture started [23:13:36.737] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:36.737] | : . ' Launching futures ... done [23:13:36.737] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:36.738] | : . Using MultisessionFutureBackend ... done [23:13:36.738] | : run() for 'Future' () ... done [23:13:36.738] | future(..., label = NULL) ... done [23:13:36.739] | value() for MultisessionFuture () ... [23:13:36.739] | : result() for ClusterFuture ... [23:13:36.740] | : . assertValidConnection() ... [23:13:36.740] | : . ' cluster node index: 1 [23:13:36.741] | : . assertValidConnection() ... done [23:13:36.742] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:36.742] | : . ' cluster node index: 1 [23:13:36.855] | : . ' [1] TRUE [23:13:36.856] | : . ' Received data: [23:13:36.856] | : . ' List of 5 [23:13:36.856] | : . ' $ type : chr "VALUE" [23:13:36.856] | : . ' $ value :List of 16 [23:13:36.856] | : . ' ..$ value :List of 13 [23:13:36.856] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [23:13:36.856] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [23:13:36.856] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [23:13:36.856] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:36.856] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [23:13:36.856] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [23:13:36.856] | : . ' .. ..$ rank : int 2 [23:13:36.856] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [23:13:36.856] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:36.856] | : . ' .. ..$ assign : int [1:2] 1 1 [23:13:36.856] | : . ' .. ..$ qr :List of 5 [23:13:36.856] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [23:13:36.856] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.856] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [23:13:36.856] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [23:13:36.856] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [23:13:36.856] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [23:13:36.856] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [23:13:36.856] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [23:13:36.856] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:36.856] | : . ' .. .. ..$ tol : num 1e-07 [23:13:36.856] | : . ' .. .. ..$ rank : int 2 [23:13:36.856] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:36.856] | : . ' .. ..$ df.residual : int 18 [23:13:36.856] | : . ' .. ..$ contrasts :List of 1 [23:13:36.856] | : . ' .. .. ..$ group: chr "contr.treatment" [23:13:36.856] | : . ' .. ..$ xlevels :List of 1 [23:13:36.856] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [23:13:36.856] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [23:13:36.856] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [23:13:36.856] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:36.856] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.856] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:36.856] | : . ' .. .. .. .. .. ..$ : chr "group" [23:13:36.856] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:36.856] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:36.856] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:36.856] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:36.856] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:36.856] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:36.856] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:36.856] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [23:13:36.856] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:36.856] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:36.856] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:36.856] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.856] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:36.856] | : . ' .. .. .. .. .. .. ..$ : chr "group" [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:36.856] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:36.856] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:36.856] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:36.856] | : . ' ..$ visible : logi TRUE [23:13:36.856] | : . ' ..$ stdout : chr "" [23:13:36.856] | : . ' ..$ conditions : list() [23:13:36.856] | : . ' ..$ rng : logi FALSE [23:13:36.856] | : . ' ..$ seed : NULL [23:13:36.856] | : . ' ..$ misuseGlobalEnv : NULL [23:13:36.856] | : . ' ..$ misuseConnections :List of 3 [23:13:36.856] | : . ' .. ..$ added : NULL [23:13:36.856] | : . ' .. ..$ removed : NULL [23:13:36.856] | : . ' .. ..$ replaced: NULL [23:13:36.856] | : . ' ..$ misuseDevices : NULL [23:13:36.856] | : . ' ..$ misuseDefaultDevice: list() [23:13:36.856] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.856] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.856] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "15" [23:13:36.856] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:36.856] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:36.856] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:36.856] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:36.856] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:36.856] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:36.856] | : . ' .. .. ..$ pid : int 62172 [23:13:36.856] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.856] | : . ' .. .. ..$ random: int 2147483647 [23:13:36.856] | : . ' ..$ r_info :List of 4 [23:13:36.856] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:36.856] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:36.856] | : . ' .. ..$ os : chr "windows" [23:13:36.856] | : . ' .. ..$ os_name : chr "Windows" [23:13:36.856] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:36.856] | : . ' ..$ version : chr "1.8" [23:13:36.856] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:36.856] | : . ' $ success: logi TRUE [23:13:36.856] | : . ' $ time : 'proc_time' Named num [1:5] 0.12 0 0.13 NA NA [23:13:36.856] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:36.856] | : . ' $ tag : NULL [23:13:36.908] | : . ' Received FutureResult [23:13:36.908] | : . ' FutureResult: [23:13:36.908] | : . ' value: 'lm' [23:13:36.908] | : . ' visible: TRUE [23:13:36.908] | : . ' stdout: character [23:13:36.908] | : . ' conditions: [n = 0] [23:13:36.908] | : . ' RNG used: FALSE [23:13:36.908] | : . ' duration: 0.1152909 secs (started 2025-11-16 23:13:36.738032) [23:13:36.908] | : . ' version: 1.8 [23:13:36.909] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:36.909] | : . ' , Removed future from position #1 [23:13:36.910] | : . ' , Number of registered futures: 0 [23:13:36.910] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:36.910] | : . ' Erased future from future backend [23:13:36.910] | : . ' result() for ClusterFuture ... [23:13:36.910] | : . ' , result already collected: FutureResult [23:13:36.911] | : . ' result() for ClusterFuture ... done [23:13:36.911] | : . ' signalConditions() ... [23:13:36.911] | : . ' , include = 'immediateCondition' [23:13:36.911] | : . ' , exclude = [23:13:36.911] | : . ' , resignal = FALSE [23:13:36.912] | : . ' , Number of conditions: 0 [23:13:36.912] | : . ' , int 0 [23:13:36.912] | : . ' signalConditions() ... done [23:13:36.913] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:36.913] | : result() for ClusterFuture ... done [23:13:36.913] | : result() for ClusterFuture ... [23:13:36.913] | : . result already collected: FutureResult [23:13:36.913] | : result() for ClusterFuture ... done [23:13:36.914] | : signalConditions() ... [23:13:36.914] | : . include = 'immediateCondition' [23:13:36.914] | : . exclude = [23:13:36.914] | : . resignal = FALSE [23:13:36.914] | : . Number of conditions: 0 [23:13:36.914] | : . int 0 [23:13:36.915] | : signalConditions() ... done [23:13:36.915] | : relay stdout ... [23:13:36.915] | : relay stdout ... done [23:13:36.916] | : check for misuse ... [23:13:36.916] | : check for misuse ... done [23:13:36.916] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:36.918] | future(..., label = NULL) ... [23:13:36.918] | : lazy: TRUE [23:13:36.919] | : stdout: TRUE [23:13:36.919] | : conditions: [n=1] 'condition' [23:13:36.919] | : gc: FALSE [23:13:36.919] | : earlySignal: FALSE [23:13:36.919] | : getGlobalsAndPackages() ... [23:13:36.920] | : . Searching for globals ... [23:13:36.936] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:36.936] | : . Searching for globals ... done [23:13:36.936] | : . Resolving globals: FALSE [23:13:36.936] | : . Search for packages associated with the globals ... [23:13:36.937] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:36.937] | : . ' Packages: [2] 'base', 'stats' [23:13:36.937] | : . Search for packages associated with the globals ... done [23:13:36.937] | : . Packages after dropping 'base': [1] 'stats' [23:13:36.938] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:36.938] | : . globals: [2] 'weight', 'group' [23:13:36.938] | : . packages: [1] 'stats' [23:13:36.938] | : getGlobalsAndPackages() ... done [23:13:36.939] | future(..., label = NULL) ... done [23:13:36.939] | value() for Future () ... [23:13:36.939] | : run() for 'Future' () ... [23:13:36.939] | : . state: 'created' [23:13:36.939] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:36.940] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:36.940] | : . Using MultisessionFutureBackend ... [23:13:36.940] | : . ' Number of futures since start: 1 (1 created, 1 launched, 1 finished) [23:13:36.940] | : . ' Launching futures ... [23:13:36.940] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:36.941] | : . ' , ; Workers: [n=2] [23:13:36.941] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:36.943] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:36.943] | : . ' , ; requestWorker() ... [23:13:36.943] | : . ' , ; ` requestNode() ... [23:13:36.943] | : . ' , ; ` | Number of workers: 2 [23:13:36.943] | : . ' , ; ` | Polling for a free worker ... [23:13:36.944] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.944] | : . ' , ; ` | : . Listing all futures [23:13:36.944] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:36.944] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.944] | : . ' , ; ` | : Total time: 0 [23:13:36.945] | : . ' , ; ` | Polling for a free worker ... done [23:13:36.945] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.945] | : . ' , ; ` | : Listing all futures [23:13:36.945] | : . ' , ; ` | : Number of registered futures: 0 [23:13:36.945] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.945] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:36.946] | : . ' , ; ` | Index of first available worker: 1 [23:13:36.946] | : . ' , ; ` | Validate that the worker is functional ... [23:13:36.946] | : . ' , ; ` | : Worker is functional [23:13:36.947] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:36.947] | : . ' , ; ` | : . Listing all futures [23:13:36.947] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:36.947] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:36.947] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:36.948] | : . ' , ; ` requestNode() ... done [23:13:36.948] | : . ' , ; ` cluster node index: 1 [23:13:36.948] | : . ' , ; requestWorker() ... done [23:13:36.948] | : . ' , ; eraseGlobalEnvironment() ... [23:13:36.949] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:36.949] | : . ' , ; launchFuture() ... [23:13:36.949] | : . ' , ; ` cluster node index: 1 [23:13:36.949] | : . ' , ; ` getFutureData() ... [23:13:36.950] | : . ' , ; ` | getFutureCore() ... [23:13:36.950] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:36.950] | : . ' , ; ` | getFutureCore() ... done [23:13:36.950] | : . ' , ; ` | getFutureCapture() ... [23:13:36.950] | : . ' , ; ` | getFutureCapture() ... done [23:13:36.950] | : . ' , ; ` | getFutureContext() ... [23:13:36.951] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:36.951] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:36.951] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:36.951] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:36.951] | : . ' , ; ` | getFutureContext() ... done [23:13:36.952] | : . ' , ; ` getFutureData() ... done [23:13:36.952] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:36.952] | : . ' , ; ` | Appended future to position #1 [23:13:36.952] | : . ' , ; ` | Number of registered futures: 1 [23:13:36.953] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:36.953] | : . ' , ; launchFuture() ... done [23:13:36.953] | : . ' , ; MultisessionFuture started [23:13:36.953] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:36.953] | : . ' Launching futures ... done [23:13:36.954] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:36.954] | : . Using MultisessionFutureBackend ... done [23:13:36.954] | : run() for 'Future' () ... done [23:13:36.954] | : result() for ClusterFuture ... [23:13:36.954] | : . assertValidConnection() ... [23:13:36.955] | : . ' cluster node index: 1 [23:13:36.955] | : . assertValidConnection() ... done [23:13:36.955] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:36.955] | : . ' cluster node index: 1 [23:13:36.961] | : . ' [1] TRUE [23:13:36.962] | : . ' Received data: [23:13:36.962] | : . ' List of 5 [23:13:36.962] | : . ' $ type : chr "VALUE" [23:13:36.962] | : . ' $ value :List of 16 [23:13:36.962] | : . ' ..$ value :List of 13 [23:13:36.962] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [23:13:36.962] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [23:13:36.962] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [23:13:36.962] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:36.962] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [23:13:36.962] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [23:13:36.962] | : . ' .. ..$ rank : int 2 [23:13:36.962] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [23:13:36.962] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:36.962] | : . ' .. ..$ assign : int [1:2] 1 1 [23:13:36.962] | : . ' .. ..$ qr :List of 5 [23:13:36.962] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [23:13:36.962] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.962] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [23:13:36.962] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [23:13:36.962] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [23:13:36.962] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [23:13:36.962] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [23:13:36.962] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [23:13:36.962] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:36.962] | : . ' .. .. ..$ tol : num 1e-07 [23:13:36.962] | : . ' .. .. ..$ rank : int 2 [23:13:36.962] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:36.962] | : . ' .. ..$ df.residual : int 18 [23:13:36.962] | : . ' .. ..$ contrasts :List of 1 [23:13:36.962] | : . ' .. .. ..$ group: chr "contr.treatment" [23:13:36.962] | : . ' .. ..$ xlevels :List of 1 [23:13:36.962] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [23:13:36.962] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [23:13:36.962] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [23:13:36.962] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:36.962] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.962] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:36.962] | : . ' .. .. .. .. .. ..$ : chr "group" [23:13:36.962] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:36.962] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:36.962] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:36.962] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:36.962] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:36.962] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:36.962] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:36.962] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [23:13:36.962] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:36.962] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:36.962] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:36.962] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:36.962] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:36.962] | : . ' .. .. .. .. .. .. ..$ : chr "group" [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:36.962] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:36.962] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:36.962] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:36.962] | : . ' ..$ visible : logi TRUE [23:13:36.962] | : . ' ..$ stdout : chr "" [23:13:36.962] | : . ' ..$ conditions : list() [23:13:36.962] | : . ' ..$ rng : logi FALSE [23:13:36.962] | : . ' ..$ seed : NULL [23:13:36.962] | : . ' ..$ misuseGlobalEnv : NULL [23:13:36.962] | : . ' ..$ misuseConnections :List of 3 [23:13:36.962] | : . ' .. ..$ added : NULL [23:13:36.962] | : . ' .. ..$ removed : NULL [23:13:36.962] | : . ' .. ..$ replaced: NULL [23:13:36.962] | : . ' ..$ misuseDevices : NULL [23:13:36.962] | : . ' ..$ misuseDefaultDevice: list() [23:13:36.962] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.962] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.962] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "16" [23:13:36.962] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:36.962] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:36.962] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:36.962] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:36.962] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:36.962] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:36.962] | : . ' .. .. ..$ pid : int 62172 [23:13:36.962] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:36.962] | : . ' .. .. ..$ random: int 2147483647 [23:13:36.962] | : . ' ..$ r_info :List of 4 [23:13:36.962] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:36.962] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:36.962] | : . ' .. ..$ os : chr "windows" [23:13:36.962] | : . ' .. ..$ os_name : chr "Windows" [23:13:36.962] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:36.962] | : . ' ..$ version : chr "1.8" [23:13:36.962] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:36.962] | : . ' $ success: logi TRUE [23:13:36.962] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:36.962] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:36.962] | : . ' $ tag : NULL [23:13:37.012] | : . ' Received FutureResult [23:13:37.012] | : . ' FutureResult: [23:13:37.012] | : . ' value: 'lm' [23:13:37.012] | : . ' visible: TRUE [23:13:37.012] | : . ' stdout: character [23:13:37.012] | : . ' conditions: [n = 0] [23:13:37.012] | : . ' RNG used: FALSE [23:13:37.012] | : . ' duration: 0.0067451 secs (started 2025-11-16 23:13:36.952914) [23:13:37.012] | : . ' version: 1.8 [23:13:37.013] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.013] | : . ' , Removed future from position #1 [23:13:37.013] | : . ' , Number of registered futures: 0 [23:13:37.013] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.014] | : . ' Erased future from future backend [23:13:37.014] | : . ' result() for ClusterFuture ... [23:13:37.014] | : . ' , result already collected: FutureResult [23:13:37.014] | : . ' result() for ClusterFuture ... done [23:13:37.014] | : . ' signalConditions() ... [23:13:37.015] | : . ' , include = 'immediateCondition' [23:13:37.015] | : . ' , exclude = [23:13:37.015] | : . ' , resignal = FALSE [23:13:37.015] | : . ' , Number of conditions: 0 [23:13:37.015] | : . ' , int 0 [23:13:37.016] | : . ' signalConditions() ... done [23:13:37.016] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.016] | : result() for ClusterFuture ... done [23:13:37.016] | : result() for ClusterFuture ... [23:13:37.017] | : . result already collected: FutureResult [23:13:37.017] | : result() for ClusterFuture ... done [23:13:37.017] | : signalConditions() ... [23:13:37.017] | : . include = 'immediateCondition' [23:13:37.017] | : . exclude = [23:13:37.017] | : . resignal = FALSE [23:13:37.018] | : . Number of conditions: 0 [23:13:37.018] | : . int 0 [23:13:37.018] | : signalConditions() ... done [23:13:37.018] | : relay stdout ... [23:13:37.019] | : relay stdout ... done [23:13:37.019] | : check for misuse ... [23:13:37.019] | : check for misuse ... done [23:13:37.019] | value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:37.021] | future(..., label = NULL) ... [23:13:37.022] | : lazy: FALSE [23:13:37.022] | : stdout: TRUE [23:13:37.022] | : conditions: [n=1] 'condition' [23:13:37.022] | : gc: FALSE [23:13:37.022] | : earlySignal: FALSE [23:13:37.022] | : getGlobalsAndPackages() ... [23:13:37.023] | : . Searching for globals ... [23:13:37.044] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:37.044] | : . Searching for globals ... done [23:13:37.045] | : . Resolving globals: FALSE [23:13:37.045] | : . Search for packages associated with the globals ... [23:13:37.045] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:37.046] | : . ' Packages: [2] 'base', 'stats' [23:13:37.046] | : . Search for packages associated with the globals ... done [23:13:37.047] | : . Packages after dropping 'base': [1] 'stats' [23:13:37.047] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:37.047] | : . globals: [2] 'weight', 'group' [23:13:37.048] | : . packages: [1] 'stats' [23:13:37.048] | : getGlobalsAndPackages() ... done [23:13:37.049] | : run() for 'Future' () ... [23:13:37.049] | : . state: 'created' [23:13:37.049] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.049] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.050] | : . Using MultisessionFutureBackend ... [23:13:37.050] | : . ' Number of futures since start: 2 (2 created, 2 launched, 2 finished) [23:13:37.050] | : . ' Launching futures ... [23:13:37.051] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.051] | : . ' , ; Workers: [n=2] [23:13:37.051] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.054] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.054] | : . ' , ; requestWorker() ... [23:13:37.055] | : . ' , ; ` requestNode() ... [23:13:37.055] | : . ' , ; ` | Number of workers: 2 [23:13:37.055] | : . ' , ; ` | Polling for a free worker ... [23:13:37.055] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.056] | : . ' , ; ` | : . Listing all futures [23:13:37.056] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.056] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.056] | : . ' , ; ` | : Total time: 0 [23:13:37.057] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.057] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.057] | : . ' , ; ` | : Listing all futures [23:13:37.058] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.058] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.058] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.058] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.059] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.059] | : . ' , ; ` | : Worker is functional [23:13:37.060] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.060] | : . ' , ; ` | : . Listing all futures [23:13:37.060] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.061] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.061] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.061] | : . ' , ; ` requestNode() ... done [23:13:37.061] | : . ' , ; ` cluster node index: 1 [23:13:37.062] | : . ' , ; requestWorker() ... done [23:13:37.062] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.063] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.063] | : . ' , ; launchFuture() ... [23:13:37.063] | : . ' , ; ` cluster node index: 1 [23:13:37.064] | : . ' , ; ` getFutureData() ... [23:13:37.064] | : . ' , ; ` | getFutureCore() ... [23:13:37.064] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:37.064] | : . ' , ; ` | getFutureCore() ... done [23:13:37.065] | : . ' , ; ` | getFutureCapture() ... [23:13:37.065] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.065] | : . ' , ; ` | getFutureContext() ... [23:13:37.065] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.066] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.066] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.066] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.066] | : . ' , ; ` | getFutureContext() ... done [23:13:37.067] | : . ' , ; ` getFutureData() ... done [23:13:37.067] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.067] | : . ' , ; ` | Appended future to position #1 [23:13:37.067] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.068] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.068] | : . ' , ; launchFuture() ... done [23:13:37.068] | : . ' , ; MultisessionFuture started [23:13:37.068] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.068] | : . ' Launching futures ... done [23:13:37.069] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.069] | : . Using MultisessionFutureBackend ... done [23:13:37.069] | : run() for 'Future' () ... done [23:13:37.070] | future(..., label = NULL) ... done [23:13:37.070] | value() for MultisessionFuture () ... [23:13:37.070] | : result() for ClusterFuture ... [23:13:37.071] | : . assertValidConnection() ... [23:13:37.071] | : . ' cluster node index: 1 [23:13:37.072] | : . assertValidConnection() ... done [23:13:37.072] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.072] | : . ' cluster node index: 1 [23:13:37.076] | : . ' [1] TRUE [23:13:37.077] | : . ' Received data: [23:13:37.077] | : . ' List of 5 [23:13:37.077] | : . ' $ type : chr "VALUE" [23:13:37.077] | : . ' $ value :List of 16 [23:13:37.077] | : . ' ..$ value :List of 13 [23:13:37.077] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [23:13:37.077] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [23:13:37.077] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [23:13:37.077] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.077] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [23:13:37.077] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [23:13:37.077] | : . ' .. ..$ rank : int 2 [23:13:37.077] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [23:13:37.077] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.077] | : . ' .. ..$ assign : int [1:2] 1 1 [23:13:37.077] | : . ' .. ..$ qr :List of 5 [23:13:37.077] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [23:13:37.077] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.077] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [23:13:37.077] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [23:13:37.077] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [23:13:37.077] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [23:13:37.077] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [23:13:37.077] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [23:13:37.077] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:37.077] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.077] | : . ' .. .. ..$ rank : int 2 [23:13:37.077] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.077] | : . ' .. ..$ df.residual : int 18 [23:13:37.077] | : . ' .. ..$ contrasts :List of 1 [23:13:37.077] | : . ' .. .. ..$ group: chr "contr.treatment" [23:13:37.077] | : . ' .. ..$ xlevels :List of 1 [23:13:37.077] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [23:13:37.077] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [23:13:37.077] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.077] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.077] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.077] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.077] | : . ' .. .. .. .. .. ..$ : chr "group" [23:13:37.077] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.077] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.077] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.077] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.077] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.077] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.077] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.077] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [23:13:37.077] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:37.077] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:37.077] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.077] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.077] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.077] | : . ' .. .. .. .. .. .. ..$ : chr "group" [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.077] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.077] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.077] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.077] | : . ' ..$ visible : logi TRUE [23:13:37.077] | : . ' ..$ stdout : chr "" [23:13:37.077] | : . ' ..$ conditions : list() [23:13:37.077] | : . ' ..$ rng : logi FALSE [23:13:37.077] | : . ' ..$ seed : NULL [23:13:37.077] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.077] | : . ' ..$ misuseConnections :List of 3 [23:13:37.077] | : . ' .. ..$ added : NULL [23:13:37.077] | : . ' .. ..$ removed : NULL [23:13:37.077] | : . ' .. ..$ replaced: NULL [23:13:37.077] | : . ' ..$ misuseDevices : NULL [23:13:37.077] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.077] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.077] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.077] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "17" [23:13:37.077] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.077] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.077] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.077] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.077] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.077] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.077] | : . ' .. .. ..$ pid : int 62172 [23:13:37.077] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.077] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.077] | : . ' ..$ r_info :List of 4 [23:13:37.077] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.077] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.077] | : . ' .. ..$ os : chr "windows" [23:13:37.077] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.077] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.077] | : . ' ..$ version : chr "1.8" [23:13:37.077] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.077] | : . ' $ success: logi TRUE [23:13:37.077] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.02 NA NA [23:13:37.077] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.077] | : . ' $ tag : NULL [23:13:37.115] | : . ' Received FutureResult [23:13:37.115] | : . ' FutureResult: [23:13:37.115] | : . ' value: 'lm' [23:13:37.115] | : . ' visible: TRUE [23:13:37.115] | : . ' stdout: character [23:13:37.115] | : . ' conditions: [n = 0] [23:13:37.115] | : . ' RNG used: FALSE [23:13:37.115] | : . ' duration: 0.007198811 secs (started 2025-11-16 23:13:37.067799) [23:13:37.115] | : . ' version: 1.8 [23:13:37.116] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.116] | : . ' , Removed future from position #1 [23:13:37.116] | : . ' , Number of registered futures: 0 [23:13:37.116] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.117] | : . ' Erased future from future backend [23:13:37.117] | : . ' result() for ClusterFuture ... [23:13:37.117] | : . ' , result already collected: FutureResult [23:13:37.117] | : . ' result() for ClusterFuture ... done [23:13:37.117] | : . ' signalConditions() ... [23:13:37.117] | : . ' , include = 'immediateCondition' [23:13:37.118] | : . ' , exclude = [23:13:37.118] | : . ' , resignal = FALSE [23:13:37.118] | : . ' , Number of conditions: 0 [23:13:37.118] | : . ' , int 0 [23:13:37.119] | : . ' signalConditions() ... done [23:13:37.119] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.119] | : result() for ClusterFuture ... done [23:13:37.119] | : result() for ClusterFuture ... [23:13:37.119] | : . result already collected: FutureResult [23:13:37.120] | : result() for ClusterFuture ... done [23:13:37.120] | : signalConditions() ... [23:13:37.120] | : . include = 'immediateCondition' [23:13:37.120] | : . exclude = [23:13:37.120] | : . resignal = FALSE [23:13:37.121] | : . Number of conditions: 0 [23:13:37.121] | : . int 0 [23:13:37.121] | : signalConditions() ... done [23:13:37.122] | : relay stdout ... [23:13:37.122] | : relay stdout ... done [23:13:37.122] | : check for misuse ... [23:13:37.122] | : check for misuse ... done [23:13:37.123] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:37.126] | future(..., label = NULL) ... [23:13:37.126] | : lazy: FALSE [23:13:37.126] | : stdout: TRUE [23:13:37.126] | : conditions: [n=1] 'condition' [23:13:37.126] | : gc: FALSE [23:13:37.126] | : earlySignal: FALSE [23:13:37.127] | : getGlobalsAndPackages() ... [23:13:37.127] | : . Searching for globals ... [23:13:37.143] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:37.143] | : . Searching for globals ... done [23:13:37.143] | : . Resolving globals: FALSE [23:13:37.143] | : . Search for packages associated with the globals ... [23:13:37.144] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:37.144] | : . ' Packages: [2] 'base', 'stats' [23:13:37.144] | : . Search for packages associated with the globals ... done [23:13:37.144] | : . Packages after dropping 'base': [1] 'stats' [23:13:37.145] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:37.145] | : . globals: [2] 'weight', 'group' [23:13:37.145] | : . packages: [1] 'stats' [23:13:37.145] | : getGlobalsAndPackages() ... done [23:13:37.145] | : run() for 'Future' () ... [23:13:37.146] | : . state: 'created' [23:13:37.146] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.146] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.146] | : . Using MultisessionFutureBackend ... [23:13:37.146] | : . ' Number of futures since start: 3 (3 created, 3 launched, 3 finished) [23:13:37.147] | : . ' Launching futures ... [23:13:37.147] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.147] | : . ' , ; Workers: [n=2] [23:13:37.147] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.149] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.149] | : . ' , ; requestWorker() ... [23:13:37.150] | : . ' , ; ` requestNode() ... [23:13:37.150] | : . ' , ; ` | Number of workers: 2 [23:13:37.150] | : . ' , ; ` | Polling for a free worker ... [23:13:37.150] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.150] | : . ' , ; ` | : . Listing all futures [23:13:37.150] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.151] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.151] | : . ' , ; ` | : Total time: 0 [23:13:37.151] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.151] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.151] | : . ' , ; ` | : Listing all futures [23:13:37.151] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.152] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.152] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.152] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.152] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.153] | : . ' , ; ` | : Worker is functional [23:13:37.153] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.153] | : . ' , ; ` | : . Listing all futures [23:13:37.153] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.154] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.154] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.154] | : . ' , ; ` requestNode() ... done [23:13:37.155] | : . ' , ; ` cluster node index: 1 [23:13:37.155] | : . ' , ; requestWorker() ... done [23:13:37.155] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.156] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.156] | : . ' , ; launchFuture() ... [23:13:37.157] | : . ' , ; ` cluster node index: 1 [23:13:37.157] | : . ' , ; ` getFutureData() ... [23:13:37.157] | : . ' , ; ` | getFutureCore() ... [23:13:37.157] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:37.158] | : . ' , ; ` | getFutureCore() ... done [23:13:37.158] | : . ' , ; ` | getFutureCapture() ... [23:13:37.158] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.159] | : . ' , ; ` | getFutureContext() ... [23:13:37.159] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.159] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.160] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.160] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.160] | : . ' , ; ` | getFutureContext() ... done [23:13:37.160] | : . ' , ; ` getFutureData() ... done [23:13:37.161] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.161] | : . ' , ; ` | Appended future to position #1 [23:13:37.162] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.162] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.162] | : . ' , ; launchFuture() ... done [23:13:37.163] | : . ' , ; MultisessionFuture started [23:13:37.163] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.163] | : . ' Launching futures ... done [23:13:37.163] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.164] | : . Using MultisessionFutureBackend ... done [23:13:37.164] | : run() for 'Future' () ... done [23:13:37.164] | future(..., label = NULL) ... done [23:13:37.165] | value() for MultisessionFuture () ... [23:13:37.165] | : result() for ClusterFuture ... [23:13:37.166] | : . assertValidConnection() ... [23:13:37.166] | : . ' cluster node index: 1 [23:13:37.166] | : . assertValidConnection() ... done [23:13:37.167] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.167] | : . ' cluster node index: 1 [23:13:37.170] | : . ' [1] TRUE [23:13:37.170] | : . ' Received data: [23:13:37.171] | : . ' List of 5 [23:13:37.171] | : . ' $ type : chr "VALUE" [23:13:37.171] | : . ' $ value :List of 16 [23:13:37.171] | : . ' ..$ value :List of 13 [23:13:37.171] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [23:13:37.171] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [23:13:37.171] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [23:13:37.171] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.171] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [23:13:37.171] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [23:13:37.171] | : . ' .. ..$ rank : int 2 [23:13:37.171] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [23:13:37.171] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.171] | : . ' .. ..$ assign : int [1:2] 1 1 [23:13:37.171] | : . ' .. ..$ qr :List of 5 [23:13:37.171] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [23:13:37.171] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.171] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [23:13:37.171] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [23:13:37.171] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [23:13:37.171] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [23:13:37.171] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [23:13:37.171] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [23:13:37.171] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:37.171] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.171] | : . ' .. .. ..$ rank : int 2 [23:13:37.171] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.171] | : . ' .. ..$ df.residual : int 18 [23:13:37.171] | : . ' .. ..$ contrasts :List of 1 [23:13:37.171] | : . ' .. .. ..$ group: chr "contr.treatment" [23:13:37.171] | : . ' .. ..$ xlevels :List of 1 [23:13:37.171] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [23:13:37.171] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [23:13:37.171] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.171] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.171] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.171] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.171] | : . ' .. .. .. .. .. ..$ : chr "group" [23:13:37.171] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.171] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.171] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.171] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.171] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.171] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.171] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.171] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [23:13:37.171] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:37.171] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:37.171] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.171] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.171] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.171] | : . ' .. .. .. .. .. .. ..$ : chr "group" [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.171] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.171] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.171] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.171] | : . ' ..$ visible : logi TRUE [23:13:37.171] | : . ' ..$ stdout : chr "" [23:13:37.171] | : . ' ..$ conditions : list() [23:13:37.171] | : . ' ..$ rng : logi FALSE [23:13:37.171] | : . ' ..$ seed : NULL [23:13:37.171] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.171] | : . ' ..$ misuseConnections :List of 3 [23:13:37.171] | : . ' .. ..$ added : NULL [23:13:37.171] | : . ' .. ..$ removed : NULL [23:13:37.171] | : . ' .. ..$ replaced: NULL [23:13:37.171] | : . ' ..$ misuseDevices : NULL [23:13:37.171] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.171] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.171] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.171] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "18" [23:13:37.171] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.171] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.171] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.171] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.171] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.171] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.171] | : . ' .. .. ..$ pid : int 62172 [23:13:37.171] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.171] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.171] | : . ' ..$ r_info :List of 4 [23:13:37.171] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.171] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.171] | : . ' .. ..$ os : chr "windows" [23:13:37.171] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.171] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.171] | : . ' ..$ version : chr "1.8" [23:13:37.171] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.171] | : . ' $ success: logi TRUE [23:13:37.171] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.01 NA NA [23:13:37.171] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.171] | : . ' $ tag : NULL [23:13:37.221] | : . ' Received FutureResult [23:13:37.222] | : . ' FutureResult: [23:13:37.222] | : . ' value: 'lm' [23:13:37.222] | : . ' visible: TRUE [23:13:37.222] | : . ' stdout: character [23:13:37.222] | : . ' conditions: [n = 0] [23:13:37.222] | : . ' RNG used: FALSE [23:13:37.222] | : . ' duration: 0.00676012 secs (started 2025-11-16 23:13:37.161871) [23:13:37.222] | : . ' version: 1.8 [23:13:37.223] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.223] | : . ' , Removed future from position #1 [23:13:37.223] | : . ' , Number of registered futures: 0 [23:13:37.224] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.224] | : . ' Erased future from future backend [23:13:37.224] | : . ' result() for ClusterFuture ... [23:13:37.225] | : . ' , result already collected: FutureResult [23:13:37.225] | : . ' result() for ClusterFuture ... done [23:13:37.225] | : . ' signalConditions() ... [23:13:37.225] | : . ' , include = 'immediateCondition' [23:13:37.226] | : . ' , exclude = [23:13:37.226] | : . ' , resignal = FALSE [23:13:37.226] | : . ' , Number of conditions: 0 [23:13:37.226] | : . ' , int 0 [23:13:37.227] | : . ' signalConditions() ... done [23:13:37.228] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.228] | : result() for ClusterFuture ... done [23:13:37.228] | : result() for ClusterFuture ... [23:13:37.228] | : . result already collected: FutureResult [23:13:37.229] | : result() for ClusterFuture ... done [23:13:37.229] | : signalConditions() ... [23:13:37.229] | : . include = 'immediateCondition' [23:13:37.229] | : . exclude = [23:13:37.229] | : . resignal = FALSE [23:13:37.230] | : . Number of conditions: 0 [23:13:37.230] | : . int 0 [23:13:37.231] | : signalConditions() ... done [23:13:37.231] | : relay stdout ... [23:13:37.231] | : relay stdout ... done [23:13:37.231] | : check for misuse ... [23:13:37.232] | : check for misuse ... done [23:13:37.232] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [23:13:37.235] | future(..., label = NULL) ... [23:13:37.235] | : lazy: TRUE [23:13:37.235] | : stdout: TRUE [23:13:37.236] | : conditions: [n=1] 'condition' [23:13:37.236] | : gc: FALSE [23:13:37.236] | : earlySignal: FALSE [23:13:37.236] | : getGlobalsAndPackages() ... [23:13:37.237] | : . Searching for globals ... [23:13:37.254] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [23:13:37.254] | : . Searching for globals ... done [23:13:37.255] | : . Resolving globals: FALSE [23:13:37.255] | : . Search for packages associated with the globals ... [23:13:37.255] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:37.256] | : . ' Packages: [2] 'base', 'stats' [23:13:37.256] | : . Search for packages associated with the globals ... done [23:13:37.256] | : . Packages after dropping 'base': [1] 'stats' [23:13:37.256] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:37.256] | : . globals: [2] 'weight', 'group' [23:13:37.257] | : . packages: [1] 'stats' [23:13:37.257] | : getGlobalsAndPackages() ... done [23:13:37.257] | future(..., label = NULL) ... done [23:13:37.258] | value() for Future () ... [23:13:37.258] | : run() for 'Future' () ... [23:13:37.258] | : . state: 'created' [23:13:37.258] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.259] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.259] | : . Using MultisessionFutureBackend ... [23:13:37.259] | : . ' Number of futures since start: 4 (4 created, 4 launched, 4 finished) [23:13:37.260] | : . ' Launching futures ... [23:13:37.260] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.260] | : . ' , ; Workers: [n=2] [23:13:37.260] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.262] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.263] | : . ' , ; requestWorker() ... [23:13:37.263] | : . ' , ; ` requestNode() ... [23:13:37.263] | : . ' , ; ` | Number of workers: 2 [23:13:37.263] | : . ' , ; ` | Polling for a free worker ... [23:13:37.263] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.264] | : . ' , ; ` | : . Listing all futures [23:13:37.264] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.264] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.264] | : . ' , ; ` | : Total time: 0 [23:13:37.264] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.265] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.265] | : . ' , ; ` | : Listing all futures [23:13:37.265] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.265] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.266] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.266] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.266] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.267] | : . ' , ; ` | : Worker is functional [23:13:37.267] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.267] | : . ' , ; ` | : . Listing all futures [23:13:37.268] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.268] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.268] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.268] | : . ' , ; ` requestNode() ... done [23:13:37.269] | : . ' , ; ` cluster node index: 1 [23:13:37.269] | : . ' , ; requestWorker() ... done [23:13:37.269] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.270] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.270] | : . ' , ; launchFuture() ... [23:13:37.271] | : . ' , ; ` cluster node index: 1 [23:13:37.271] | : . ' , ; ` getFutureData() ... [23:13:37.271] | : . ' , ; ` | getFutureCore() ... [23:13:37.272] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:37.272] | : . ' , ; ` | getFutureCore() ... done [23:13:37.272] | : . ' , ; ` | getFutureCapture() ... [23:13:37.273] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.273] | : . ' , ; ` | getFutureContext() ... [23:13:37.273] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.273] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.274] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.274] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.274] | : . ' , ; ` | getFutureContext() ... done [23:13:37.275] | : . ' , ; ` getFutureData() ... done [23:13:37.275] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.276] | : . ' , ; ` | Appended future to position #1 [23:13:37.276] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.276] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.276] | : . ' , ; launchFuture() ... done [23:13:37.277] | : . ' , ; MultisessionFuture started [23:13:37.277] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.277] | : . ' Launching futures ... done [23:13:37.278] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.278] | : . Using MultisessionFutureBackend ... done [23:13:37.278] | : run() for 'Future' () ... done [23:13:37.278] | : result() for ClusterFuture ... [23:13:37.279] | : . assertValidConnection() ... [23:13:37.279] | : . ' cluster node index: 1 [23:13:37.280] | : . assertValidConnection() ... done [23:13:37.280] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.280] | : . ' cluster node index: 1 [23:13:37.286] | : . ' [1] TRUE [23:13:37.286] | : . ' Received data: [23:13:37.287] | : . ' List of 5 [23:13:37.287] | : . ' $ type : chr "VALUE" [23:13:37.287] | : . ' $ value :List of 16 [23:13:37.287] | : . ' ..$ value :List of 13 [23:13:37.287] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [23:13:37.287] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [23:13:37.287] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [23:13:37.287] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.287] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [23:13:37.287] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [23:13:37.287] | : . ' .. ..$ rank : int 2 [23:13:37.287] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [23:13:37.287] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [23:13:37.287] | : . ' .. ..$ assign : int [1:2] 1 1 [23:13:37.287] | : . ' .. ..$ qr :List of 5 [23:13:37.287] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [23:13:37.287] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.287] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [23:13:37.287] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [23:13:37.287] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [23:13:37.287] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [23:13:37.287] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [23:13:37.287] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [23:13:37.287] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:37.287] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.287] | : . ' .. .. ..$ rank : int 2 [23:13:37.287] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.287] | : . ' .. ..$ df.residual : int 18 [23:13:37.287] | : . ' .. ..$ contrasts :List of 1 [23:13:37.287] | : . ' .. .. ..$ group: chr "contr.treatment" [23:13:37.287] | : . ' .. ..$ xlevels :List of 1 [23:13:37.287] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [23:13:37.287] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [23:13:37.287] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.287] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.287] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.287] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.287] | : . ' .. .. .. .. .. ..$ : chr "group" [23:13:37.287] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.287] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.287] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.287] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.287] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.287] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.287] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.287] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [23:13:37.287] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [23:13:37.287] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [23:13:37.287] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.287] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.287] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [23:13:37.287] | : . ' .. .. .. .. .. .. ..$ : chr "group" [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [23:13:37.287] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [23:13:37.287] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [23:13:37.287] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.287] | : . ' ..$ visible : logi TRUE [23:13:37.287] | : . ' ..$ stdout : chr "" [23:13:37.287] | : . ' ..$ conditions : list() [23:13:37.287] | : . ' ..$ rng : logi FALSE [23:13:37.287] | : . ' ..$ seed : NULL [23:13:37.287] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.287] | : . ' ..$ misuseConnections :List of 3 [23:13:37.287] | : . ' .. ..$ added : NULL [23:13:37.287] | : . ' .. ..$ removed : NULL [23:13:37.287] | : . ' .. ..$ replaced: NULL [23:13:37.287] | : . ' ..$ misuseDevices : NULL [23:13:37.287] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.287] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.287] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.287] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "19" [23:13:37.287] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.287] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.287] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.287] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.287] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.287] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.287] | : . ' .. .. ..$ pid : int 62172 [23:13:37.287] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.287] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.287] | : . ' ..$ r_info :List of 4 [23:13:37.287] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.287] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.287] | : . ' .. ..$ os : chr "windows" [23:13:37.287] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.287] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.287] | : . ' ..$ version : chr "1.8" [23:13:37.287] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.287] | : . ' $ success: logi TRUE [23:13:37.287] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:37.287] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.287] | : . ' $ tag : NULL [23:13:37.355] | : . ' Received FutureResult [23:13:37.355] | : . ' FutureResult: [23:13:37.355] | : . ' value: 'lm' [23:13:37.355] | : . ' visible: TRUE [23:13:37.355] | : . ' stdout: character [23:13:37.355] | : . ' conditions: [n = 0] [23:13:37.355] | : . ' RNG used: FALSE [23:13:37.355] | : . ' duration: 0.008368969 secs (started 2025-11-16 23:13:37.276173) [23:13:37.355] | : . ' version: 1.8 [23:13:37.357] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.357] | : . ' , Removed future from position #1 [23:13:37.357] | : . ' , Number of registered futures: 0 [23:13:37.358] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.358] | : . ' Erased future from future backend [23:13:37.358] | : . ' result() for ClusterFuture ... [23:13:37.359] | : . ' , result already collected: FutureResult [23:13:37.359] | : . ' result() for ClusterFuture ... done [23:13:37.359] | : . ' signalConditions() ... [23:13:37.360] | : . ' , include = 'immediateCondition' [23:13:37.360] | : . ' , exclude = [23:13:37.360] | : . ' , resignal = FALSE [23:13:37.361] | : . ' , Number of conditions: 0 [23:13:37.361] | : . ' , int 0 [23:13:37.362] | : . ' signalConditions() ... done [23:13:37.362] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.363] | : result() for ClusterFuture ... done [23:13:37.363] | : result() for ClusterFuture ... [23:13:37.363] | : . result already collected: FutureResult [23:13:37.364] | : result() for ClusterFuture ... done [23:13:37.367] | : signalConditions() ... [23:13:37.367] | : . include = 'immediateCondition' [23:13:37.368] | : . exclude = [23:13:37.368] | : . resignal = FALSE [23:13:37.368] | : . Number of conditions: 0 [23:13:37.369] | : . int 0 [23:13:37.370] | : signalConditions() ... done [23:13:37.370] | : relay stdout ... [23:13:37.370] | : relay stdout ... done [23:13:37.371] | : check for misuse ... [23:13:37.371] | : check for misuse ... done [23:13:37.371] | value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 - Globals - one-side formulas, e.g. xtabs(~ x) ... [23:13:37.375] | future(..., label = NULL) ... [23:13:37.376] | : lazy: FALSE [23:13:37.376] | : stdout: TRUE [23:13:37.376] | : conditions: [n=1] 'condition' [23:13:37.377] | : gc: FALSE [23:13:37.377] | : earlySignal: FALSE [23:13:37.377] | : getGlobalsAndPackages() ... [23:13:37.378] | : . Searching for globals ... [23:13:37.396] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [23:13:37.397] | : . Searching for globals ... done [23:13:37.397] | : . Resolving globals: FALSE [23:13:37.397] | : . Search for packages associated with the globals ... [23:13:37.398] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:37.399] | : . ' Packages: [2] 'base', 'stats' [23:13:37.399] | : . Search for packages associated with the globals ... done [23:13:37.399] | : . Packages after dropping 'base': [1] 'stats' [23:13:37.400] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:37.400] | : . globals: [1] 'x' [23:13:37.400] | : . packages: [1] 'stats' [23:13:37.401] | : getGlobalsAndPackages() ... done [23:13:37.401] | : run() for 'Future' () ... [23:13:37.402] | : . state: 'created' [23:13:37.402] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.402] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.403] | : . Using MultisessionFutureBackend ... [23:13:37.403] | : . ' Number of futures since start: 5 (5 created, 5 launched, 5 finished) [23:13:37.403] | : . ' Launching futures ... [23:13:37.404] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.404] | : . ' , ; Workers: [n=2] [23:13:37.405] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.408] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.408] | : . ' , ; requestWorker() ... [23:13:37.409] | : . ' , ; ` requestNode() ... [23:13:37.409] | : . ' , ; ` | Number of workers: 2 [23:13:37.409] | : . ' , ; ` | Polling for a free worker ... [23:13:37.410] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.410] | : . ' , ; ` | : . Listing all futures [23:13:37.410] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.411] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.411] | : . ' , ; ` | : Total time: 0 [23:13:37.411] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.412] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.412] | : . ' , ; ` | : Listing all futures [23:13:37.412] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.412] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.413] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.413] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.413] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.414] | : . ' , ; ` | : Worker is functional [23:13:37.414] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.415] | : . ' , ; ` | : . Listing all futures [23:13:37.415] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.415] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.416] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.416] | : . ' , ; ` requestNode() ... done [23:13:37.416] | : . ' , ; ` cluster node index: 1 [23:13:37.417] | : . ' , ; requestWorker() ... done [23:13:37.417] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.418] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.418] | : . ' , ; launchFuture() ... [23:13:37.419] | : . ' , ; ` cluster node index: 1 [23:13:37.419] | : . ' , ; ` getFutureData() ... [23:13:37.419] | : . ' , ; ` | getFutureCore() ... [23:13:37.419] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:37.420] | : . ' , ; ` | getFutureCore() ... done [23:13:37.420] | : . ' , ; ` | getFutureCapture() ... [23:13:37.420] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.421] | : . ' , ; ` | getFutureContext() ... [23:13:37.421] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.421] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.421] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.422] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.422] | : . ' , ; ` | getFutureContext() ... done [23:13:37.422] | : . ' , ; ` getFutureData() ... done [23:13:37.423] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.423] | : . ' , ; ` | Appended future to position #1 [23:13:37.423] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.424] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.424] | : . ' , ; launchFuture() ... done [23:13:37.424] | : . ' , ; MultisessionFuture started [23:13:37.424] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.425] | : . ' Launching futures ... done [23:13:37.425] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.425] | : . Using MultisessionFutureBackend ... done [23:13:37.425] | : run() for 'Future' () ... done [23:13:37.426] | future(..., label = NULL) ... done [23:13:37.426] | value() for MultisessionFuture () ... [23:13:37.426] | : result() for ClusterFuture ... [23:13:37.427] | : . assertValidConnection() ... [23:13:37.427] | : . ' cluster node index: 1 [23:13:37.428] | : . assertValidConnection() ... done [23:13:37.428] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.428] | : . ' cluster node index: 1 [23:13:37.431] | : . ' [1] TRUE [23:13:37.431] | : . ' Received data: [23:13:37.432] | : . ' List of 5 [23:13:37.432] | : . ' $ type : chr "VALUE" [23:13:37.432] | : . ' $ value :List of 16 [23:13:37.432] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [23:13:37.432] | : . ' .. ..- attr(*, "dimnames")=List of 1 [23:13:37.432] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [23:13:37.432] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [23:13:37.432] | : . ' ..$ visible : logi TRUE [23:13:37.432] | : . ' ..$ stdout : chr "" [23:13:37.432] | : . ' ..$ conditions : list() [23:13:37.432] | : . ' ..$ rng : logi FALSE [23:13:37.432] | : . ' ..$ seed : NULL [23:13:37.432] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.432] | : . ' ..$ misuseConnections :List of 3 [23:13:37.432] | : . ' .. ..$ added : NULL [23:13:37.432] | : . ' .. ..$ removed : NULL [23:13:37.432] | : . ' .. ..$ replaced: NULL [23:13:37.432] | : . ' ..$ misuseDevices : NULL [23:13:37.432] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.432] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.432] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.432] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "20" [23:13:37.432] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.432] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.432] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.432] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.432] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.432] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.432] | : . ' .. .. ..$ pid : int 62172 [23:13:37.432] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.432] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.432] | : . ' ..$ r_info :List of 4 [23:13:37.432] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.432] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.432] | : . ' .. ..$ os : chr "windows" [23:13:37.432] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.432] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.432] | : . ' ..$ version : chr "1.8" [23:13:37.432] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.432] | : . ' $ success: logi TRUE [23:13:37.432] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.02 NA NA [23:13:37.432] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.432] | : . ' $ tag : NULL [23:13:37.456] | : . ' Received FutureResult [23:13:37.457] | : . ' FutureResult: [23:13:37.457] | : . ' value: 'xtabs', 'table' [23:13:37.457] | : . ' visible: TRUE [23:13:37.457] | : . ' stdout: character [23:13:37.457] | : . ' conditions: [n = 0] [23:13:37.457] | : . ' RNG used: FALSE [23:13:37.457] | : . ' duration: 0.006104231 secs (started 2025-11-16 23:13:37.423617) [23:13:37.457] | : . ' version: 1.8 [23:13:37.458] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.458] | : . ' , Removed future from position #1 [23:13:37.458] | : . ' , Number of registered futures: 0 [23:13:37.459] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.459] | : . ' Erased future from future backend [23:13:37.459] | : . ' result() for ClusterFuture ... [23:13:37.460] | : . ' , result already collected: FutureResult [23:13:37.460] | : . ' result() for ClusterFuture ... done [23:13:37.460] | : . ' signalConditions() ... [23:13:37.461] | : . ' , include = 'immediateCondition' [23:13:37.461] | : . ' , exclude = [23:13:37.461] | : . ' , resignal = FALSE [23:13:37.461] | : . ' , Number of conditions: 0 [23:13:37.462] | : . ' , int 0 [23:13:37.463] | : . ' signalConditions() ... done [23:13:37.463] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.463] | : result() for ClusterFuture ... done [23:13:37.463] | : result() for ClusterFuture ... [23:13:37.464] | : . result already collected: FutureResult [23:13:37.464] | : result() for ClusterFuture ... done [23:13:37.464] | : signalConditions() ... [23:13:37.465] | : . include = 'immediateCondition' [23:13:37.465] | : . exclude = [23:13:37.465] | : . resignal = FALSE [23:13:37.465] | : . Number of conditions: 0 [23:13:37.466] | : . int 0 [23:13:37.467] | : signalConditions() ... done [23:13:37.467] | : relay stdout ... [23:13:37.467] | : relay stdout ... done [23:13:37.468] | : check for misuse ... [23:13:37.468] | : check for misuse ... done [23:13:37.468] | value() for MultisessionFuture () ... done x 1 2 2 3 [23:13:37.470] | future(..., label = NULL) ... [23:13:37.470] | : lazy: FALSE [23:13:37.470] | : stdout: TRUE [23:13:37.471] | : conditions: [n=1] 'condition' [23:13:37.471] | : gc: FALSE [23:13:37.471] | : earlySignal: FALSE [23:13:37.471] | : getGlobalsAndPackages() ... [23:13:37.472] | : . Searching for globals ... [23:13:37.489] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [23:13:37.489] | : . Searching for globals ... done [23:13:37.490] | : . Resolving globals: FALSE [23:13:37.490] | : . Search for packages associated with the globals ... [23:13:37.491] | : . ' Packages associated with globals: [2] 'base', 'stats' [23:13:37.491] | : . ' Packages: [2] 'base', 'stats' [23:13:37.492] | : . Search for packages associated with the globals ... done [23:13:37.492] | : . Packages after dropping 'base': [1] 'stats' [23:13:37.492] | : . Packages after dropping non-attached packages: [1] 'stats' [23:13:37.493] | : . globals: [1] 'x' [23:13:37.493] | : . packages: [1] 'stats' [23:13:37.493] | : getGlobalsAndPackages() ... done [23:13:37.494] | : run() for 'Future' () ... [23:13:37.494] | : . state: 'created' [23:13:37.495] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.495] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.495] | : . Using MultisessionFutureBackend ... [23:13:37.495] | : . ' Number of futures since start: 6 (6 created, 6 launched, 6 finished) [23:13:37.496] | : . ' Launching futures ... [23:13:37.496] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.496] | : . ' , ; Workers: [n=2] [23:13:37.497] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.500] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.500] | : . ' , ; requestWorker() ... [23:13:37.501] | : . ' , ; ` requestNode() ... [23:13:37.501] | : . ' , ; ` | Number of workers: 2 [23:13:37.501] | : . ' , ; ` | Polling for a free worker ... [23:13:37.501] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.502] | : . ' , ; ` | : . Listing all futures [23:13:37.502] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.502] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.503] | : . ' , ; ` | : Total time: 0 [23:13:37.503] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.503] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.504] | : . ' , ; ` | : Listing all futures [23:13:37.504] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.504] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.504] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.505] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.505] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.506] | : . ' , ; ` | : Worker is functional [23:13:37.506] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.506] | : . ' , ; ` | : . Listing all futures [23:13:37.507] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.507] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.507] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.508] | : . ' , ; ` requestNode() ... done [23:13:37.508] | : . ' , ; ` cluster node index: 1 [23:13:37.508] | : . ' , ; requestWorker() ... done [23:13:37.509] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.509] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.510] | : . ' , ; launchFuture() ... [23:13:37.510] | : . ' , ; ` cluster node index: 1 [23:13:37.510] | : . ' , ; ` getFutureData() ... [23:13:37.511] | : . ' , ; ` | getFutureCore() ... [23:13:37.511] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [23:13:37.511] | : . ' , ; ` | getFutureCore() ... done [23:13:37.512] | : . ' , ; ` | getFutureCapture() ... [23:13:37.512] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.512] | : . ' , ; ` | getFutureContext() ... [23:13:37.512] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.513] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.513] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.513] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.514] | : . ' , ; ` | getFutureContext() ... done [23:13:37.514] | : . ' , ; ` getFutureData() ... done [23:13:37.515] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.515] | : . ' , ; ` | Appended future to position #1 [23:13:37.515] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.516] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.516] | : . ' , ; launchFuture() ... done [23:13:37.516] | : . ' , ; MultisessionFuture started [23:13:37.517] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.517] | : . ' Launching futures ... done [23:13:37.517] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.518] | : . Using MultisessionFutureBackend ... done [23:13:37.518] | : run() for 'Future' () ... done [23:13:37.518] | future(..., label = NULL) ... done [23:13:37.519] | value() for MultisessionFuture () ... [23:13:37.519] | : result() for ClusterFuture ... [23:13:37.519] | : . assertValidConnection() ... [23:13:37.520] | : . ' cluster node index: 1 [23:13:37.520] | : . assertValidConnection() ... done [23:13:37.521] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.521] | : . ' cluster node index: 1 [23:13:37.522] | : . ' [1] TRUE [23:13:37.522] | : . ' Received data: [23:13:37.523] | : . ' List of 5 [23:13:37.523] | : . ' $ type : chr "VALUE" [23:13:37.523] | : . ' $ value :List of 16 [23:13:37.523] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [23:13:37.523] | : . ' .. ..- attr(*, "dimnames")=List of 1 [23:13:37.523] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [23:13:37.523] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [23:13:37.523] | : . ' ..$ visible : logi TRUE [23:13:37.523] | : . ' ..$ stdout : chr "" [23:13:37.523] | : . ' ..$ conditions : list() [23:13:37.523] | : . ' ..$ rng : logi FALSE [23:13:37.523] | : . ' ..$ seed : NULL [23:13:37.523] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.523] | : . ' ..$ misuseConnections :List of 3 [23:13:37.523] | : . ' .. ..$ added : NULL [23:13:37.523] | : . ' .. ..$ removed : NULL [23:13:37.523] | : . ' .. ..$ replaced: NULL [23:13:37.523] | : . ' ..$ misuseDevices : NULL [23:13:37.523] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.523] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.523] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.523] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "21" [23:13:37.523] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.523] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.523] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.523] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.523] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.523] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.523] | : . ' .. .. ..$ pid : int 62172 [23:13:37.523] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.523] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.523] | : . ' ..$ r_info :List of 4 [23:13:37.523] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.523] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.523] | : . ' .. ..$ os : chr "windows" [23:13:37.523] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.523] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.523] | : . ' ..$ version : chr "1.8" [23:13:37.523] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.523] | : . ' $ success: logi TRUE [23:13:37.523] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:37.523] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.523] | : . ' $ tag : NULL [23:13:37.551] | : . ' Received FutureResult [23:13:37.551] | : . ' FutureResult: [23:13:37.551] | : . ' value: 'xtabs', 'table' [23:13:37.551] | : . ' visible: TRUE [23:13:37.551] | : . ' stdout: character [23:13:37.551] | : . ' conditions: [n = 0] [23:13:37.551] | : . ' RNG used: FALSE [23:13:37.551] | : . ' duration: 0.005048037 secs (started 2025-11-16 23:13:37.5155) [23:13:37.551] | : . ' version: 1.8 [23:13:37.552] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.552] | : . ' , Removed future from position #1 [23:13:37.553] | : . ' , Number of registered futures: 0 [23:13:37.553] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.553] | : . ' Erased future from future backend [23:13:37.554] | : . ' result() for ClusterFuture ... [23:13:37.554] | : . ' , result already collected: FutureResult [23:13:37.554] | : . ' result() for ClusterFuture ... done [23:13:37.555] | : . ' signalConditions() ... [23:13:37.555] | : . ' , include = 'immediateCondition' [23:13:37.555] | : . ' , exclude = [23:13:37.556] | : . ' , resignal = FALSE [23:13:37.556] | : . ' , Number of conditions: 0 [23:13:37.556] | : . ' , int 0 [23:13:37.557] | : . ' signalConditions() ... done [23:13:37.557] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.558] | : result() for ClusterFuture ... done [23:13:37.558] | : result() for ClusterFuture ... [23:13:37.558] | : . result already collected: FutureResult [23:13:37.559] | : result() for ClusterFuture ... done [23:13:37.559] | : signalConditions() ... [23:13:37.559] | : . include = 'immediateCondition' [23:13:37.559] | : . exclude = [23:13:37.560] | : . resignal = FALSE [23:13:37.560] | : . Number of conditions: 0 [23:13:37.560] | : . int 0 [23:13:37.561] | : signalConditions() ... done [23:13:37.562] | : relay stdout ... [23:13:37.562] | : relay stdout ... done [23:13:37.562] | : check for misuse ... [23:13:37.563] | : check for misuse ... done [23:13:37.563] | value() for MultisessionFuture () ... done x 1 2 2 3 - Globals - lm(, data = cars) ... - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ . - 1, data = cars) Coefficients: speed 2.909 [23:13:37.565] | future(..., label = NULL) ... [23:13:37.565] | : lazy: FALSE [23:13:37.565] | : stdout: TRUE [23:13:37.565] | : conditions: [n=1] 'condition' [23:13:37.566] | : gc: FALSE [23:13:37.566] | : earlySignal: FALSE [23:13:37.566] | : getGlobalsAndPackages() ... [23:13:37.566] | : . Searching for globals ... [23:13:37.582] | : . ' globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [23:13:37.583] | : . Searching for globals ... done [23:13:37.583] | : . Resolving globals: FALSE [23:13:37.583] | : . Search for packages associated with the globals ... [23:13:37.584] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:37.584] | : . ' Packages: [3] 'base', 'stats', 'datasets' [23:13:37.584] | : . Search for packages associated with the globals ... done [23:13:37.584] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:37.585] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:37.585] | : . globals: [0] [23:13:37.585] | : . packages: [2] 'stats', 'datasets' [23:13:37.585] | : getGlobalsAndPackages() ... done [23:13:37.586] | : run() for 'Future' () ... [23:13:37.586] | : . state: 'created' [23:13:37.586] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.586] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.586] | : . Using MultisessionFutureBackend ... [23:13:37.587] | : . ' Number of futures since start: 7 (7 created, 7 launched, 7 finished) [23:13:37.587] | : . ' Launching futures ... [23:13:37.587] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.587] | : . ' , ; Workers: [n=2] [23:13:37.588] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.591] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.591] | : . ' , ; requestWorker() ... [23:13:37.591] | : . ' , ; ` requestNode() ... [23:13:37.591] | : . ' , ; ` | Number of workers: 2 [23:13:37.592] | : . ' , ; ` | Polling for a free worker ... [23:13:37.592] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.592] | : . ' , ; ` | : . Listing all futures [23:13:37.593] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.593] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.593] | : . ' , ; ` | : Total time: 0 [23:13:37.593] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.594] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.594] | : . ' , ; ` | : Listing all futures [23:13:37.594] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.594] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.595] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.595] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.595] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.596] | : . ' , ; ` | : Worker is functional [23:13:37.596] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.596] | : . ' , ; ` | : . Listing all futures [23:13:37.597] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.597] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.597] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.597] | : . ' , ; ` requestNode() ... done [23:13:37.598] | : . ' , ; ` cluster node index: 1 [23:13:37.598] | : . ' , ; requestWorker() ... done [23:13:37.598] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.599] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.599] | : . ' , ; launchFuture() ... [23:13:37.600] | : . ' , ; ` cluster node index: 1 [23:13:37.600] | : . ' , ; ` getFutureData() ... [23:13:37.600] | : . ' , ; ` | getFutureCore() ... [23:13:37.600] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:37.601] | : . ' , ; ` | getFutureCore() ... done [23:13:37.601] | : . ' , ; ` | getFutureCapture() ... [23:13:37.601] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.601] | : . ' , ; ` | getFutureContext() ... [23:13:37.602] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.602] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.602] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.602] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.603] | : . ' , ; ` | getFutureContext() ... done [23:13:37.603] | : . ' , ; ` getFutureData() ... done [23:13:37.604] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.604] | : . ' , ; ` | Appended future to position #1 [23:13:37.604] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.605] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.605] | : . ' , ; launchFuture() ... done [23:13:37.605] | : . ' , ; MultisessionFuture started [23:13:37.605] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.606] | : . ' Launching futures ... done [23:13:37.606] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.606] | : . Using MultisessionFutureBackend ... done [23:13:37.606] | : run() for 'Future' () ... done [23:13:37.607] | future(..., label = NULL) ... done [23:13:37.607] | value() for MultisessionFuture () ... [23:13:37.607] | : result() for ClusterFuture ... [23:13:37.608] | : . assertValidConnection() ... [23:13:37.608] | : . ' cluster node index: 1 [23:13:37.608] | : . assertValidConnection() ... done [23:13:37.609] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.609] | : . ' cluster node index: 1 [23:13:37.612] | : . ' [1] TRUE [23:13:37.613] | : . ' Received data: [23:13:37.613] | : . ' List of 5 [23:13:37.613] | : . ' $ type : chr "VALUE" [23:13:37.613] | : . ' $ value :List of 16 [23:13:37.613] | : . ' ..$ value :List of 12 [23:13:37.613] | : . ' .. ..$ coefficients : Named num 2.91 [23:13:37.613] | : . ' .. .. ..- attr(*, "names")= chr "speed" [23:13:37.613] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [23:13:37.613] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.613] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [23:13:37.613] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [23:13:37.613] | : . ' .. ..$ rank : int 1 [23:13:37.613] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [23:13:37.613] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.613] | : . ' .. ..$ assign : int 1 [23:13:37.613] | : . ' .. ..$ qr :List of 5 [23:13:37.613] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [23:13:37.613] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.613] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [23:13:37.613] | : . ' .. .. .. .. ..$ : chr "speed" [23:13:37.613] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [23:13:37.613] | : . ' .. .. ..$ qraux: num 1.03 [23:13:37.613] | : . ' .. .. ..$ pivot: int 1 [23:13:37.613] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.613] | : . ' .. .. ..$ rank : int 1 [23:13:37.613] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.613] | : . ' .. ..$ df.residual : int 49 [23:13:37.613] | : . ' .. ..$ xlevels : Named list() [23:13:37.613] | : . ' .. ..$ call : language lm(formula = dist ~ . - 1, data = cars) [23:13:37.613] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed - 1 [23:13:37.613] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.613] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.613] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.613] | : . ' .. .. .. .. .. ..$ : chr "speed" [23:13:37.613] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.613] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.613] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.613] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.613] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.613] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.613] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.613] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [23:13:37.613] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [23:13:37.613] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [23:13:37.613] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed - 1 [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.613] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.613] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.613] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.613] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.613] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.613] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.613] | : . ' ..$ visible : logi TRUE [23:13:37.613] | : . ' ..$ stdout : chr "" [23:13:37.613] | : . ' ..$ conditions : list() [23:13:37.613] | : . ' ..$ rng : logi FALSE [23:13:37.613] | : . ' ..$ seed : NULL [23:13:37.613] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.613] | : . ' ..$ misuseConnections :List of 3 [23:13:37.613] | : . ' .. ..$ added : NULL [23:13:37.613] | : . ' .. ..$ removed : NULL [23:13:37.613] | : . ' .. ..$ replaced: NULL [23:13:37.613] | : . ' ..$ misuseDevices : NULL [23:13:37.613] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.613] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.613] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.613] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "22" [23:13:37.613] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.613] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.613] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.613] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.613] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.613] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.613] | : . ' .. .. ..$ pid : int 62172 [23:13:37.613] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.613] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.613] | : . ' ..$ r_info :List of 4 [23:13:37.613] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.613] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.613] | : . ' .. ..$ os : chr "windows" [23:13:37.613] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.613] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.613] | : . ' ..$ version : chr "1.8" [23:13:37.613] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.613] | : . ' $ success: logi TRUE [23:13:37.613] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:37.613] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.613] | : . ' $ tag : NULL [23:13:37.670] | : . ' Received FutureResult [23:13:37.671] | : . ' FutureResult: [23:13:37.671] | : . ' value: 'lm' [23:13:37.671] | : . ' visible: TRUE [23:13:37.671] | : . ' stdout: character [23:13:37.671] | : . ' conditions: [n = 0] [23:13:37.671] | : . ' RNG used: FALSE [23:13:37.671] | : . ' duration: 0.006675959 secs (started 2025-11-16 23:13:37.604466) [23:13:37.671] | : . ' version: 1.8 [23:13:37.672] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.672] | : . ' , Removed future from position #1 [23:13:37.672] | : . ' , Number of registered futures: 0 [23:13:37.673] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.673] | : . ' Erased future from future backend [23:13:37.673] | : . ' result() for ClusterFuture ... [23:13:37.673] | : . ' , result already collected: FutureResult [23:13:37.674] | : . ' result() for ClusterFuture ... done [23:13:37.674] | : . ' signalConditions() ... [23:13:37.674] | : . ' , include = 'immediateCondition' [23:13:37.674] | : . ' , exclude = [23:13:37.675] | : . ' , resignal = FALSE [23:13:37.675] | : . ' , Number of conditions: 0 [23:13:37.675] | : . ' , int 0 [23:13:37.676] | : . ' signalConditions() ... done [23:13:37.676] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.677] | : result() for ClusterFuture ... done [23:13:37.677] | : result() for ClusterFuture ... [23:13:37.677] | : . result already collected: FutureResult [23:13:37.677] | : result() for ClusterFuture ... done [23:13:37.678] | : signalConditions() ... [23:13:37.678] | : . include = 'immediateCondition' [23:13:37.678] | : . exclude = [23:13:37.679] | : . resignal = FALSE [23:13:37.679] | : . Number of conditions: 0 [23:13:37.679] | : . int 0 [23:13:37.680] | : signalConditions() ... done [23:13:37.680] | : relay stdout ... [23:13:37.680] | : relay stdout ... done [23:13:37.681] | : check for misuse ... [23:13:37.681] | : check for misuse ... done [23:13:37.681] | value() for MultisessionFuture () ... done Call: lm(formula = dist ~ . - 1, data = cars) Coefficients: speed 2.909 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ . + 0, data = cars) Coefficients: speed 2.909 [23:13:37.685] | future(..., label = NULL) ... [23:13:37.685] | : lazy: FALSE [23:13:37.686] | : stdout: TRUE [23:13:37.686] | : conditions: [n=1] 'condition' [23:13:37.686] | : gc: FALSE [23:13:37.686] | : earlySignal: FALSE [23:13:37.687] | : getGlobalsAndPackages() ... [23:13:37.687] | : . Searching for globals ... [23:13:37.713] | : . ' globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [23:13:37.713] | : . Searching for globals ... done [23:13:37.714] | : . Resolving globals: FALSE [23:13:37.714] | : . Search for packages associated with the globals ... [23:13:37.715] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:37.715] | : . ' Packages: [3] 'base', 'stats', 'datasets' [23:13:37.716] | : . Search for packages associated with the globals ... done [23:13:37.716] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:37.716] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:37.717] | : . globals: [0] [23:13:37.717] | : . packages: [2] 'stats', 'datasets' [23:13:37.717] | : getGlobalsAndPackages() ... done [23:13:37.718] | : run() for 'Future' () ... [23:13:37.718] | : . state: 'created' [23:13:37.718] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.719] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.719] | : . Using MultisessionFutureBackend ... [23:13:37.719] | : . ' Number of futures since start: 8 (8 created, 8 launched, 8 finished) [23:13:37.719] | : . ' Launching futures ... [23:13:37.720] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.720] | : . ' , ; Workers: [n=2] [23:13:37.720] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.723] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.724] | : . ' , ; requestWorker() ... [23:13:37.724] | : . ' , ; ` requestNode() ... [23:13:37.724] | : . ' , ; ` | Number of workers: 2 [23:13:37.724] | : . ' , ; ` | Polling for a free worker ... [23:13:37.725] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.725] | : . ' , ; ` | : . Listing all futures [23:13:37.725] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.726] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.726] | : . ' , ; ` | : Total time: 0 [23:13:37.726] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.726] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.727] | : . ' , ; ` | : Listing all futures [23:13:37.727] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.727] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.727] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.728] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.728] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.729] | : . ' , ; ` | : Worker is functional [23:13:37.729] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.729] | : . ' , ; ` | : . Listing all futures [23:13:37.729] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.730] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.730] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.730] | : . ' , ; ` requestNode() ... done [23:13:37.731] | : . ' , ; ` cluster node index: 1 [23:13:37.731] | : . ' , ; requestWorker() ... done [23:13:37.731] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.732] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.732] | : . ' , ; launchFuture() ... [23:13:37.732] | : . ' , ; ` cluster node index: 1 [23:13:37.733] | : . ' , ; ` getFutureData() ... [23:13:37.733] | : . ' , ; ` | getFutureCore() ... [23:13:37.733] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:37.733] | : . ' , ; ` | getFutureCore() ... done [23:13:37.734] | : . ' , ; ` | getFutureCapture() ... [23:13:37.734] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.734] | : . ' , ; ` | getFutureContext() ... [23:13:37.734] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.735] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.735] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.735] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.735] | : . ' , ; ` | getFutureContext() ... done [23:13:37.736] | : . ' , ; ` getFutureData() ... done [23:13:37.736] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.737] | : . ' , ; ` | Appended future to position #1 [23:13:37.737] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.737] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.737] | : . ' , ; launchFuture() ... done [23:13:37.738] | : . ' , ; MultisessionFuture started [23:13:37.738] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.738] | : . ' Launching futures ... done [23:13:37.738] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.739] | : . Using MultisessionFutureBackend ... done [23:13:37.739] | : run() for 'Future' () ... done [23:13:37.739] | future(..., label = NULL) ... done [23:13:37.739] | value() for MultisessionFuture () ... [23:13:37.740] | : result() for ClusterFuture ... [23:13:37.740] | : . assertValidConnection() ... [23:13:37.740] | : . ' cluster node index: 1 [23:13:37.741] | : . assertValidConnection() ... done [23:13:37.741] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.742] | : . ' cluster node index: 1 [23:13:37.743] | : . ' [1] TRUE [23:13:37.744] | : . ' Received data: [23:13:37.744] | : . ' List of 5 [23:13:37.744] | : . ' $ type : chr "VALUE" [23:13:37.744] | : . ' $ value :List of 16 [23:13:37.744] | : . ' ..$ value :List of 12 [23:13:37.744] | : . ' .. ..$ coefficients : Named num 2.91 [23:13:37.744] | : . ' .. .. ..- attr(*, "names")= chr "speed" [23:13:37.744] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [23:13:37.744] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.744] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [23:13:37.744] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [23:13:37.744] | : . ' .. ..$ rank : int 1 [23:13:37.744] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [23:13:37.744] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.744] | : . ' .. ..$ assign : int 1 [23:13:37.744] | : . ' .. ..$ qr :List of 5 [23:13:37.744] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [23:13:37.744] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.744] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [23:13:37.744] | : . ' .. .. .. .. ..$ : chr "speed" [23:13:37.744] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [23:13:37.744] | : . ' .. .. ..$ qraux: num 1.03 [23:13:37.744] | : . ' .. .. ..$ pivot: int 1 [23:13:37.744] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.744] | : . ' .. .. ..$ rank : int 1 [23:13:37.744] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.744] | : . ' .. ..$ df.residual : int 49 [23:13:37.744] | : . ' .. ..$ xlevels : Named list() [23:13:37.744] | : . ' .. ..$ call : language lm(formula = dist ~ . + 0, data = cars) [23:13:37.744] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + 0 [23:13:37.744] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.744] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.744] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.744] | : . ' .. .. .. .. .. ..$ : chr "speed" [23:13:37.744] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.744] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.744] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.744] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.744] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.744] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.744] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.744] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [23:13:37.744] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [23:13:37.744] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [23:13:37.744] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + 0 [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.744] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.744] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.744] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.744] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.744] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.744] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.744] | : . ' ..$ visible : logi TRUE [23:13:37.744] | : . ' ..$ stdout : chr "" [23:13:37.744] | : . ' ..$ conditions : list() [23:13:37.744] | : . ' ..$ rng : logi FALSE [23:13:37.744] | : . ' ..$ seed : NULL [23:13:37.744] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.744] | : . ' ..$ misuseConnections :List of 3 [23:13:37.744] | : . ' .. ..$ added : NULL [23:13:37.744] | : . ' .. ..$ removed : NULL [23:13:37.744] | : . ' .. ..$ replaced: NULL [23:13:37.744] | : . ' ..$ misuseDevices : NULL [23:13:37.744] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.744] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.744] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.744] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "23" [23:13:37.744] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.744] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.744] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.744] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.744] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.744] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.744] | : . ' .. .. ..$ pid : int 62172 [23:13:37.744] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.744] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.744] | : . ' ..$ r_info :List of 4 [23:13:37.744] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.744] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.744] | : . ' .. ..$ os : chr "windows" [23:13:37.744] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.744] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.744] | : . ' ..$ version : chr "1.8" [23:13:37.744] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.744] | : . ' $ success: logi TRUE [23:13:37.744] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:37.744] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.744] | : . ' $ tag : NULL [23:13:37.801] | : . ' Received FutureResult [23:13:37.802] | : . ' FutureResult: [23:13:37.802] | : . ' value: 'lm' [23:13:37.802] | : . ' visible: TRUE [23:13:37.802] | : . ' stdout: character [23:13:37.802] | : . ' conditions: [n = 0] [23:13:37.802] | : . ' RNG used: FALSE [23:13:37.802] | : . ' duration: 0.005140066 secs (started 2025-11-16 23:13:37.736979) [23:13:37.802] | : . ' version: 1.8 [23:13:37.803] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.803] | : . ' , Removed future from position #1 [23:13:37.803] | : . ' , Number of registered futures: 0 [23:13:37.804] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.804] | : . ' Erased future from future backend [23:13:37.804] | : . ' result() for ClusterFuture ... [23:13:37.804] | : . ' , result already collected: FutureResult [23:13:37.804] | : . ' result() for ClusterFuture ... done [23:13:37.805] | : . ' signalConditions() ... [23:13:37.805] | : . ' , include = 'immediateCondition' [23:13:37.805] | : . ' , exclude = [23:13:37.805] | : . ' , resignal = FALSE [23:13:37.805] | : . ' , Number of conditions: 0 [23:13:37.806] | : . ' , int 0 [23:13:37.806] | : . ' signalConditions() ... done [23:13:37.807] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.807] | : result() for ClusterFuture ... done [23:13:37.807] | : result() for ClusterFuture ... [23:13:37.807] | : . result already collected: FutureResult [23:13:37.808] | : result() for ClusterFuture ... done [23:13:37.808] | : signalConditions() ... [23:13:37.808] | : . include = 'immediateCondition' [23:13:37.808] | : . exclude = [23:13:37.808] | : . resignal = FALSE [23:13:37.809] | : . Number of conditions: 0 [23:13:37.809] | : . int 0 [23:13:37.809] | : signalConditions() ... done [23:13:37.810] | : relay stdout ... [23:13:37.810] | : relay stdout ... done [23:13:37.810] | : check for misuse ... [23:13:37.810] | : check for misuse ... done [23:13:37.810] | value() for MultisessionFuture () ... done Call: lm(formula = dist ~ . + 0, data = cars) Coefficients: speed 2.909 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ speed + speed^2, data = cars) Coefficients: (Intercept) speed -17.579 3.932 [23:13:37.813] | future(..., label = NULL) ... [23:13:37.813] | : lazy: FALSE [23:13:37.813] | : stdout: TRUE [23:13:37.814] | : conditions: [n=1] 'condition' [23:13:37.814] | : gc: FALSE [23:13:37.814] | : earlySignal: FALSE [23:13:37.814] | : getGlobalsAndPackages() ... [23:13:37.814] | : . Searching for globals ... [23:13:37.843] | : . ' globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [23:13:37.843] | : . Searching for globals ... done [23:13:37.844] | : . Resolving globals: FALSE [23:13:37.844] | : . Search for packages associated with the globals ... [23:13:37.845] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:37.845] | : . ' Packages: [3] 'base', 'stats', 'datasets' [23:13:37.846] | : . Search for packages associated with the globals ... done [23:13:37.846] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:37.847] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:37.847] | : . globals: [0] [23:13:37.847] | : . packages: [2] 'stats', 'datasets' [23:13:37.847] | : getGlobalsAndPackages() ... done [23:13:37.848] | : run() for 'Future' () ... [23:13:37.848] | : . state: 'created' [23:13:37.849] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.849] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.849] | : . Using MultisessionFutureBackend ... [23:13:37.850] | : . ' Number of futures since start: 9 (9 created, 9 launched, 9 finished) [23:13:37.850] | : . ' Launching futures ... [23:13:37.850] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:37.851] | : . ' , ; Workers: [n=2] [23:13:37.851] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:37.854] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:37.854] | : . ' , ; requestWorker() ... [23:13:37.855] | : . ' , ; ` requestNode() ... [23:13:37.855] | : . ' , ; ` | Number of workers: 2 [23:13:37.855] | : . ' , ; ` | Polling for a free worker ... [23:13:37.856] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.856] | : . ' , ; ` | : . Listing all futures [23:13:37.856] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.856] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.857] | : . ' , ; ` | : Total time: 0 [23:13:37.857] | : . ' , ; ` | Polling for a free worker ... done [23:13:37.857] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.858] | : . ' , ; ` | : Listing all futures [23:13:37.858] | : . ' , ; ` | : Number of registered futures: 0 [23:13:37.858] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.859] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:37.859] | : . ' , ; ` | Index of first available worker: 1 [23:13:37.859] | : . ' , ; ` | Validate that the worker is functional ... [23:13:37.860] | : . ' , ; ` | : Worker is functional [23:13:37.860] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:37.861] | : . ' , ; ` | : . Listing all futures [23:13:37.861] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:37.861] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:37.862] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:37.862] | : . ' , ; ` requestNode() ... done [23:13:37.862] | : . ' , ; ` cluster node index: 1 [23:13:37.863] | : . ' , ; requestWorker() ... done [23:13:37.863] | : . ' , ; eraseGlobalEnvironment() ... [23:13:37.864] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:37.864] | : . ' , ; launchFuture() ... [23:13:37.864] | : . ' , ; ` cluster node index: 1 [23:13:37.864] | : . ' , ; ` getFutureData() ... [23:13:37.865] | : . ' , ; ` | getFutureCore() ... [23:13:37.865] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:37.865] | : . ' , ; ` | getFutureCore() ... done [23:13:37.866] | : . ' , ; ` | getFutureCapture() ... [23:13:37.866] | : . ' , ; ` | getFutureCapture() ... done [23:13:37.866] | : . ' , ; ` | getFutureContext() ... [23:13:37.867] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:37.867] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:37.867] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:37.868] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:37.868] | : . ' , ; ` | getFutureContext() ... done [23:13:37.868] | : . ' , ; ` getFutureData() ... done [23:13:37.869] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:37.869] | : . ' , ; ` | Appended future to position #1 [23:13:37.870] | : . ' , ; ` | Number of registered futures: 1 [23:13:37.870] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:37.870] | : . ' , ; launchFuture() ... done [23:13:37.870] | : . ' , ; MultisessionFuture started [23:13:37.871] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:37.871] | : . ' Launching futures ... done [23:13:37.871] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:37.872] | : . Using MultisessionFutureBackend ... done [23:13:37.872] | : run() for 'Future' () ... done [23:13:37.872] | future(..., label = NULL) ... done [23:13:37.873] | value() for MultisessionFuture () ... [23:13:37.873] | : result() for ClusterFuture ... [23:13:37.873] | : . assertValidConnection() ... [23:13:37.874] | : . ' cluster node index: 1 [23:13:37.874] | : . assertValidConnection() ... done [23:13:37.875] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:37.875] | : . ' cluster node index: 1 [23:13:37.876] | : . ' [1] TRUE [23:13:37.876] | : . ' Received data: [23:13:37.876] | : . ' List of 5 [23:13:37.876] | : . ' $ type : chr "VALUE" [23:13:37.876] | : . ' $ value :List of 16 [23:13:37.876] | : . ' ..$ value :List of 12 [23:13:37.876] | : . ' .. ..$ coefficients : Named num [1:2] -17.58 3.93 [23:13:37.876] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "(Intercept)" "speed" [23:13:37.876] | : . ' .. ..$ residuals : Named num [1:50] 3.85 11.85 -5.95 12.05 2.12 ... [23:13:37.876] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.876] | : . ' .. ..$ effects : Named num [1:50] -303.914 145.552 -8.115 9.885 0.194 ... [23:13:37.876] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "" "" ... [23:13:37.876] | : . ' .. ..$ rank : int 2 [23:13:37.876] | : . ' .. ..$ fitted.values: Named num [1:50] -1.85 -1.85 9.95 9.95 13.88 ... [23:13:37.876] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:37.876] | : . ' .. ..$ assign : int [1:2] 0 1 [23:13:37.876] | : . ' .. ..$ qr :List of 5 [23:13:37.876] | : . ' .. .. ..$ qr : num [1:50, 1:2] -7.071 0.141 0.141 0.141 0.141 ... [23:13:37.876] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.876] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [23:13:37.876] | : . ' .. .. .. .. ..$ : chr [1:2] "(Intercept)" "speed" [23:13:37.876] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 0 1 [23:13:37.876] | : . ' .. .. ..$ qraux: num [1:2] 1.14 1.27 [23:13:37.876] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [23:13:37.876] | : . ' .. .. ..$ tol : num 1e-07 [23:13:37.876] | : . ' .. .. ..$ rank : int 2 [23:13:37.876] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:37.876] | : . ' .. ..$ df.residual : int 48 [23:13:37.876] | : . ' .. ..$ xlevels : Named list() [23:13:37.876] | : . ' .. ..$ call : language lm(formula = dist ~ speed + speed^2, data = cars) [23:13:37.876] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + speed^2 [23:13:37.876] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.876] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.876] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.876] | : . ' .. .. .. .. .. ..$ : chr "speed" [23:13:37.876] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.876] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:37.876] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [23:13:37.876] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:37.876] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:37.876] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.876] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.876] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [23:13:37.876] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [23:13:37.876] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [23:13:37.876] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + speed^2 [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:37.876] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:37.876] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [23:13:37.876] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [23:13:37.876] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [23:13:37.876] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [23:13:37.876] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:37.876] | : . ' ..$ visible : logi TRUE [23:13:37.876] | : . ' ..$ stdout : chr "" [23:13:37.876] | : . ' ..$ conditions : list() [23:13:37.876] | : . ' ..$ rng : logi FALSE [23:13:37.876] | : . ' ..$ seed : NULL [23:13:37.876] | : . ' ..$ misuseGlobalEnv : NULL [23:13:37.876] | : . ' ..$ misuseConnections :List of 3 [23:13:37.876] | : . ' .. ..$ added : NULL [23:13:37.876] | : . ' .. ..$ removed : NULL [23:13:37.876] | : . ' .. ..$ replaced: NULL [23:13:37.876] | : . ' ..$ misuseDevices : NULL [23:13:37.876] | : . ' ..$ misuseDefaultDevice: list() [23:13:37.876] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.876] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:37" [23:13:37.876] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "24" [23:13:37.876] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:37.876] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:37.876] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:37.876] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:37.876] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:37.876] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:37.876] | : . ' .. .. ..$ pid : int 62172 [23:13:37.876] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:37.876] | : . ' .. .. ..$ random: int 2147483647 [23:13:37.876] | : . ' ..$ r_info :List of 4 [23:13:37.876] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:37.876] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:37.876] | : . ' .. ..$ os : chr "windows" [23:13:37.876] | : . ' .. ..$ os_name : chr "Windows" [23:13:37.876] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:37.876] | : . ' ..$ version : chr "1.8" [23:13:37.876] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:37.876] | : . ' $ success: logi TRUE [23:13:37.876] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:37.876] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:37.876] | : . ' $ tag : NULL [23:13:37.939] | : . ' Received FutureResult [23:13:37.939] | : . ' FutureResult: [23:13:37.939] | : . ' value: 'lm' [23:13:37.939] | : . ' visible: TRUE [23:13:37.939] | : . ' stdout: character [23:13:37.939] | : . ' conditions: [n = 0] [23:13:37.939] | : . ' RNG used: FALSE [23:13:37.939] | : . ' duration: 0.004040956 secs (started 2025-11-16 23:13:37.869587) [23:13:37.939] | : . ' version: 1.8 [23:13:37.940] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:37.941] | : . ' , Removed future from position #1 [23:13:37.941] | : . ' , Number of registered futures: 0 [23:13:37.942] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:37.942] | : . ' Erased future from future backend [23:13:37.942] | : . ' result() for ClusterFuture ... [23:13:37.942] | : . ' , result already collected: FutureResult [23:13:37.943] | : . ' result() for ClusterFuture ... done [23:13:37.943] | : . ' signalConditions() ... [23:13:37.943] | : . ' , include = 'immediateCondition' [23:13:37.944] | : . ' , exclude = [23:13:37.944] | : . ' , resignal = FALSE [23:13:37.944] | : . ' , Number of conditions: 0 [23:13:37.944] | : . ' , int 0 [23:13:37.945] | : . ' signalConditions() ... done [23:13:37.946] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:37.946] | : result() for ClusterFuture ... done [23:13:37.946] | : result() for ClusterFuture ... [23:13:37.947] | : . result already collected: FutureResult [23:13:37.947] | : result() for ClusterFuture ... done [23:13:37.947] | : signalConditions() ... [23:13:37.947] | : . include = 'immediateCondition' [23:13:37.948] | : . exclude = [23:13:37.948] | : . resignal = FALSE [23:13:37.948] | : . Number of conditions: 0 [23:13:37.949] | : . int 0 [23:13:37.949] | : signalConditions() ... done [23:13:37.950] | : relay stdout ... [23:13:37.950] | : relay stdout ... done [23:13:37.950] | : check for misuse ... [23:13:37.951] | : check for misuse ... done [23:13:37.951] | value() for MultisessionFuture () ... done Call: lm(formula = dist ~ speed + speed^2, data = cars) Coefficients: (Intercept) speed -17.579 3.932 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ speed + I(speed^2), data = cars) Coefficients: (Intercept) speed I(speed^2) 2.47014 0.91329 0.09996 [23:13:37.956] | future(..., label = NULL) ... [23:13:37.956] | : lazy: FALSE [23:13:37.957] | : stdout: TRUE [23:13:37.957] | : conditions: [n=1] 'condition' [23:13:37.957] | : gc: FALSE [23:13:37.958] | : earlySignal: FALSE [23:13:37.958] | : getGlobalsAndPackages() ... [23:13:37.958] | : . Searching for globals ... [23:13:37.999] | : . ' globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [23:13:37.999] | : . Searching for globals ... done [23:13:37.999] | : . Resolving globals: FALSE [23:13:38.000] | : . Search for packages associated with the globals ... [23:13:38.000] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:38.001] | : . ' Packages: [3] 'base', 'stats', 'datasets' [23:13:38.002] | : . Search for packages associated with the globals ... done [23:13:38.002] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:38.002] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:38.003] | : . globals: [0] [23:13:38.003] | : . packages: [2] 'stats', 'datasets' [23:13:38.003] | : getGlobalsAndPackages() ... done [23:13:38.004] | : run() for 'Future' () ... [23:13:38.004] | : . state: 'created' [23:13:38.004] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.005] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.005] | : . Using MultisessionFutureBackend ... [23:13:38.005] | : . ' Number of futures since start: 10 (10 created, 10 launched, 10 finished) [23:13:38.006] | : . ' Launching futures ... [23:13:38.006] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:38.006] | : . ' , ; Workers: [n=2] [23:13:38.007] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:38.010] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:38.010] | : . ' , ; requestWorker() ... [23:13:38.011] | : . ' , ; ` requestNode() ... [23:13:38.011] | : . ' , ; ` | Number of workers: 2 [23:13:38.011] | : . ' , ; ` | Polling for a free worker ... [23:13:38.012] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.012] | : . ' , ; ` | : . Listing all futures [23:13:38.012] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.012] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.013] | : . ' , ; ` | : Total time: 0 [23:13:38.013] | : . ' , ; ` | Polling for a free worker ... done [23:13:38.013] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.014] | : . ' , ; ` | : Listing all futures [23:13:38.014] | : . ' , ; ` | : Number of registered futures: 0 [23:13:38.014] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.015] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:38.015] | : . ' , ; ` | Index of first available worker: 1 [23:13:38.015] | : . ' , ; ` | Validate that the worker is functional ... [23:13:38.016] | : . ' , ; ` | : Worker is functional [23:13:38.017] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.017] | : . ' , ; ` | : . Listing all futures [23:13:38.017] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.018] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.018] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:38.018] | : . ' , ; ` requestNode() ... done [23:13:38.019] | : . ' , ; ` cluster node index: 1 [23:13:38.019] | : . ' , ; requestWorker() ... done [23:13:38.019] | : . ' , ; eraseGlobalEnvironment() ... [23:13:38.020] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:38.021] | : . ' , ; launchFuture() ... [23:13:38.021] | : . ' , ; ` cluster node index: 1 [23:13:38.022] | : . ' , ; ` getFutureData() ... [23:13:38.022] | : . ' , ; ` | getFutureCore() ... [23:13:38.022] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:38.022] | : . ' , ; ` | getFutureCore() ... done [23:13:38.023] | : . ' , ; ` | getFutureCapture() ... [23:13:38.023] | : . ' , ; ` | getFutureCapture() ... done [23:13:38.023] | : . ' , ; ` | getFutureContext() ... [23:13:38.023] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.023] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:38.024] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.024] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:38.024] | : . ' , ; ` | getFutureContext() ... done [23:13:38.024] | : . ' , ; ` getFutureData() ... done [23:13:38.025] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:38.025] | : . ' , ; ` | Appended future to position #1 [23:13:38.025] | : . ' , ; ` | Number of registered futures: 1 [23:13:38.026] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:38.026] | : . ' , ; launchFuture() ... done [23:13:38.026] | : . ' , ; MultisessionFuture started [23:13:38.027] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:38.027] | : . ' Launching futures ... done [23:13:38.027] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:38.028] | : . Using MultisessionFutureBackend ... done [23:13:38.028] | : run() for 'Future' () ... done [23:13:38.028] | future(..., label = NULL) ... done [23:13:38.029] | value() for MultisessionFuture () ... [23:13:38.029] | : result() for ClusterFuture ... [23:13:38.029] | : . assertValidConnection() ... [23:13:38.030] | : . ' cluster node index: 1 [23:13:38.030] | : . assertValidConnection() ... done [23:13:38.031] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:38.031] | : . ' cluster node index: 1 [23:13:38.035] | : . ' [1] TRUE [23:13:38.035] | : . ' Received data: [23:13:38.036] | : . ' List of 5 [23:13:38.036] | : . ' $ type : chr "VALUE" [23:13:38.036] | : . ' $ value :List of 16 [23:13:38.036] | : . ' ..$ value :List of 12 [23:13:38.036] | : . ' .. ..$ coefficients : Named num [1:3] 2.47 0.913 0.1 [23:13:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [23:13:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:38.036] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [23:13:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "I(speed^2)" "" ... [23:13:38.036] | : . ' .. ..$ rank : int 3 [23:13:38.036] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [23:13:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:38.036] | : . ' .. ..$ assign : int [1:3] 0 1 2 [23:13:38.036] | : . ' .. ..$ qr :List of 5 [23:13:38.036] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [23:13:38.036] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.036] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [23:13:38.036] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 2 [23:13:38.036] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [23:13:38.036] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [23:13:38.036] | : . ' .. .. ..$ tol : num 1e-07 [23:13:38.036] | : . ' .. .. ..$ rank : int 3 [23:13:38.036] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:38.036] | : . ' .. ..$ df.residual : int 47 [23:13:38.036] | : . ' .. ..$ xlevels : Named list() [23:13:38.036] | : . ' .. ..$ call : language lm(formula = dist ~ speed + I(speed^2), data = cars) [23:13:38.036] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [23:13:38.036] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [23:13:38.036] | : . ' .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.036] | : . ' .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [23:13:38.036] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [23:13:38.036] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:38.036] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:38.036] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [23:13:38.036] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. ..$ model :'data.frame': 50 obs. of 3 variables: [23:13:38.036] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [23:13:38.036] | : . ' .. .. ..$ speed : num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [23:13:38.036] | : . ' .. .. ..$ I(speed^2): 'AsIs' num [1:50] 16 16 49 49 64 81 100 100 100 121 ... [23:13:38.036] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [23:13:38.036] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.036] | : . ' .. .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [23:13:38.036] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [23:13:38.036] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [23:13:38.036] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:38.036] | : . ' ..$ visible : logi TRUE [23:13:38.036] | : . ' ..$ stdout : chr "" [23:13:38.036] | : . ' ..$ conditions : list() [23:13:38.036] | : . ' ..$ rng : logi FALSE [23:13:38.036] | : . ' ..$ seed : NULL [23:13:38.036] | : . ' ..$ misuseGlobalEnv : NULL [23:13:38.036] | : . ' ..$ misuseConnections :List of 3 [23:13:38.036] | : . ' .. ..$ added : NULL [23:13:38.036] | : . ' .. ..$ removed : NULL [23:13:38.036] | : . ' .. ..$ replaced: NULL [23:13:38.036] | : . ' ..$ misuseDevices : NULL [23:13:38.036] | : . ' ..$ misuseDefaultDevice: list() [23:13:38.036] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.036] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.036] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "25" [23:13:38.036] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:38.036] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:38.036] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:38.036] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:38.036] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:38.036] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:38.036] | : . ' .. .. ..$ pid : int 62172 [23:13:38.036] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:38.036] | : . ' .. .. ..$ random: int 2147483647 [23:13:38.036] | : . ' ..$ r_info :List of 4 [23:13:38.036] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:38.036] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:38.036] | : . ' .. ..$ os : chr "windows" [23:13:38.036] | : . ' .. ..$ os_name : chr "Windows" [23:13:38.036] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:38.036] | : . ' ..$ version : chr "1.8" [23:13:38.036] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:38.036] | : . ' $ success: logi TRUE [23:13:38.036] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [23:13:38.036] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:38.036] | : . ' $ tag : NULL [23:13:38.083] | : . ' Received FutureResult [23:13:38.083] | : . ' FutureResult: [23:13:38.083] | : . ' value: 'lm' [23:13:38.083] | : . ' visible: TRUE [23:13:38.083] | : . ' stdout: character [23:13:38.083] | : . ' conditions: [n = 0] [23:13:38.083] | : . ' RNG used: FALSE [23:13:38.083] | : . ' duration: 0.008106947 secs (started 2025-11-16 23:13:38.025648) [23:13:38.083] | : . ' version: 1.8 [23:13:38.084] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:38.084] | : . ' , Removed future from position #1 [23:13:38.085] | : . ' , Number of registered futures: 0 [23:13:38.085] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:38.085] | : . ' Erased future from future backend [23:13:38.085] | : . ' result() for ClusterFuture ... [23:13:38.085] | : . ' , result already collected: FutureResult [23:13:38.085] | : . ' result() for ClusterFuture ... done [23:13:38.086] | : . ' signalConditions() ... [23:13:38.086] | : . ' , include = 'immediateCondition' [23:13:38.086] | : . ' , exclude = [23:13:38.086] | : . ' , resignal = FALSE [23:13:38.086] | : . ' , Number of conditions: 0 [23:13:38.086] | : . ' , int 0 [23:13:38.087] | : . ' signalConditions() ... done [23:13:38.087] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:38.088] | : result() for ClusterFuture ... done [23:13:38.088] | : result() for ClusterFuture ... [23:13:38.088] | : . result already collected: FutureResult [23:13:38.088] | : result() for ClusterFuture ... done [23:13:38.089] | : signalConditions() ... [23:13:38.089] | : . include = 'immediateCondition' [23:13:38.089] | : . exclude = [23:13:38.089] | : . resignal = FALSE [23:13:38.090] | : . Number of conditions: 0 [23:13:38.090] | : . int 0 [23:13:38.091] | : signalConditions() ... done [23:13:38.091] | : relay stdout ... [23:13:38.091] | : relay stdout ... done [23:13:38.091] | : check for misuse ... [23:13:38.092] | : check for misuse ... done [23:13:38.092] | value() for MultisessionFuture () ... done Call: lm(formula = dist ~ speed + I(speed^2), data = cars) Coefficients: (Intercept) speed I(speed^2) 2.47014 0.91329 0.09996 - Globals - lm(, data = cars) ... Call: lm(formula = dist ~ poly(speed, 2), data = cars) Coefficients: (Intercept) poly(speed, 2)1 poly(speed, 2)2 42.98 145.55 23.00 [23:13:38.097] | future(..., label = NULL) ... [23:13:38.097] | : lazy: FALSE [23:13:38.098] | : stdout: TRUE [23:13:38.098] | : conditions: [n=1] 'condition' [23:13:38.098] | : gc: FALSE [23:13:38.098] | : earlySignal: FALSE [23:13:38.099] | : getGlobalsAndPackages() ... [23:13:38.099] | : . Searching for globals ... [23:13:38.124] | : . ' globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [23:13:38.125] | : . Searching for globals ... done [23:13:38.125] | : . Resolving globals: FALSE [23:13:38.125] | : . Search for packages associated with the globals ... [23:13:38.126] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [23:13:38.126] | : . ' Packages: [3] 'base', 'stats', 'datasets' [23:13:38.127] | : . Search for packages associated with the globals ... done [23:13:38.127] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [23:13:38.127] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [23:13:38.128] | : . globals: [0] [23:13:38.128] | : . packages: [2] 'stats', 'datasets' [23:13:38.128] | : getGlobalsAndPackages() ... done [23:13:38.129] | : run() for 'Future' () ... [23:13:38.129] | : . state: 'created' [23:13:38.129] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.130] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.130] | : . Using MultisessionFutureBackend ... [23:13:38.130] | : . ' Number of futures since start: 11 (11 created, 11 launched, 11 finished) [23:13:38.130] | : . ' Launching futures ... [23:13:38.131] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:38.131] | : . ' , ; Workers: [n=2] [23:13:38.131] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:38.134] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:38.134] | : . ' , ; requestWorker() ... [23:13:38.135] | : . ' , ; ` requestNode() ... [23:13:38.135] | : . ' , ; ` | Number of workers: 2 [23:13:38.135] | : . ' , ; ` | Polling for a free worker ... [23:13:38.136] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.136] | : . ' , ; ` | : . Listing all futures [23:13:38.136] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.136] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.137] | : . ' , ; ` | : Total time: 0 [23:13:38.137] | : . ' , ; ` | Polling for a free worker ... done [23:13:38.137] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.137] | : . ' , ; ` | : Listing all futures [23:13:38.138] | : . ' , ; ` | : Number of registered futures: 0 [23:13:38.138] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.138] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:38.138] | : . ' , ; ` | Index of first available worker: 1 [23:13:38.139] | : . ' , ; ` | Validate that the worker is functional ... [23:13:38.140] | : . ' , ; ` | : Worker is functional [23:13:38.140] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.140] | : . ' , ; ` | : . Listing all futures [23:13:38.141] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.141] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.141] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:38.141] | : . ' , ; ` requestNode() ... done [23:13:38.142] | : . ' , ; ` cluster node index: 1 [23:13:38.142] | : . ' , ; requestWorker() ... done [23:13:38.142] | : . ' , ; eraseGlobalEnvironment() ... [23:13:38.143] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:38.143] | : . ' , ; launchFuture() ... [23:13:38.143] | : . ' , ; ` cluster node index: 1 [23:13:38.144] | : . ' , ; ` getFutureData() ... [23:13:38.144] | : . ' , ; ` | getFutureCore() ... [23:13:38.144] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [23:13:38.144] | : . ' , ; ` | getFutureCore() ... done [23:13:38.144] | : . ' , ; ` | getFutureCapture() ... [23:13:38.145] | : . ' , ; ` | getFutureCapture() ... done [23:13:38.145] | : . ' , ; ` | getFutureContext() ... [23:13:38.145] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.145] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:38.145] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.146] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:38.146] | : . ' , ; ` | getFutureContext() ... done [23:13:38.146] | : . ' , ; ` getFutureData() ... done [23:13:38.147] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:38.147] | : . ' , ; ` | Appended future to position #1 [23:13:38.147] | : . ' , ; ` | Number of registered futures: 1 [23:13:38.147] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:38.147] | : . ' , ; launchFuture() ... done [23:13:38.147] | : . ' , ; MultisessionFuture started [23:13:38.148] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:38.148] | : . ' Launching futures ... done [23:13:38.148] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:38.148] | : . Using MultisessionFutureBackend ... done [23:13:38.148] | : run() for 'Future' () ... done [23:13:38.149] | future(..., label = NULL) ... done [23:13:38.149] | value() for MultisessionFuture () ... [23:13:38.149] | : result() for ClusterFuture ... [23:13:38.150] | : . assertValidConnection() ... [23:13:38.150] | : . ' cluster node index: 1 [23:13:38.151] | : . assertValidConnection() ... done [23:13:38.151] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:38.151] | : . ' cluster node index: 1 [23:13:38.158] | : . ' [1] TRUE [23:13:38.158] | : . ' Received data: [23:13:38.158] | : . ' List of 5 [23:13:38.158] | : . ' $ type : chr "VALUE" [23:13:38.158] | : . ' $ value :List of 16 [23:13:38.158] | : . ' ..$ value :List of 12 [23:13:38.158] | : . ' .. ..$ coefficients : Named num [1:3] 43 146 23 [23:13:38.158] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [23:13:38.158] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [23:13:38.158] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:38.158] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [23:13:38.158] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" "" ... [23:13:38.158] | : . ' .. ..$ rank : int 3 [23:13:38.158] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [23:13:38.158] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [23:13:38.158] | : . ' .. ..$ assign : int [1:3] 0 1 1 [23:13:38.158] | : . ' .. ..$ qr :List of 5 [23:13:38.158] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [23:13:38.158] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.158] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [23:13:38.158] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [23:13:38.158] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 1 [23:13:38.158] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [23:13:38.158] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [23:13:38.158] | : . ' .. .. ..$ tol : num 1e-07 [23:13:38.158] | : . ' .. .. ..$ rank : int 3 [23:13:38.158] | : . ' .. .. ..- attr(*, "class")= chr "qr" [23:13:38.158] | : . ' .. ..$ df.residual : int 47 [23:13:38.158] | : . ' .. ..$ xlevels : Named list() [23:13:38.158] | : . ' .. ..$ call : language lm(formula = dist ~ poly(speed, 2), data = cars) [23:13:38.158] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ poly(speed, 2) [23:13:38.158] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [23:13:38.158] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.158] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. .. .. ..$ : chr "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. ..- attr(*, "order")= int 1 [23:13:38.158] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [23:13:38.158] | : . ' .. .. .. ..- attr(*, "response")= int 1 [23:13:38.158] | : . ' .. .. .. ..- attr(*, ".Environment")= [23:13:38.158] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [23:13:38.158] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [23:13:38.158] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [23:13:38.158] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [23:13:38.158] | : . ' .. .. ..$ poly(speed, 2): 'poly' num [1:50, 1:2] -0.308 -0.308 -0.227 -0.227 -0.2 ... [23:13:38.158] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.158] | : . ' .. .. .. .. ..$ : NULL [23:13:38.158] | : . ' .. .. .. .. ..$ : chr [1:2] "1" "2" [23:13:38.158] | : . ' .. .. .. ..- attr(*, "coefs")=List of 2 [23:13:38.158] | : . ' .. .. .. .. ..$ alpha: num [1:2] 15.4 14.8 [23:13:38.158] | : . ' .. .. .. .. ..$ norm2: num [1:4] 1 50 1370 52924 [23:13:38.158] | : . ' .. .. .. ..- attr(*, "degree")= int [1:2] 1 2 [23:13:38.158] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ poly(speed, 2) [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [23:13:38.158] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [23:13:38.158] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. .. .. .. ..$ : chr "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [23:13:38.158] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [23:13:38.158] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [23:13:38.158] | : . ' .. ..- attr(*, "class")= chr "lm" [23:13:38.158] | : . ' ..$ visible : logi TRUE [23:13:38.158] | : . ' ..$ stdout : chr "" [23:13:38.158] | : . ' ..$ conditions : list() [23:13:38.158] | : . ' ..$ rng : logi FALSE [23:13:38.158] | : . ' ..$ seed : NULL [23:13:38.158] | : . ' ..$ misuseGlobalEnv : NULL [23:13:38.158] | : . ' ..$ misuseConnections :List of 3 [23:13:38.158] | : . ' .. ..$ added : NULL [23:13:38.158] | : . ' .. ..$ removed : NULL [23:13:38.158] | : . ' .. ..$ replaced: NULL [23:13:38.158] | : . ' ..$ misuseDevices : NULL [23:13:38.158] | : . ' ..$ misuseDefaultDevice: list() [23:13:38.158] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.158] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.158] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "26" [23:13:38.158] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:38.158] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:38.158] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:38.158] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:38.158] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:38.158] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:38.158] | : . ' .. .. ..$ pid : int 62172 [23:13:38.158] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:38.158] | : . ' .. .. ..$ random: int 2147483647 [23:13:38.158] | : . ' ..$ r_info :List of 4 [23:13:38.158] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:38.158] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:38.158] | : . ' .. ..$ os : chr "windows" [23:13:38.158] | : . ' .. ..$ os_name : chr "Windows" [23:13:38.158] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:38.158] | : . ' ..$ version : chr "1.8" [23:13:38.158] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:38.158] | : . ' $ success: logi TRUE [23:13:38.158] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.02 NA NA [23:13:38.158] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:38.158] | : . ' $ tag : NULL [23:13:38.207] | : . ' Received FutureResult [23:13:38.207] | : . ' FutureResult: [23:13:38.207] | : . ' value: 'lm' [23:13:38.207] | : . ' visible: TRUE [23:13:38.207] | : . ' stdout: character [23:13:38.207] | : . ' conditions: [n = 0] [23:13:38.207] | : . ' RNG used: FALSE [23:13:38.207] | : . ' duration: 0.008677006 secs (started 2025-11-16 23:13:38.147384) [23:13:38.207] | : . ' version: 1.8 [23:13:38.208] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:38.209] | : . ' , Removed future from position #1 [23:13:38.209] | : . ' , Number of registered futures: 0 [23:13:38.210] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:38.210] | : . ' Erased future from future backend [23:13:38.210] | : . ' result() for ClusterFuture ... [23:13:38.211] | : . ' , result already collected: FutureResult [23:13:38.211] | : . ' result() for ClusterFuture ... done [23:13:38.211] | : . ' signalConditions() ... [23:13:38.211] | : . ' , include = 'immediateCondition' [23:13:38.212] | : . ' , exclude = [23:13:38.212] | : . ' , resignal = FALSE [23:13:38.212] | : . ' , Number of conditions: 0 [23:13:38.213] | : . ' , int 0 [23:13:38.214] | : . ' signalConditions() ... done [23:13:38.214] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:38.214] | : result() for ClusterFuture ... done [23:13:38.215] | : result() for ClusterFuture ... [23:13:38.215] | : . result already collected: FutureResult [23:13:38.215] | : result() for ClusterFuture ... done [23:13:38.216] | : signalConditions() ... [23:13:38.216] | : . include = 'immediateCondition' [23:13:38.216] | : . exclude = [23:13:38.217] | : . resignal = FALSE [23:13:38.217] | : . Number of conditions: 0 [23:13:38.217] | : . int 0 [23:13:38.218] | : signalConditions() ... done [23:13:38.218] | : relay stdout ... [23:13:38.219] | : relay stdout ... done [23:13:38.219] | : check for misuse ... [23:13:38.219] | : check for misuse ... done [23:13:38.220] | value() for MultisessionFuture () ... done Call: lm(formula = dist ~ poly(speed, 2), data = cars) Coefficients: (Intercept) poly(speed, 2)1 poly(speed, 2)2 42.98 145.55 23.00 - Globals - map(x, ~ expr) ... [23:13:38.224] | future(..., label = NULL) ... [23:13:38.224] | : lazy: FALSE [23:13:38.224] | : stdout: TRUE [23:13:38.225] | : conditions: [n=1] 'condition' [23:13:38.225] | : gc: FALSE [23:13:38.225] | : earlySignal: FALSE [23:13:38.225] | : getGlobalsAndPackages() ... [23:13:38.226] | : . Searching for globals ... [23:13:38.290] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [23:13:38.290] | : . Searching for globals ... done [23:13:38.291] | : . Resolving globals: FALSE [23:13:38.291] | : . Search for packages associated with the globals ... [23:13:38.291] | : . ' Packages associated with globals: [1] 'base' [23:13:38.292] | : . ' Packages: [1] 'base' [23:13:38.292] | : . Search for packages associated with the globals ... done [23:13:38.292] | : . Packages after dropping 'base': [0] [23:13:38.292] | : . globals: [3] 'outer_function', 'map', 'inner_function' [23:13:38.293] | : . packages: [0] [23:13:38.293] | : getGlobalsAndPackages() ... done [23:13:38.293] | : run() for 'Future' () ... [23:13:38.293] | : . state: 'created' [23:13:38.294] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.294] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.294] | : . Using MultisessionFutureBackend ... [23:13:38.294] | : . ' Number of futures since start: 12 (12 created, 12 launched, 12 finished) [23:13:38.295] | : . ' Launching futures ... [23:13:38.295] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:38.295] | : . ' , ; Workers: [n=2] [23:13:38.295] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:38.297] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:38.297] | : . ' , ; requestWorker() ... [23:13:38.298] | : . ' , ; ` requestNode() ... [23:13:38.298] | : . ' , ; ` | Number of workers: 2 [23:13:38.301] | : . ' , ; ` | Polling for a free worker ... [23:13:38.302] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.302] | : . ' , ; ` | : . Listing all futures [23:13:38.302] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.303] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.303] | : . ' , ; ` | : Total time: 0 [23:13:38.303] | : . ' , ; ` | Polling for a free worker ... done [23:13:38.303] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.304] | : . ' , ; ` | : Listing all futures [23:13:38.304] | : . ' , ; ` | : Number of registered futures: 0 [23:13:38.304] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.304] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:38.305] | : . ' , ; ` | Index of first available worker: 1 [23:13:38.305] | : . ' , ; ` | Validate that the worker is functional ... [23:13:38.306] | : . ' , ; ` | : Worker is functional [23:13:38.306] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.307] | : . ' , ; ` | : . Listing all futures [23:13:38.307] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.307] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.307] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:38.308] | : . ' , ; ` requestNode() ... done [23:13:38.308] | : . ' , ; ` cluster node index: 1 [23:13:38.308] | : . ' , ; requestWorker() ... done [23:13:38.309] | : . ' , ; eraseGlobalEnvironment() ... [23:13:38.309] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:38.310] | : . ' , ; launchFuture() ... [23:13:38.310] | : . ' , ; ` cluster node index: 1 [23:13:38.310] | : . ' , ; ` getFutureData() ... [23:13:38.310] | : . ' , ; ` | getFutureCore() ... [23:13:38.311] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [23:13:38.311] | : . ' , ; ` | getFutureCore() ... done [23:13:38.311] | : . ' , ; ` | getFutureCapture() ... [23:13:38.312] | : . ' , ; ` | getFutureCapture() ... done [23:13:38.312] | : . ' , ; ` | getFutureContext() ... [23:13:38.312] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.312] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:38.313] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.313] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:38.313] | : . ' , ; ` | getFutureContext() ... done [23:13:38.314] | : . ' , ; ` getFutureData() ... done [23:13:38.314] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:38.314] | : . ' , ; ` | Appended future to position #1 [23:13:38.315] | : . ' , ; ` | Number of registered futures: 1 [23:13:38.315] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:38.315] | : . ' , ; launchFuture() ... done [23:13:38.316] | : . ' , ; MultisessionFuture started [23:13:38.316] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:38.316] | : . ' Launching futures ... done [23:13:38.316] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:38.317] | : . Using MultisessionFutureBackend ... done [23:13:38.317] | : run() for 'Future' () ... done [23:13:38.317] | future(..., label = NULL) ... done [23:13:38.318] | value() for MultisessionFuture () ... [23:13:38.318] | : result() for ClusterFuture ... [23:13:38.318] | : . assertValidConnection() ... [23:13:38.319] | : . ' cluster node index: 1 [23:13:38.319] | : . assertValidConnection() ... done [23:13:38.320] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:38.320] | : . ' cluster node index: 1 [23:13:38.330] | : . ' [1] TRUE [23:13:38.331] | : . ' Received data: [23:13:38.331] | : . ' List of 5 [23:13:38.331] | : . ' $ type : chr "VALUE" [23:13:38.331] | : . ' $ value :List of 16 [23:13:38.331] | : . ' ..$ value :List of 2 [23:13:38.331] | : . ' .. ..$ : num [1:2] 2 3 [23:13:38.331] | : . ' .. ..$ : num [1:2] 2 3 [23:13:38.331] | : . ' ..$ visible : logi TRUE [23:13:38.331] | : . ' ..$ stdout : chr "" [23:13:38.331] | : . ' ..$ conditions : list() [23:13:38.331] | : . ' ..$ rng : logi FALSE [23:13:38.331] | : . ' ..$ seed : NULL [23:13:38.331] | : . ' ..$ misuseGlobalEnv : NULL [23:13:38.331] | : . ' ..$ misuseConnections :List of 3 [23:13:38.331] | : . ' .. ..$ added : NULL [23:13:38.331] | : . ' .. ..$ removed : NULL [23:13:38.331] | : . ' .. ..$ replaced: NULL [23:13:38.331] | : . ' ..$ misuseDevices : NULL [23:13:38.331] | : . ' ..$ misuseDefaultDevice: list() [23:13:38.331] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.331] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.331] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "27" [23:13:38.331] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:38.331] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:38.331] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:38.331] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:38.331] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:38.331] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:38.331] | : . ' .. .. ..$ pid : int 62172 [23:13:38.331] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:38.331] | : . ' .. .. ..$ random: int 2147483647 [23:13:38.331] | : . ' ..$ r_info :List of 4 [23:13:38.331] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:38.331] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:38.331] | : . ' .. ..$ os : chr "windows" [23:13:38.331] | : . ' .. ..$ os_name : chr "Windows" [23:13:38.331] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:38.331] | : . ' ..$ version : chr "1.8" [23:13:38.331] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:38.331] | : . ' $ success: logi TRUE [23:13:38.331] | : . ' $ time : 'proc_time' Named num [1:5] 0 0.02 0.02 NA NA [23:13:38.331] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:38.331] | : . ' $ tag : NULL [23:13:38.354] | : . ' Received FutureResult [23:13:38.355] | : . ' FutureResult: [23:13:38.355] | : . ' value: 'list' [23:13:38.355] | : . ' visible: TRUE [23:13:38.355] | : . ' stdout: character [23:13:38.355] | : . ' conditions: [n = 0] [23:13:38.355] | : . ' RNG used: FALSE [23:13:38.355] | : . ' duration: 0.01408887 secs (started 2025-11-16 23:13:38.314918) [23:13:38.355] | : . ' version: 1.8 [23:13:38.356] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:38.356] | : . ' , Removed future from position #1 [23:13:38.356] | : . ' , Number of registered futures: 0 [23:13:38.356] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:38.356] | : . ' Erased future from future backend [23:13:38.357] | : . ' result() for ClusterFuture ... [23:13:38.357] | : . ' , result already collected: FutureResult [23:13:38.357] | : . ' result() for ClusterFuture ... done [23:13:38.357] | : . ' signalConditions() ... [23:13:38.357] | : . ' , include = 'immediateCondition' [23:13:38.357] | : . ' , exclude = [23:13:38.358] | : . ' , resignal = FALSE [23:13:38.358] | : . ' , Number of conditions: 0 [23:13:38.358] | : . ' , int 0 [23:13:38.359] | : . ' signalConditions() ... done [23:13:38.359] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:38.359] | : result() for ClusterFuture ... done [23:13:38.359] | : result() for ClusterFuture ... [23:13:38.360] | : . result already collected: FutureResult [23:13:38.360] | : result() for ClusterFuture ... done [23:13:38.360] | : signalConditions() ... [23:13:38.360] | : . include = 'immediateCondition' [23:13:38.360] | : . exclude = [23:13:38.361] | : . resignal = FALSE [23:13:38.361] | : . Number of conditions: 0 [23:13:38.361] | : . int 0 [23:13:38.361] | : signalConditions() ... done [23:13:38.362] | : relay stdout ... [23:13:38.362] | : relay stdout ... done [23:13:38.362] | : check for misuse ... [23:13:38.362] | : check for misuse ... done [23:13:38.362] | value() for MultisessionFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [23:13:38.365] | future(..., label = NULL) ... [23:13:38.365] | : lazy: FALSE [23:13:38.365] | : stdout: TRUE [23:13:38.365] | : conditions: [n=1] 'condition' [23:13:38.365] | : gc: FALSE [23:13:38.366] | : earlySignal: FALSE [23:13:38.366] | : getGlobalsAndPackages() ... [23:13:38.366] | : . Searching for globals ... [23:13:38.434] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [23:13:38.434] | : . Searching for globals ... done [23:13:38.435] | : . Resolving globals: FALSE [23:13:38.435] | : . Search for packages associated with the globals ... [23:13:38.436] | : . ' Packages associated with globals: [1] 'base' [23:13:38.437] | : . ' Packages: [1] 'base' [23:13:38.437] | : . Search for packages associated with the globals ... done [23:13:38.437] | : . Packages after dropping 'base': [0] [23:13:38.438] | : . globals: [3] 'outer_function', 'map', 'inner_function' [23:13:38.438] | : . packages: [0] [23:13:38.438] | : getGlobalsAndPackages() ... done [23:13:38.439] | : run() for 'Future' () ... [23:13:38.439] | : . state: 'created' [23:13:38.439] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.440] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.440] | : . Using MultisessionFutureBackend ... [23:13:38.440] | : . ' Number of futures since start: 13 (13 created, 13 launched, 13 finished) [23:13:38.441] | : . ' Launching futures ... [23:13:38.441] | : . ' , launchFuture() for ClusterFutureBackend ... [23:13:38.441] | : . ' , ; Workers: [n=2] [23:13:38.442] | : . ' , ; Socket cluster with 2 nodes on host 'localhost' (R Under development (unstable) (2025-11-15 r89024 ucrt), platform x86_64-w64-mingw32) [23:13:38.444] | : . ' , ; FutureRegistry: 'workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf' [23:13:38.445] | : . ' , ; requestWorker() ... [23:13:38.445] | : . ' , ; ` requestNode() ... [23:13:38.445] | : . ' , ; ` | Number of workers: 2 [23:13:38.446] | : . ' , ; ` | Polling for a free worker ... [23:13:38.446] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.446] | : . ' , ; ` | : . Listing all futures [23:13:38.446] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.447] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.447] | : . ' , ; ` | : Total time: 0 [23:13:38.447] | : . ' , ; ` | Polling for a free worker ... done [23:13:38.447] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.448] | : . ' , ; ` | : Listing all futures [23:13:38.448] | : . ' , ; ` | : Number of registered futures: 0 [23:13:38.448] | : . ' , ; ` | FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.448] | : . ' , ; ` | avail: [n=2] '1', '2' [23:13:38.449] | : . ' , ; ` | Index of first available worker: 1 [23:13:38.449] | : . ' , ; ` | Validate that the worker is functional ... [23:13:38.450] | : . ' , ; ` | : Worker is functional [23:13:38.450] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... [23:13:38.450] | : . ' , ; ` | : . Listing all futures [23:13:38.450] | : . ' , ; ` | : . Number of registered futures: 0 [23:13:38.450] | : . ' , ; ` | : FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'list', earlySignal = 0) ... done [23:13:38.451] | : . ' , ; ` | Validate that the worker is functional ... done [23:13:38.451] | : . ' , ; ` requestNode() ... done [23:13:38.451] | : . ' , ; ` cluster node index: 1 [23:13:38.451] | : . ' , ; requestWorker() ... done [23:13:38.452] | : . ' , ; eraseGlobalEnvironment() ... [23:13:38.452] | : . ' , ; eraseGlobalEnvironment() ... done [23:13:38.453] | : . ' , ; launchFuture() ... [23:13:38.453] | : . ' , ; ` cluster node index: 1 [23:13:38.453] | : . ' , ; ` getFutureData() ... [23:13:38.453] | : . ' , ; ` | getFutureCore() ... [23:13:38.453] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [23:13:38.454] | : . ' , ; ` | getFutureCore() ... done [23:13:38.454] | : . ' , ; ` | getFutureCapture() ... [23:13:38.454] | : . ' , ; ` | getFutureCapture() ... done [23:13:38.454] | : . ' , ; ` | getFutureContext() ... [23:13:38.454] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:13:38.454] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [23:13:38.455] | : . ' , ; ` | : plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:13:38.455] | : . ' , ; ` | : Packages needed by future backend (n = 0): [23:13:38.455] | : . ' , ; ` | getFutureContext() ... done [23:13:38.455] | : . ' , ; ` getFutureData() ... done [23:13:38.456] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... [23:13:38.456] | : . ' , ; ` | Appended future to position #1 [23:13:38.456] | : . ' , ; ` | Number of registered futures: 1 [23:13:38.456] | : . ' , ; ` FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'add', earlySignal = 0) ... done [23:13:38.456] | : . ' , ; launchFuture() ... done [23:13:38.457] | : . ' , ; MultisessionFuture started [23:13:38.457] | : . ' , launchFuture() for ClusterFutureBackend ... done [23:13:38.457] | : . ' Launching futures ... done [23:13:38.457] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [23:13:38.457] | : . Using MultisessionFutureBackend ... done [23:13:38.457] | : run() for 'Future' () ... done [23:13:38.458] | future(..., label = NULL) ... done [23:13:38.458] | value() for MultisessionFuture () ... [23:13:38.458] | : result() for ClusterFuture ... [23:13:38.458] | : . assertValidConnection() ... [23:13:38.459] | : . ' cluster node index: 1 [23:13:38.459] | : . assertValidConnection() ... done [23:13:38.459] | : . receiveMessageFromWorker() for ClusterFuture ... [23:13:38.459] | : . ' cluster node index: 1 [23:13:38.464] | : . ' [1] TRUE [23:13:38.464] | : . ' Received data: [23:13:38.465] | : . ' List of 5 [23:13:38.465] | : . ' $ type : chr "VALUE" [23:13:38.465] | : . ' $ value :List of 16 [23:13:38.465] | : . ' ..$ value :List of 2 [23:13:38.465] | : . ' .. ..$ : num [1:2] 2 3 [23:13:38.465] | : . ' .. ..$ : num [1:2] 2 3 [23:13:38.465] | : . ' ..$ visible : logi TRUE [23:13:38.465] | : . ' ..$ stdout : chr "" [23:13:38.465] | : . ' ..$ conditions : list() [23:13:38.465] | : . ' ..$ rng : logi FALSE [23:13:38.465] | : . ' ..$ seed : NULL [23:13:38.465] | : . ' ..$ misuseGlobalEnv : NULL [23:13:38.465] | : . ' ..$ misuseConnections :List of 3 [23:13:38.465] | : . ' .. ..$ added : NULL [23:13:38.465] | : . ' .. ..$ removed : NULL [23:13:38.465] | : . ' .. ..$ replaced: NULL [23:13:38.465] | : . ' ..$ misuseDevices : NULL [23:13:38.465] | : . ' ..$ misuseDefaultDevice: list() [23:13:38.465] | : . ' ..$ started : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.465] | : . ' ..$ finished : POSIXct[1:1], format: "2025-11-16 23:13:38" [23:13:38.465] | : . ' ..$ uuid : chr [1:2] "e4f4581eb81ea38e010f7717120c18d5" "28" [23:13:38.465] | : . ' ..$ session_uuid : chr "3afe0c261928e3de428ce032ddae5949" [23:13:38.465] | : . ' .. ..- attr(*, "source")=List of 5 [23:13:38.465] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [23:13:38.465] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [23:13:38.465] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [23:13:38.465] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [23:13:38.465] | : . ' .. .. ..$ pid : int 62172 [23:13:38.465] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-11-16 23:13:36" [23:13:38.465] | : . ' .. .. ..$ random: int 2147483647 [23:13:38.465] | : . ' ..$ r_info :List of 4 [23:13:38.465] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [23:13:38.465] | : . ' .. .. ..$ : int [1:3] 4 6 0 [23:13:38.465] | : . ' .. ..$ os : chr "windows" [23:13:38.465] | : . ' .. ..$ os_name : chr "Windows" [23:13:38.465] | : . ' .. ..$ captures_utf8: logi TRUE [23:13:38.465] | : . ' ..$ version : chr "1.8" [23:13:38.465] | : . ' ..- attr(*, "class")= chr "FutureResult" [23:13:38.465] | : . ' $ success: logi TRUE [23:13:38.465] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.02 NA NA [23:13:38.465] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [23:13:38.465] | : . ' $ tag : NULL [23:13:38.487] | : . ' Received FutureResult [23:13:38.488] | : . ' FutureResult: [23:13:38.488] | : . ' value: 'list' [23:13:38.488] | : . ' visible: TRUE [23:13:38.488] | : . ' stdout: character [23:13:38.488] | : . ' conditions: [n = 0] [23:13:38.488] | : . ' RNG used: FALSE [23:13:38.488] | : . ' duration: 0.005978107 secs (started 2025-11-16 23:13:38.456596) [23:13:38.488] | : . ' version: 1.8 [23:13:38.488] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... [23:13:38.489] | : . ' , Removed future from position #1 [23:13:38.489] | : . ' , Number of registered futures: 0 [23:13:38.489] | : . ' FutureRegistry('workers-e58ef73c2e2f9fba5d2b2f1fc2309bdf', action = 'remove', earlySignal = 0) ... done [23:13:38.490] | : . ' Erased future from future backend [23:13:38.490] | : . ' result() for ClusterFuture ... [23:13:38.490] | : . ' , result already collected: FutureResult [23:13:38.491] | : . ' result() for ClusterFuture ... done [23:13:38.491] | : . ' signalConditions() ... [23:13:38.491] | : . ' , include = 'immediateCondition' [23:13:38.491] | : . ' , exclude = [23:13:38.492] | : . ' , resignal = FALSE [23:13:38.492] | : . ' , Number of conditions: 0 [23:13:38.492] | : . ' , int 0 [23:13:38.493] | : . ' signalConditions() ... done [23:13:38.493] | : . receiveMessageFromWorker() for ClusterFuture ... done [23:13:38.493] | : result() for ClusterFuture ... done [23:13:38.494] | : result() for ClusterFuture ... [23:13:38.494] | : . result already collected: FutureResult [23:13:38.494] | : result() for ClusterFuture ... done [23:13:38.495] | : signalConditions() ... [23:13:38.495] | : . include = 'immediateCondition' [23:13:38.495] | : . exclude = [23:13:38.495] | : . resignal = FALSE [23:13:38.495] | : . Number of conditions: 0 [23:13:38.496] | : . int 0 [23:13:38.496] | : signalConditions() ... done [23:13:38.497] | : relay stdout ... [23:13:38.497] | : relay stdout ... done [23:13:38.497] | : check for misuse ... [23:13:38.498] | : check for misuse ... done [23:13:38.498] | value() for MultisessionFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 Testing with 2 cores ... DONE > message("*** Globals - formulas ... DONE") *** Globals - formulas ... 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=214] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CV_Instance001', '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_INTERNAL__', '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_11_16_23_10_16_9296' Sourcing 6 epilogue scripts ... done Test time: user.self=4s, sys.self=0.2s, elapsed=5s, user.child=NAs, sys.child=NAs Test 'globals,formulas' ... success > > proc.time() user system elapsed 4.18 0.31 5.65