R Under development (unstable) (2025-06-04 r88278 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## This runs testme test script inst/testme/test-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) [05:58:33.176] Option 'future.startup.script': TRUE [05:58:33.178] Future startup scripts considered: '.future.R', '~/.future.R' [05:58:33.178] 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') ... [05:58:33.261] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.262] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [05:58:33.262] | : all.equal() for FutureStrategyList ... [05:58:33.262] | : . New stack: [05:58:33.263] | : . List of 1 [05:58:33.263] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.263] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.263] | : . ..- attr(*, "init")= logi TRUE [05:58:33.263] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.263] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.263] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.263] | : . ..- attr(*, "call")= language plan(strategy) [05:58:33.263] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.271] | : . Old stack: [05:58:33.271] | : . List of 1 [05:58:33.271] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.271] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.271] | : . ..- attr(*, "init")= logi TRUE [05:58:33.271] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.271] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.271] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.271] | : . ..- attr(*, "call")= language plan(sequential) [05:58:33.271] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.276] | : . Not identical [05:58:33.276] | : . all.equal() for future ... [05:58:33.276] | : . ' List of 2 [05:58:33.276] | : . ' $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.276] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.276] | : . ' ..- attr(*, "init")= logi TRUE [05:58:33.276] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.276] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.276] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.276] | : . ' ..- attr(*, "call")= language plan(strategy) [05:58:33.276] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.276] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.276] | : . ' ..- attr(*, "init")= logi TRUE [05:58:33.276] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.276] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.276] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.276] | : . ' ..- attr(*, "call")= language plan(sequential) [05:58:33.285] | : . all.equal() for future ... done [05:58:33.286] | : all.equal() for FutureStrategyList ... done [05:58:33.286] | : plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.286] | : List of future strategies: [05:58:33.286] | : 1. sequential: [05:58:33.286] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.286] | : - tweaked: FALSE [05:58:33.286] | : - call: plan(sequential) [05:58:33.287] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [05:58:33.288] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done - lm() ... [05:58:33.288] future(..., label = NULL) ... [05:58:33.288] | lazy: FALSE [05:58:33.289] | stdout: TRUE [05:58:33.289] | conditions: [n=1] 'condition' [05:58:33.289] | gc: FALSE [05:58:33.289] | earlySignal: FALSE [05:58:33.290] | getGlobalsAndPackages() ... [05:58:33.291] | : Searching for globals ... [05:58:33.333] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:33.334] | : Searching for globals ... done [05:58:33.334] | : Resolving globals: FALSE [05:58:33.334] | : Search for packages associated with the globals ... [05:58:33.335] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:33.336] | : . Packages: [2] 'base', 'stats' [05:58:33.336] | : Search for packages associated with the globals ... done [05:58:33.337] | : Packages after dropping 'base': [1] 'stats' [05:58:33.337] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:33.337] | : globals: [2] 'weight', 'group' [05:58:33.338] | : packages: [1] 'stats' [05:58:33.338] | getGlobalsAndPackages() ... done [05:58:33.340] | run() for 'Future' () ... [05:58:33.340] | : state: 'created' [05:58:33.340] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.341] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [05:58:33.341] | : . ' function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.341] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.341] | : . ' - attr(*, "init")= logi TRUE [05:58:33.341] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.341] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.341] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.341] | : . ' - attr(*, "call")= language plan(sequential) [05:58:33.345] | : . ' init: TRUE [05:58:33.346] | : . ' makeFutureBackend() ... [05:58:33.346] | : . ' , Backend function: <'NULL'> [05:58:33.346] | : . ' , Evaluator tweak arguments: [n=0] [05:58:33.347] | : . ' , list() [05:58:33.347] | : . ' , Evaluator formal arguments: [n=2] [05:58:33.347] | : . ' , list() [05:58:33.348] | : . ' , Backend factory arguments: [n=2] [05:58:33.348] | : . ' , Dotted pair list of 2 [05:58:33.348] | : . ' , $ gc : logi FALSE [05:58:33.348] | : . ' , $ earlySignal: logi FALSE [05:58:33.351] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [05:58:33.351] | : . ' makeFutureBackend() ... done [05:58:33.351] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [05:58:33.352] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.352] | : Using SequentialFutureBackend ... [05:58:33.352] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [05:58:33.353] | : . Launching futures ... [05:58:33.353] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:33.354] | : . ' , getFutureData() ... [05:58:33.354] | : . ' , ; getFutureCore() ... [05:58:33.354] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:33.355] | : . ' , ; getFutureCore() ... done [05:58:33.355] | : . ' , ; getFutureCapture() ... [05:58:33.355] | : . ' , ; getFutureCapture() ... done [05:58:33.356] | : . ' , ; getFutureContext() ... [05:58:33.356] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.356] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:33.356] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.357] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:33.357] | : . ' , ; getFutureContext() ... done [05:58:33.357] | : . ' , getFutureData() ... done [05:58:33.364] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.365] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:33.365] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.366] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.366] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.367] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:33.367] | : . ' , ; ` | New stack: [05:58:33.367] | : . ' , ; ` | List of 1 [05:58:33.367] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.367] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.367] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:33.367] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.367] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.367] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.367] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.367] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.412] | : . ' , ; ` | Old stack: [05:58:33.412] | : . ' , ; ` | List of 1 [05:58:33.412] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.412] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.412] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:33.412] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.412] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.412] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.412] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:33.412] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.412] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.412] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.412] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.417] | : . ' , ; ` | Not identical [05:58:33.417] | : . ' , ; ` | all.equal() for future ... [05:58:33.418] | : . ' , ; ` | : List of 2 [05:58:33.418] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.418] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.418] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.418] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.418] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.418] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.418] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.427] | : . ' , ; ` | all.equal() for future ... done [05:58:33.427] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:33.427] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.427] | : . ' , ; ` List of future strategies: [05:58:33.427] | : . ' , ; ` 1. sequential: [05:58:33.427] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.427] | : . ' , ; ` - tweaked: FALSE [05:58:33.427] | : . ' , ; ` - call: plan(sequential) [05:58:33.428] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.428] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.429] | : . ' , assign_globals() ... [05:58:33.429] | : . ' , List of 2 [05:58:33.429] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:33.429] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:33.429] | : . ' , - attr(*, "where")=List of 2 [05:58:33.429] | : . ' , ..$ weight: [05:58:33.429] | : . ' , ..$ group : [05:58:33.429] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:33.429] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:33.429] | : . ' , - attr(*, "total_size")= num NA [05:58:33.429] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:33.471] | : . ' , - copied 'weight' to environment [05:58:33.471] | : . ' , - copied 'group' to environment [05:58:33.471] | : . ' , assign_globals() ... done [05:58:33.477] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.477] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.478] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.478] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:33.478] | : . ' , ; ` | : New stack: [05:58:33.478] | : . ' , ; ` | : List of 1 [05:58:33.478] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.478] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.478] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.478] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.478] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.478] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.484] | : . ' , ; ` | : Old stack: [05:58:33.484] | : . ' , ; ` | : List of 1 [05:58:33.484] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.484] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.484] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.484] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.484] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.484] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.489] | : . ' , ; ` | : Identical [05:58:33.489] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:33.489] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.490] | : . ' , ; ` | List of future strategies: [05:58:33.490] | : . ' , ; ` | 1. sequential: [05:58:33.490] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.490] | : . ' , ; ` | - tweaked: FALSE [05:58:33.490] | : . ' , ; ` | - call: plan(sequential) [05:58:33.490] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.490] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.490] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.496] | : . ' , SequentialFuture started (and completed) [05:58:33.497] | : . ' , signalConditions() ... [05:58:33.497] | : . ' , ; include = 'immediateCondition' [05:58:33.497] | : . ' , ; exclude = [05:58:33.497] | : . ' , ; resignal = FALSE [05:58:33.497] | : . ' , ; Number of conditions: 6 [05:58:33.498] | : . ' , ; int 6 [05:58:33.498] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.499] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.499] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.499] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.499] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.499] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.500] | : . ' , signalConditions() ... done [05:58:33.500] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:33.500] | : . Launching futures ... done [05:58:33.501] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:33.501] | : Using SequentialFutureBackend ... done [05:58:33.501] | run() for 'Future' () ... done [05:58:33.502] future(..., label = NULL) ... done [05:58:33.503] value() for SequentialFuture () ... [05:58:33.503] | signalConditions() ... [05:58:33.503] | : include = 'immediateCondition' [05:58:33.504] | : exclude = [05:58:33.504] | : resignal = FALSE [05:58:33.504] | : Number of conditions: 6 [05:58:33.505] | : int 6 [05:58:33.506] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.506] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.506] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.507] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.507] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.507] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.508] | signalConditions() ... done [05:58:33.508] | relay stdout ... [05:58:33.508] | relay stdout ... done [05:58:33.508] | check for misuse ... [05:58:33.509] | check for misuse ... done [05:58:33.509] | relay conditions ... [05:58:33.509] | : Future state: 'finished' [05:58:33.510] | : signalConditions() ... [05:58:33.510] | : . include = 'condition' [05:58:33.510] | : . exclude = 'immediateCondition' [05:58:33.511] | : . resignal = TRUE [05:58:33.511] | : . Number of conditions: 6 [05:58:33.511] | : . int 6 [05:58:33.512] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.512] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:33.362] | : . ' , attachPackages() ... [05:58:33.513] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.513] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:33.362] | : . ' , ; packages: [n=1] 'future' [05:58:33.513] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.514] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:33.362] | : . ' , attachPackages() ... done [05:58:33.514] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.514] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:33.363] | : . ' , attachPackages() ... [05:58:33.515] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.515] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:33.363] | : . ' , ; packages: [n=1] 'stats' [05:58:33.516] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.516] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:33.364] | : . ' , attachPackages() ... done [05:58:33.516] | : signalConditions() ... done [05:58:33.517] | relay conditions ... done [05:58:33.517] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:33.521] future(..., label = NULL) ... [05:58:33.521] | lazy: TRUE [05:58:33.522] | stdout: TRUE [05:58:33.522] | conditions: [n=1] 'condition' [05:58:33.522] | gc: FALSE [05:58:33.523] | earlySignal: FALSE [05:58:33.523] | getGlobalsAndPackages() ... [05:58:33.523] | : Searching for globals ... [05:58:33.548] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:33.549] | : Searching for globals ... done [05:58:33.549] | : Resolving globals: FALSE [05:58:33.549] | : Search for packages associated with the globals ... [05:58:33.550] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:33.551] | : . Packages: [2] 'base', 'stats' [05:58:33.551] | : Search for packages associated with the globals ... done [05:58:33.551] | : Packages after dropping 'base': [1] 'stats' [05:58:33.552] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:33.552] | : globals: [2] 'weight', 'group' [05:58:33.553] | : packages: [1] 'stats' [05:58:33.553] | getGlobalsAndPackages() ... done [05:58:33.553] future(..., label = NULL) ... done [05:58:33.554] value() for Future () ... [05:58:33.554] | run() for 'Future' () ... [05:58:33.554] | : state: 'created' [05:58:33.555] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.555] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.555] | : Using SequentialFutureBackend ... [05:58:33.556] | : . Number of futures since start: 1 (1 created, 1 launched, 1 finished) [05:58:33.556] | : . Launching futures ... [05:58:33.556] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:33.557] | : . ' , getFutureData() ... [05:58:33.557] | : . ' , ; getFutureCore() ... [05:58:33.557] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:33.558] | : . ' , ; getFutureCore() ... done [05:58:33.558] | : . ' , ; getFutureCapture() ... [05:58:33.558] | : . ' , ; getFutureCapture() ... done [05:58:33.558] | : . ' , ; getFutureContext() ... [05:58:33.559] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.559] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:33.559] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.560] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:33.560] | : . ' , ; getFutureContext() ... done [05:58:33.560] | : . ' , getFutureData() ... done [05:58:33.564] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.564] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:33.565] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.565] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.566] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.566] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:33.566] | : . ' , ; ` | New stack: [05:58:33.567] | : . ' , ; ` | List of 1 [05:58:33.567] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.567] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.567] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:33.567] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.567] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.567] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.567] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.567] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.573] | : . ' , ; ` | Old stack: [05:58:33.573] | : . ' , ; ` | List of 1 [05:58:33.573] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.573] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.573] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:33.573] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.573] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.573] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.573] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:33.573] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.573] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.573] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.573] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.580] | : . ' , ; ` | Not identical [05:58:33.581] | : . ' , ; ` | all.equal() for future ... [05:58:33.581] | : . ' , ; ` | : List of 2 [05:58:33.581] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.581] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.581] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.581] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.581] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.581] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.581] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.595] | : . ' , ; ` | all.equal() for future ... done [05:58:33.595] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:33.596] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.596] | : . ' , ; ` List of future strategies: [05:58:33.596] | : . ' , ; ` 1. sequential: [05:58:33.596] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.596] | : . ' , ; ` - tweaked: FALSE [05:58:33.596] | : . ' , ; ` - call: plan(sequential) [05:58:33.598] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.598] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.599] | : . ' , assign_globals() ... [05:58:33.599] | : . ' , List of 2 [05:58:33.599] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:33.599] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:33.599] | : . ' , - attr(*, "where")=List of 2 [05:58:33.599] | : . ' , ..$ weight: [05:58:33.599] | : . ' , ..$ group : [05:58:33.599] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:33.599] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:33.599] | : . ' , - attr(*, "total_size")= num NA [05:58:33.599] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:33.607] | : . ' , - copied 'weight' to environment [05:58:33.608] | : . ' , - copied 'group' to environment [05:58:33.608] | : . ' , assign_globals() ... done [05:58:33.614] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.615] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.615] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.616] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:33.616] | : . ' , ; ` | : New stack: [05:58:33.616] | : . ' , ; ` | : List of 1 [05:58:33.616] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.616] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.616] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.616] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.616] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.616] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.625] | : . ' , ; ` | : Old stack: [05:58:33.625] | : . ' , ; ` | : List of 1 [05:58:33.625] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.625] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.625] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.625] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.625] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.625] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.636] | : . ' , ; ` | : Identical [05:58:33.636] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:33.637] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.637] | : . ' , ; ` | List of future strategies: [05:58:33.637] | : . ' , ; ` | 1. sequential: [05:58:33.637] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.637] | : . ' , ; ` | - tweaked: FALSE [05:58:33.637] | : . ' , ; ` | - call: plan(sequential) [05:58:33.638] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.638] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.638] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.639] | : . ' , SequentialFuture started (and completed) [05:58:33.640] | : . ' , signalConditions() ... [05:58:33.640] | : . ' , ; include = 'immediateCondition' [05:58:33.640] | : . ' , ; exclude = [05:58:33.640] | : . ' , ; resignal = FALSE [05:58:33.641] | : . ' , ; Number of conditions: 6 [05:58:33.641] | : . ' , ; int 6 [05:58:33.642] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.642] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.643] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.643] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.643] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.643] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.644] | : . ' , signalConditions() ... done [05:58:33.644] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:33.644] | : . Launching futures ... done [05:58:33.645] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:33.645] | : Using SequentialFutureBackend ... done [05:58:33.645] | run() for 'Future' () ... done [05:58:33.646] | signalConditions() ... [05:58:33.646] | : include = 'immediateCondition' [05:58:33.646] | : exclude = [05:58:33.647] | : resignal = FALSE [05:58:33.647] | : Number of conditions: 6 [05:58:33.647] | : int 6 [05:58:33.648] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.648] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.649] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.649] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.649] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.649] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.650] | signalConditions() ... done [05:58:33.650] | relay stdout ... [05:58:33.650] | relay stdout ... done [05:58:33.651] | check for misuse ... [05:58:33.651] | check for misuse ... done [05:58:33.651] | relay conditions ... [05:58:33.652] | : Future state: 'finished' [05:58:33.652] | : signalConditions() ... [05:58:33.652] | : . include = 'condition' [05:58:33.652] | : . exclude = 'immediateCondition' [05:58:33.653] | : . resignal = TRUE [05:58:33.653] | : . Number of conditions: 6 [05:58:33.653] | : . int 6 [05:58:33.654] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.654] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:33.561] | : . ' , attachPackages() ... [05:58:33.655] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.655] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:33.561] | : . ' , ; packages: [n=1] 'future' [05:58:33.656] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.656] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:33.562] | : . ' , attachPackages() ... done [05:58:33.656] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.656] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:33.562] | : . ' , attachPackages() ... [05:58:33.657] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.657] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:33.563] | : . ' , ; packages: [n=1] 'stats' [05:58:33.658] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.658] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:33.563] | : . ' , attachPackages() ... done [05:58:33.658] | : signalConditions() ... done [05:58:33.659] | relay conditions ... done [05:58:33.659] value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:33.664] future(..., label = NULL) ... [05:58:33.664] | lazy: FALSE [05:58:33.664] | stdout: TRUE [05:58:33.665] | conditions: [n=1] 'condition' [05:58:33.665] | gc: FALSE [05:58:33.665] | earlySignal: FALSE [05:58:33.665] | getGlobalsAndPackages() ... [05:58:33.666] | : Searching for globals ... [05:58:33.695] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:33.695] | : Searching for globals ... done [05:58:33.696] | : Resolving globals: FALSE [05:58:33.696] | : Search for packages associated with the globals ... [05:58:33.697] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:33.698] | : . Packages: [2] 'base', 'stats' [05:58:33.699] | : Search for packages associated with the globals ... done [05:58:33.699] | : Packages after dropping 'base': [1] 'stats' [05:58:33.700] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:33.700] | : globals: [2] 'weight', 'group' [05:58:33.700] | : packages: [1] 'stats' [05:58:33.701] | getGlobalsAndPackages() ... done [05:58:33.701] | run() for 'Future' () ... [05:58:33.703] | : state: 'created' [05:58:33.704] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.704] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.704] | : Using SequentialFutureBackend ... [05:58:33.705] | : . Number of futures since start: 2 (2 created, 2 launched, 2 finished) [05:58:33.705] | : . Launching futures ... [05:58:33.705] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:33.706] | : . ' , getFutureData() ... [05:58:33.706] | : . ' , ; getFutureCore() ... [05:58:33.706] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:33.706] | : . ' , ; getFutureCore() ... done [05:58:33.706] | : . ' , ; getFutureCapture() ... [05:58:33.707] | : . ' , ; getFutureCapture() ... done [05:58:33.707] | : . ' , ; getFutureContext() ... [05:58:33.707] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.707] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:33.707] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.708] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:33.708] | : . ' , ; getFutureContext() ... done [05:58:33.708] | : . ' , getFutureData() ... done [05:58:33.711] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.711] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:33.711] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.712] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.712] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.712] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:33.713] | : . ' , ; ` | New stack: [05:58:33.713] | : . ' , ; ` | List of 1 [05:58:33.713] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.713] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.713] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:33.713] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.713] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.713] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.713] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.713] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.718] | : . ' , ; ` | Old stack: [05:58:33.719] | : . ' , ; ` | List of 1 [05:58:33.719] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.719] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.719] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:33.719] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.719] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.719] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.719] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:33.719] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.719] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.719] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.719] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.724] | : . ' , ; ` | Not identical [05:58:33.724] | : . ' , ; ` | all.equal() for future ... [05:58:33.724] | : . ' , ; ` | : List of 2 [05:58:33.724] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.724] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.724] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.724] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.724] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.724] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.724] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.731] | : . ' , ; ` | all.equal() for future ... done [05:58:33.732] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:33.732] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.732] | : . ' , ; ` List of future strategies: [05:58:33.732] | : . ' , ; ` 1. sequential: [05:58:33.732] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.732] | : . ' , ; ` - tweaked: FALSE [05:58:33.732] | : . ' , ; ` - call: plan(sequential) [05:58:33.733] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.733] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.733] | : . ' , assign_globals() ... [05:58:33.733] | : . ' , List of 2 [05:58:33.733] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:33.733] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:33.733] | : . ' , - attr(*, "where")=List of 2 [05:58:33.733] | : . ' , ..$ weight: [05:58:33.733] | : . ' , ..$ group : [05:58:33.733] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:33.733] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:33.733] | : . ' , - attr(*, "total_size")= num NA [05:58:33.733] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:33.738] | : . ' , - copied 'weight' to environment [05:58:33.738] | : . ' , - copied 'group' to environment [05:58:33.739] | : . ' , assign_globals() ... done [05:58:33.743] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.743] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.743] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.743] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:33.743] | : . ' , ; ` | : New stack: [05:58:33.744] | : . ' , ; ` | : List of 1 [05:58:33.744] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.744] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.744] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.744] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.744] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.744] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.748] | : . ' , ; ` | : Old stack: [05:58:33.748] | : . ' , ; ` | : List of 1 [05:58:33.748] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.748] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.748] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.748] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.748] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.748] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.753] | : . ' , ; ` | : Identical [05:58:33.753] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:33.753] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.753] | : . ' , ; ` | List of future strategies: [05:58:33.753] | : . ' , ; ` | 1. sequential: [05:58:33.753] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.753] | : . ' , ; ` | - tweaked: FALSE [05:58:33.753] | : . ' , ; ` | - call: plan(sequential) [05:58:33.754] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.754] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.755] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.755] | : . ' , SequentialFuture started (and completed) [05:58:33.755] | : . ' , signalConditions() ... [05:58:33.756] | : . ' , ; include = 'immediateCondition' [05:58:33.756] | : . ' , ; exclude = [05:58:33.756] | : . ' , ; resignal = FALSE [05:58:33.756] | : . ' , ; Number of conditions: 6 [05:58:33.757] | : . ' , ; int 6 [05:58:33.757] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.757] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.758] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.758] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.758] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.758] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.758] | : . ' , signalConditions() ... done [05:58:33.759] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:33.759] | : . Launching futures ... done [05:58:33.759] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:33.760] | : Using SequentialFutureBackend ... done [05:58:33.760] | run() for 'Future' () ... done [05:58:33.760] future(..., label = NULL) ... done [05:58:33.760] value() for SequentialFuture () ... [05:58:33.761] | signalConditions() ... [05:58:33.761] | : include = 'immediateCondition' [05:58:33.761] | : exclude = [05:58:33.762] | : resignal = FALSE [05:58:33.762] | : Number of conditions: 6 [05:58:33.762] | : int 6 [05:58:33.763] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.763] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.764] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.764] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.764] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.765] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.765] | signalConditions() ... done [05:58:33.765] | relay stdout ... [05:58:33.766] | relay stdout ... done [05:58:33.766] | check for misuse ... [05:58:33.766] | check for misuse ... done [05:58:33.766] | relay conditions ... [05:58:33.767] | : Future state: 'finished' [05:58:33.767] | : signalConditions() ... [05:58:33.768] | : . include = 'condition' [05:58:33.768] | : . exclude = 'immediateCondition' [05:58:33.768] | : . resignal = TRUE [05:58:33.769] | : . Number of conditions: 6 [05:58:33.769] | : . int 6 [05:58:33.770] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.770] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:33.708] | : . ' , attachPackages() ... [05:58:33.771] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.771] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:33.709] | : . ' , ; packages: [n=1] 'future' [05:58:33.771] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.771] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:33.709] | : . ' , attachPackages() ... done [05:58:33.772] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.772] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:33.709] | : . ' , attachPackages() ... [05:58:33.772] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.773] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:33.709] | : . ' , ; packages: [n=1] 'stats' [05:58:33.773] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.773] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:33.710] | : . ' , attachPackages() ... done [05:58:33.774] | : signalConditions() ... done [05:58:33.774] | relay conditions ... done [05:58:33.774] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:33.778] future(..., label = NULL) ... [05:58:33.778] | lazy: FALSE [05:58:33.779] | stdout: TRUE [05:58:33.779] | conditions: [n=1] 'condition' [05:58:33.779] | gc: FALSE [05:58:33.779] | earlySignal: FALSE [05:58:33.780] | getGlobalsAndPackages() ... [05:58:33.780] | : Searching for globals ... [05:58:33.806] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:33.806] | : Searching for globals ... done [05:58:33.806] | : Resolving globals: FALSE [05:58:33.806] | : Search for packages associated with the globals ... [05:58:33.807] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:33.808] | : . Packages: [2] 'base', 'stats' [05:58:33.808] | : Search for packages associated with the globals ... done [05:58:33.809] | : Packages after dropping 'base': [1] 'stats' [05:58:33.809] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:33.810] | : globals: [2] 'weight', 'group' [05:58:33.810] | : packages: [1] 'stats' [05:58:33.810] | getGlobalsAndPackages() ... done [05:58:33.811] | run() for 'Future' () ... [05:58:33.811] | : state: 'created' [05:58:33.811] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.811] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.812] | : Using SequentialFutureBackend ... [05:58:33.812] | : . Number of futures since start: 3 (3 created, 3 launched, 3 finished) [05:58:33.812] | : . Launching futures ... [05:58:33.813] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:33.813] | : . ' , getFutureData() ... [05:58:33.813] | : . ' , ; getFutureCore() ... [05:58:33.813] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:33.814] | : . ' , ; getFutureCore() ... done [05:58:33.814] | : . ' , ; getFutureCapture() ... [05:58:33.815] | : . ' , ; getFutureCapture() ... done [05:58:33.815] | : . ' , ; getFutureContext() ... [05:58:33.815] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.816] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:33.816] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.816] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:33.817] | : . ' , ; getFutureContext() ... done [05:58:33.817] | : . ' , getFutureData() ... done [05:58:33.820] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.820] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:33.821] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.821] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.821] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.822] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:33.822] | : . ' , ; ` | New stack: [05:58:33.822] | : . ' , ; ` | List of 1 [05:58:33.822] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.822] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.822] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:33.822] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.822] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.822] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.822] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.822] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.828] | : . ' , ; ` | Old stack: [05:58:33.829] | : . ' , ; ` | List of 1 [05:58:33.829] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.829] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.829] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:33.829] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.829] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.829] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.829] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:33.829] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.829] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.829] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.829] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.837] | : . ' , ; ` | Not identical [05:58:33.837] | : . ' , ; ` | all.equal() for future ... [05:58:33.838] | : . ' , ; ` | : List of 2 [05:58:33.838] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.838] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.838] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.838] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.838] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.838] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.838] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.850] | : . ' , ; ` | all.equal() for future ... done [05:58:33.850] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:33.850] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.851] | : . ' , ; ` List of future strategies: [05:58:33.851] | : . ' , ; ` 1. sequential: [05:58:33.851] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.851] | : . ' , ; ` - tweaked: FALSE [05:58:33.851] | : . ' , ; ` - call: plan(sequential) [05:58:33.852] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.852] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.853] | : . ' , assign_globals() ... [05:58:33.853] | : . ' , List of 2 [05:58:33.853] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:33.853] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:33.853] | : . ' , - attr(*, "where")=List of 2 [05:58:33.853] | : . ' , ..$ weight: [05:58:33.853] | : . ' , ..$ group : [05:58:33.853] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:33.853] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:33.853] | : . ' , - attr(*, "total_size")= num NA [05:58:33.853] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:33.860] | : . ' , - copied 'weight' to environment [05:58:33.861] | : . ' , - copied 'group' to environment [05:58:33.861] | : . ' , assign_globals() ... done [05:58:33.866] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.866] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.866] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.867] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:33.867] | : . ' , ; ` | : New stack: [05:58:33.867] | : . ' , ; ` | : List of 1 [05:58:33.867] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.867] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.867] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.867] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.867] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.867] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.874] | : . ' , ; ` | : Old stack: [05:58:33.874] | : . ' , ; ` | : List of 1 [05:58:33.874] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.874] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.874] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.874] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.874] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.874] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.880] | : . ' , ; ` | : Identical [05:58:33.880] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:33.881] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.881] | : . ' , ; ` | List of future strategies: [05:58:33.881] | : . ' , ; ` | 1. sequential: [05:58:33.881] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.881] | : . ' , ; ` | - tweaked: FALSE [05:58:33.881] | : . ' , ; ` | - call: plan(sequential) [05:58:33.882] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.882] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.883] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.884] | : . ' , SequentialFuture started (and completed) [05:58:33.884] | : . ' , signalConditions() ... [05:58:33.884] | : . ' , ; include = 'immediateCondition' [05:58:33.884] | : . ' , ; exclude = [05:58:33.885] | : . ' , ; resignal = FALSE [05:58:33.885] | : . ' , ; Number of conditions: 6 [05:58:33.885] | : . ' , ; int 6 [05:58:33.886] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.886] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.887] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.887] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.887] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.887] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.888] | : . ' , signalConditions() ... done [05:58:33.888] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:33.888] | : . Launching futures ... done [05:58:33.888] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:33.889] | : Using SequentialFutureBackend ... done [05:58:33.889] | run() for 'Future' () ... done [05:58:33.889] future(..., label = NULL) ... done [05:58:33.890] value() for SequentialFuture () ... [05:58:33.890] | signalConditions() ... [05:58:33.890] | : include = 'immediateCondition' [05:58:33.890] | : exclude = [05:58:33.891] | : resignal = FALSE [05:58:33.891] | : Number of conditions: 6 [05:58:33.891] | : int 6 [05:58:33.892] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.892] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.893] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.893] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.893] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.893] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.894] | signalConditions() ... done [05:58:33.894] | relay stdout ... [05:58:33.894] | relay stdout ... done [05:58:33.895] | check for misuse ... [05:58:33.895] | check for misuse ... done [05:58:33.895] | relay conditions ... [05:58:33.895] | : Future state: 'finished' [05:58:33.896] | : signalConditions() ... [05:58:33.896] | : . include = 'condition' [05:58:33.896] | : . exclude = 'immediateCondition' [05:58:33.897] | : . resignal = TRUE [05:58:33.897] | : . Number of conditions: 6 [05:58:33.897] | : . int 6 [05:58:33.898] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.898] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:33.817] | : . ' , attachPackages() ... [05:58:33.899] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.899] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:33.818] | : . ' , ; packages: [n=1] 'future' [05:58:33.899] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.900] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:33.818] | : . ' , attachPackages() ... done [05:58:33.900] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.900] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:33.819] | : . ' , attachPackages() ... [05:58:33.901] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.901] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:33.819] | : . ' , ; packages: [n=1] 'stats' [05:58:33.901] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.902] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:33.819] | : . ' , attachPackages() ... done [05:58:33.902] | : signalConditions() ... done [05:58:33.902] | relay conditions ... done [05:58:33.902] value() for SequentialFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:33.906] future(..., label = NULL) ... [05:58:33.906] | lazy: TRUE [05:58:33.907] | stdout: TRUE [05:58:33.907] | conditions: [n=1] 'condition' [05:58:33.907] | gc: FALSE [05:58:33.907] | earlySignal: FALSE [05:58:33.908] | getGlobalsAndPackages() ... [05:58:33.908] | : Searching for globals ... [05:58:33.930] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:33.930] | : Searching for globals ... done [05:58:33.931] | : Resolving globals: FALSE [05:58:33.931] | : Search for packages associated with the globals ... [05:58:33.931] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:33.932] | : . Packages: [2] 'base', 'stats' [05:58:33.932] | : Search for packages associated with the globals ... done [05:58:33.932] | : Packages after dropping 'base': [1] 'stats' [05:58:33.932] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:33.932] | : globals: [2] 'weight', 'group' [05:58:33.933] | : packages: [1] 'stats' [05:58:33.933] | getGlobalsAndPackages() ... done [05:58:33.933] future(..., label = NULL) ... done [05:58:33.933] value() for Future () ... [05:58:33.934] | run() for 'Future' () ... [05:58:33.934] | : state: 'created' [05:58:33.934] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.934] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.934] | : Using SequentialFutureBackend ... [05:58:33.934] | : . Number of futures since start: 4 (4 created, 4 launched, 4 finished) [05:58:33.935] | : . Launching futures ... [05:58:33.935] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:33.935] | : . ' , getFutureData() ... [05:58:33.935] | : . ' , ; getFutureCore() ... [05:58:33.935] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:33.936] | : . ' , ; getFutureCore() ... done [05:58:33.936] | : . ' , ; getFutureCapture() ... [05:58:33.936] | : . ' , ; getFutureCapture() ... done [05:58:33.936] | : . ' , ; getFutureContext() ... [05:58:33.936] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.936] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:33.937] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.937] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:33.937] | : . ' , ; getFutureContext() ... done [05:58:33.937] | : . ' , getFutureData() ... done [05:58:33.939] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:33.940] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:33.940] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:33.940] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.940] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.941] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:33.941] | : . ' , ; ` | New stack: [05:58:33.941] | : . ' , ; ` | List of 1 [05:58:33.941] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.941] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.941] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:33.941] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.941] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.941] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.941] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.941] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.945] | : . ' , ; ` | Old stack: [05:58:33.946] | : . ' , ; ` | List of 1 [05:58:33.946] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.946] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.946] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:33.946] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.946] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.946] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.946] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:33.946] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.946] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.946] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.946] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.950] | : . ' , ; ` | Not identical [05:58:33.950] | : . ' , ; ` | all.equal() for future ... [05:58:33.950] | : . ' , ; ` | : List of 2 [05:58:33.950] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.950] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:33.950] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.950] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.950] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.950] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.950] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.957] | : . ' , ; ` | all.equal() for future ... done [05:58:33.957] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:33.957] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.958] | : . ' , ; ` List of future strategies: [05:58:33.958] | : . ' , ; ` 1. sequential: [05:58:33.958] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.958] | : . ' , ; ` - tweaked: FALSE [05:58:33.958] | : . ' , ; ` - call: plan(sequential) [05:58:33.958] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.958] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.959] | : . ' , assign_globals() ... [05:58:33.959] | : . ' , List of 2 [05:58:33.959] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:33.959] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:33.959] | : . ' , - attr(*, "where")=List of 2 [05:58:33.959] | : . ' , ..$ weight: [05:58:33.959] | : . ' , ..$ group : [05:58:33.959] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:33.959] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:33.959] | : . ' , - attr(*, "total_size")= num NA [05:58:33.959] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:33.963] | : . ' , - copied 'weight' to environment [05:58:33.963] | : . ' , - copied 'group' to environment [05:58:33.963] | : . ' , assign_globals() ... done [05:58:33.967] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.967] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:33.967] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:33.968] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:33.968] | : . ' , ; ` | : New stack: [05:58:33.968] | : . ' , ; ` | : List of 1 [05:58:33.968] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.968] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.968] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.968] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.968] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.968] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.973] | : . ' , ; ` | : Old stack: [05:58:33.973] | : . ' , ; ` | : List of 1 [05:58:33.973] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.973] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:33.973] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:33.973] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:33.973] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:33.973] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:33.980] | : . ' , ; ` | : Identical [05:58:33.980] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:33.980] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:33.981] | : . ' , ; ` | List of future strategies: [05:58:33.981] | : . ' , ; ` | 1. sequential: [05:58:33.981] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:33.981] | : . ' , ; ` | - tweaked: FALSE [05:58:33.981] | : . ' , ; ` | - call: plan(sequential) [05:58:33.982] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:33.982] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.982] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:33.983] | : . ' , SequentialFuture started (and completed) [05:58:33.984] | : . ' , signalConditions() ... [05:58:33.984] | : . ' , ; include = 'immediateCondition' [05:58:33.984] | : . ' , ; exclude = [05:58:33.984] | : . ' , ; resignal = FALSE [05:58:33.985] | : . ' , ; Number of conditions: 6 [05:58:33.985] | : . ' , ; int 6 [05:58:33.986] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.986] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.986] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.987] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.987] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.987] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.988] | : . ' , signalConditions() ... done [05:58:33.988] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:33.988] | : . Launching futures ... done [05:58:33.989] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:33.989] | : Using SequentialFutureBackend ... done [05:58:33.989] | run() for 'Future' () ... done [05:58:33.989] | signalConditions() ... [05:58:33.990] | : include = 'immediateCondition' [05:58:33.990] | : exclude = [05:58:33.990] | : resignal = FALSE [05:58:33.991] | : Number of conditions: 6 [05:58:33.991] | : int 6 [05:58:33.992] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.992] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.992] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.993] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.993] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.993] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.993] | signalConditions() ... done [05:58:33.994] | relay stdout ... [05:58:33.994] | relay stdout ... done [05:58:33.994] | check for misuse ... [05:58:33.995] | check for misuse ... done [05:58:33.995] | relay conditions ... [05:58:33.995] | : Future state: 'finished' [05:58:33.995] | : signalConditions() ... [05:58:33.996] | : . include = 'condition' [05:58:33.996] | : . exclude = 'immediateCondition' [05:58:33.996] | : . resignal = TRUE [05:58:33.996] | : . Number of conditions: 6 [05:58:33.997] | : . int 6 [05:58:33.998] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.998] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:33.938] | : . ' , attachPackages() ... [05:58:33.998] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.998] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:33.938] | : . ' , ; packages: [n=1] 'future' [05:58:33.999] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:33.999] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:33.938] | : . ' , attachPackages() ... done [05:58:33.999] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.000] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:33.938] | : . ' , attachPackages() ... [05:58:34.000] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.000] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:33.938] | : . ' , ; packages: [n=1] 'stats' [05:58:34.001] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.001] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:33.939] | : . ' , attachPackages() ... done [05:58:34.001] | : signalConditions() ... done [05:58:34.002] | relay conditions ... done [05:58:34.002] 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) ... [05:58:34.006] future(..., label = NULL) ... [05:58:34.007] | lazy: FALSE [05:58:34.007] | stdout: TRUE [05:58:34.007] | conditions: [n=1] 'condition' [05:58:34.007] | gc: FALSE [05:58:34.008] | earlySignal: FALSE [05:58:34.008] | getGlobalsAndPackages() ... [05:58:34.008] | : Searching for globals ... [05:58:34.026] | : . globals found: [4] '{', 'xtabs', 'x', '~' [05:58:34.027] | : Searching for globals ... done [05:58:34.027] | : Resolving globals: FALSE [05:58:34.028] | : Search for packages associated with the globals ... [05:58:34.028] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:34.029] | : . Packages: [2] 'base', 'stats' [05:58:34.029] | : Search for packages associated with the globals ... done [05:58:34.030] | : Packages after dropping 'base': [1] 'stats' [05:58:34.030] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:34.031] | : globals: [1] 'x' [05:58:34.031] | : packages: [1] 'stats' [05:58:34.031] | getGlobalsAndPackages() ... done [05:58:34.032] | run() for 'Future' () ... [05:58:34.032] | : state: 'created' [05:58:34.033] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.033] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.033] | : Using SequentialFutureBackend ... [05:58:34.033] | : . Number of futures since start: 5 (5 created, 5 launched, 5 finished) [05:58:34.034] | : . Launching futures ... [05:58:34.034] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.035] | : . ' , getFutureData() ... [05:58:34.035] | : . ' , ; getFutureCore() ... [05:58:34.035] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:34.035] | : . ' , ; getFutureCore() ... done [05:58:34.036] | : . ' , ; getFutureCapture() ... [05:58:34.036] | : . ' , ; getFutureCapture() ... done [05:58:34.036] | : . ' , ; getFutureContext() ... [05:58:34.037] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.037] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.037] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.037] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.038] | : . ' , ; getFutureContext() ... done [05:58:34.038] | : . ' , getFutureData() ... done [05:58:34.040] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.040] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.040] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.041] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.041] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.042] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.042] | : . ' , ; ` | New stack: [05:58:34.042] | : . ' , ; ` | List of 1 [05:58:34.042] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.042] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.042] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.042] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.042] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.042] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.042] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.042] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.047] | : . ' , ; ` | Old stack: [05:58:34.047] | : . ' , ; ` | List of 1 [05:58:34.047] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.047] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.047] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.047] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.047] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.047] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.047] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.047] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.047] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.047] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.047] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.052] | : . ' , ; ` | Not identical [05:58:34.052] | : . ' , ; ` | all.equal() for future ... [05:58:34.052] | : . ' , ; ` | : List of 2 [05:58:34.052] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.052] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.052] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.052] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.052] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.052] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.052] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.062] | : . ' , ; ` | all.equal() for future ... done [05:58:34.062] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.062] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.063] | : . ' , ; ` List of future strategies: [05:58:34.063] | : . ' , ; ` 1. sequential: [05:58:34.063] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.063] | : . ' , ; ` - tweaked: FALSE [05:58:34.063] | : . ' , ; ` - call: plan(sequential) [05:58:34.063] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.063] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.064] | : . ' , assign_globals() ... [05:58:34.064] | : . ' , List of 1 [05:58:34.064] | : . ' , $ x: num [1:5] 1 1 2 2 2 [05:58:34.064] | : . ' , - attr(*, "where")=List of 1 [05:58:34.064] | : . ' , ..$ x: [05:58:34.064] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:34.064] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:34.064] | : . ' , - attr(*, "total_size")= num NA [05:58:34.064] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:34.067] | : . ' , - copied 'x' to environment [05:58:34.068] | : . ' , assign_globals() ... done [05:58:34.071] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.071] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.071] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.071] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.071] | : . ' , ; ` | : New stack: [05:58:34.072] | : . ' , ; ` | : List of 1 [05:58:34.072] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.072] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.072] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.072] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.072] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.072] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.078] | : . ' , ; ` | : Old stack: [05:58:34.079] | : . ' , ; ` | : List of 1 [05:58:34.079] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.079] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.079] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.079] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.079] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.079] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.085] | : . ' , ; ` | : Identical [05:58:34.085] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.086] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.086] | : . ' , ; ` | List of future strategies: [05:58:34.086] | : . ' , ; ` | 1. sequential: [05:58:34.086] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.086] | : . ' , ; ` | - tweaked: FALSE [05:58:34.086] | : . ' , ; ` | - call: plan(sequential) [05:58:34.087] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.087] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.087] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.088] | : . ' , SequentialFuture started (and completed) [05:58:34.089] | : . ' , signalConditions() ... [05:58:34.089] | : . ' , ; include = 'immediateCondition' [05:58:34.089] | : . ' , ; exclude = [05:58:34.089] | : . ' , ; resignal = FALSE [05:58:34.090] | : . ' , ; Number of conditions: 6 [05:58:34.090] | : . ' , ; int 6 [05:58:34.091] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.091] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.091] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.091] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.092] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.092] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.092] | : . ' , signalConditions() ... done [05:58:34.093] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.093] | : . Launching futures ... done [05:58:34.093] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.093] | : Using SequentialFutureBackend ... done [05:58:34.094] | run() for 'Future' () ... done [05:58:34.094] future(..., label = NULL) ... done [05:58:34.094] value() for SequentialFuture () ... [05:58:34.095] | signalConditions() ... [05:58:34.095] | : include = 'immediateCondition' [05:58:34.095] | : exclude = [05:58:34.095] | : resignal = FALSE [05:58:34.096] | : Number of conditions: 6 [05:58:34.096] | : int 6 [05:58:34.098] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.098] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.098] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.099] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.099] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.099] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.100] | signalConditions() ... done [05:58:34.100] | relay stdout ... [05:58:34.100] | relay stdout ... done [05:58:34.101] | check for misuse ... [05:58:34.101] | check for misuse ... done [05:58:34.101] | relay conditions ... [05:58:34.102] | : Future state: 'finished' [05:58:34.102] | : signalConditions() ... [05:58:34.102] | : . include = 'condition' [05:58:34.102] | : . exclude = 'immediateCondition' [05:58:34.102] | : . resignal = TRUE [05:58:34.103] | : . Number of conditions: 6 [05:58:34.103] | : . int 6 [05:58:34.104] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.104] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.038] | : . ' , attachPackages() ... [05:58:34.104] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.104] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.038] | : . ' , ; packages: [n=1] 'future' [05:58:34.104] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.105] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.039] | : . ' , attachPackages() ... done [05:58:34.105] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.105] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.039] | : . ' , attachPackages() ... [05:58:34.105] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.105] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.039] | : . ' , ; packages: [n=1] 'stats' [05:58:34.106] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.106] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.039] | : . ' , attachPackages() ... done [05:58:34.106] | : signalConditions() ... done [05:58:34.106] | relay conditions ... done [05:58:34.106] value() for SequentialFuture () ... done x 1 2 2 3 [05:58:34.107] future(..., label = NULL) ... [05:58:34.108] | lazy: FALSE [05:58:34.108] | stdout: TRUE [05:58:34.108] | conditions: [n=1] 'condition' [05:58:34.108] | gc: FALSE [05:58:34.108] | earlySignal: FALSE [05:58:34.108] | getGlobalsAndPackages() ... [05:58:34.109] | : Searching for globals ... [05:58:34.120] | : . globals found: [4] '{', 'xtabs', 'x', '~' [05:58:34.120] | : Searching for globals ... done [05:58:34.120] | : Resolving globals: FALSE [05:58:34.121] | : Search for packages associated with the globals ... [05:58:34.121] | : . Packages associated with globals: [2] 'base', 'stats' [05:58:34.122] | : . Packages: [2] 'base', 'stats' [05:58:34.122] | : Search for packages associated with the globals ... done [05:58:34.123] | : Packages after dropping 'base': [1] 'stats' [05:58:34.123] | : Packages after dropping non-attached packages: [1] 'stats' [05:58:34.123] | : globals: [1] 'x' [05:58:34.124] | : packages: [1] 'stats' [05:58:34.124] | getGlobalsAndPackages() ... done [05:58:34.124] | run() for 'Future' () ... [05:58:34.125] | : state: 'created' [05:58:34.125] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.125] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.126] | : Using SequentialFutureBackend ... [05:58:34.126] | : . Number of futures since start: 6 (6 created, 6 launched, 6 finished) [05:58:34.126] | : . Launching futures ... [05:58:34.127] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.127] | : . ' , getFutureData() ... [05:58:34.128] | : . ' , ; getFutureCore() ... [05:58:34.128] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [05:58:34.128] | : . ' , ; getFutureCore() ... done [05:58:34.129] | : . ' , ; getFutureCapture() ... [05:58:34.129] | : . ' , ; getFutureCapture() ... done [05:58:34.129] | : . ' , ; getFutureContext() ... [05:58:34.130] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.130] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.130] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.130] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.131] | : . ' , ; getFutureContext() ... done [05:58:34.131] | : . ' , getFutureData() ... done [05:58:34.134] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.135] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.135] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.136] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.136] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.136] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.137] | : . ' , ; ` | New stack: [05:58:34.137] | : . ' , ; ` | List of 1 [05:58:34.137] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.137] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.137] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.137] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.137] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.137] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.137] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.137] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.143] | : . ' , ; ` | Old stack: [05:58:34.143] | : . ' , ; ` | List of 1 [05:58:34.143] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.143] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.143] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.143] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.143] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.143] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.143] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.143] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.143] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.143] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.143] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.150] | : . ' , ; ` | Not identical [05:58:34.150] | : . ' , ; ` | all.equal() for future ... [05:58:34.150] | : . ' , ; ` | : List of 2 [05:58:34.150] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.150] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.150] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.150] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.150] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.150] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.150] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.162] | : . ' , ; ` | all.equal() for future ... done [05:58:34.162] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.162] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.163] | : . ' , ; ` List of future strategies: [05:58:34.163] | : . ' , ; ` 1. sequential: [05:58:34.163] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.163] | : . ' , ; ` - tweaked: FALSE [05:58:34.163] | : . ' , ; ` - call: plan(sequential) [05:58:34.164] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.164] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.164] | : . ' , assign_globals() ... [05:58:34.165] | : . ' , List of 1 [05:58:34.165] | : . ' , $ x: num [1:5] 1 1 2 2 2 [05:58:34.165] | : . ' , - attr(*, "where")=List of 1 [05:58:34.165] | : . ' , ..$ x: [05:58:34.165] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:34.165] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:34.165] | : . ' , - attr(*, "total_size")= num NA [05:58:34.165] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:34.170] | : . ' , - copied 'x' to environment [05:58:34.170] | : . ' , assign_globals() ... done [05:58:34.175] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.175] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.176] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.176] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.176] | : . ' , ; ` | : New stack: [05:58:34.177] | : . ' , ; ` | : List of 1 [05:58:34.177] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.177] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.177] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.177] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.177] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.177] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.183] | : . ' , ; ` | : Old stack: [05:58:34.183] | : . ' , ; ` | : List of 1 [05:58:34.183] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.183] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.183] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.183] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.183] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.183] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.190] | : . ' , ; ` | : Identical [05:58:34.190] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.190] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.190] | : . ' , ; ` | List of future strategies: [05:58:34.190] | : . ' , ; ` | 1. sequential: [05:58:34.190] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.190] | : . ' , ; ` | - tweaked: FALSE [05:58:34.190] | : . ' , ; ` | - call: plan(sequential) [05:58:34.191] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.192] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.192] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.193] | : . ' , SequentialFuture started (and completed) [05:58:34.193] | : . ' , signalConditions() ... [05:58:34.193] | : . ' , ; include = 'immediateCondition' [05:58:34.194] | : . ' , ; exclude = [05:58:34.194] | : . ' , ; resignal = FALSE [05:58:34.194] | : . ' , ; Number of conditions: 6 [05:58:34.194] | : . ' , ; int 6 [05:58:34.195] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.196] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.196] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.196] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.196] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.197] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.197] | : . ' , signalConditions() ... done [05:58:34.197] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.198] | : . Launching futures ... done [05:58:34.198] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.198] | : Using SequentialFutureBackend ... done [05:58:34.198] | run() for 'Future' () ... done [05:58:34.199] future(..., label = NULL) ... done [05:58:34.199] value() for SequentialFuture () ... [05:58:34.199] | signalConditions() ... [05:58:34.200] | : include = 'immediateCondition' [05:58:34.200] | : exclude = [05:58:34.200] | : resignal = FALSE [05:58:34.200] | : Number of conditions: 6 [05:58:34.201] | : int 6 [05:58:34.201] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.202] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.202] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.202] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.203] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.203] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.203] | signalConditions() ... done [05:58:34.203] | relay stdout ... [05:58:34.204] | relay stdout ... done [05:58:34.204] | check for misuse ... [05:58:34.204] | check for misuse ... done [05:58:34.204] | relay conditions ... [05:58:34.205] | : Future state: 'finished' [05:58:34.208] | : signalConditions() ... [05:58:34.208] | : . include = 'condition' [05:58:34.209] | : . exclude = 'immediateCondition' [05:58:34.209] | : . resignal = TRUE [05:58:34.209] | : . Number of conditions: 6 [05:58:34.209] | : . int 6 [05:58:34.210] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.211] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.132] | : . ' , attachPackages() ... [05:58:34.211] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.211] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.132] | : . ' , ; packages: [n=1] 'future' [05:58:34.212] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.212] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.132] | : . ' , attachPackages() ... done [05:58:34.212] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.212] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.133] | : . ' , attachPackages() ... [05:58:34.213] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.213] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.133] | : . ' , ; packages: [n=1] 'stats' [05:58:34.213] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.214] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.134] | : . ' , attachPackages() ... done [05:58:34.214] | : signalConditions() ... done [05:58:34.214] | relay conditions ... done [05:58:34.214] 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 [05:58:34.218] future(..., label = NULL) ... [05:58:34.218] | lazy: FALSE [05:58:34.218] | stdout: TRUE [05:58:34.219] | conditions: [n=1] 'condition' [05:58:34.219] | gc: FALSE [05:58:34.219] | earlySignal: FALSE [05:58:34.219] | getGlobalsAndPackages() ... [05:58:34.220] | : Searching for globals ... [05:58:34.245] | : . globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [05:58:34.246] | : Searching for globals ... done [05:58:34.246] | : Resolving globals: FALSE [05:58:34.246] | : Search for packages associated with the globals ... [05:58:34.247] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:34.248] | : . Packages: [3] 'base', 'stats', 'datasets' [05:58:34.248] | : Search for packages associated with the globals ... done [05:58:34.248] | : Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:34.249] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:34.249] | : globals: [0] [05:58:34.249] | : packages: [2] 'stats', 'datasets' [05:58:34.250] | getGlobalsAndPackages() ... done [05:58:34.250] | run() for 'Future' () ... [05:58:34.250] | : state: 'created' [05:58:34.251] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.251] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.251] | : Using SequentialFutureBackend ... [05:58:34.251] | : . Number of futures since start: 7 (7 created, 7 launched, 7 finished) [05:58:34.252] | : . Launching futures ... [05:58:34.252] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.252] | : . ' , getFutureData() ... [05:58:34.253] | : . ' , ; getFutureCore() ... [05:58:34.253] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:34.253] | : . ' , ; getFutureCore() ... done [05:58:34.253] | : . ' , ; getFutureCapture() ... [05:58:34.254] | : . ' , ; getFutureCapture() ... done [05:58:34.254] | : . ' , ; getFutureContext() ... [05:58:34.254] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.255] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.255] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.255] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.256] | : . ' , ; getFutureContext() ... done [05:58:34.256] | : . ' , getFutureData() ... done [05:58:34.259] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.259] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.260] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.260] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.261] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.261] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.261] | : . ' , ; ` | New stack: [05:58:34.261] | : . ' , ; ` | List of 1 [05:58:34.261] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.261] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.261] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.261] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.261] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.261] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.261] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.261] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.267] | : . ' , ; ` | Old stack: [05:58:34.267] | : . ' , ; ` | List of 1 [05:58:34.267] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.267] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.267] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.267] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.267] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.267] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.267] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.267] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.267] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.267] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.267] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.274] | : . ' , ; ` | Not identical [05:58:34.274] | : . ' , ; ` | all.equal() for future ... [05:58:34.275] | : . ' , ; ` | : List of 2 [05:58:34.275] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.275] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.275] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.275] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.275] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.275] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.275] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.285] | : . ' , ; ` | all.equal() for future ... done [05:58:34.286] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.286] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.286] | : . ' , ; ` List of future strategies: [05:58:34.286] | : . ' , ; ` 1. sequential: [05:58:34.286] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.286] | : . ' , ; ` - tweaked: FALSE [05:58:34.286] | : . ' , ; ` - call: plan(sequential) [05:58:34.287] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.287] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.292] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.293] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.293] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.293] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.294] | : . ' , ; ` | : New stack: [05:58:34.294] | : . ' , ; ` | : List of 1 [05:58:34.294] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.294] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.294] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.294] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.294] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.294] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.301] | : . ' , ; ` | : Old stack: [05:58:34.301] | : . ' , ; ` | : List of 1 [05:58:34.301] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.301] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.301] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.301] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.301] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.301] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.308] | : . ' , ; ` | : Identical [05:58:34.308] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.308] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.308] | : . ' , ; ` | List of future strategies: [05:58:34.308] | : . ' , ; ` | 1. sequential: [05:58:34.308] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.308] | : . ' , ; ` | - tweaked: FALSE [05:58:34.308] | : . ' , ; ` | - call: plan(sequential) [05:58:34.309] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.310] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.310] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.311] | : . ' , SequentialFuture started (and completed) [05:58:34.311] | : . ' , signalConditions() ... [05:58:34.311] | : . ' , ; include = 'immediateCondition' [05:58:34.311] | : . ' , ; exclude = [05:58:34.312] | : . ' , ; resignal = FALSE [05:58:34.312] | : . ' , ; Number of conditions: 6 [05:58:34.312] | : . ' , ; int 6 [05:58:34.313] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.313] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.314] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.314] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.314] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.314] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.315] | : . ' , signalConditions() ... done [05:58:34.315] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.315] | : . Launching futures ... done [05:58:34.316] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.316] | : Using SequentialFutureBackend ... done [05:58:34.316] | run() for 'Future' () ... done [05:58:34.316] future(..., label = NULL) ... done [05:58:34.317] value() for SequentialFuture () ... [05:58:34.317] | signalConditions() ... [05:58:34.317] | : include = 'immediateCondition' [05:58:34.317] | : exclude = [05:58:34.318] | : resignal = FALSE [05:58:34.318] | : Number of conditions: 6 [05:58:34.318] | : int 6 [05:58:34.319] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.319] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.320] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.320] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.320] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.320] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.322] | signalConditions() ... done [05:58:34.323] | relay stdout ... [05:58:34.323] | relay stdout ... done [05:58:34.324] | check for misuse ... [05:58:34.324] | check for misuse ... done [05:58:34.324] | relay conditions ... [05:58:34.324] | : Future state: 'finished' [05:58:34.325] | : signalConditions() ... [05:58:34.325] | : . include = 'condition' [05:58:34.325] | : . exclude = 'immediateCondition' [05:58:34.326] | : . resignal = TRUE [05:58:34.326] | : . Number of conditions: 6 [05:58:34.326] | : . int 6 [05:58:34.327] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.327] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.257] | : . ' , attachPackages() ... [05:58:34.328] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.328] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.257] | : . ' , ; packages: [n=1] 'future' [05:58:34.328] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.329] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.257] | : . ' , attachPackages() ... done [05:58:34.329] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.329] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.258] | : . ' , attachPackages() ... [05:58:34.330] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.330] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.258] | : . ' , ; packages: [n=2] 'stats', 'datasets' [05:58:34.330] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.331] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.258] | : . ' , attachPackages() ... done [05:58:34.331] | : signalConditions() ... done [05:58:34.331] | relay conditions ... done [05:58:34.332] 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 [05:58:34.337] future(..., label = NULL) ... [05:58:34.337] | lazy: FALSE [05:58:34.338] | stdout: TRUE [05:58:34.338] | conditions: [n=1] 'condition' [05:58:34.338] | gc: FALSE [05:58:34.338] | earlySignal: FALSE [05:58:34.339] | getGlobalsAndPackages() ... [05:58:34.339] | : Searching for globals ... [05:58:34.364] | : . globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [05:58:34.364] | : Searching for globals ... done [05:58:34.364] | : Resolving globals: FALSE [05:58:34.365] | : Search for packages associated with the globals ... [05:58:34.365] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:34.366] | : . Packages: [3] 'base', 'stats', 'datasets' [05:58:34.366] | : Search for packages associated with the globals ... done [05:58:34.366] | : Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:34.367] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:34.367] | : globals: [0] [05:58:34.367] | : packages: [2] 'stats', 'datasets' [05:58:34.367] | getGlobalsAndPackages() ... done [05:58:34.368] | run() for 'Future' () ... [05:58:34.368] | : state: 'created' [05:58:34.368] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.368] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.369] | : Using SequentialFutureBackend ... [05:58:34.369] | : . Number of futures since start: 8 (8 created, 8 launched, 8 finished) [05:58:34.369] | : . Launching futures ... [05:58:34.369] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.370] | : . ' , getFutureData() ... [05:58:34.370] | : . ' , ; getFutureCore() ... [05:58:34.370] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:34.370] | : . ' , ; getFutureCore() ... done [05:58:34.371] | : . ' , ; getFutureCapture() ... [05:58:34.371] | : . ' , ; getFutureCapture() ... done [05:58:34.371] | : . ' , ; getFutureContext() ... [05:58:34.371] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.372] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.372] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.372] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.372] | : . ' , ; getFutureContext() ... done [05:58:34.373] | : . ' , getFutureData() ... done [05:58:34.375] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.376] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.376] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.376] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.377] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.377] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.377] | : . ' , ; ` | New stack: [05:58:34.377] | : . ' , ; ` | List of 1 [05:58:34.377] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.377] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.377] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.377] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.377] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.377] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.377] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.377] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.382] | : . ' , ; ` | Old stack: [05:58:34.382] | : . ' , ; ` | List of 1 [05:58:34.382] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.382] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.382] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.382] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.382] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.382] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.382] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.382] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.382] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.382] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.382] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.388] | : . ' , ; ` | Not identical [05:58:34.388] | : . ' , ; ` | all.equal() for future ... [05:58:34.389] | : . ' , ; ` | : List of 2 [05:58:34.389] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.389] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.389] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.389] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.389] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.389] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.389] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.398] | : . ' , ; ` | all.equal() for future ... done [05:58:34.398] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.399] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.399] | : . ' , ; ` List of future strategies: [05:58:34.399] | : . ' , ; ` 1. sequential: [05:58:34.399] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.399] | : . ' , ; ` - tweaked: FALSE [05:58:34.399] | : . ' , ; ` - call: plan(sequential) [05:58:34.400] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.400] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.405] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.405] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.405] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.405] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.406] | : . ' , ; ` | : New stack: [05:58:34.406] | : . ' , ; ` | : List of 1 [05:58:34.406] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.406] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.406] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.406] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.406] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.406] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.412] | : . ' , ; ` | : Old stack: [05:58:34.412] | : . ' , ; ` | : List of 1 [05:58:34.412] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.412] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.412] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.412] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.412] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.412] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.419] | : . ' , ; ` | : Identical [05:58:34.420] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.420] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.420] | : . ' , ; ` | List of future strategies: [05:58:34.420] | : . ' , ; ` | 1. sequential: [05:58:34.420] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.420] | : . ' , ; ` | - tweaked: FALSE [05:58:34.420] | : . ' , ; ` | - call: plan(sequential) [05:58:34.421] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.422] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.422] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.423] | : . ' , SequentialFuture started (and completed) [05:58:34.423] | : . ' , signalConditions() ... [05:58:34.423] | : . ' , ; include = 'immediateCondition' [05:58:34.424] | : . ' , ; exclude = [05:58:34.424] | : . ' , ; resignal = FALSE [05:58:34.424] | : . ' , ; Number of conditions: 6 [05:58:34.424] | : . ' , ; int 6 [05:58:34.425] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.426] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.426] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.426] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.427] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.427] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.427] | : . ' , signalConditions() ... done [05:58:34.428] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.428] | : . Launching futures ... done [05:58:34.428] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.428] | : Using SequentialFutureBackend ... done [05:58:34.429] | run() for 'Future' () ... done [05:58:34.429] future(..., label = NULL) ... done [05:58:34.429] value() for SequentialFuture () ... [05:58:34.430] | signalConditions() ... [05:58:34.430] | : include = 'immediateCondition' [05:58:34.430] | : exclude = [05:58:34.430] | : resignal = FALSE [05:58:34.431] | : Number of conditions: 6 [05:58:34.431] | : int 6 [05:58:34.432] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.432] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.433] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.433] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.433] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.433] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.434] | signalConditions() ... done [05:58:34.434] | relay stdout ... [05:58:34.434] | relay stdout ... done [05:58:34.435] | check for misuse ... [05:58:34.435] | check for misuse ... done [05:58:34.435] | relay conditions ... [05:58:34.436] | : Future state: 'finished' [05:58:34.436] | : signalConditions() ... [05:58:34.436] | : . include = 'condition' [05:58:34.437] | : . exclude = 'immediateCondition' [05:58:34.437] | : . resignal = TRUE [05:58:34.437] | : . Number of conditions: 6 [05:58:34.437] | : . int 6 [05:58:34.438] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.439] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.373] | : . ' , attachPackages() ... [05:58:34.439] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.439] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.373] | : . ' , ; packages: [n=1] 'future' [05:58:34.440] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.440] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.374] | : . ' , attachPackages() ... done [05:58:34.440] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.441] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.374] | : . ' , attachPackages() ... [05:58:34.441] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.441] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.374] | : . ' , ; packages: [n=2] 'stats', 'datasets' [05:58:34.442] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.442] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.375] | : . ' , attachPackages() ... done [05:58:34.442] | : signalConditions() ... done [05:58:34.442] | relay conditions ... done [05:58:34.443] 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 [05:58:34.447] future(..., label = NULL) ... [05:58:34.448] | lazy: FALSE [05:58:34.448] | stdout: TRUE [05:58:34.448] | conditions: [n=1] 'condition' [05:58:34.449] | gc: FALSE [05:58:34.449] | earlySignal: FALSE [05:58:34.449] | getGlobalsAndPackages() ... [05:58:34.449] | : Searching for globals ... [05:58:34.484] | : . globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [05:58:34.484] | : Searching for globals ... done [05:58:34.485] | : Resolving globals: FALSE [05:58:34.485] | : Search for packages associated with the globals ... [05:58:34.486] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:34.486] | : . Packages: [3] 'base', 'stats', 'datasets' [05:58:34.487] | : Search for packages associated with the globals ... done [05:58:34.487] | : Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:34.487] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:34.488] | : globals: [0] [05:58:34.488] | : packages: [2] 'stats', 'datasets' [05:58:34.488] | getGlobalsAndPackages() ... done [05:58:34.489] | run() for 'Future' () ... [05:58:34.489] | : state: 'created' [05:58:34.489] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.489] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.490] | : Using SequentialFutureBackend ... [05:58:34.490] | : . Number of futures since start: 9 (9 created, 9 launched, 9 finished) [05:58:34.490] | : . Launching futures ... [05:58:34.490] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.491] | : . ' , getFutureData() ... [05:58:34.491] | : . ' , ; getFutureCore() ... [05:58:34.491] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:34.491] | : . ' , ; getFutureCore() ... done [05:58:34.491] | : . ' , ; getFutureCapture() ... [05:58:34.491] | : . ' , ; getFutureCapture() ... done [05:58:34.492] | : . ' , ; getFutureContext() ... [05:58:34.492] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.492] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.492] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.492] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.493] | : . ' , ; getFutureContext() ... done [05:58:34.495] | : . ' , getFutureData() ... done [05:58:34.497] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.497] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.497] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.497] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.498] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.498] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.498] | : . ' , ; ` | New stack: [05:58:34.498] | : . ' , ; ` | List of 1 [05:58:34.498] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.498] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.498] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.498] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.498] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.498] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.498] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.498] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.503] | : . ' , ; ` | Old stack: [05:58:34.503] | : . ' , ; ` | List of 1 [05:58:34.503] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.503] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.503] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.503] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.503] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.503] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.503] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.503] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.503] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.503] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.503] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.509] | : . ' , ; ` | Not identical [05:58:34.509] | : . ' , ; ` | all.equal() for future ... [05:58:34.510] | : . ' , ; ` | : List of 2 [05:58:34.510] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.510] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.510] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.510] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.510] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.510] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.510] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.520] | : . ' , ; ` | all.equal() for future ... done [05:58:34.520] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.521] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.521] | : . ' , ; ` List of future strategies: [05:58:34.521] | : . ' , ; ` 1. sequential: [05:58:34.521] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.521] | : . ' , ; ` - tweaked: FALSE [05:58:34.521] | : . ' , ; ` - call: plan(sequential) [05:58:34.522] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.522] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.527] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.527] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.527] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.528] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.528] | : . ' , ; ` | : New stack: [05:58:34.528] | : . ' , ; ` | : List of 1 [05:58:34.528] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.528] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.528] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.528] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.528] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.528] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.535] | : . ' , ; ` | : Old stack: [05:58:34.535] | : . ' , ; ` | : List of 1 [05:58:34.535] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.535] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.535] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.535] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.535] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.535] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.541] | : . ' , ; ` | : Identical [05:58:34.542] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.542] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.542] | : . ' , ; ` | List of future strategies: [05:58:34.542] | : . ' , ; ` | 1. sequential: [05:58:34.542] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.542] | : . ' , ; ` | - tweaked: FALSE [05:58:34.542] | : . ' , ; ` | - call: plan(sequential) [05:58:34.543] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.544] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.544] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.545] | : . ' , SequentialFuture started (and completed) [05:58:34.545] | : . ' , signalConditions() ... [05:58:34.545] | : . ' , ; include = 'immediateCondition' [05:58:34.546] | : . ' , ; exclude = [05:58:34.546] | : . ' , ; resignal = FALSE [05:58:34.546] | : . ' , ; Number of conditions: 6 [05:58:34.546] | : . ' , ; int 6 [05:58:34.547] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.547] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.548] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.548] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.548] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.548] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.549] | : . ' , signalConditions() ... done [05:58:34.549] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.549] | : . Launching futures ... done [05:58:34.549] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.550] | : Using SequentialFutureBackend ... done [05:58:34.550] | run() for 'Future' () ... done [05:58:34.550] future(..., label = NULL) ... done [05:58:34.551] value() for SequentialFuture () ... [05:58:34.551] | signalConditions() ... [05:58:34.551] | : include = 'immediateCondition' [05:58:34.551] | : exclude = [05:58:34.552] | : resignal = FALSE [05:58:34.552] | : Number of conditions: 6 [05:58:34.552] | : int 6 [05:58:34.553] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.553] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.553] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.554] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.554] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.554] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.554] | signalConditions() ... done [05:58:34.554] | relay stdout ... [05:58:34.555] | relay stdout ... done [05:58:34.555] | check for misuse ... [05:58:34.555] | check for misuse ... done [05:58:34.556] | relay conditions ... [05:58:34.556] | : Future state: 'finished' [05:58:34.556] | : signalConditions() ... [05:58:34.556] | : . include = 'condition' [05:58:34.556] | : . exclude = 'immediateCondition' [05:58:34.557] | : . resignal = TRUE [05:58:34.557] | : . Number of conditions: 6 [05:58:34.557] | : . int 6 [05:58:34.558] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.558] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.495] | : . ' , attachPackages() ... [05:58:34.558] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.558] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.495] | : . ' , ; packages: [n=1] 'future' [05:58:34.559] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.559] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.495] | : . ' , attachPackages() ... done [05:58:34.559] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.559] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.496] | : . ' , attachPackages() ... [05:58:34.559] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.559] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.496] | : . ' , ; packages: [n=2] 'stats', 'datasets' [05:58:34.560] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.560] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.496] | : . ' , attachPackages() ... done [05:58:34.560] | : signalConditions() ... done [05:58:34.560] | relay conditions ... done [05:58:34.560] 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 [05:58:34.566] future(..., label = NULL) ... [05:58:34.566] | lazy: FALSE [05:58:34.566] | stdout: TRUE [05:58:34.566] | conditions: [n=1] 'condition' [05:58:34.567] | gc: FALSE [05:58:34.567] | earlySignal: FALSE [05:58:34.567] | getGlobalsAndPackages() ... [05:58:34.568] | : Searching for globals ... [05:58:34.603] | : . globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [05:58:34.603] | : Searching for globals ... done [05:58:34.604] | : Resolving globals: FALSE [05:58:34.604] | : Search for packages associated with the globals ... [05:58:34.604] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:34.605] | : . Packages: [3] 'base', 'stats', 'datasets' [05:58:34.605] | : Search for packages associated with the globals ... done [05:58:34.605] | : Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:34.605] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:34.606] | : globals: [0] [05:58:34.606] | : packages: [2] 'stats', 'datasets' [05:58:34.606] | getGlobalsAndPackages() ... done [05:58:34.606] | run() for 'Future' () ... [05:58:34.607] | : state: 'created' [05:58:34.607] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.607] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.607] | : Using SequentialFutureBackend ... [05:58:34.607] | : . Number of futures since start: 10 (10 created, 10 launched, 10 finished) [05:58:34.607] | : . Launching futures ... [05:58:34.608] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.608] | : . ' , getFutureData() ... [05:58:34.608] | : . ' , ; getFutureCore() ... [05:58:34.608] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:34.608] | : . ' , ; getFutureCore() ... done [05:58:34.609] | : . ' , ; getFutureCapture() ... [05:58:34.609] | : . ' , ; getFutureCapture() ... done [05:58:34.609] | : . ' , ; getFutureContext() ... [05:58:34.609] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.609] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.609] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.610] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.610] | : . ' , ; getFutureContext() ... done [05:58:34.610] | : . ' , getFutureData() ... done [05:58:34.613] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.614] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.614] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.615] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.615] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.616] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.616] | : . ' , ; ` | New stack: [05:58:34.616] | : . ' , ; ` | List of 1 [05:58:34.616] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.616] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.616] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.616] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.616] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.616] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.616] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.616] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.623] | : . ' , ; ` | Old stack: [05:58:34.623] | : . ' , ; ` | List of 1 [05:58:34.623] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.623] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.623] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.623] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.623] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.623] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.623] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.623] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.623] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.623] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.623] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.634] | : . ' , ; ` | Not identical [05:58:34.634] | : . ' , ; ` | all.equal() for future ... [05:58:34.635] | : . ' , ; ` | : List of 2 [05:58:34.635] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.635] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.635] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.635] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.635] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.635] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.635] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.647] | : . ' , ; ` | all.equal() for future ... done [05:58:34.648] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.648] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.648] | : . ' , ; ` List of future strategies: [05:58:34.648] | : . ' , ; ` 1. sequential: [05:58:34.648] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.648] | : . ' , ; ` - tweaked: FALSE [05:58:34.648] | : . ' , ; ` - call: plan(sequential) [05:58:34.649] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.650] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.656] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.656] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.656] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.657] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.657] | : . ' , ; ` | : New stack: [05:58:34.657] | : . ' , ; ` | : List of 1 [05:58:34.657] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.657] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.657] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.657] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.657] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.657] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.662] | : . ' , ; ` | : Old stack: [05:58:34.663] | : . ' , ; ` | : List of 1 [05:58:34.663] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.663] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.663] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.663] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.663] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.663] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.667] | : . ' , ; ` | : Identical [05:58:34.667] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.668] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.668] | : . ' , ; ` | List of future strategies: [05:58:34.668] | : . ' , ; ` | 1. sequential: [05:58:34.668] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.668] | : . ' , ; ` | - tweaked: FALSE [05:58:34.668] | : . ' , ; ` | - call: plan(sequential) [05:58:34.668] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.669] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.669] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.669] | : . ' , SequentialFuture started (and completed) [05:58:34.669] | : . ' , signalConditions() ... [05:58:34.670] | : . ' , ; include = 'immediateCondition' [05:58:34.670] | : . ' , ; exclude = [05:58:34.670] | : . ' , ; resignal = FALSE [05:58:34.670] | : . ' , ; Number of conditions: 6 [05:58:34.670] | : . ' , ; int 6 [05:58:34.671] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.671] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.671] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.671] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.672] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.672] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.672] | : . ' , signalConditions() ... done [05:58:34.672] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.672] | : . Launching futures ... done [05:58:34.672] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.673] | : Using SequentialFutureBackend ... done [05:58:34.673] | run() for 'Future' () ... done [05:58:34.673] future(..., label = NULL) ... done [05:58:34.673] value() for SequentialFuture () ... [05:58:34.674] | signalConditions() ... [05:58:34.674] | : include = 'immediateCondition' [05:58:34.674] | : exclude = [05:58:34.675] | : resignal = FALSE [05:58:34.675] | : Number of conditions: 6 [05:58:34.675] | : int 6 [05:58:34.676] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.676] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.676] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.677] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.677] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.677] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.677] | signalConditions() ... done [05:58:34.678] | relay stdout ... [05:58:34.678] | relay stdout ... done [05:58:34.678] | check for misuse ... [05:58:34.679] | check for misuse ... done [05:58:34.679] | relay conditions ... [05:58:34.679] | : Future state: 'finished' [05:58:34.679] | : signalConditions() ... [05:58:34.680] | : . include = 'condition' [05:58:34.680] | : . exclude = 'immediateCondition' [05:58:34.680] | : . resignal = TRUE [05:58:34.680] | : . Number of conditions: 6 [05:58:34.681] | : . int 6 [05:58:34.681] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.682] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.610] | : . ' , attachPackages() ... [05:58:34.682] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.682] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.611] | : . ' , ; packages: [n=1] 'future' [05:58:34.683] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.683] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.611] | : . ' , attachPackages() ... done [05:58:34.683] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.683] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.611] | : . ' , attachPackages() ... [05:58:34.684] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.684] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.612] | : . ' , ; packages: [n=2] 'stats', 'datasets' [05:58:34.684] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.685] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.612] | : . ' , attachPackages() ... done [05:58:34.685] | : signalConditions() ... done [05:58:34.685] | relay conditions ... done [05:58:34.685] 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 [05:58:34.692] future(..., label = NULL) ... [05:58:34.692] | lazy: FALSE [05:58:34.692] | stdout: TRUE [05:58:34.692] | conditions: [n=1] 'condition' [05:58:34.693] | gc: FALSE [05:58:34.693] | earlySignal: FALSE [05:58:34.693] | getGlobalsAndPackages() ... [05:58:34.693] | : Searching for globals ... [05:58:34.719] | : . globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [05:58:34.719] | : Searching for globals ... done [05:58:34.719] | : Resolving globals: FALSE [05:58:34.720] | : Search for packages associated with the globals ... [05:58:34.720] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:34.721] | : . Packages: [3] 'base', 'stats', 'datasets' [05:58:34.721] | : Search for packages associated with the globals ... done [05:58:34.722] | : Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:34.722] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:34.722] | : globals: [0] [05:58:34.723] | : packages: [2] 'stats', 'datasets' [05:58:34.723] | getGlobalsAndPackages() ... done [05:58:34.723] | run() for 'Future' () ... [05:58:34.724] | : state: 'created' [05:58:34.724] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.724] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.724] | : Using SequentialFutureBackend ... [05:58:34.725] | : . Number of futures since start: 11 (11 created, 11 launched, 11 finished) [05:58:34.725] | : . Launching futures ... [05:58:34.726] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.726] | : . ' , getFutureData() ... [05:58:34.726] | : . ' , ; getFutureCore() ... [05:58:34.726] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:34.727] | : . ' , ; getFutureCore() ... done [05:58:34.727] | : . ' , ; getFutureCapture() ... [05:58:34.727] | : . ' , ; getFutureCapture() ... done [05:58:34.727] | : . ' , ; getFutureContext() ... [05:58:34.728] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.728] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.728] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.728] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.729] | : . ' , ; getFutureContext() ... done [05:58:34.729] | : . ' , getFutureData() ... done [05:58:34.732] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.732] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.733] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.733] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.733] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.734] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.734] | : . ' , ; ` | New stack: [05:58:34.734] | : . ' , ; ` | List of 1 [05:58:34.734] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.734] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.734] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.734] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.734] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.734] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.734] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.734] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.739] | : . ' , ; ` | Old stack: [05:58:34.740] | : . ' , ; ` | List of 1 [05:58:34.740] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.740] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.740] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.740] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.740] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.740] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.740] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.740] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.740] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.740] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.740] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.746] | : . ' , ; ` | Not identical [05:58:34.746] | : . ' , ; ` | all.equal() for future ... [05:58:34.746] | : . ' , ; ` | : List of 2 [05:58:34.746] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.746] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.746] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.746] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.746] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.746] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.746] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.757] | : . ' , ; ` | all.equal() for future ... done [05:58:34.757] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.758] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.758] | : . ' , ; ` List of future strategies: [05:58:34.758] | : . ' , ; ` 1. sequential: [05:58:34.758] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.758] | : . ' , ; ` - tweaked: FALSE [05:58:34.758] | : . ' , ; ` - call: plan(sequential) [05:58:34.759] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.759] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.764] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.765] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.765] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.765] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.765] | : . ' , ; ` | : New stack: [05:58:34.766] | : . ' , ; ` | : List of 1 [05:58:34.766] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.766] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.766] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.766] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.766] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.766] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.778] | : . ' , ; ` | : Old stack: [05:58:34.778] | : . ' , ; ` | : List of 1 [05:58:34.778] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.778] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.778] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.778] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.778] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.778] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.785] | : . ' , ; ` | : Identical [05:58:34.786] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.786] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.786] | : . ' , ; ` | List of future strategies: [05:58:34.786] | : . ' , ; ` | 1. sequential: [05:58:34.786] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.786] | : . ' , ; ` | - tweaked: FALSE [05:58:34.786] | : . ' , ; ` | - call: plan(sequential) [05:58:34.787] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.788] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.788] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.789] | : . ' , SequentialFuture started (and completed) [05:58:34.789] | : . ' , signalConditions() ... [05:58:34.789] | : . ' , ; include = 'immediateCondition' [05:58:34.790] | : . ' , ; exclude = [05:58:34.790] | : . ' , ; resignal = FALSE [05:58:34.790] | : . ' , ; Number of conditions: 6 [05:58:34.791] | : . ' , ; int 6 [05:58:34.792] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.792] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.792] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.792] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.793] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.793] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.793] | : . ' , signalConditions() ... done [05:58:34.794] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.794] | : . Launching futures ... done [05:58:34.794] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.795] | : Using SequentialFutureBackend ... done [05:58:34.795] | run() for 'Future' () ... done [05:58:34.795] future(..., label = NULL) ... done [05:58:34.796] value() for SequentialFuture () ... [05:58:34.796] | signalConditions() ... [05:58:34.796] | : include = 'immediateCondition' [05:58:34.797] | : exclude = [05:58:34.797] | : resignal = FALSE [05:58:34.797] | : Number of conditions: 6 [05:58:34.797] | : int 6 [05:58:34.799] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.799] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.799] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.799] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.800] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.800] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.800] | signalConditions() ... done [05:58:34.801] | relay stdout ... [05:58:34.801] | relay stdout ... done [05:58:34.801] | check for misuse ... [05:58:34.802] | check for misuse ... done [05:58:34.802] | relay conditions ... [05:58:34.802] | : Future state: 'finished' [05:58:34.803] | : signalConditions() ... [05:58:34.803] | : . include = 'condition' [05:58:34.803] | : . exclude = 'immediateCondition' [05:58:34.803] | : . resignal = TRUE [05:58:34.804] | : . Number of conditions: 6 [05:58:34.804] | : . int 6 [05:58:34.805] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.805] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.729] | : . ' , attachPackages() ... [05:58:34.805] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.806] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.730] | : . ' , ; packages: [n=1] 'future' [05:58:34.806] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.806] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.730] | : . ' , attachPackages() ... done [05:58:34.807] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.807] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.730] | : . ' , attachPackages() ... [05:58:34.808] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.808] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.731] | : . ' , ; packages: [n=2] 'stats', 'datasets' [05:58:34.808] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.808] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.731] | : . ' , attachPackages() ... done [05:58:34.809] | : signalConditions() ... done [05:58:34.809] | relay conditions ... done [05:58:34.809] 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) ... [05:58:34.813] future(..., label = NULL) ... [05:58:34.814] | lazy: FALSE [05:58:34.814] | stdout: TRUE [05:58:34.814] | conditions: [n=1] 'condition' [05:58:34.815] | gc: FALSE [05:58:34.815] | earlySignal: FALSE [05:58:34.815] | getGlobalsAndPackages() ... [05:58:34.815] | : Searching for globals ... [05:58:34.891] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [05:58:34.892] | : Searching for globals ... done [05:58:34.892] | : Resolving globals: FALSE [05:58:34.892] | : Search for packages associated with the globals ... [05:58:34.893] | : . Packages associated with globals: [1] 'base' [05:58:34.894] | : . Packages: [1] 'base' [05:58:34.894] | : Search for packages associated with the globals ... done [05:58:34.894] | : Packages after dropping 'base': [0] [05:58:34.895] | : globals: [3] 'outer_function', 'map', 'inner_function' [05:58:34.895] | : packages: [0] [05:58:34.895] | getGlobalsAndPackages() ... done [05:58:34.896] | run() for 'Future' () ... [05:58:34.896] | : state: 'created' [05:58:34.896] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.896] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.897] | : Using SequentialFutureBackend ... [05:58:34.897] | : . Number of futures since start: 12 (12 created, 12 launched, 12 finished) [05:58:34.897] | : . Launching futures ... [05:58:34.898] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:34.898] | : . ' , getFutureData() ... [05:58:34.898] | : . ' , ; getFutureCore() ... [05:58:34.898] | : . ' , ; ` Packages needed by the future expression (n = 0): [05:58:34.899] | : . ' , ; getFutureCore() ... done [05:58:34.899] | : . ' , ; getFutureCapture() ... [05:58:34.899] | : . ' , ; getFutureCapture() ... done [05:58:34.899] | : . ' , ; getFutureContext() ... [05:58:34.899] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.900] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:34.900] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.900] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:34.900] | : . ' , ; getFutureContext() ... done [05:58:34.900] | : . ' , getFutureData() ... done [05:58:34.904] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:34.904] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:34.904] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:34.905] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.905] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.906] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:34.906] | : . ' , ; ` | New stack: [05:58:34.906] | : . ' , ; ` | List of 1 [05:58:34.906] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.906] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.906] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:34.906] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.906] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.906] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.906] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.906] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.912] | : . ' , ; ` | Old stack: [05:58:34.913] | : . ' , ; ` | List of 1 [05:58:34.913] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.913] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.913] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:34.913] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.913] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.913] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.913] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:34.913] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.913] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.913] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.913] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.920] | : . ' , ; ` | Not identical [05:58:34.923] | : . ' , ; ` | all.equal() for future ... [05:58:34.923] | : . ' , ; ` | : List of 2 [05:58:34.923] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.923] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:34.923] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.923] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.923] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.923] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.923] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.930] | : . ' , ; ` | all.equal() for future ... done [05:58:34.930] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:34.931] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.931] | : . ' , ; ` List of future strategies: [05:58:34.931] | : . ' , ; ` 1. sequential: [05:58:34.931] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.931] | : . ' , ; ` - tweaked: FALSE [05:58:34.931] | : . ' , ; ` - call: plan(sequential) [05:58:34.932] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.932] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.932] | : . ' , assign_globals() ... [05:58:34.932] | : . ' , List of 3 [05:58:34.932] | : . ' , $ outer_function:function (x) [05:58:34.932] | : . ' , $ map :function (.x, .f, ...) [05:58:34.932] | : . ' , $ inner_function:function (x) [05:58:34.932] | : . ' , - attr(*, "where")=List of 3 [05:58:34.932] | : . ' , ..$ outer_function: [05:58:34.932] | : . ' , ..$ map : [05:58:34.932] | : . ' , ..$ inner_function: [05:58:34.932] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:34.932] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:34.932] | : . ' , - attr(*, "total_size")= num NA [05:58:34.932] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:34.937] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [05:58:34.937] | : . ' , - copied 'outer_function' to environment [05:58:34.937] | : . ' , - reassign environment for 'map' [where=globalenv()] [05:58:34.937] | : . ' , - copied 'map' to environment [05:58:34.937] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [05:58:34.938] | : . ' , - copied 'inner_function' to environment [05:58:34.938] | : . ' , assign_globals() ... done [05:58:34.946] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.946] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:34.946] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:34.947] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:34.947] | : . ' , ; ` | : New stack: [05:58:34.947] | : . ' , ; ` | : List of 1 [05:58:34.947] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.947] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.947] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.947] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.947] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.947] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.952] | : . ' , ; ` | : Old stack: [05:58:34.952] | : . ' , ; ` | : List of 1 [05:58:34.952] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.952] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:34.952] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:34.952] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:34.952] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:34.952] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:34.956] | : . ' , ; ` | : Identical [05:58:34.956] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:34.956] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:34.957] | : . ' , ; ` | List of future strategies: [05:58:34.957] | : . ' , ; ` | 1. sequential: [05:58:34.957] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:34.957] | : . ' , ; ` | - tweaked: FALSE [05:58:34.957] | : . ' , ; ` | - call: plan(sequential) [05:58:34.957] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:34.957] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.958] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:34.958] | : . ' , SequentialFuture started (and completed) [05:58:34.959] | : . ' , signalConditions() ... [05:58:34.959] | : . ' , ; include = 'immediateCondition' [05:58:34.959] | : . ' , ; exclude = [05:58:34.959] | : . ' , ; resignal = FALSE [05:58:34.959] | : . ' , ; Number of conditions: 6 [05:58:34.959] | : . ' , ; int 6 [05:58:34.960] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.960] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.960] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.961] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.961] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.961] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.961] | : . ' , signalConditions() ... done [05:58:34.961] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:34.961] | : . Launching futures ... done [05:58:34.962] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:34.962] | : Using SequentialFutureBackend ... done [05:58:34.962] | run() for 'Future' () ... done [05:58:34.962] future(..., label = NULL) ... done [05:58:34.962] value() for SequentialFuture () ... [05:58:34.963] | signalConditions() ... [05:58:34.963] | : include = 'immediateCondition' [05:58:34.963] | : exclude = [05:58:34.963] | : resignal = FALSE [05:58:34.963] | : Number of conditions: 6 [05:58:34.963] | : int 6 [05:58:34.964] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.964] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.964] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.965] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.965] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.965] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.965] | signalConditions() ... done [05:58:34.965] | relay stdout ... [05:58:34.965] | relay stdout ... done [05:58:34.966] | check for misuse ... [05:58:34.966] | check for misuse ... done [05:58:34.966] | relay conditions ... [05:58:34.966] | : Future state: 'finished' [05:58:34.966] | : signalConditions() ... [05:58:34.967] | : . include = 'condition' [05:58:34.967] | : . exclude = 'immediateCondition' [05:58:34.967] | : . resignal = TRUE [05:58:34.967] | : . Number of conditions: 6 [05:58:34.967] | : . int 6 [05:58:34.968] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.968] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:34.901] | : . ' , attachPackages() ... [05:58:34.968] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.968] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:34.901] | : . ' , ; packages: [n=1] 'future' [05:58:34.969] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.969] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:34.902] | : . ' , attachPackages() ... done [05:58:34.969] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.969] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:34.902] | : . ' , attachPackages() ... [05:58:34.969] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.970] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:34.902] | : . ' , ; packages: [n=0] [05:58:34.970] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:34.970] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:34.903] | : . ' , attachPackages() ... done [05:58:34.970] | : signalConditions() ... done [05:58:34.970] | relay conditions ... done [05:58:34.971] value() for SequentialFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [05:58:34.973] future(..., label = NULL) ... [05:58:34.973] | lazy: FALSE [05:58:34.973] | stdout: TRUE [05:58:34.974] | conditions: [n=1] 'condition' [05:58:34.974] | gc: FALSE [05:58:34.974] | earlySignal: FALSE [05:58:34.974] | getGlobalsAndPackages() ... [05:58:34.975] | : Searching for globals ... [05:58:35.044] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [05:58:35.044] | : Searching for globals ... done [05:58:35.045] | : Resolving globals: FALSE [05:58:35.045] | : Search for packages associated with the globals ... [05:58:35.046] | : . Packages associated with globals: [1] 'base' [05:58:35.046] | : . Packages: [1] 'base' [05:58:35.047] | : Search for packages associated with the globals ... done [05:58:35.047] | : Packages after dropping 'base': [0] [05:58:35.047] | : globals: [3] 'outer_function', 'map', 'inner_function' [05:58:35.048] | : packages: [0] [05:58:35.048] | getGlobalsAndPackages() ... done [05:58:35.048] | run() for 'Future' () ... [05:58:35.049] | : state: 'created' [05:58:35.049] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:35.049] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:35.050] | : Using SequentialFutureBackend ... [05:58:35.050] | : . Number of futures since start: 13 (13 created, 13 launched, 13 finished) [05:58:35.050] | : . Launching futures ... [05:58:35.051] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [05:58:35.051] | : . ' , getFutureData() ... [05:58:35.051] | : . ' , ; getFutureCore() ... [05:58:35.051] | : . ' , ; ` Packages needed by the future expression (n = 0): [05:58:35.051] | : . ' , ; getFutureCore() ... done [05:58:35.052] | : . ' , ; getFutureCapture() ... [05:58:35.052] | : . ' , ; getFutureCapture() ... done [05:58:35.052] | : . ' , ; getFutureContext() ... [05:58:35.053] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:35.053] | : . ' , ; ` | Getting stack without first backend: [n=0] [05:58:35.053] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:35.053] | : . ' , ; ` Packages needed by future backend (n = 0): [05:58:35.054] | : . ' , ; getFutureContext() ... done [05:58:35.054] | : . ' , getFutureData() ... done [05:58:35.057] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:35.057] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [05:58:35.057] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:35.057] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:35.058] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:35.058] | : . ' , ; ` all.equal() for FutureStrategyList ... [05:58:35.058] | : . ' , ; ` | New stack: [05:58:35.059] | : . ' , ; ` | List of 1 [05:58:35.059] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.059] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.059] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [05:58:35.059] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.059] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.059] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.059] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:35.059] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.063] | : . ' , ; ` | Old stack: [05:58:35.063] | : . ' , ; ` | List of 1 [05:58:35.063] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.063] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.063] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [05:58:35.063] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.063] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.063] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.063] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [05:58:35.063] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.063] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.063] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.063] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.070] | : . ' , ; ` | Not identical [05:58:35.070] | : . ' , ; ` | all.equal() for future ... [05:58:35.070] | : . ' , ; ` | : List of 2 [05:58:35.070] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.070] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [05:58:35.070] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.070] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:35.070] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.070] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.070] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.082] | : . ' , ; ` | all.equal() for future ... done [05:58:35.082] | : . ' , ; ` all.equal() for FutureStrategyList ... done [05:58:35.083] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:35.083] | : . ' , ; ` List of future strategies: [05:58:35.083] | : . ' , ; ` 1. sequential: [05:58:35.083] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:35.083] | : . ' , ; ` - tweaked: FALSE [05:58:35.083] | : . ' , ; ` - call: plan(sequential) [05:58:35.084] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:35.084] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:35.085] | : . ' , assign_globals() ... [05:58:35.085] | : . ' , List of 3 [05:58:35.085] | : . ' , $ outer_function:function (x) [05:58:35.085] | : . ' , $ map :function (.x, .f, ...) [05:58:35.085] | : . ' , $ inner_function:function (x) [05:58:35.085] | : . ' , - attr(*, "where")=List of 3 [05:58:35.085] | : . ' , ..$ outer_function: [05:58:35.085] | : . ' , ..$ map : [05:58:35.085] | : . ' , ..$ inner_function: [05:58:35.085] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [05:58:35.085] | : . ' , - attr(*, "resolved")= logi FALSE [05:58:35.085] | : . ' , - attr(*, "total_size")= num NA [05:58:35.085] | : . ' , - attr(*, "already-done")= logi TRUE [05:58:35.092] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [05:58:35.093] | : . ' , - copied 'outer_function' to environment [05:58:35.093] | : . ' , - reassign environment for 'map' [where=globalenv()] [05:58:35.093] | : . ' , - copied 'map' to environment [05:58:35.094] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [05:58:35.094] | : . ' , - copied 'inner_function' to environment [05:58:35.094] | : . ' , assign_globals() ... done [05:58:35.098] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:35.099] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [05:58:35.099] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [05:58:35.100] | : . ' , ; ` | all.equal() for FutureStrategyList ... [05:58:35.100] | : . ' , ; ` | : New stack: [05:58:35.100] | : . ' , ; ` | : List of 1 [05:58:35.100] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.100] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:35.100] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.100] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.100] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.100] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.107] | : . ' , ; ` | : Old stack: [05:58:35.107] | : . ' , ; ` | : List of 1 [05:58:35.107] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.107] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [05:58:35.107] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.107] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.107] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.107] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.113] | : . ' , ; ` | : Identical [05:58:35.113] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [05:58:35.114] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [05:58:35.114] | : . ' , ; ` | List of future strategies: [05:58:35.114] | : . ' , ; ` | 1. sequential: [05:58:35.114] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [05:58:35.114] | : . ' , ; ` | - tweaked: FALSE [05:58:35.114] | : . ' , ; ` | - call: plan(sequential) [05:58:35.115] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [05:58:35.115] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:35.115] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [05:58:35.116] | : . ' , SequentialFuture started (and completed) [05:58:35.116] | : . ' , signalConditions() ... [05:58:35.117] | : . ' , ; include = 'immediateCondition' [05:58:35.117] | : . ' , ; exclude = [05:58:35.117] | : . ' , ; resignal = FALSE [05:58:35.117] | : . ' , ; Number of conditions: 6 [05:58:35.118] | : . ' , ; int 6 [05:58:35.118] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.119] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.119] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.119] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.120] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.120] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.120] | : . ' , signalConditions() ... done [05:58:35.120] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [05:58:35.121] | : . Launching futures ... done [05:58:35.121] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [05:58:35.121] | : Using SequentialFutureBackend ... done [05:58:35.122] | run() for 'Future' () ... done [05:58:35.122] future(..., label = NULL) ... done [05:58:35.122] value() for SequentialFuture () ... [05:58:35.122] | signalConditions() ... [05:58:35.123] | : include = 'immediateCondition' [05:58:35.123] | : exclude = [05:58:35.123] | : resignal = FALSE [05:58:35.123] | : Number of conditions: 6 [05:58:35.124] | : int 6 [05:58:35.125] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.125] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.125] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.125] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.126] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.126] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.126] | signalConditions() ... done [05:58:35.126] | relay stdout ... [05:58:35.127] | relay stdout ... done [05:58:35.127] | check for misuse ... [05:58:35.127] | check for misuse ... done [05:58:35.127] | relay conditions ... [05:58:35.128] | : Future state: 'finished' [05:58:35.128] | : signalConditions() ... [05:58:35.128] | : . include = 'condition' [05:58:35.129] | : . exclude = 'immediateCondition' [05:58:35.129] | : . resignal = TRUE [05:58:35.129] | : . Number of conditions: 6 [05:58:35.129] | : . int 6 [05:58:35.130] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.130] | : . Condition #1: 'simpleMessage', 'message', 'condition' [05:58:35.054] | : . ' , attachPackages() ... [05:58:35.131] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.131] | : . Condition #2: 'simpleMessage', 'message', 'condition' [05:58:35.055] | : . ' , ; packages: [n=1] 'future' [05:58:35.131] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.132] | : . Condition #3: 'simpleMessage', 'message', 'condition' [05:58:35.055] | : . ' , attachPackages() ... done [05:58:35.132] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.132] | : . Condition #4: 'simpleMessage', 'message', 'condition' [05:58:35.055] | : . ' , attachPackages() ... [05:58:35.133] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.133] | : . Condition #5: 'simpleMessage', 'message', 'condition' [05:58:35.056] | : . ' , ; packages: [n=0] [05:58:35.133] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [05:58:35.133] | : . Condition #6: 'simpleMessage', 'message', 'condition' [05:58:35.056] | : . ' , attachPackages() ... done [05:58:35.134] | : signalConditions() ... done [05:58:35.134] | relay conditions ... done [05:58:35.134] 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') ... [05:58:35.140] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:35.140] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [05:58:35.141] | : all.equal() for FutureStrategyList ... [05:58:35.141] | : . New stack: [05:58:35.141] | : . List of 1 [05:58:35.141] | : . $ :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [05:58:35.141] | : . gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.141] | : . ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [05:58:35.141] | : . ..- attr(*, "init")= logi TRUE [05:58:35.141] | : . ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [05:58:35.141] | : . gc = FALSE, earlySignal = FALSE, ...) [05:58:35.141] | : . .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.141] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.141] | : . ..- attr(*, "untweakable")= chr "persistent" [05:58:35.141] | : . ..- attr(*, "call")= language plan(strategy) [05:58:35.141] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.147] | : . Old stack: [05:58:35.147] | : . List of 1 [05:58:35.147] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.147] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.147] | : . ..- attr(*, "init")= chr "done" [05:58:35.147] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.147] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.147] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.147] | : . ..- attr(*, "call")= language plan(sequential) [05:58:35.147] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.147] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.147] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.147] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.154] | : . Not identical [05:58:35.154] | : . all.equal() for future ... [05:58:35.154] | : . ' List of 2 [05:58:35.154] | : . ' $ target :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [05:58:35.154] | : . ' gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.154] | : . ' ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [05:58:35.154] | : . ' ..- attr(*, "init")= logi TRUE [05:58:35.154] | : . ' ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [05:58:35.154] | : . ' gc = FALSE, earlySignal = FALSE, ...) [05:58:35.154] | : . ' .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.154] | : . ' ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.154] | : . ' ..- attr(*, "untweakable")= chr "persistent" [05:58:35.154] | : . ' ..- attr(*, "call")= language plan(strategy) [05:58:35.154] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.154] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [05:58:35.154] | : . ' ..- attr(*, "init")= chr "done" [05:58:35.154] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.154] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.154] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.154] | : . ' ..- attr(*, "call")= language plan(sequential) [05:58:35.154] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [05:58:35.154] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [05:58:35.154] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [05:58:35.165] | : . ' Formals differ [05:58:35.165] | : . all.equal() for future ... done [05:58:35.165] | : . Future strategies differ at level 1 [05:58:35.165] | : all.equal() for FutureStrategyList ... done [05:58:35.166] | : plan(): Setting new future backend stack: [05:58:35.166] | : List of future strategies: [05:58:35.166] | : 1. multisession: [05:58:35.166] | : - args: function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.166] | : - tweaked: FALSE [05:58:35.166] | : - call: plan(strategy) [05:58:35.166] | : List of 1 [05:58:35.166] | : $ :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [05:58:35.166] | : gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.166] | : ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [05:58:35.166] | : ..- attr(*, "init")= logi TRUE [05:58:35.166] | : ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [05:58:35.166] | : gc = FALSE, earlySignal = FALSE, ...) [05:58:35.166] | : .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.166] | : ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.166] | : ..- attr(*, "untweakable")= chr "persistent" [05:58:35.166] | : ..- attr(*, "call")= language plan(strategy) [05:58:35.166] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [05:58:35.172] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [05:58:35.172] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:35.172] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [05:58:35.172] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:35.173] | : . Legacy shutdown of cluster workers ... [05:58:35.173] | : . ' Stopping existing cluster ... [05:58:35.174] | : . ' , No pre-existing cluster. Skipping [05:58:35.174] | : . ' Stopping existing cluster ... done [05:58:35.174] | : . Legacy shutdown of cluster workers ... done [05:58:35.174] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [05:58:35.175] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... [05:58:35.178] | : . function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [05:58:35.178] | : . gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [05:58:35.178] | : . - attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [05:58:35.178] | : . - attr(*, "init")= logi TRUE [05:58:35.178] | : . - attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [05:58:35.178] | : . gc = FALSE, earlySignal = FALSE, ...) [05:58:35.178] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.178] | : . - attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [05:58:35.178] | : . - attr(*, "untweakable")= chr "persistent" [05:58:35.178] | : . - attr(*, "call")= language plan(strategy) [05:58:35.183] | : . init: TRUE [05:58:35.183] | : . makeFutureBackend() ... [05:58:35.183] | : . ' Backend function: <'NULL'> [05:58:35.184] | : . ' Evaluator tweak arguments: [n=0] [05:58:35.184] | : . ' list() [05:58:35.184] | : . ' Evaluator formal arguments: [n=4] [05:58:35.185] | : . ' list() [05:58:35.185] | : . ' Backend factory arguments: [n=4] [05:58:35.185] | : . ' Dotted pair list of 4 [05:58:35.185] | : . ' $ workers : language availableCores() [05:58:35.185] | : . ' $ rscript_libs: language .libPaths() [05:58:35.185] | : . ' $ gc : logi FALSE [05:58:35.185] | : . ' $ earlySignal : logi FALSE [05:58:35.188] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... [05:58:35.188] | : . ' , Arguments: [05:58:35.189] | : . ' , List of 5 [05:58:35.189] | : . ' , $ workers : Named int 2 [05:58:35.189] | : . ' , ..- attr(*, "names")= chr "mc.cores" [05:58:35.189] | : . ' , $ rscript_libs: chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [05:58:35.189] | : . ' , $ interrupts : logi TRUE [05:58:35.189] | : . ' , $ gc : logi FALSE [05:58:35.189] | : . ' , $ earlySignal : logi FALSE [05:58:35.196] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... [05:58:35.196] | : . ' , ; workers: 2 [05:58:35.196] | : . ' , ; getCluster() ... [05:58:35.196] | : . ' , ; getCluster() ... done [05:58:35.197] | : . ' , ; Stopping existing cluster ... [05:58:35.197] | : . ' , ; ` No pre-existing cluster. Skipping [05:58:35.197] | : . ' , ; Stopping existing cluster ... done [05:58:35.198] | : . ' , ; Starting new cluster ... [05:58:35.198] | : . ' , ; ` makeCluster(workers, ...) ... [05:58:35.198] | : . ' , ; ` | Arguments: [05:58:35.198] | : . ' , ; ` | List of 2 [05:58:35.198] | : . ' , ; ` | $ : int 2 [05:58:35.198] | : . ' , ; ` | $ rscript_libs: chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [05:58:35.200] | : . ' , ; ` | .makeCluster() ... [05:58:35.200] | : . ' , ; ` | : workers: '2' [05:58:35.201] | : . ' , ; ` | : R_FUTURE_PLAN: NA [05:58:35.201] | : . ' , ; ` | : parallelly::makeClusterPSOCK() arguments: [05:58:35.201] | : . ' , ; ` | : List of 2 [05:58:35.201] | : . ' , ; ` | : $ : int 2 [05:58:35.201] | : . ' , ; ` | : $ rscript_libs: chr [1:2] "D:/temp/2025_06_05_05_55_16_20588/RtmpCKyFxh/RLIBS_1418c4def7e89" "D:/RCompile/recent/R/library" [05:58:36.028] | : . ' , ; ` | : Generated cluster UUID [05:58:36.028] | : . ' , ; ` | : Cluster UUID: 'c4fe10913b20251b5772632d40937f42' [05:58:36.029] | : . ' , ; ` | : Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.032] | : . ' , ; ` | .makeCluster() ... done [05:58:36.033] | : . ' , ; ` | Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.035] | : . ' , ; ` makeCluster(workers, ...) ... done [05:58:36.036] | : . ' , ; ` Number of workers: 2 [05:58:36.036] | : . ' , ; ` Workers UUID: 'c4fe10913b20251b5772632d40937f42' [05:58:36.036] | : . ' , ; Starting new cluster ... done [05:58:36.037] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... done [05:58:36.037] | : . ' , Backend: <'MultisessionFutureBackend', 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [05:58:36.037] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... done [05:58:36.037] | : . makeFutureBackend() ... done [05:58:36.038] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.038] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.038] | : . plan(): nbrOfWorkers() = 2 [05:58:36.039] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... done [05:58:36.039] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done - lm() ... [05:58:36.039] | future(..., label = NULL) ... [05:58:36.039] | : lazy: FALSE [05:58:36.040] | : stdout: TRUE [05:58:36.040] | : conditions: [n=1] 'condition' [05:58:36.040] | : gc: FALSE [05:58:36.040] | : earlySignal: FALSE [05:58:36.041] | : getGlobalsAndPackages() ... [05:58:36.041] | : . Searching for globals ... [05:58:36.058] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:36.058] | : . Searching for globals ... done [05:58:36.058] | : . Resolving globals: FALSE [05:58:36.058] | : . Search for packages associated with the globals ... [05:58:36.059] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:36.059] | : . ' Packages: [2] 'base', 'stats' [05:58:36.059] | : . Search for packages associated with the globals ... done [05:58:36.060] | : . Packages after dropping 'base': [1] 'stats' [05:58:36.060] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:36.060] | : . globals: [2] 'weight', 'group' [05:58:36.060] | : . packages: [1] 'stats' [05:58:36.060] | : getGlobalsAndPackages() ... done [05:58:36.061] | : run() for 'Future' () ... [05:58:36.061] | : . state: 'created' [05:58:36.061] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.061] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.061] | : . Using MultisessionFutureBackend ... [05:58:36.062] | : . ' Number of futures since start: 0 (0 created, 0 launched, 0 finished) [05:58:36.062] | : . ' Launching futures ... [05:58:36.062] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:36.062] | : . ' , ; Workers: [n=2] [05:58:36.063] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.065] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:36.065] | : . ' , ; requestWorker() ... [05:58:36.065] | : . ' , ; ` requestNode() ... [05:58:36.065] | : . ' , ; ` | Number of workers: 2 [05:58:36.066] | : . ' , ; ` | Polling for a free worker ... [05:58:36.066] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.066] | : . ' , ; ` | : . Created empty registry 'workers-c4fe10913b20251b5772632d40937f42' [05:58:36.066] | : . ' , ; ` | : . Listing all futures [05:58:36.067] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.067] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.067] | : . ' , ; ` | : Total time: 0 [05:58:36.067] | : . ' , ; ` | Polling for a free worker ... done [05:58:36.068] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.068] | : . ' , ; ` | : Listing all futures [05:58:36.068] | : . ' , ; ` | : Number of registered futures: 0 [05:58:36.069] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.069] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:36.069] | : . ' , ; ` | Index of first available worker: 1 [05:58:36.069] | : . ' , ; ` | Validate that the worker is functional ... [05:58:36.264] | : . ' , ; ` | : Worker is functional [05:58:36.264] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.264] | : . ' , ; ` | : . Listing all futures [05:58:36.265] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.265] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.265] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:36.266] | : . ' , ; ` requestNode() ... done [05:58:36.266] | : . ' , ; ` cluster node index: 1 [05:58:36.266] | : . ' , ; requestWorker() ... done [05:58:36.267] | : . ' , ; eraseGlobalEnvironment() ... [05:58:36.268] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:36.268] | : . ' , ; launchFuture() ... [05:58:36.268] | : . ' , ; ` cluster node index: 1 [05:58:36.268] | : . ' , ; ` getFutureData() ... [05:58:36.269] | : . ' , ; ` | getFutureCore() ... [05:58:36.269] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:36.269] | : . ' , ; ` | getFutureCore() ... done [05:58:36.270] | : . ' , ; ` | getFutureCapture() ... [05:58:36.270] | : . ' , ; ` | getFutureCapture() ... done [05:58:36.270] | : . ' , ; ` | getFutureContext() ... [05:58:36.270] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.271] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:36.271] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.271] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:36.271] | : . ' , ; ` | getFutureContext() ... done [05:58:36.272] | : . ' , ; ` getFutureData() ... done [05:58:36.273] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:36.273] | : . ' , ; ` | Appended future to position #1 [05:58:36.273] | : . ' , ; ` | Number of registered futures: 1 [05:58:36.273] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:36.274] | : . ' , ; launchFuture() ... done [05:58:36.274] | : . ' , ; MultisessionFuture started [05:58:36.274] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:36.274] | : . ' Launching futures ... done [05:58:36.274] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:36.275] | : . Using MultisessionFutureBackend ... done [05:58:36.275] | : run() for 'Future' () ... done [05:58:36.275] | future(..., label = NULL) ... done [05:58:36.275] | value() for MultisessionFuture () ... [05:58:36.276] | : result() for ClusterFuture ... [05:58:36.276] | : . assertValidConnection() ... [05:58:36.277] | : . ' cluster node index: 1 [05:58:36.277] | : . assertValidConnection() ... done [05:58:36.278] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:36.278] | : . ' cluster node index: 1 [05:58:36.378] | : . ' [1] TRUE [05:58:36.378] | : . ' received data: [05:58:36.379] | : . ' List of 5 [05:58:36.379] | : . ' $ type : chr "VALUE" [05:58:36.379] | : . ' $ value :List of 16 [05:58:36.379] | : . ' ..$ value :List of 13 [05:58:36.379] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [05:58:36.379] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [05:58:36.379] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [05:58:36.379] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.379] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [05:58:36.379] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [05:58:36.379] | : . ' .. ..$ rank : int 2 [05:58:36.379] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [05:58:36.379] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.379] | : . ' .. ..$ assign : int [1:2] 1 1 [05:58:36.379] | : . ' .. ..$ qr :List of 5 [05:58:36.379] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [05:58:36.379] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.379] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [05:58:36.379] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [05:58:36.379] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [05:58:36.379] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [05:58:36.379] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [05:58:36.379] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [05:58:36.379] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:36.379] | : . ' .. .. ..$ tol : num 1e-07 [05:58:36.379] | : . ' .. .. ..$ rank : int 2 [05:58:36.379] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:36.379] | : . ' .. ..$ df.residual : int 18 [05:58:36.379] | : . ' .. ..$ contrasts :List of 1 [05:58:36.379] | : . ' .. .. ..$ group: chr "contr.treatment" [05:58:36.379] | : . ' .. ..$ xlevels :List of 1 [05:58:36.379] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [05:58:36.379] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [05:58:36.379] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.379] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.379] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.379] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.379] | : . ' .. .. .. .. .. ..$ : chr "group" [05:58:36.379] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.379] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:36.379] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.379] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:36.379] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:36.379] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.379] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.379] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [05:58:36.379] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:36.379] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:36.379] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.379] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.379] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.379] | : . ' .. .. .. .. .. .. ..$ : chr "group" [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.379] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.379] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.379] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:36.379] | : . ' ..$ visible : logi TRUE [05:58:36.379] | : . ' ..$ stdout : chr "" [05:58:36.379] | : . ' ..$ conditions : list() [05:58:36.379] | : . ' ..$ rng : logi FALSE [05:58:36.379] | : . ' ..$ seed : NULL [05:58:36.379] | : . ' ..$ misuseGlobalEnv : NULL [05:58:36.379] | : . ' ..$ misuseConnections :List of 3 [05:58:36.379] | : . ' .. ..$ added : NULL [05:58:36.379] | : . ' .. ..$ removed : NULL [05:58:36.379] | : . ' .. ..$ replaced: NULL [05:58:36.379] | : . ' ..$ misuseDevices : NULL [05:58:36.379] | : . ' ..$ misuseDefaultDevice: list() [05:58:36.379] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.379] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.379] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "15" [05:58:36.379] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:36.379] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:36.379] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:36.379] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:36.379] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:36.379] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:36.379] | : . ' .. .. ..$ pid : int 148948 [05:58:36.379] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.379] | : . ' .. .. ..$ random: int 2147483647 [05:58:36.379] | : . ' ..$ r_info :List of 4 [05:58:36.379] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:36.379] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:36.379] | : . ' .. ..$ os : chr "windows" [05:58:36.379] | : . ' .. ..$ os_name : chr "Windows" [05:58:36.379] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:36.379] | : . ' ..$ version : chr "1.8" [05:58:36.379] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:36.379] | : . ' $ success: logi TRUE [05:58:36.379] | : . ' $ time : 'proc_time' Named num [1:5] 0.11 0 0.11 NA NA [05:58:36.379] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:36.379] | : . ' $ tag : NULL [05:58:36.436] | : . ' Received FutureResult [05:58:36.437] | : . ' FutureResult: [05:58:36.437] | : . ' value: 'lm' [05:58:36.437] | : . ' visible: TRUE [05:58:36.437] | : . ' stdout: character [05:58:36.437] | : . ' conditions: [n = 0] [05:58:36.437] | : . ' RNG used: FALSE [05:58:36.437] | : . ' duration: 0.09881306 secs (started 2025-06-05 05:58:36.275058) [05:58:36.437] | : . ' version: 1.8 [05:58:36.438] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:36.438] | : . ' , Removed future from position #1 [05:58:36.438] | : . ' , Number of registered futures: 0 [05:58:36.439] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:36.439] | : . ' Erased future from future backend [05:58:36.439] | : . ' result() for ClusterFuture ... [05:58:36.439] | : . ' , result already collected: FutureResult [05:58:36.440] | : . ' result() for ClusterFuture ... done [05:58:36.440] | : . ' signalConditions() ... [05:58:36.440] | : . ' , include = 'immediateCondition' [05:58:36.440] | : . ' , exclude = [05:58:36.441] | : . ' , resignal = FALSE [05:58:36.441] | : . ' , Number of conditions: 0 [05:58:36.441] | : . ' , int 0 [05:58:36.442] | : . ' signalConditions() ... done [05:58:36.442] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:36.442] | : result() for ClusterFuture ... done [05:58:36.442] | : result() for ClusterFuture ... [05:58:36.443] | : . result already collected: FutureResult [05:58:36.443] | : result() for ClusterFuture ... done [05:58:36.443] | : signalConditions() ... [05:58:36.443] | : . include = 'immediateCondition' [05:58:36.444] | : . exclude = [05:58:36.444] | : . resignal = FALSE [05:58:36.444] | : . Number of conditions: 0 [05:58:36.444] | : . int 0 [05:58:36.445] | : signalConditions() ... done [05:58:36.445] | : relay stdout ... [05:58:36.445] | : relay stdout ... done [05:58:36.446] | : check for misuse ... [05:58:36.446] | : check for misuse ... done [05:58:36.446] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:36.449] | future(..., label = NULL) ... [05:58:36.449] | : lazy: TRUE [05:58:36.449] | : stdout: TRUE [05:58:36.449] | : conditions: [n=1] 'condition' [05:58:36.450] | : gc: FALSE [05:58:36.450] | : earlySignal: FALSE [05:58:36.450] | : getGlobalsAndPackages() ... [05:58:36.450] | : . Searching for globals ... [05:58:36.471] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:36.471] | : . Searching for globals ... done [05:58:36.472] | : . Resolving globals: FALSE [05:58:36.472] | : . Search for packages associated with the globals ... [05:58:36.472] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:36.473] | : . ' Packages: [2] 'base', 'stats' [05:58:36.473] | : . Search for packages associated with the globals ... done [05:58:36.474] | : . Packages after dropping 'base': [1] 'stats' [05:58:36.474] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:36.474] | : . globals: [2] 'weight', 'group' [05:58:36.475] | : . packages: [1] 'stats' [05:58:36.475] | : getGlobalsAndPackages() ... done [05:58:36.476] | future(..., label = NULL) ... done [05:58:36.476] | value() for Future () ... [05:58:36.476] | : run() for 'Future' () ... [05:58:36.477] | : . state: 'created' [05:58:36.477] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.477] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.478] | : . Using MultisessionFutureBackend ... [05:58:36.478] | : . ' Number of futures since start: 1 (1 created, 1 launched, 1 finished) [05:58:36.478] | : . ' Launching futures ... [05:58:36.479] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:36.479] | : . ' , ; Workers: [n=2] [05:58:36.479] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.483] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:36.484] | : . ' , ; requestWorker() ... [05:58:36.484] | : . ' , ; ` requestNode() ... [05:58:36.484] | : . ' , ; ` | Number of workers: 2 [05:58:36.484] | : . ' , ; ` | Polling for a free worker ... [05:58:36.485] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.485] | : . ' , ; ` | : . Listing all futures [05:58:36.485] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.486] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.486] | : . ' , ; ` | : Total time: 0 [05:58:36.486] | : . ' , ; ` | Polling for a free worker ... done [05:58:36.487] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.487] | : . ' , ; ` | : Listing all futures [05:58:36.487] | : . ' , ; ` | : Number of registered futures: 0 [05:58:36.487] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.488] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:36.488] | : . ' , ; ` | Index of first available worker: 1 [05:58:36.488] | : . ' , ; ` | Validate that the worker is functional ... [05:58:36.570] | : . ' , ; ` | : Worker is functional [05:58:36.570] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.571] | : . ' , ; ` | : . Listing all futures [05:58:36.571] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.571] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.572] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:36.572] | : . ' , ; ` requestNode() ... done [05:58:36.572] | : . ' , ; ` cluster node index: 1 [05:58:36.573] | : . ' , ; requestWorker() ... done [05:58:36.573] | : . ' , ; eraseGlobalEnvironment() ... [05:58:36.574] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:36.574] | : . ' , ; launchFuture() ... [05:58:36.575] | : . ' , ; ` cluster node index: 1 [05:58:36.575] | : . ' , ; ` getFutureData() ... [05:58:36.576] | : . ' , ; ` | getFutureCore() ... [05:58:36.576] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:36.576] | : . ' , ; ` | getFutureCore() ... done [05:58:36.577] | : . ' , ; ` | getFutureCapture() ... [05:58:36.577] | : . ' , ; ` | getFutureCapture() ... done [05:58:36.577] | : . ' , ; ` | getFutureContext() ... [05:58:36.578] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.578] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:36.578] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.579] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:36.579] | : . ' , ; ` | getFutureContext() ... done [05:58:36.580] | : . ' , ; ` getFutureData() ... done [05:58:36.581] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:36.581] | : . ' , ; ` | Appended future to position #1 [05:58:36.581] | : . ' , ; ` | Number of registered futures: 1 [05:58:36.582] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:36.582] | : . ' , ; launchFuture() ... done [05:58:36.582] | : . ' , ; MultisessionFuture started [05:58:36.583] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:36.583] | : . ' Launching futures ... done [05:58:36.583] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:36.584] | : . Using MultisessionFutureBackend ... done [05:58:36.584] | : run() for 'Future' () ... done [05:58:36.585] | : result() for ClusterFuture ... [05:58:36.585] | : . assertValidConnection() ... [05:58:36.585] | : . ' cluster node index: 1 [05:58:36.586] | : . assertValidConnection() ... done [05:58:36.587] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:36.587] | : . ' cluster node index: 1 [05:58:36.589] | : . ' [1] TRUE [05:58:36.590] | : . ' received data: [05:58:36.590] | : . ' List of 5 [05:58:36.590] | : . ' $ type : chr "VALUE" [05:58:36.590] | : . ' $ value :List of 16 [05:58:36.590] | : . ' ..$ value :List of 13 [05:58:36.590] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [05:58:36.590] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [05:58:36.590] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [05:58:36.590] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.590] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [05:58:36.590] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [05:58:36.590] | : . ' .. ..$ rank : int 2 [05:58:36.590] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [05:58:36.590] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.590] | : . ' .. ..$ assign : int [1:2] 1 1 [05:58:36.590] | : . ' .. ..$ qr :List of 5 [05:58:36.590] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [05:58:36.590] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.590] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [05:58:36.590] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [05:58:36.590] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [05:58:36.590] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [05:58:36.590] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [05:58:36.590] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [05:58:36.590] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:36.590] | : . ' .. .. ..$ tol : num 1e-07 [05:58:36.590] | : . ' .. .. ..$ rank : int 2 [05:58:36.590] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:36.590] | : . ' .. ..$ df.residual : int 18 [05:58:36.590] | : . ' .. ..$ contrasts :List of 1 [05:58:36.590] | : . ' .. .. ..$ group: chr "contr.treatment" [05:58:36.590] | : . ' .. ..$ xlevels :List of 1 [05:58:36.590] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [05:58:36.590] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [05:58:36.590] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.590] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.590] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.590] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.590] | : . ' .. .. .. .. .. ..$ : chr "group" [05:58:36.590] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.590] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:36.590] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.590] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:36.590] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:36.590] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.590] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.590] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [05:58:36.590] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:36.590] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:36.590] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.590] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.590] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.590] | : . ' .. .. .. .. .. .. ..$ : chr "group" [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.590] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.590] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.590] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:36.590] | : . ' ..$ visible : logi TRUE [05:58:36.590] | : . ' ..$ stdout : chr "" [05:58:36.590] | : . ' ..$ conditions : list() [05:58:36.590] | : . ' ..$ rng : logi FALSE [05:58:36.590] | : . ' ..$ seed : NULL [05:58:36.590] | : . ' ..$ misuseGlobalEnv : NULL [05:58:36.590] | : . ' ..$ misuseConnections :List of 3 [05:58:36.590] | : . ' .. ..$ added : NULL [05:58:36.590] | : . ' .. ..$ removed : NULL [05:58:36.590] | : . ' .. ..$ replaced: NULL [05:58:36.590] | : . ' ..$ misuseDevices : NULL [05:58:36.590] | : . ' ..$ misuseDefaultDevice: list() [05:58:36.590] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.590] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.590] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "16" [05:58:36.590] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:36.590] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:36.590] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:36.590] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:36.590] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:36.590] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:36.590] | : . ' .. .. ..$ pid : int 148948 [05:58:36.590] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.590] | : . ' .. .. ..$ random: int 2147483647 [05:58:36.590] | : . ' ..$ r_info :List of 4 [05:58:36.590] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:36.590] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:36.590] | : . ' .. ..$ os : chr "windows" [05:58:36.590] | : . ' .. ..$ os_name : chr "Windows" [05:58:36.590] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:36.590] | : . ' ..$ version : chr "1.8" [05:58:36.590] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:36.590] | : . ' $ success: logi TRUE [05:58:36.590] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:36.590] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:36.590] | : . ' $ tag : NULL [05:58:36.659] | : . ' Received FutureResult [05:58:36.659] | : . ' FutureResult: [05:58:36.659] | : . ' value: 'lm' [05:58:36.659] | : . ' visible: TRUE [05:58:36.659] | : . ' stdout: character [05:58:36.659] | : . ' conditions: [n = 0] [05:58:36.659] | : . ' RNG used: FALSE [05:58:36.659] | : . ' duration: 0.006439924 secs (started 2025-06-05 05:58:36.581342) [05:58:36.659] | : . ' version: 1.8 [05:58:36.660] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:36.660] | : . ' , Removed future from position #1 [05:58:36.661] | : . ' , Number of registered futures: 0 [05:58:36.661] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:36.662] | : . ' Erased future from future backend [05:58:36.662] | : . ' result() for ClusterFuture ... [05:58:36.662] | : . ' , result already collected: FutureResult [05:58:36.663] | : . ' result() for ClusterFuture ... done [05:58:36.663] | : . ' signalConditions() ... [05:58:36.663] | : . ' , include = 'immediateCondition' [05:58:36.664] | : . ' , exclude = [05:58:36.664] | : . ' , resignal = FALSE [05:58:36.664] | : . ' , Number of conditions: 0 [05:58:36.664] | : . ' , int 0 [05:58:36.666] | : . ' signalConditions() ... done [05:58:36.666] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:36.666] | : result() for ClusterFuture ... done [05:58:36.667] | : result() for ClusterFuture ... [05:58:36.667] | : . result already collected: FutureResult [05:58:36.667] | : result() for ClusterFuture ... done [05:58:36.668] | : signalConditions() ... [05:58:36.668] | : . include = 'immediateCondition' [05:58:36.668] | : . exclude = [05:58:36.668] | : . resignal = FALSE [05:58:36.669] | : . Number of conditions: 0 [05:58:36.669] | : . int 0 [05:58:36.670] | : signalConditions() ... done [05:58:36.670] | : relay stdout ... [05:58:36.671] | : relay stdout ... done [05:58:36.671] | : check for misuse ... [05:58:36.671] | : check for misuse ... done [05:58:36.672] | value() for Future () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:36.675] | future(..., label = NULL) ... [05:58:36.676] | : lazy: FALSE [05:58:36.676] | : stdout: TRUE [05:58:36.676] | : conditions: [n=1] 'condition' [05:58:36.676] | : gc: FALSE [05:58:36.676] | : earlySignal: FALSE [05:58:36.677] | : getGlobalsAndPackages() ... [05:58:36.677] | : . Searching for globals ... [05:58:36.704] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:36.705] | : . Searching for globals ... done [05:58:36.705] | : . Resolving globals: FALSE [05:58:36.706] | : . Search for packages associated with the globals ... [05:58:36.706] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:36.707] | : . ' Packages: [2] 'base', 'stats' [05:58:36.707] | : . Search for packages associated with the globals ... done [05:58:36.708] | : . Packages after dropping 'base': [1] 'stats' [05:58:36.708] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:36.709] | : . globals: [2] 'weight', 'group' [05:58:36.709] | : . packages: [1] 'stats' [05:58:36.709] | : getGlobalsAndPackages() ... done [05:58:36.710] | : run() for 'Future' () ... [05:58:36.710] | : . state: 'created' [05:58:36.711] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.711] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.711] | : . Using MultisessionFutureBackend ... [05:58:36.712] | : . ' Number of futures since start: 2 (2 created, 2 launched, 2 finished) [05:58:36.712] | : . ' Launching futures ... [05:58:36.712] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:36.713] | : . ' , ; Workers: [n=2] [05:58:36.713] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.717] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:36.717] | : . ' , ; requestWorker() ... [05:58:36.717] | : . ' , ; ` requestNode() ... [05:58:36.718] | : . ' , ; ` | Number of workers: 2 [05:58:36.718] | : . ' , ; ` | Polling for a free worker ... [05:58:36.718] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.719] | : . ' , ; ` | : . Listing all futures [05:58:36.719] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.719] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.719] | : . ' , ; ` | : Total time: 0 [05:58:36.720] | : . ' , ; ` | Polling for a free worker ... done [05:58:36.720] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.720] | : . ' , ; ` | : Listing all futures [05:58:36.721] | : . ' , ; ` | : Number of registered futures: 0 [05:58:36.721] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.721] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:36.722] | : . ' , ; ` | Index of first available worker: 1 [05:58:36.722] | : . ' , ; ` | Validate that the worker is functional ... [05:58:36.837] | : . ' , ; ` | : Worker is functional [05:58:36.837] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.838] | : . ' , ; ` | : . Listing all futures [05:58:36.838] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.839] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.839] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:36.839] | : . ' , ; ` requestNode() ... done [05:58:36.840] | : . ' , ; ` cluster node index: 1 [05:58:36.840] | : . ' , ; requestWorker() ... done [05:58:36.840] | : . ' , ; eraseGlobalEnvironment() ... [05:58:36.841] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:36.842] | : . ' , ; launchFuture() ... [05:58:36.842] | : . ' , ; ` cluster node index: 1 [05:58:36.842] | : . ' , ; ` getFutureData() ... [05:58:36.843] | : . ' , ; ` | getFutureCore() ... [05:58:36.843] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:36.843] | : . ' , ; ` | getFutureCore() ... done [05:58:36.843] | : . ' , ; ` | getFutureCapture() ... [05:58:36.844] | : . ' , ; ` | getFutureCapture() ... done [05:58:36.844] | : . ' , ; ` | getFutureContext() ... [05:58:36.844] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.845] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:36.845] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.845] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:36.846] | : . ' , ; ` | getFutureContext() ... done [05:58:36.846] | : . ' , ; ` getFutureData() ... done [05:58:36.847] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:36.847] | : . ' , ; ` | Appended future to position #1 [05:58:36.848] | : . ' , ; ` | Number of registered futures: 1 [05:58:36.848] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:36.848] | : . ' , ; launchFuture() ... done [05:58:36.848] | : . ' , ; MultisessionFuture started [05:58:36.849] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:36.849] | : . ' Launching futures ... done [05:58:36.849] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:36.850] | : . Using MultisessionFutureBackend ... done [05:58:36.850] | : run() for 'Future' () ... done [05:58:36.850] | future(..., label = NULL) ... done [05:58:36.851] | value() for MultisessionFuture () ... [05:58:36.851] | : result() for ClusterFuture ... [05:58:36.851] | : . assertValidConnection() ... [05:58:36.852] | : . ' cluster node index: 1 [05:58:36.853] | : . assertValidConnection() ... done [05:58:36.853] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:36.853] | : . ' cluster node index: 1 [05:58:36.858] | : . ' [1] TRUE [05:58:36.859] | : . ' received data: [05:58:36.859] | : . ' List of 5 [05:58:36.859] | : . ' $ type : chr "VALUE" [05:58:36.859] | : . ' $ value :List of 16 [05:58:36.859] | : . ' ..$ value :List of 13 [05:58:36.859] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [05:58:36.859] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [05:58:36.859] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [05:58:36.859] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.859] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [05:58:36.859] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [05:58:36.859] | : . ' .. ..$ rank : int 2 [05:58:36.859] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [05:58:36.859] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:36.859] | : . ' .. ..$ assign : int [1:2] 1 1 [05:58:36.859] | : . ' .. ..$ qr :List of 5 [05:58:36.859] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [05:58:36.859] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.859] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [05:58:36.859] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [05:58:36.859] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [05:58:36.859] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [05:58:36.859] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [05:58:36.859] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [05:58:36.859] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:36.859] | : . ' .. .. ..$ tol : num 1e-07 [05:58:36.859] | : . ' .. .. ..$ rank : int 2 [05:58:36.859] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:36.859] | : . ' .. ..$ df.residual : int 18 [05:58:36.859] | : . ' .. ..$ contrasts :List of 1 [05:58:36.859] | : . ' .. .. ..$ group: chr "contr.treatment" [05:58:36.859] | : . ' .. ..$ xlevels :List of 1 [05:58:36.859] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [05:58:36.859] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [05:58:36.859] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.859] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.859] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.859] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.859] | : . ' .. .. .. .. .. ..$ : chr "group" [05:58:36.859] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.859] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:36.859] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.859] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:36.859] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:36.859] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.859] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.859] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [05:58:36.859] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:36.859] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:36.859] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:36.859] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:36.859] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:36.859] | : . ' .. .. .. .. .. .. ..$ : chr "group" [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:36.859] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:36.859] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:36.859] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:36.859] | : . ' ..$ visible : logi TRUE [05:58:36.859] | : . ' ..$ stdout : chr "" [05:58:36.859] | : . ' ..$ conditions : list() [05:58:36.859] | : . ' ..$ rng : logi FALSE [05:58:36.859] | : . ' ..$ seed : NULL [05:58:36.859] | : . ' ..$ misuseGlobalEnv : NULL [05:58:36.859] | : . ' ..$ misuseConnections :List of 3 [05:58:36.859] | : . ' .. ..$ added : NULL [05:58:36.859] | : . ' .. ..$ removed : NULL [05:58:36.859] | : . ' .. ..$ replaced: NULL [05:58:36.859] | : . ' ..$ misuseDevices : NULL [05:58:36.859] | : . ' ..$ misuseDefaultDevice: list() [05:58:36.859] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.859] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.859] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "17" [05:58:36.859] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:36.859] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:36.859] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:36.859] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:36.859] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:36.859] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:36.859] | : . ' .. .. ..$ pid : int 148948 [05:58:36.859] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:36.859] | : . ' .. .. ..$ random: int 2147483647 [05:58:36.859] | : . ' ..$ r_info :List of 4 [05:58:36.859] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:36.859] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:36.859] | : . ' .. ..$ os : chr "windows" [05:58:36.859] | : . ' .. ..$ os_name : chr "Windows" [05:58:36.859] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:36.859] | : . ' ..$ version : chr "1.8" [05:58:36.859] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:36.859] | : . ' $ success: logi TRUE [05:58:36.859] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:36.859] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:36.859] | : . ' $ tag : NULL [05:58:36.921] | : . ' Received FutureResult [05:58:36.922] | : . ' FutureResult: [05:58:36.922] | : . ' value: 'lm' [05:58:36.922] | : . ' visible: TRUE [05:58:36.922] | : . ' stdout: character [05:58:36.922] | : . ' conditions: [n = 0] [05:58:36.922] | : . ' RNG used: FALSE [05:58:36.922] | : . ' duration: 0.008466959 secs (started 2025-06-05 05:58:36.848117) [05:58:36.922] | : . ' version: 1.8 [05:58:36.923] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:36.923] | : . ' , Removed future from position #1 [05:58:36.923] | : . ' , Number of registered futures: 0 [05:58:36.924] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:36.924] | : . ' Erased future from future backend [05:58:36.924] | : . ' result() for ClusterFuture ... [05:58:36.925] | : . ' , result already collected: FutureResult [05:58:36.925] | : . ' result() for ClusterFuture ... done [05:58:36.925] | : . ' signalConditions() ... [05:58:36.925] | : . ' , include = 'immediateCondition' [05:58:36.926] | : . ' , exclude = [05:58:36.926] | : . ' , resignal = FALSE [05:58:36.926] | : . ' , Number of conditions: 0 [05:58:36.926] | : . ' , int 0 [05:58:36.927] | : . ' signalConditions() ... done [05:58:36.927] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:36.928] | : result() for ClusterFuture ... done [05:58:36.928] | : result() for ClusterFuture ... [05:58:36.928] | : . result already collected: FutureResult [05:58:36.929] | : result() for ClusterFuture ... done [05:58:36.929] | : signalConditions() ... [05:58:36.929] | : . include = 'immediateCondition' [05:58:36.929] | : . exclude = [05:58:36.930] | : . resignal = FALSE [05:58:36.930] | : . Number of conditions: 0 [05:58:36.930] | : . int 0 [05:58:36.931] | : signalConditions() ... done [05:58:36.931] | : relay stdout ... [05:58:36.932] | : relay stdout ... done [05:58:36.932] | : check for misuse ... [05:58:36.932] | : check for misuse ... done [05:58:36.932] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:36.936] | future(..., label = NULL) ... [05:58:36.936] | : lazy: FALSE [05:58:36.936] | : stdout: TRUE [05:58:36.937] | : conditions: [n=1] 'condition' [05:58:36.937] | : gc: FALSE [05:58:36.937] | : earlySignal: FALSE [05:58:36.938] | : getGlobalsAndPackages() ... [05:58:36.938] | : . Searching for globals ... [05:58:36.963] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:36.963] | : . Searching for globals ... done [05:58:36.964] | : . Resolving globals: FALSE [05:58:36.964] | : . Search for packages associated with the globals ... [05:58:36.965] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:36.965] | : . ' Packages: [2] 'base', 'stats' [05:58:36.966] | : . Search for packages associated with the globals ... done [05:58:36.966] | : . Packages after dropping 'base': [1] 'stats' [05:58:36.966] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:36.967] | : . globals: [2] 'weight', 'group' [05:58:36.967] | : . packages: [1] 'stats' [05:58:36.967] | : getGlobalsAndPackages() ... done [05:58:36.968] | : run() for 'Future' () ... [05:58:36.968] | : . state: 'created' [05:58:36.968] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:36.969] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:36.969] | : . Using MultisessionFutureBackend ... [05:58:36.969] | : . ' Number of futures since start: 3 (3 created, 3 launched, 3 finished) [05:58:36.970] | : . ' Launching futures ... [05:58:36.970] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:36.970] | : . ' , ; Workers: [n=2] [05:58:36.970] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:36.974] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:36.974] | : . ' , ; requestWorker() ... [05:58:36.974] | : . ' , ; ` requestNode() ... [05:58:36.974] | : . ' , ; ` | Number of workers: 2 [05:58:36.975] | : . ' , ; ` | Polling for a free worker ... [05:58:36.975] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.975] | : . ' , ; ` | : . Listing all futures [05:58:36.976] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:36.976] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.976] | : . ' , ; ` | : Total time: 0 [05:58:36.976] | : . ' , ; ` | Polling for a free worker ... done [05:58:36.977] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:36.977] | : . ' , ; ` | : Listing all futures [05:58:36.977] | : . ' , ; ` | : Number of registered futures: 0 [05:58:36.977] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:36.978] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:36.978] | : . ' , ; ` | Index of first available worker: 1 [05:58:36.978] | : . ' , ; ` | Validate that the worker is functional ... [05:58:37.058] | : . ' , ; ` | : Worker is functional [05:58:37.058] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.058] | : . ' , ; ` | : . Listing all futures [05:58:37.059] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.059] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.059] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:37.060] | : . ' , ; ` requestNode() ... done [05:58:37.060] | : . ' , ; ` cluster node index: 1 [05:58:37.060] | : . ' , ; requestWorker() ... done [05:58:37.061] | : . ' , ; eraseGlobalEnvironment() ... [05:58:37.061] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:37.062] | : . ' , ; launchFuture() ... [05:58:37.062] | : . ' , ; ` cluster node index: 1 [05:58:37.062] | : . ' , ; ` getFutureData() ... [05:58:37.062] | : . ' , ; ` | getFutureCore() ... [05:58:37.063] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:37.063] | : . ' , ; ` | getFutureCore() ... done [05:58:37.063] | : . ' , ; ` | getFutureCapture() ... [05:58:37.063] | : . ' , ; ` | getFutureCapture() ... done [05:58:37.064] | : . ' , ; ` | getFutureContext() ... [05:58:37.064] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.064] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:37.065] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.065] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:37.065] | : . ' , ; ` | getFutureContext() ... done [05:58:37.065] | : . ' , ; ` getFutureData() ... done [05:58:37.066] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:37.066] | : . ' , ; ` | Appended future to position #1 [05:58:37.067] | : . ' , ; ` | Number of registered futures: 1 [05:58:37.067] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:37.067] | : . ' , ; launchFuture() ... done [05:58:37.068] | : . ' , ; MultisessionFuture started [05:58:37.068] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:37.068] | : . ' Launching futures ... done [05:58:37.068] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:37.069] | : . Using MultisessionFutureBackend ... done [05:58:37.069] | : run() for 'Future' () ... done [05:58:37.069] | future(..., label = NULL) ... done [05:58:37.070] | value() for MultisessionFuture () ... [05:58:37.070] | : result() for ClusterFuture ... [05:58:37.070] | : . assertValidConnection() ... [05:58:37.071] | : . ' cluster node index: 1 [05:58:37.071] | : . assertValidConnection() ... done [05:58:37.072] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:37.072] | : . ' cluster node index: 1 [05:58:37.080] | : . ' [1] TRUE [05:58:37.080] | : . ' received data: [05:58:37.081] | : . ' List of 5 [05:58:37.081] | : . ' $ type : chr "VALUE" [05:58:37.081] | : . ' $ value :List of 16 [05:58:37.081] | : . ' ..$ value :List of 13 [05:58:37.081] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [05:58:37.081] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [05:58:37.081] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [05:58:37.081] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:37.081] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [05:58:37.081] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [05:58:37.081] | : . ' .. ..$ rank : int 2 [05:58:37.081] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [05:58:37.081] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:37.081] | : . ' .. ..$ assign : int [1:2] 1 1 [05:58:37.081] | : . ' .. ..$ qr :List of 5 [05:58:37.081] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [05:58:37.081] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.081] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [05:58:37.081] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [05:58:37.081] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [05:58:37.081] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [05:58:37.081] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [05:58:37.081] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [05:58:37.081] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:37.081] | : . ' .. .. ..$ tol : num 1e-07 [05:58:37.081] | : . ' .. .. ..$ rank : int 2 [05:58:37.081] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:37.081] | : . ' .. ..$ df.residual : int 18 [05:58:37.081] | : . ' .. ..$ contrasts :List of 1 [05:58:37.081] | : . ' .. .. ..$ group: chr "contr.treatment" [05:58:37.081] | : . ' .. ..$ xlevels :List of 1 [05:58:37.081] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [05:58:37.081] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [05:58:37.081] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [05:58:37.081] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:37.081] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.081] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:37.081] | : . ' .. .. .. .. .. ..$ : chr "group" [05:58:37.081] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:37.081] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:37.081] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.081] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:37.081] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:37.081] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:37.081] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:37.081] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [05:58:37.081] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:37.081] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:37.081] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.081] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.081] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:37.081] | : . ' .. .. .. .. .. .. ..$ : chr "group" [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:37.081] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:37.081] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:37.081] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:37.081] | : . ' ..$ visible : logi TRUE [05:58:37.081] | : . ' ..$ stdout : chr "" [05:58:37.081] | : . ' ..$ conditions : list() [05:58:37.081] | : . ' ..$ rng : logi FALSE [05:58:37.081] | : . ' ..$ seed : NULL [05:58:37.081] | : . ' ..$ misuseGlobalEnv : NULL [05:58:37.081] | : . ' ..$ misuseConnections :List of 3 [05:58:37.081] | : . ' .. ..$ added : NULL [05:58:37.081] | : . ' .. ..$ removed : NULL [05:58:37.081] | : . ' .. ..$ replaced: NULL [05:58:37.081] | : . ' ..$ misuseDevices : NULL [05:58:37.081] | : . ' ..$ misuseDefaultDevice: list() [05:58:37.081] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.081] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.081] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "18" [05:58:37.081] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:37.081] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:37.081] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:37.081] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:37.081] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:37.081] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:37.081] | : . ' .. .. ..$ pid : int 148948 [05:58:37.081] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:37.081] | : . ' .. .. ..$ random: int 2147483647 [05:58:37.081] | : . ' ..$ r_info :List of 4 [05:58:37.081] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:37.081] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:37.081] | : . ' .. ..$ os : chr "windows" [05:58:37.081] | : . ' .. ..$ os_name : chr "Windows" [05:58:37.081] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:37.081] | : . ' ..$ version : chr "1.8" [05:58:37.081] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:37.081] | : . ' $ success: logi TRUE [05:58:37.081] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:37.081] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:37.081] | : . ' $ tag : NULL [05:58:37.138] | : . ' Received FutureResult [05:58:37.138] | : . ' FutureResult: [05:58:37.138] | : . ' value: 'lm' [05:58:37.138] | : . ' visible: TRUE [05:58:37.138] | : . ' stdout: character [05:58:37.138] | : . ' conditions: [n = 0] [05:58:37.138] | : . ' RNG used: FALSE [05:58:37.138] | : . ' duration: 0.01122999 secs (started 2025-06-05 05:58:37.066957) [05:58:37.138] | : . ' version: 1.8 [05:58:37.139] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:37.139] | : . ' , Removed future from position #1 [05:58:37.139] | : . ' , Number of registered futures: 0 [05:58:37.140] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:37.140] | : . ' Erased future from future backend [05:58:37.140] | : . ' result() for ClusterFuture ... [05:58:37.141] | : . ' , result already collected: FutureResult [05:58:37.141] | : . ' result() for ClusterFuture ... done [05:58:37.141] | : . ' signalConditions() ... [05:58:37.141] | : . ' , include = 'immediateCondition' [05:58:37.142] | : . ' , exclude = [05:58:37.142] | : . ' , resignal = FALSE [05:58:37.142] | : . ' , Number of conditions: 0 [05:58:37.142] | : . ' , int 0 [05:58:37.143] | : . ' signalConditions() ... done [05:58:37.144] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:37.144] | : result() for ClusterFuture ... done [05:58:37.144] | : result() for ClusterFuture ... [05:58:37.144] | : . result already collected: FutureResult [05:58:37.145] | : result() for ClusterFuture ... done [05:58:37.145] | : signalConditions() ... [05:58:37.145] | : . include = 'immediateCondition' [05:58:37.145] | : . exclude = [05:58:37.145] | : . resignal = FALSE [05:58:37.146] | : . Number of conditions: 0 [05:58:37.146] | : . int 0 [05:58:37.147] | : signalConditions() ... done [05:58:37.147] | : relay stdout ... [05:58:37.147] | : relay stdout ... done [05:58:37.147] | : check for misuse ... [05:58:37.148] | : check for misuse ... done [05:58:37.148] | value() for MultisessionFuture () ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [05:58:37.151] | future(..., label = NULL) ... [05:58:37.152] | : lazy: TRUE [05:58:37.152] | : stdout: TRUE [05:58:37.152] | : conditions: [n=1] 'condition' [05:58:37.152] | : gc: FALSE [05:58:37.153] | : earlySignal: FALSE [05:58:37.153] | : getGlobalsAndPackages() ... [05:58:37.153] | : . Searching for globals ... [05:58:37.176] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [05:58:37.177] | : . Searching for globals ... done [05:58:37.177] | : . Resolving globals: FALSE [05:58:37.177] | : . Search for packages associated with the globals ... [05:58:37.178] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:37.178] | : . ' Packages: [2] 'base', 'stats' [05:58:37.179] | : . Search for packages associated with the globals ... done [05:58:37.179] | : . Packages after dropping 'base': [1] 'stats' [05:58:37.179] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:37.180] | : . globals: [2] 'weight', 'group' [05:58:37.180] | : . packages: [1] 'stats' [05:58:37.180] | : getGlobalsAndPackages() ... done [05:58:37.180] | future(..., label = NULL) ... done [05:58:37.181] | value() for Future () ... [05:58:37.181] | : run() for 'Future' () ... [05:58:37.181] | : . state: 'created' [05:58:37.182] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.182] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.182] | : . Using MultisessionFutureBackend ... [05:58:37.182] | : . ' Number of futures since start: 4 (4 created, 4 launched, 4 finished) [05:58:37.183] | : . ' Launching futures ... [05:58:37.183] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:37.183] | : . ' , ; Workers: [n=2] [05:58:37.184] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:37.187] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:37.187] | : . ' , ; requestWorker() ... [05:58:37.187] | : . ' , ; ` requestNode() ... [05:58:37.187] | : . ' , ; ` | Number of workers: 2 [05:58:37.188] | : . ' , ; ` | Polling for a free worker ... [05:58:37.188] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.188] | : . ' , ; ` | : . Listing all futures [05:58:37.188] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.189] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.189] | : . ' , ; ` | : Total time: 0 [05:58:37.189] | : . ' , ; ` | Polling for a free worker ... done [05:58:37.189] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.190] | : . ' , ; ` | : Listing all futures [05:58:37.190] | : . ' , ; ` | : Number of registered futures: 0 [05:58:37.190] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.190] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:37.191] | : . ' , ; ` | Index of first available worker: 1 [05:58:37.191] | : . ' , ; ` | Validate that the worker is functional ... [05:58:37.261] | : . ' , ; ` | : Worker is functional [05:58:37.262] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.262] | : . ' , ; ` | : . Listing all futures [05:58:37.262] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.262] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.262] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:37.263] | : . ' , ; ` requestNode() ... done [05:58:37.263] | : . ' , ; ` cluster node index: 1 [05:58:37.263] | : . ' , ; requestWorker() ... done [05:58:37.263] | : . ' , ; eraseGlobalEnvironment() ... [05:58:37.264] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:37.264] | : . ' , ; launchFuture() ... [05:58:37.264] | : . ' , ; ` cluster node index: 1 [05:58:37.265] | : . ' , ; ` getFutureData() ... [05:58:37.265] | : . ' , ; ` | getFutureCore() ... [05:58:37.265] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:37.265] | : . ' , ; ` | getFutureCore() ... done [05:58:37.265] | : . ' , ; ` | getFutureCapture() ... [05:58:37.265] | : . ' , ; ` | getFutureCapture() ... done [05:58:37.266] | : . ' , ; ` | getFutureContext() ... [05:58:37.266] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.266] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:37.266] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.266] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:37.267] | : . ' , ; ` | getFutureContext() ... done [05:58:37.267] | : . ' , ; ` getFutureData() ... done [05:58:37.267] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:37.267] | : . ' , ; ` | Appended future to position #1 [05:58:37.268] | : . ' , ; ` | Number of registered futures: 1 [05:58:37.268] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:37.268] | : . ' , ; launchFuture() ... done [05:58:37.268] | : . ' , ; MultisessionFuture started [05:58:37.268] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:37.268] | : . ' Launching futures ... done [05:58:37.269] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:37.269] | : . Using MultisessionFutureBackend ... done [05:58:37.269] | : run() for 'Future' () ... done [05:58:37.269] | : result() for ClusterFuture ... [05:58:37.269] | : . assertValidConnection() ... [05:58:37.270] | : . ' cluster node index: 1 [05:58:37.270] | : . assertValidConnection() ... done [05:58:37.270] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:37.270] | : . ' cluster node index: 1 [05:58:37.279] | : . ' [1] TRUE [05:58:37.279] | : . ' received data: [05:58:37.279] | : . ' List of 5 [05:58:37.279] | : . ' $ type : chr "VALUE" [05:58:37.279] | : . ' $ value :List of 16 [05:58:37.279] | : . ' ..$ value :List of 13 [05:58:37.279] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [05:58:37.279] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [05:58:37.279] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [05:58:37.279] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:37.279] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [05:58:37.279] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [05:58:37.279] | : . ' .. ..$ rank : int 2 [05:58:37.279] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [05:58:37.279] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [05:58:37.279] | : . ' .. ..$ assign : int [1:2] 1 1 [05:58:37.279] | : . ' .. ..$ qr :List of 5 [05:58:37.279] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [05:58:37.279] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.279] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [05:58:37.279] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [05:58:37.279] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [05:58:37.279] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [05:58:37.279] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [05:58:37.279] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [05:58:37.279] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:37.279] | : . ' .. .. ..$ tol : num 1e-07 [05:58:37.279] | : . ' .. .. ..$ rank : int 2 [05:58:37.279] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:37.279] | : . ' .. ..$ df.residual : int 18 [05:58:37.279] | : . ' .. ..$ contrasts :List of 1 [05:58:37.279] | : . ' .. .. ..$ group: chr "contr.treatment" [05:58:37.279] | : . ' .. ..$ xlevels :List of 1 [05:58:37.279] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [05:58:37.279] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [05:58:37.279] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [05:58:37.279] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:37.279] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.279] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:37.279] | : . ' .. .. .. .. .. ..$ : chr "group" [05:58:37.279] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:37.279] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:37.279] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.279] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:37.279] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:37.279] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:37.279] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:37.279] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [05:58:37.279] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [05:58:37.279] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [05:58:37.279] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.279] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.279] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [05:58:37.279] | : . ' .. .. .. .. .. .. ..$ : chr "group" [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [05:58:37.279] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [05:58:37.279] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [05:58:37.279] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:37.279] | : . ' ..$ visible : logi TRUE [05:58:37.279] | : . ' ..$ stdout : chr "" [05:58:37.279] | : . ' ..$ conditions : list() [05:58:37.279] | : . ' ..$ rng : logi FALSE [05:58:37.279] | : . ' ..$ seed : NULL [05:58:37.279] | : . ' ..$ misuseGlobalEnv : NULL [05:58:37.279] | : . ' ..$ misuseConnections :List of 3 [05:58:37.279] | : . ' .. ..$ added : NULL [05:58:37.279] | : . ' .. ..$ removed : NULL [05:58:37.279] | : . ' .. ..$ replaced: NULL [05:58:37.279] | : . ' ..$ misuseDevices : NULL [05:58:37.279] | : . ' ..$ misuseDefaultDevice: list() [05:58:37.279] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.279] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.279] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "19" [05:58:37.279] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:37.279] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:37.279] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:37.279] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:37.279] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:37.279] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:37.279] | : . ' .. .. ..$ pid : int 148948 [05:58:37.279] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:37.279] | : . ' .. .. ..$ random: int 2147483647 [05:58:37.279] | : . ' ..$ r_info :List of 4 [05:58:37.279] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:37.279] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:37.279] | : . ' .. ..$ os : chr "windows" [05:58:37.279] | : . ' .. ..$ os_name : chr "Windows" [05:58:37.279] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:37.279] | : . ' ..$ version : chr "1.8" [05:58:37.279] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:37.279] | : . ' $ success: logi TRUE [05:58:37.279] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:37.279] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:37.279] | : . ' $ tag : NULL [05:58:37.330] | : . ' Received FutureResult [05:58:37.330] | : . ' FutureResult: [05:58:37.330] | : . ' value: 'lm' [05:58:37.330] | : . ' visible: TRUE [05:58:37.330] | : . ' stdout: character [05:58:37.330] | : . ' conditions: [n = 0] [05:58:37.330] | : . ' RNG used: FALSE [05:58:37.330] | : . ' duration: 0.009835958 secs (started 2025-06-05 05:58:37.267987) [05:58:37.330] | : . ' version: 1.8 [05:58:37.332] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:37.332] | : . ' , Removed future from position #1 [05:58:37.333] | : . ' , Number of registered futures: 0 [05:58:37.333] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:37.333] | : . ' Erased future from future backend [05:58:37.334] | : . ' result() for ClusterFuture ... [05:58:37.334] | : . ' , result already collected: FutureResult [05:58:37.334] | : . ' result() for ClusterFuture ... done [05:58:37.335] | : . ' signalConditions() ... [05:58:37.335] | : . ' , include = 'immediateCondition' [05:58:37.335] | : . ' , exclude = [05:58:37.336] | : . ' , resignal = FALSE [05:58:37.336] | : . ' , Number of conditions: 0 [05:58:37.336] | : . ' , int 0 [05:58:37.337] | : . ' signalConditions() ... done [05:58:37.337] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:37.338] | : result() for ClusterFuture ... done [05:58:37.338] | : result() for ClusterFuture ... [05:58:37.338] | : . result already collected: FutureResult [05:58:37.339] | : result() for ClusterFuture ... done [05:58:37.339] | : signalConditions() ... [05:58:37.339] | : . include = 'immediateCondition' [05:58:37.340] | : . exclude = [05:58:37.340] | : . resignal = FALSE [05:58:37.340] | : . Number of conditions: 0 [05:58:37.340] | : . int 0 [05:58:37.341] | : signalConditions() ... done [05:58:37.342] | : relay stdout ... [05:58:37.342] | : relay stdout ... done [05:58:37.342] | : check for misuse ... [05:58:37.343] | : check for misuse ... done [05:58:37.343] | 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) ... [05:58:37.347] | future(..., label = NULL) ... [05:58:37.347] | : lazy: FALSE [05:58:37.347] | : stdout: TRUE [05:58:37.348] | : conditions: [n=1] 'condition' [05:58:37.348] | : gc: FALSE [05:58:37.348] | : earlySignal: FALSE [05:58:37.349] | : getGlobalsAndPackages() ... [05:58:37.349] | : . Searching for globals ... [05:58:37.367] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [05:58:37.367] | : . Searching for globals ... done [05:58:37.368] | : . Resolving globals: FALSE [05:58:37.368] | : . Search for packages associated with the globals ... [05:58:37.368] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:37.369] | : . ' Packages: [2] 'base', 'stats' [05:58:37.369] | : . Search for packages associated with the globals ... done [05:58:37.370] | : . Packages after dropping 'base': [1] 'stats' [05:58:37.370] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:37.371] | : . globals: [1] 'x' [05:58:37.371] | : . packages: [1] 'stats' [05:58:37.371] | : getGlobalsAndPackages() ... done [05:58:37.372] | : run() for 'Future' () ... [05:58:37.372] | : . state: 'created' [05:58:37.373] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.373] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.373] | : . Using MultisessionFutureBackend ... [05:58:37.373] | : . ' Number of futures since start: 5 (5 created, 5 launched, 5 finished) [05:58:37.374] | : . ' Launching futures ... [05:58:37.374] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:37.375] | : . ' , ; Workers: [n=2] [05:58:37.375] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:37.378] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:37.379] | : . ' , ; requestWorker() ... [05:58:37.379] | : . ' , ; ` requestNode() ... [05:58:37.379] | : . ' , ; ` | Number of workers: 2 [05:58:37.380] | : . ' , ; ` | Polling for a free worker ... [05:58:37.380] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.380] | : . ' , ; ` | : . Listing all futures [05:58:37.381] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.381] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.381] | : . ' , ; ` | : Total time: 0 [05:58:37.382] | : . ' , ; ` | Polling for a free worker ... done [05:58:37.382] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.382] | : . ' , ; ` | : Listing all futures [05:58:37.383] | : . ' , ; ` | : Number of registered futures: 0 [05:58:37.383] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.383] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:37.383] | : . ' , ; ` | Index of first available worker: 1 [05:58:37.384] | : . ' , ; ` | Validate that the worker is functional ... [05:58:37.478] | : . ' , ; ` | : Worker is functional [05:58:37.479] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.479] | : . ' , ; ` | : . Listing all futures [05:58:37.479] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.480] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.480] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:37.480] | : . ' , ; ` requestNode() ... done [05:58:37.480] | : . ' , ; ` cluster node index: 1 [05:58:37.481] | : . ' , ; requestWorker() ... done [05:58:37.481] | : . ' , ; eraseGlobalEnvironment() ... [05:58:37.482] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:37.483] | : . ' , ; launchFuture() ... [05:58:37.483] | : . ' , ; ` cluster node index: 1 [05:58:37.483] | : . ' , ; ` getFutureData() ... [05:58:37.483] | : . ' , ; ` | getFutureCore() ... [05:58:37.484] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:37.484] | : . ' , ; ` | getFutureCore() ... done [05:58:37.484] | : . ' , ; ` | getFutureCapture() ... [05:58:37.485] | : . ' , ; ` | getFutureCapture() ... done [05:58:37.485] | : . ' , ; ` | getFutureContext() ... [05:58:37.485] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.486] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:37.486] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.486] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:37.486] | : . ' , ; ` | getFutureContext() ... done [05:58:37.487] | : . ' , ; ` getFutureData() ... done [05:58:37.487] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:37.488] | : . ' , ; ` | Appended future to position #1 [05:58:37.488] | : . ' , ; ` | Number of registered futures: 1 [05:58:37.488] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:37.489] | : . ' , ; launchFuture() ... done [05:58:37.489] | : . ' , ; MultisessionFuture started [05:58:37.489] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:37.490] | : . ' Launching futures ... done [05:58:37.490] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:37.490] | : . Using MultisessionFutureBackend ... done [05:58:37.490] | : run() for 'Future' () ... done [05:58:37.491] | future(..., label = NULL) ... done [05:58:37.491] | value() for MultisessionFuture () ... [05:58:37.491] | : result() for ClusterFuture ... [05:58:37.492] | : . assertValidConnection() ... [05:58:37.492] | : . ' cluster node index: 1 [05:58:37.493] | : . assertValidConnection() ... done [05:58:37.493] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:37.493] | : . ' cluster node index: 1 [05:58:37.499] | : . ' [1] TRUE [05:58:37.500] | : . ' received data: [05:58:37.500] | : . ' List of 5 [05:58:37.500] | : . ' $ type : chr "VALUE" [05:58:37.500] | : . ' $ value :List of 16 [05:58:37.500] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [05:58:37.500] | : . ' .. ..- attr(*, "dimnames")=List of 1 [05:58:37.500] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [05:58:37.500] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [05:58:37.500] | : . ' ..$ visible : logi TRUE [05:58:37.500] | : . ' ..$ stdout : chr "" [05:58:37.500] | : . ' ..$ conditions : list() [05:58:37.500] | : . ' ..$ rng : logi FALSE [05:58:37.500] | : . ' ..$ seed : NULL [05:58:37.500] | : . ' ..$ misuseGlobalEnv : NULL [05:58:37.500] | : . ' ..$ misuseConnections :List of 3 [05:58:37.500] | : . ' .. ..$ added : NULL [05:58:37.500] | : . ' .. ..$ removed : NULL [05:58:37.500] | : . ' .. ..$ replaced: NULL [05:58:37.500] | : . ' ..$ misuseDevices : NULL [05:58:37.500] | : . ' ..$ misuseDefaultDevice: list() [05:58:37.500] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.500] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.500] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "20" [05:58:37.500] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:37.500] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:37.500] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:37.500] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:37.500] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:37.500] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:37.500] | : . ' .. .. ..$ pid : int 148948 [05:58:37.500] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:37.500] | : . ' .. .. ..$ random: int 2147483647 [05:58:37.500] | : . ' ..$ r_info :List of 4 [05:58:37.500] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:37.500] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:37.500] | : . ' .. ..$ os : chr "windows" [05:58:37.500] | : . ' .. ..$ os_name : chr "Windows" [05:58:37.500] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:37.500] | : . ' ..$ version : chr "1.8" [05:58:37.500] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:37.500] | : . ' $ success: logi TRUE [05:58:37.500] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:37.500] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:37.500] | : . ' $ tag : NULL [05:58:37.521] | : . ' Received FutureResult [05:58:37.522] | : . ' FutureResult: [05:58:37.522] | : . ' value: 'xtabs', 'table' [05:58:37.522] | : . ' visible: TRUE [05:58:37.522] | : . ' stdout: character [05:58:37.522] | : . ' conditions: [n = 0] [05:58:37.522] | : . ' RNG used: FALSE [05:58:37.522] | : . ' duration: 0.009140015 secs (started 2025-06-05 05:58:37.488608) [05:58:37.522] | : . ' version: 1.8 [05:58:37.523] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:37.523] | : . ' , Removed future from position #1 [05:58:37.523] | : . ' , Number of registered futures: 0 [05:58:37.523] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:37.524] | : . ' Erased future from future backend [05:58:37.524] | : . ' result() for ClusterFuture ... [05:58:37.524] | : . ' , result already collected: FutureResult [05:58:37.525] | : . ' result() for ClusterFuture ... done [05:58:37.525] | : . ' signalConditions() ... [05:58:37.525] | : . ' , include = 'immediateCondition' [05:58:37.525] | : . ' , exclude = [05:58:37.526] | : . ' , resignal = FALSE [05:58:37.526] | : . ' , Number of conditions: 0 [05:58:37.526] | : . ' , int 0 [05:58:37.527] | : . ' signalConditions() ... done [05:58:37.527] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:37.528] | : result() for ClusterFuture ... done [05:58:37.528] | : result() for ClusterFuture ... [05:58:37.528] | : . result already collected: FutureResult [05:58:37.528] | : result() for ClusterFuture ... done [05:58:37.529] | : signalConditions() ... [05:58:37.529] | : . include = 'immediateCondition' [05:58:37.529] | : . exclude = [05:58:37.530] | : . resignal = FALSE [05:58:37.530] | : . Number of conditions: 0 [05:58:37.530] | : . int 0 [05:58:37.531] | : signalConditions() ... done [05:58:37.531] | : relay stdout ... [05:58:37.531] | : relay stdout ... done [05:58:37.532] | : check for misuse ... [05:58:37.532] | : check for misuse ... done [05:58:37.532] | value() for MultisessionFuture () ... done x 1 2 2 3 [05:58:37.534] | future(..., label = NULL) ... [05:58:37.534] | : lazy: FALSE [05:58:37.534] | : stdout: TRUE [05:58:37.534] | : conditions: [n=1] 'condition' [05:58:37.535] | : gc: FALSE [05:58:37.535] | : earlySignal: FALSE [05:58:37.535] | : getGlobalsAndPackages() ... [05:58:37.535] | : . Searching for globals ... [05:58:37.551] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [05:58:37.552] | : . Searching for globals ... done [05:58:37.552] | : . Resolving globals: FALSE [05:58:37.552] | : . Search for packages associated with the globals ... [05:58:37.553] | : . ' Packages associated with globals: [2] 'base', 'stats' [05:58:37.553] | : . ' Packages: [2] 'base', 'stats' [05:58:37.554] | : . Search for packages associated with the globals ... done [05:58:37.554] | : . Packages after dropping 'base': [1] 'stats' [05:58:37.554] | : . Packages after dropping non-attached packages: [1] 'stats' [05:58:37.555] | : . globals: [1] 'x' [05:58:37.555] | : . packages: [1] 'stats' [05:58:37.555] | : getGlobalsAndPackages() ... done [05:58:37.556] | : run() for 'Future' () ... [05:58:37.556] | : . state: 'created' [05:58:37.556] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.557] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.557] | : . Using MultisessionFutureBackend ... [05:58:37.557] | : . ' Number of futures since start: 6 (6 created, 6 launched, 6 finished) [05:58:37.558] | : . ' Launching futures ... [05:58:37.558] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:37.558] | : . ' , ; Workers: [n=2] [05:58:37.558] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:37.562] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:37.562] | : . ' , ; requestWorker() ... [05:58:37.562] | : . ' , ; ` requestNode() ... [05:58:37.562] | : . ' , ; ` | Number of workers: 2 [05:58:37.563] | : . ' , ; ` | Polling for a free worker ... [05:58:37.563] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.563] | : . ' , ; ` | : . Listing all futures [05:58:37.564] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.564] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.564] | : . ' , ; ` | : Total time: 0 [05:58:37.564] | : . ' , ; ` | Polling for a free worker ... done [05:58:37.565] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.565] | : . ' , ; ` | : Listing all futures [05:58:37.565] | : . ' , ; ` | : Number of registered futures: 0 [05:58:37.565] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.566] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:37.566] | : . ' , ; ` | Index of first available worker: 1 [05:58:37.566] | : . ' , ; ` | Validate that the worker is functional ... [05:58:37.650] | : . ' , ; ` | : Worker is functional [05:58:37.651] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.651] | : . ' , ; ` | : . Listing all futures [05:58:37.651] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.652] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.652] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:37.652] | : . ' , ; ` requestNode() ... done [05:58:37.653] | : . ' , ; ` cluster node index: 1 [05:58:37.653] | : . ' , ; requestWorker() ... done [05:58:37.653] | : . ' , ; eraseGlobalEnvironment() ... [05:58:37.654] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:37.655] | : . ' , ; launchFuture() ... [05:58:37.655] | : . ' , ; ` cluster node index: 1 [05:58:37.655] | : . ' , ; ` getFutureData() ... [05:58:37.655] | : . ' , ; ` | getFutureCore() ... [05:58:37.656] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [05:58:37.656] | : . ' , ; ` | getFutureCore() ... done [05:58:37.656] | : . ' , ; ` | getFutureCapture() ... [05:58:37.657] | : . ' , ; ` | getFutureCapture() ... done [05:58:37.657] | : . ' , ; ` | getFutureContext() ... [05:58:37.657] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.658] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:37.658] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.658] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:37.658] | : . ' , ; ` | getFutureContext() ... done [05:58:37.659] | : . ' , ; ` getFutureData() ... done [05:58:37.660] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:37.660] | : . ' , ; ` | Appended future to position #1 [05:58:37.660] | : . ' , ; ` | Number of registered futures: 1 [05:58:37.660] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:37.661] | : . ' , ; launchFuture() ... done [05:58:37.661] | : . ' , ; MultisessionFuture started [05:58:37.661] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:37.662] | : . ' Launching futures ... done [05:58:37.662] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:37.662] | : . Using MultisessionFutureBackend ... done [05:58:37.662] | : run() for 'Future' () ... done [05:58:37.663] | future(..., label = NULL) ... done [05:58:37.663] | value() for MultisessionFuture () ... [05:58:37.663] | : result() for ClusterFuture ... [05:58:37.664] | : . assertValidConnection() ... [05:58:37.664] | : . ' cluster node index: 1 [05:58:37.665] | : . assertValidConnection() ... done [05:58:37.665] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:37.665] | : . ' cluster node index: 1 [05:58:37.667] | : . ' [1] TRUE [05:58:37.668] | : . ' received data: [05:58:37.668] | : . ' List of 5 [05:58:37.668] | : . ' $ type : chr "VALUE" [05:58:37.668] | : . ' $ value :List of 16 [05:58:37.668] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [05:58:37.668] | : . ' .. ..- attr(*, "dimnames")=List of 1 [05:58:37.668] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [05:58:37.668] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [05:58:37.668] | : . ' ..$ visible : logi TRUE [05:58:37.668] | : . ' ..$ stdout : chr "" [05:58:37.668] | : . ' ..$ conditions : list() [05:58:37.668] | : . ' ..$ rng : logi FALSE [05:58:37.668] | : . ' ..$ seed : NULL [05:58:37.668] | : . ' ..$ misuseGlobalEnv : NULL [05:58:37.668] | : . ' ..$ misuseConnections :List of 3 [05:58:37.668] | : . ' .. ..$ added : NULL [05:58:37.668] | : . ' .. ..$ removed : NULL [05:58:37.668] | : . ' .. ..$ replaced: NULL [05:58:37.668] | : . ' ..$ misuseDevices : NULL [05:58:37.668] | : . ' ..$ misuseDefaultDevice: list() [05:58:37.668] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.668] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.668] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "21" [05:58:37.668] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:37.668] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:37.668] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:37.668] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:37.668] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:37.668] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:37.668] | : . ' .. .. ..$ pid : int 148948 [05:58:37.668] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:37.668] | : . ' .. .. ..$ random: int 2147483647 [05:58:37.668] | : . ' ..$ r_info :List of 4 [05:58:37.668] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:37.668] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:37.668] | : . ' .. ..$ os : chr "windows" [05:58:37.668] | : . ' .. ..$ os_name : chr "Windows" [05:58:37.668] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:37.668] | : . ' ..$ version : chr "1.8" [05:58:37.668] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:37.668] | : . ' $ success: logi TRUE [05:58:37.668] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:37.668] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:37.668] | : . ' $ tag : NULL [05:58:37.692] | : . ' Received FutureResult [05:58:37.692] | : . ' FutureResult: [05:58:37.692] | : . ' value: 'xtabs', 'table' [05:58:37.692] | : . ' visible: TRUE [05:58:37.692] | : . ' stdout: character [05:58:37.692] | : . ' conditions: [n = 0] [05:58:37.692] | : . ' RNG used: FALSE [05:58:37.692] | : . ' duration: 0.005996943 secs (started 2025-06-05 05:58:37.660399) [05:58:37.692] | : . ' version: 1.8 [05:58:37.693] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:37.694] | : . ' , Removed future from position #1 [05:58:37.694] | : . ' , Number of registered futures: 0 [05:58:37.694] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:37.694] | : . ' Erased future from future backend [05:58:37.695] | : . ' result() for ClusterFuture ... [05:58:37.695] | : . ' , result already collected: FutureResult [05:58:37.695] | : . ' result() for ClusterFuture ... done [05:58:37.696] | : . ' signalConditions() ... [05:58:37.696] | : . ' , include = 'immediateCondition' [05:58:37.696] | : . ' , exclude = [05:58:37.696] | : . ' , resignal = FALSE [05:58:37.696] | : . ' , Number of conditions: 0 [05:58:37.697] | : . ' , int 0 [05:58:37.698] | : . ' signalConditions() ... done [05:58:37.698] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:37.698] | : result() for ClusterFuture ... done [05:58:37.698] | : result() for ClusterFuture ... [05:58:37.699] | : . result already collected: FutureResult [05:58:37.699] | : result() for ClusterFuture ... done [05:58:37.699] | : signalConditions() ... [05:58:37.699] | : . include = 'immediateCondition' [05:58:37.700] | : . exclude = [05:58:37.700] | : . resignal = FALSE [05:58:37.700] | : . Number of conditions: 0 [05:58:37.700] | : . int 0 [05:58:37.701] | : signalConditions() ... done [05:58:37.701] | : relay stdout ... [05:58:37.702] | : relay stdout ... done [05:58:37.702] | : check for misuse ... [05:58:37.702] | : check for misuse ... done [05:58:37.703] | 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 [05:58:37.705] | future(..., label = NULL) ... [05:58:37.706] | : lazy: FALSE [05:58:37.706] | : stdout: TRUE [05:58:37.706] | : conditions: [n=1] 'condition' [05:58:37.706] | : gc: FALSE [05:58:37.707] | : earlySignal: FALSE [05:58:37.707] | : getGlobalsAndPackages() ... [05:58:37.707] | : . Searching for globals ... [05:58:37.727] | : . ' globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [05:58:37.727] | : . Searching for globals ... done [05:58:37.728] | : . Resolving globals: FALSE [05:58:37.728] | : . Search for packages associated with the globals ... [05:58:37.728] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:37.729] | : . ' Packages: [3] 'base', 'stats', 'datasets' [05:58:37.729] | : . Search for packages associated with the globals ... done [05:58:37.730] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:37.730] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:37.730] | : . globals: [0] [05:58:37.731] | : . packages: [2] 'stats', 'datasets' [05:58:37.731] | : getGlobalsAndPackages() ... done [05:58:37.731] | : run() for 'Future' () ... [05:58:37.732] | : . state: 'created' [05:58:37.732] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.732] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.733] | : . Using MultisessionFutureBackend ... [05:58:37.733] | : . ' Number of futures since start: 7 (7 created, 7 launched, 7 finished) [05:58:37.733] | : . ' Launching futures ... [05:58:37.733] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:37.734] | : . ' , ; Workers: [n=2] [05:58:37.734] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:37.737] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:37.737] | : . ' , ; requestWorker() ... [05:58:37.737] | : . ' , ; ` requestNode() ... [05:58:37.738] | : . ' , ; ` | Number of workers: 2 [05:58:37.738] | : . ' , ; ` | Polling for a free worker ... [05:58:37.738] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.738] | : . ' , ; ` | : . Listing all futures [05:58:37.739] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.739] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.739] | : . ' , ; ` | : Total time: 0 [05:58:37.739] | : . ' , ; ` | Polling for a free worker ... done [05:58:37.740] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.740] | : . ' , ; ` | : Listing all futures [05:58:37.740] | : . ' , ; ` | : Number of registered futures: 0 [05:58:37.741] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.741] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:37.741] | : . ' , ; ` | Index of first available worker: 1 [05:58:37.741] | : . ' , ; ` | Validate that the worker is functional ... [05:58:37.819] | : . ' , ; ` | : Worker is functional [05:58:37.820] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.820] | : . ' , ; ` | : . Listing all futures [05:58:37.820] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.820] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.821] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:37.821] | : . ' , ; ` requestNode() ... done [05:58:37.821] | : . ' , ; ` cluster node index: 1 [05:58:37.822] | : . ' , ; requestWorker() ... done [05:58:37.822] | : . ' , ; eraseGlobalEnvironment() ... [05:58:37.823] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:37.823] | : . ' , ; launchFuture() ... [05:58:37.823] | : . ' , ; ` cluster node index: 1 [05:58:37.824] | : . ' , ; ` getFutureData() ... [05:58:37.824] | : . ' , ; ` | getFutureCore() ... [05:58:37.824] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:37.824] | : . ' , ; ` | getFutureCore() ... done [05:58:37.825] | : . ' , ; ` | getFutureCapture() ... [05:58:37.825] | : . ' , ; ` | getFutureCapture() ... done [05:58:37.825] | : . ' , ; ` | getFutureContext() ... [05:58:37.826] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.826] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:37.826] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.826] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:37.827] | : . ' , ; ` | getFutureContext() ... done [05:58:37.827] | : . ' , ; ` getFutureData() ... done [05:58:37.828] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:37.828] | : . ' , ; ` | Appended future to position #1 [05:58:37.828] | : . ' , ; ` | Number of registered futures: 1 [05:58:37.829] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:37.829] | : . ' , ; launchFuture() ... done [05:58:37.829] | : . ' , ; MultisessionFuture started [05:58:37.829] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:37.830] | : . ' Launching futures ... done [05:58:37.830] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:37.830] | : . Using MultisessionFutureBackend ... done [05:58:37.830] | : run() for 'Future' () ... done [05:58:37.831] | future(..., label = NULL) ... done [05:58:37.831] | value() for MultisessionFuture () ... [05:58:37.831] | : result() for ClusterFuture ... [05:58:37.832] | : . assertValidConnection() ... [05:58:37.832] | : . ' cluster node index: 1 [05:58:37.833] | : . assertValidConnection() ... done [05:58:37.833] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:37.833] | : . ' cluster node index: 1 [05:58:37.844] | : . ' [1] TRUE [05:58:37.844] | : . ' received data: [05:58:37.845] | : . ' List of 5 [05:58:37.845] | : . ' $ type : chr "VALUE" [05:58:37.845] | : . ' $ value :List of 16 [05:58:37.845] | : . ' ..$ value :List of 12 [05:58:37.845] | : . ' .. ..$ coefficients : Named num 2.91 [05:58:37.845] | : . ' .. .. ..- attr(*, "names")= chr "speed" [05:58:37.845] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [05:58:37.845] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:37.845] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [05:58:37.845] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [05:58:37.845] | : . ' .. ..$ rank : int 1 [05:58:37.845] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [05:58:37.845] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:37.845] | : . ' .. ..$ assign : int 1 [05:58:37.845] | : . ' .. ..$ qr :List of 5 [05:58:37.845] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [05:58:37.845] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.845] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [05:58:37.845] | : . ' .. .. .. .. ..$ : chr "speed" [05:58:37.845] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [05:58:37.845] | : . ' .. .. ..$ qraux: num 1.03 [05:58:37.845] | : . ' .. .. ..$ pivot: int 1 [05:58:37.845] | : . ' .. .. ..$ tol : num 1e-07 [05:58:37.845] | : . ' .. .. ..$ rank : int 1 [05:58:37.845] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:37.845] | : . ' .. ..$ df.residual : int 49 [05:58:37.845] | : . ' .. ..$ xlevels : Named list() [05:58:37.845] | : . ' .. ..$ call : language lm(formula = dist ~ . - 1, data = cars) [05:58:37.845] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed - 1 [05:58:37.845] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:37.845] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.845] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:37.845] | : . ' .. .. .. .. .. ..$ : chr "speed" [05:58:37.845] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:37.845] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:37.845] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.845] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:37.845] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:37.845] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:37.845] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:37.845] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [05:58:37.845] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [05:58:37.845] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [05:58:37.845] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed - 1 [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:37.845] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:37.845] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:37.845] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:37.845] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:37.845] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:37.845] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:37.845] | : . ' ..$ visible : logi TRUE [05:58:37.845] | : . ' ..$ stdout : chr "" [05:58:37.845] | : . ' ..$ conditions : list() [05:58:37.845] | : . ' ..$ rng : logi FALSE [05:58:37.845] | : . ' ..$ seed : NULL [05:58:37.845] | : . ' ..$ misuseGlobalEnv : NULL [05:58:37.845] | : . ' ..$ misuseConnections :List of 3 [05:58:37.845] | : . ' .. ..$ added : NULL [05:58:37.845] | : . ' .. ..$ removed : NULL [05:58:37.845] | : . ' .. ..$ replaced: NULL [05:58:37.845] | : . ' ..$ misuseDevices : NULL [05:58:37.845] | : . ' ..$ misuseDefaultDevice: list() [05:58:37.845] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.845] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:37" [05:58:37.845] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "22" [05:58:37.845] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:37.845] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:37.845] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:37.845] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:37.845] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:37.845] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:37.845] | : . ' .. .. ..$ pid : int 148948 [05:58:37.845] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:37.845] | : . ' .. .. ..$ random: int 2147483647 [05:58:37.845] | : . ' ..$ r_info :List of 4 [05:58:37.845] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:37.845] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:37.845] | : . ' .. ..$ os : chr "windows" [05:58:37.845] | : . ' .. ..$ os_name : chr "Windows" [05:58:37.845] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:37.845] | : . ' ..$ version : chr "1.8" [05:58:37.845] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:37.845] | : . ' $ success: logi TRUE [05:58:37.845] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.02 NA NA [05:58:37.845] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:37.845] | : . ' $ tag : NULL [05:58:37.894] | : . ' Received FutureResult [05:58:37.894] | : . ' FutureResult: [05:58:37.894] | : . ' value: 'lm' [05:58:37.894] | : . ' visible: TRUE [05:58:37.894] | : . ' stdout: character [05:58:37.894] | : . ' conditions: [n = 0] [05:58:37.894] | : . ' RNG used: FALSE [05:58:37.894] | : . ' duration: 0.01334596 secs (started 2025-06-05 05:58:37.828552) [05:58:37.894] | : . ' version: 1.8 [05:58:37.895] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:37.895] | : . ' , Removed future from position #1 [05:58:37.895] | : . ' , Number of registered futures: 0 [05:58:37.896] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:37.896] | : . ' Erased future from future backend [05:58:37.896] | : . ' result() for ClusterFuture ... [05:58:37.896] | : . ' , result already collected: FutureResult [05:58:37.896] | : . ' result() for ClusterFuture ... done [05:58:37.897] | : . ' signalConditions() ... [05:58:37.897] | : . ' , include = 'immediateCondition' [05:58:37.897] | : . ' , exclude = [05:58:37.897] | : . ' , resignal = FALSE [05:58:37.897] | : . ' , Number of conditions: 0 [05:58:37.897] | : . ' , int 0 [05:58:37.898] | : . ' signalConditions() ... done [05:58:37.898] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:37.898] | : result() for ClusterFuture ... done [05:58:37.899] | : result() for ClusterFuture ... [05:58:37.899] | : . result already collected: FutureResult [05:58:37.899] | : result() for ClusterFuture ... done [05:58:37.899] | : signalConditions() ... [05:58:37.899] | : . include = 'immediateCondition' [05:58:37.899] | : . exclude = [05:58:37.900] | : . resignal = FALSE [05:58:37.900] | : . Number of conditions: 0 [05:58:37.900] | : . int 0 [05:58:37.900] | : signalConditions() ... done [05:58:37.901] | : relay stdout ... [05:58:37.901] | : relay stdout ... done [05:58:37.901] | : check for misuse ... [05:58:37.901] | : check for misuse ... done [05:58:37.901] | 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 [05:58:37.905] | future(..., label = NULL) ... [05:58:37.905] | : lazy: FALSE [05:58:37.906] | : stdout: TRUE [05:58:37.906] | : conditions: [n=1] 'condition' [05:58:37.906] | : gc: FALSE [05:58:37.906] | : earlySignal: FALSE [05:58:37.907] | : getGlobalsAndPackages() ... [05:58:37.907] | : . Searching for globals ... [05:58:37.935] | : . ' globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [05:58:37.936] | : . Searching for globals ... done [05:58:37.936] | : . Resolving globals: FALSE [05:58:37.936] | : . Search for packages associated with the globals ... [05:58:37.937] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:37.938] | : . ' Packages: [3] 'base', 'stats', 'datasets' [05:58:37.938] | : . Search for packages associated with the globals ... done [05:58:37.938] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:37.939] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:37.939] | : . globals: [0] [05:58:37.939] | : . packages: [2] 'stats', 'datasets' [05:58:37.940] | : getGlobalsAndPackages() ... done [05:58:37.940] | : run() for 'Future' () ... [05:58:37.941] | : . state: 'created' [05:58:37.941] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:37.941] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:37.941] | : . Using MultisessionFutureBackend ... [05:58:37.942] | : . ' Number of futures since start: 8 (8 created, 8 launched, 8 finished) [05:58:37.942] | : . ' Launching futures ... [05:58:37.942] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:37.943] | : . ' , ; Workers: [n=2] [05:58:37.943] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:37.947] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:37.947] | : . ' , ; requestWorker() ... [05:58:37.947] | : . ' , ; ` requestNode() ... [05:58:37.947] | : . ' , ; ` | Number of workers: 2 [05:58:37.948] | : . ' , ; ` | Polling for a free worker ... [05:58:37.948] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.948] | : . ' , ; ` | : . Listing all futures [05:58:37.949] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:37.949] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.949] | : . ' , ; ` | : Total time: 0 [05:58:37.950] | : . ' , ; ` | Polling for a free worker ... done [05:58:37.950] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:37.950] | : . ' , ; ` | : Listing all futures [05:58:37.951] | : . ' , ; ` | : Number of registered futures: 0 [05:58:37.951] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:37.951] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:37.951] | : . ' , ; ` | Index of first available worker: 1 [05:58:37.952] | : . ' , ; ` | Validate that the worker is functional ... [05:58:38.021] | : . ' , ; ` | : Worker is functional [05:58:38.021] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.022] | : . ' , ; ` | : . Listing all futures [05:58:38.022] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.022] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.023] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:38.023] | : . ' , ; ` requestNode() ... done [05:58:38.023] | : . ' , ; ` cluster node index: 1 [05:58:38.023] | : . ' , ; requestWorker() ... done [05:58:38.024] | : . ' , ; eraseGlobalEnvironment() ... [05:58:38.024] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:38.025] | : . ' , ; launchFuture() ... [05:58:38.025] | : . ' , ; ` cluster node index: 1 [05:58:38.025] | : . ' , ; ` getFutureData() ... [05:58:38.025] | : . ' , ; ` | getFutureCore() ... [05:58:38.025] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:38.026] | : . ' , ; ` | getFutureCore() ... done [05:58:38.026] | : . ' , ; ` | getFutureCapture() ... [05:58:38.026] | : . ' , ; ` | getFutureCapture() ... done [05:58:38.026] | : . ' , ; ` | getFutureContext() ... [05:58:38.026] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.027] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:38.027] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.027] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:38.027] | : . ' , ; ` | getFutureContext() ... done [05:58:38.027] | : . ' , ; ` getFutureData() ... done [05:58:38.028] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:38.028] | : . ' , ; ` | Appended future to position #1 [05:58:38.028] | : . ' , ; ` | Number of registered futures: 1 [05:58:38.028] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:38.029] | : . ' , ; launchFuture() ... done [05:58:38.029] | : . ' , ; MultisessionFuture started [05:58:38.029] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:38.029] | : . ' Launching futures ... done [05:58:38.029] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:38.029] | : . Using MultisessionFutureBackend ... done [05:58:38.030] | : run() for 'Future' () ... done [05:58:38.030] | future(..., label = NULL) ... done [05:58:38.030] | value() for MultisessionFuture () ... [05:58:38.030] | : result() for ClusterFuture ... [05:58:38.030] | : . assertValidConnection() ... [05:58:38.031] | : . ' cluster node index: 1 [05:58:38.031] | : . assertValidConnection() ... done [05:58:38.031] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:38.031] | : . ' cluster node index: 1 [05:58:38.035] | : . ' [1] TRUE [05:58:38.036] | : . ' received data: [05:58:38.036] | : . ' List of 5 [05:58:38.036] | : . ' $ type : chr "VALUE" [05:58:38.036] | : . ' $ value :List of 16 [05:58:38.036] | : . ' ..$ value :List of 12 [05:58:38.036] | : . ' .. ..$ coefficients : Named num 2.91 [05:58:38.036] | : . ' .. .. ..- attr(*, "names")= chr "speed" [05:58:38.036] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [05:58:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.036] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [05:58:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [05:58:38.036] | : . ' .. ..$ rank : int 1 [05:58:38.036] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [05:58:38.036] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.036] | : . ' .. ..$ assign : int 1 [05:58:38.036] | : . ' .. ..$ qr :List of 5 [05:58:38.036] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [05:58:38.036] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.036] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [05:58:38.036] | : . ' .. .. .. .. ..$ : chr "speed" [05:58:38.036] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [05:58:38.036] | : . ' .. .. ..$ qraux: num 1.03 [05:58:38.036] | : . ' .. .. ..$ pivot: int 1 [05:58:38.036] | : . ' .. .. ..$ tol : num 1e-07 [05:58:38.036] | : . ' .. .. ..$ rank : int 1 [05:58:38.036] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:38.036] | : . ' .. ..$ df.residual : int 49 [05:58:38.036] | : . ' .. ..$ xlevels : Named list() [05:58:38.036] | : . ' .. ..$ call : language lm(formula = dist ~ . + 0, data = cars) [05:58:38.036] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + 0 [05:58:38.036] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:38.036] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.036] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:38.036] | : . ' .. .. .. .. .. ..$ : chr "speed" [05:58:38.036] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:38.036] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:38.036] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [05:58:38.036] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:38.036] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:38.036] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:38.036] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:38.036] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [05:58:38.036] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [05:58:38.036] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [05:58:38.036] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + 0 [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.036] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.036] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:38.036] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:38.036] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:38.036] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:38.036] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:38.036] | : . ' ..$ visible : logi TRUE [05:58:38.036] | : . ' ..$ stdout : chr "" [05:58:38.036] | : . ' ..$ conditions : list() [05:58:38.036] | : . ' ..$ rng : logi FALSE [05:58:38.036] | : . ' ..$ seed : NULL [05:58:38.036] | : . ' ..$ misuseGlobalEnv : NULL [05:58:38.036] | : . ' ..$ misuseConnections :List of 3 [05:58:38.036] | : . ' .. ..$ added : NULL [05:58:38.036] | : . ' .. ..$ removed : NULL [05:58:38.036] | : . ' .. ..$ replaced: NULL [05:58:38.036] | : . ' ..$ misuseDevices : NULL [05:58:38.036] | : . ' ..$ misuseDefaultDevice: list() [05:58:38.036] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.036] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.036] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "23" [05:58:38.036] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:38.036] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:38.036] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:38.036] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:38.036] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:38.036] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:38.036] | : . ' .. .. ..$ pid : int 148948 [05:58:38.036] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:38.036] | : . ' .. .. ..$ random: int 2147483647 [05:58:38.036] | : . ' ..$ r_info :List of 4 [05:58:38.036] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:38.036] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:38.036] | : . ' .. ..$ os : chr "windows" [05:58:38.036] | : . ' .. ..$ os_name : chr "Windows" [05:58:38.036] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:38.036] | : . ' ..$ version : chr "1.8" [05:58:38.036] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:38.036] | : . ' $ success: logi TRUE [05:58:38.036] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.01 NA NA [05:58:38.036] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:38.036] | : . ' $ tag : NULL [05:58:38.086] | : . ' Received FutureResult [05:58:38.087] | : . ' FutureResult: [05:58:38.087] | : . ' value: 'lm' [05:58:38.087] | : . ' visible: TRUE [05:58:38.087] | : . ' stdout: character [05:58:38.087] | : . ' conditions: [n = 0] [05:58:38.087] | : . ' RNG used: FALSE [05:58:38.087] | : . ' duration: 0.005178928 secs (started 2025-06-05 05:58:38.028557) [05:58:38.087] | : . ' version: 1.8 [05:58:38.088] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:38.088] | : . ' , Removed future from position #1 [05:58:38.088] | : . ' , Number of registered futures: 0 [05:58:38.089] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:38.089] | : . ' Erased future from future backend [05:58:38.089] | : . ' result() for ClusterFuture ... [05:58:38.090] | : . ' , result already collected: FutureResult [05:58:38.090] | : . ' result() for ClusterFuture ... done [05:58:38.090] | : . ' signalConditions() ... [05:58:38.091] | : . ' , include = 'immediateCondition' [05:58:38.091] | : . ' , exclude = [05:58:38.091] | : . ' , resignal = FALSE [05:58:38.091] | : . ' , Number of conditions: 0 [05:58:38.092] | : . ' , int 0 [05:58:38.093] | : . ' signalConditions() ... done [05:58:38.093] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:38.093] | : result() for ClusterFuture ... done [05:58:38.093] | : result() for ClusterFuture ... [05:58:38.094] | : . result already collected: FutureResult [05:58:38.094] | : result() for ClusterFuture ... done [05:58:38.094] | : signalConditions() ... [05:58:38.094] | : . include = 'immediateCondition' [05:58:38.095] | : . exclude = [05:58:38.095] | : . resignal = FALSE [05:58:38.095] | : . Number of conditions: 0 [05:58:38.096] | : . int 0 [05:58:38.096] | : signalConditions() ... done [05:58:38.097] | : relay stdout ... [05:58:38.097] | : relay stdout ... done [05:58:38.097] | : check for misuse ... [05:58:38.097] | : check for misuse ... done [05:58:38.098] | 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 [05:58:38.102] | future(..., label = NULL) ... [05:58:38.103] | : lazy: FALSE [05:58:38.103] | : stdout: TRUE [05:58:38.103] | : conditions: [n=1] 'condition' [05:58:38.103] | : gc: FALSE [05:58:38.104] | : earlySignal: FALSE [05:58:38.104] | : getGlobalsAndPackages() ... [05:58:38.104] | : . Searching for globals ... [05:58:38.140] | : . ' globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [05:58:38.140] | : . Searching for globals ... done [05:58:38.140] | : . Resolving globals: FALSE [05:58:38.141] | : . Search for packages associated with the globals ... [05:58:38.141] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:38.142] | : . ' Packages: [3] 'base', 'stats', 'datasets' [05:58:38.142] | : . Search for packages associated with the globals ... done [05:58:38.143] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:38.143] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:38.143] | : . globals: [0] [05:58:38.144] | : . packages: [2] 'stats', 'datasets' [05:58:38.144] | : getGlobalsAndPackages() ... done [05:58:38.145] | : run() for 'Future' () ... [05:58:38.145] | : . state: 'created' [05:58:38.145] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.145] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.145] | : . Using MultisessionFutureBackend ... [05:58:38.146] | : . ' Number of futures since start: 9 (9 created, 9 launched, 9 finished) [05:58:38.146] | : . ' Launching futures ... [05:58:38.146] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:38.146] | : . ' , ; Workers: [n=2] [05:58:38.146] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:38.149] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:38.149] | : . ' , ; requestWorker() ... [05:58:38.149] | : . ' , ; ` requestNode() ... [05:58:38.149] | : . ' , ; ` | Number of workers: 2 [05:58:38.149] | : . ' , ; ` | Polling for a free worker ... [05:58:38.150] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.150] | : . ' , ; ` | : . Listing all futures [05:58:38.150] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.150] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.150] | : . ' , ; ` | : Total time: 0 [05:58:38.150] | : . ' , ; ` | Polling for a free worker ... done [05:58:38.151] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.151] | : . ' , ; ` | : Listing all futures [05:58:38.151] | : . ' , ; ` | : Number of registered futures: 0 [05:58:38.151] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.151] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:38.152] | : . ' , ; ` | Index of first available worker: 1 [05:58:38.152] | : . ' , ; ` | Validate that the worker is functional ... [05:58:38.232] | : . ' , ; ` | : Worker is functional [05:58:38.232] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.232] | : . ' , ; ` | : . Listing all futures [05:58:38.233] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.233] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.233] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:38.234] | : . ' , ; ` requestNode() ... done [05:58:38.234] | : . ' , ; ` cluster node index: 1 [05:58:38.234] | : . ' , ; requestWorker() ... done [05:58:38.235] | : . ' , ; eraseGlobalEnvironment() ... [05:58:38.235] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:38.236] | : . ' , ; launchFuture() ... [05:58:38.236] | : . ' , ; ` cluster node index: 1 [05:58:38.236] | : . ' , ; ` getFutureData() ... [05:58:38.237] | : . ' , ; ` | getFutureCore() ... [05:58:38.237] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:38.237] | : . ' , ; ` | getFutureCore() ... done [05:58:38.237] | : . ' , ; ` | getFutureCapture() ... [05:58:38.238] | : . ' , ; ` | getFutureCapture() ... done [05:58:38.238] | : . ' , ; ` | getFutureContext() ... [05:58:38.238] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.239] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:38.239] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.239] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:38.240] | : . ' , ; ` | getFutureContext() ... done [05:58:38.240] | : . ' , ; ` getFutureData() ... done [05:58:38.240] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:38.241] | : . ' , ; ` | Appended future to position #1 [05:58:38.241] | : . ' , ; ` | Number of registered futures: 1 [05:58:38.241] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:38.242] | : . ' , ; launchFuture() ... done [05:58:38.242] | : . ' , ; MultisessionFuture started [05:58:38.242] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:38.242] | : . ' Launching futures ... done [05:58:38.243] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:38.243] | : . Using MultisessionFutureBackend ... done [05:58:38.243] | : run() for 'Future' () ... done [05:58:38.243] | future(..., label = NULL) ... done [05:58:38.244] | value() for MultisessionFuture () ... [05:58:38.244] | : result() for ClusterFuture ... [05:58:38.244] | : . assertValidConnection() ... [05:58:38.245] | : . ' cluster node index: 1 [05:58:38.245] | : . assertValidConnection() ... done [05:58:38.246] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:38.246] | : . ' cluster node index: 1 [05:58:38.248] | : . ' [1] TRUE [05:58:38.248] | : . ' received data: [05:58:38.248] | : . ' List of 5 [05:58:38.248] | : . ' $ type : chr "VALUE" [05:58:38.248] | : . ' $ value :List of 16 [05:58:38.248] | : . ' ..$ value :List of 12 [05:58:38.248] | : . ' .. ..$ coefficients : Named num [1:2] -17.58 3.93 [05:58:38.248] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "(Intercept)" "speed" [05:58:38.248] | : . ' .. ..$ residuals : Named num [1:50] 3.85 11.85 -5.95 12.05 2.12 ... [05:58:38.248] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.248] | : . ' .. ..$ effects : Named num [1:50] -303.914 145.552 -8.115 9.885 0.194 ... [05:58:38.248] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "" "" ... [05:58:38.248] | : . ' .. ..$ rank : int 2 [05:58:38.248] | : . ' .. ..$ fitted.values: Named num [1:50] -1.85 -1.85 9.95 9.95 13.88 ... [05:58:38.248] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.248] | : . ' .. ..$ assign : int [1:2] 0 1 [05:58:38.248] | : . ' .. ..$ qr :List of 5 [05:58:38.248] | : . ' .. .. ..$ qr : num [1:50, 1:2] -7.071 0.141 0.141 0.141 0.141 ... [05:58:38.248] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.248] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [05:58:38.248] | : . ' .. .. .. .. ..$ : chr [1:2] "(Intercept)" "speed" [05:58:38.248] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 0 1 [05:58:38.248] | : . ' .. .. ..$ qraux: num [1:2] 1.14 1.27 [05:58:38.248] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [05:58:38.248] | : . ' .. .. ..$ tol : num 1e-07 [05:58:38.248] | : . ' .. .. ..$ rank : int 2 [05:58:38.248] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:38.248] | : . ' .. ..$ df.residual : int 48 [05:58:38.248] | : . ' .. ..$ xlevels : Named list() [05:58:38.248] | : . ' .. ..$ call : language lm(formula = dist ~ speed + speed^2, data = cars) [05:58:38.248] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + speed^2 [05:58:38.248] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:38.248] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.248] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:38.248] | : . ' .. .. .. .. .. ..$ : chr "speed" [05:58:38.248] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:38.248] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:38.248] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.248] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:38.248] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:38.248] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:38.248] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:38.248] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [05:58:38.248] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [05:58:38.248] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [05:58:38.248] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + speed^2 [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.248] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.248] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [05:58:38.248] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [05:58:38.248] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [05:58:38.248] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [05:58:38.248] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:38.248] | : . ' ..$ visible : logi TRUE [05:58:38.248] | : . ' ..$ stdout : chr "" [05:58:38.248] | : . ' ..$ conditions : list() [05:58:38.248] | : . ' ..$ rng : logi FALSE [05:58:38.248] | : . ' ..$ seed : NULL [05:58:38.248] | : . ' ..$ misuseGlobalEnv : NULL [05:58:38.248] | : . ' ..$ misuseConnections :List of 3 [05:58:38.248] | : . ' .. ..$ added : NULL [05:58:38.248] | : . ' .. ..$ removed : NULL [05:58:38.248] | : . ' .. ..$ replaced: NULL [05:58:38.248] | : . ' ..$ misuseDevices : NULL [05:58:38.248] | : . ' ..$ misuseDefaultDevice: list() [05:58:38.248] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.248] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.248] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "24" [05:58:38.248] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:38.248] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:38.248] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:38.248] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:38.248] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:38.248] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:38.248] | : . ' .. .. ..$ pid : int 148948 [05:58:38.248] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:38.248] | : . ' .. .. ..$ random: int 2147483647 [05:58:38.248] | : . ' ..$ r_info :List of 4 [05:58:38.248] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:38.248] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:38.248] | : . ' .. ..$ os : chr "windows" [05:58:38.248] | : . ' .. ..$ os_name : chr "Windows" [05:58:38.248] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:38.248] | : . ' ..$ version : chr "1.8" [05:58:38.248] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:38.248] | : . ' $ success: logi TRUE [05:58:38.248] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [05:58:38.248] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:38.248] | : . ' $ tag : NULL [05:58:38.291] | : . ' Received FutureResult [05:58:38.291] | : . ' FutureResult: [05:58:38.291] | : . ' value: 'lm' [05:58:38.291] | : . ' visible: TRUE [05:58:38.291] | : . ' stdout: character [05:58:38.291] | : . ' conditions: [n = 0] [05:58:38.291] | : . ' RNG used: FALSE [05:58:38.291] | : . ' duration: 0.005059004 secs (started 2025-06-05 05:58:38.241221) [05:58:38.291] | : . ' version: 1.8 [05:58:38.292] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:38.292] | : . ' , Removed future from position #1 [05:58:38.293] | : . ' , Number of registered futures: 0 [05:58:38.293] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:38.293] | : . ' Erased future from future backend [05:58:38.294] | : . ' result() for ClusterFuture ... [05:58:38.294] | : . ' , result already collected: FutureResult [05:58:38.294] | : . ' result() for ClusterFuture ... done [05:58:38.295] | : . ' signalConditions() ... [05:58:38.295] | : . ' , include = 'immediateCondition' [05:58:38.295] | : . ' , exclude = [05:58:38.295] | : . ' , resignal = FALSE [05:58:38.296] | : . ' , Number of conditions: 0 [05:58:38.296] | : . ' , int 0 [05:58:38.297] | : . ' signalConditions() ... done [05:58:38.297] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:38.297] | : result() for ClusterFuture ... done [05:58:38.297] | : result() for ClusterFuture ... [05:58:38.298] | : . result already collected: FutureResult [05:58:38.298] | : result() for ClusterFuture ... done [05:58:38.298] | : signalConditions() ... [05:58:38.298] | : . include = 'immediateCondition' [05:58:38.299] | : . exclude = [05:58:38.299] | : . resignal = FALSE [05:58:38.299] | : . Number of conditions: 0 [05:58:38.300] | : . int 0 [05:58:38.300] | : signalConditions() ... done [05:58:38.301] | : relay stdout ... [05:58:38.301] | : relay stdout ... done [05:58:38.301] | : check for misuse ... [05:58:38.301] | : check for misuse ... done [05:58:38.302] | 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 [05:58:38.307] | future(..., label = NULL) ... [05:58:38.307] | : lazy: FALSE [05:58:38.307] | : stdout: TRUE [05:58:38.308] | : conditions: [n=1] 'condition' [05:58:38.308] | : gc: FALSE [05:58:38.308] | : earlySignal: FALSE [05:58:38.309] | : getGlobalsAndPackages() ... [05:58:38.309] | : . Searching for globals ... [05:58:38.345] | : . ' globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [05:58:38.345] | : . Searching for globals ... done [05:58:38.346] | : . Resolving globals: FALSE [05:58:38.346] | : . Search for packages associated with the globals ... [05:58:38.346] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:38.347] | : . ' Packages: [3] 'base', 'stats', 'datasets' [05:58:38.347] | : . Search for packages associated with the globals ... done [05:58:38.348] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:38.348] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:38.348] | : . globals: [0] [05:58:38.348] | : . packages: [2] 'stats', 'datasets' [05:58:38.349] | : getGlobalsAndPackages() ... done [05:58:38.349] | : run() for 'Future' () ... [05:58:38.349] | : . state: 'created' [05:58:38.350] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.350] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.350] | : . Using MultisessionFutureBackend ... [05:58:38.350] | : . ' Number of futures since start: 10 (10 created, 10 launched, 10 finished) [05:58:38.351] | : . ' Launching futures ... [05:58:38.351] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:38.351] | : . ' , ; Workers: [n=2] [05:58:38.351] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:38.354] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:38.355] | : . ' , ; requestWorker() ... [05:58:38.355] | : . ' , ; ` requestNode() ... [05:58:38.355] | : . ' , ; ` | Number of workers: 2 [05:58:38.355] | : . ' , ; ` | Polling for a free worker ... [05:58:38.356] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.356] | : . ' , ; ` | : . Listing all futures [05:58:38.356] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.356] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.356] | : . ' , ; ` | : Total time: 0 [05:58:38.357] | : . ' , ; ` | Polling for a free worker ... done [05:58:38.357] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.357] | : . ' , ; ` | : Listing all futures [05:58:38.357] | : . ' , ; ` | : Number of registered futures: 0 [05:58:38.358] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.358] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:38.358] | : . ' , ; ` | Index of first available worker: 1 [05:58:38.358] | : . ' , ; ` | Validate that the worker is functional ... [05:58:38.436] | : . ' , ; ` | : Worker is functional [05:58:38.436] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.436] | : . ' , ; ` | : . Listing all futures [05:58:38.437] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.437] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.437] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:38.438] | : . ' , ; ` requestNode() ... done [05:58:38.438] | : . ' , ; ` cluster node index: 1 [05:58:38.438] | : . ' , ; requestWorker() ... done [05:58:38.438] | : . ' , ; eraseGlobalEnvironment() ... [05:58:38.439] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:38.439] | : . ' , ; launchFuture() ... [05:58:38.440] | : . ' , ; ` cluster node index: 1 [05:58:38.440] | : . ' , ; ` getFutureData() ... [05:58:38.440] | : . ' , ; ` | getFutureCore() ... [05:58:38.441] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:38.441] | : . ' , ; ` | getFutureCore() ... done [05:58:38.441] | : . ' , ; ` | getFutureCapture() ... [05:58:38.441] | : . ' , ; ` | getFutureCapture() ... done [05:58:38.442] | : . ' , ; ` | getFutureContext() ... [05:58:38.442] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.442] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:38.443] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.443] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:38.443] | : . ' , ; ` | getFutureContext() ... done [05:58:38.444] | : . ' , ; ` getFutureData() ... done [05:58:38.444] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:38.445] | : . ' , ; ` | Appended future to position #1 [05:58:38.445] | : . ' , ; ` | Number of registered futures: 1 [05:58:38.445] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:38.445] | : . ' , ; launchFuture() ... done [05:58:38.446] | : . ' , ; MultisessionFuture started [05:58:38.446] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:38.446] | : . ' Launching futures ... done [05:58:38.447] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:38.447] | : . Using MultisessionFutureBackend ... done [05:58:38.447] | : run() for 'Future' () ... done [05:58:38.447] | future(..., label = NULL) ... done [05:58:38.448] | value() for MultisessionFuture () ... [05:58:38.448] | : result() for ClusterFuture ... [05:58:38.448] | : . assertValidConnection() ... [05:58:38.449] | : . ' cluster node index: 1 [05:58:38.449] | : . assertValidConnection() ... done [05:58:38.450] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:38.450] | : . ' cluster node index: 1 [05:58:38.456] | : . ' [1] TRUE [05:58:38.457] | : . ' received data: [05:58:38.457] | : . ' List of 5 [05:58:38.457] | : . ' $ type : chr "VALUE" [05:58:38.457] | : . ' $ value :List of 16 [05:58:38.457] | : . ' ..$ value :List of 12 [05:58:38.457] | : . ' .. ..$ coefficients : Named num [1:3] 2.47 0.913 0.1 [05:58:38.457] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [05:58:38.457] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.457] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [05:58:38.457] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "I(speed^2)" "" ... [05:58:38.457] | : . ' .. ..$ rank : int 3 [05:58:38.457] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [05:58:38.457] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.457] | : . ' .. ..$ assign : int [1:3] 0 1 2 [05:58:38.457] | : . ' .. ..$ qr :List of 5 [05:58:38.457] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [05:58:38.457] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.457] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [05:58:38.457] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 2 [05:58:38.457] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [05:58:38.457] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [05:58:38.457] | : . ' .. .. ..$ tol : num 1e-07 [05:58:38.457] | : . ' .. .. ..$ rank : int 3 [05:58:38.457] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:38.457] | : . ' .. ..$ df.residual : int 47 [05:58:38.457] | : . ' .. ..$ xlevels : Named list() [05:58:38.457] | : . ' .. ..$ call : language lm(formula = dist ~ speed + I(speed^2), data = cars) [05:58:38.457] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [05:58:38.457] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [05:58:38.457] | : . ' .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.457] | : . ' .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [05:58:38.457] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.457] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:38.457] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:38.457] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [05:58:38.457] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. ..$ model :'data.frame': 50 obs. of 3 variables: [05:58:38.457] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [05:58:38.457] | : . ' .. .. ..$ speed : num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [05:58:38.457] | : . ' .. .. ..$ I(speed^2): 'AsIs' num [1:50] 16 16 49 49 64 81 100 100 100 121 ... [05:58:38.457] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [05:58:38.457] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.457] | : . ' .. .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [05:58:38.457] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [05:58:38.457] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [05:58:38.457] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:38.457] | : . ' ..$ visible : logi TRUE [05:58:38.457] | : . ' ..$ stdout : chr "" [05:58:38.457] | : . ' ..$ conditions : list() [05:58:38.457] | : . ' ..$ rng : logi FALSE [05:58:38.457] | : . ' ..$ seed : NULL [05:58:38.457] | : . ' ..$ misuseGlobalEnv : NULL [05:58:38.457] | : . ' ..$ misuseConnections :List of 3 [05:58:38.457] | : . ' .. ..$ added : NULL [05:58:38.457] | : . ' .. ..$ removed : NULL [05:58:38.457] | : . ' .. ..$ replaced: NULL [05:58:38.457] | : . ' ..$ misuseDevices : NULL [05:58:38.457] | : . ' ..$ misuseDefaultDevice: list() [05:58:38.457] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.457] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.457] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "25" [05:58:38.457] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:38.457] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:38.457] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:38.457] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:38.457] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:38.457] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:38.457] | : . ' .. .. ..$ pid : int 148948 [05:58:38.457] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:38.457] | : . ' .. .. ..$ random: int 2147483647 [05:58:38.457] | : . ' ..$ r_info :List of 4 [05:58:38.457] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:38.457] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:38.457] | : . ' .. ..$ os : chr "windows" [05:58:38.457] | : . ' .. ..$ os_name : chr "Windows" [05:58:38.457] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:38.457] | : . ' ..$ version : chr "1.8" [05:58:38.457] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:38.457] | : . ' $ success: logi TRUE [05:58:38.457] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.01 NA NA [05:58:38.457] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:38.457] | : . ' $ tag : NULL [05:58:38.509] | : . ' Received FutureResult [05:58:38.509] | : . ' FutureResult: [05:58:38.509] | : . ' value: 'lm' [05:58:38.509] | : . ' visible: TRUE [05:58:38.509] | : . ' stdout: character [05:58:38.509] | : . ' conditions: [n = 0] [05:58:38.509] | : . ' RNG used: FALSE [05:58:38.509] | : . ' duration: 0.01019907 secs (started 2025-06-05 05:58:38.445047) [05:58:38.509] | : . ' version: 1.8 [05:58:38.510] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:38.511] | : . ' , Removed future from position #1 [05:58:38.511] | : . ' , Number of registered futures: 0 [05:58:38.512] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:38.512] | : . ' Erased future from future backend [05:58:38.512] | : . ' result() for ClusterFuture ... [05:58:38.512] | : . ' , result already collected: FutureResult [05:58:38.513] | : . ' result() for ClusterFuture ... done [05:58:38.513] | : . ' signalConditions() ... [05:58:38.513] | : . ' , include = 'immediateCondition' [05:58:38.513] | : . ' , exclude = [05:58:38.514] | : . ' , resignal = FALSE [05:58:38.514] | : . ' , Number of conditions: 0 [05:58:38.514] | : . ' , int 0 [05:58:38.515] | : . ' signalConditions() ... done [05:58:38.515] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:38.516] | : result() for ClusterFuture ... done [05:58:38.516] | : result() for ClusterFuture ... [05:58:38.516] | : . result already collected: FutureResult [05:58:38.517] | : result() for ClusterFuture ... done [05:58:38.517] | : signalConditions() ... [05:58:38.517] | : . include = 'immediateCondition' [05:58:38.517] | : . exclude = [05:58:38.518] | : . resignal = FALSE [05:58:38.518] | : . Number of conditions: 0 [05:58:38.518] | : . int 0 [05:58:38.519] | : signalConditions() ... done [05:58:38.519] | : relay stdout ... [05:58:38.519] | : relay stdout ... done [05:58:38.520] | : check for misuse ... [05:58:38.520] | : check for misuse ... done [05:58:38.520] | 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 [05:58:38.526] | future(..., label = NULL) ... [05:58:38.526] | : lazy: FALSE [05:58:38.526] | : stdout: TRUE [05:58:38.526] | : conditions: [n=1] 'condition' [05:58:38.527] | : gc: FALSE [05:58:38.527] | : earlySignal: FALSE [05:58:38.527] | : getGlobalsAndPackages() ... [05:58:38.528] | : . Searching for globals ... [05:58:38.555] | : . ' globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [05:58:38.556] | : . Searching for globals ... done [05:58:38.556] | : . Resolving globals: FALSE [05:58:38.556] | : . Search for packages associated with the globals ... [05:58:38.557] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [05:58:38.558] | : . ' Packages: [3] 'base', 'stats', 'datasets' [05:58:38.558] | : . Search for packages associated with the globals ... done [05:58:38.558] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [05:58:38.559] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [05:58:38.559] | : . globals: [0] [05:58:38.559] | : . packages: [2] 'stats', 'datasets' [05:58:38.559] | : getGlobalsAndPackages() ... done [05:58:38.560] | : run() for 'Future' () ... [05:58:38.560] | : . state: 'created' [05:58:38.561] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.561] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.561] | : . Using MultisessionFutureBackend ... [05:58:38.561] | : . ' Number of futures since start: 11 (11 created, 11 launched, 11 finished) [05:58:38.562] | : . ' Launching futures ... [05:58:38.562] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:38.562] | : . ' , ; Workers: [n=2] [05:58:38.563] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:38.566] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:38.566] | : . ' , ; requestWorker() ... [05:58:38.566] | : . ' , ; ` requestNode() ... [05:58:38.567] | : . ' , ; ` | Number of workers: 2 [05:58:38.567] | : . ' , ; ` | Polling for a free worker ... [05:58:38.567] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.567] | : . ' , ; ` | : . Listing all futures [05:58:38.568] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.568] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.568] | : . ' , ; ` | : Total time: 0 [05:58:38.568] | : . ' , ; ` | Polling for a free worker ... done [05:58:38.569] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.569] | : . ' , ; ` | : Listing all futures [05:58:38.569] | : . ' , ; ` | : Number of registered futures: 0 [05:58:38.570] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.570] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:38.570] | : . ' , ; ` | Index of first available worker: 1 [05:58:38.570] | : . ' , ; ` | Validate that the worker is functional ... [05:58:38.650] | : . ' , ; ` | : Worker is functional [05:58:38.650] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.650] | : . ' , ; ` | : . Listing all futures [05:58:38.651] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.651] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.651] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:38.651] | : . ' , ; ` requestNode() ... done [05:58:38.652] | : . ' , ; ` cluster node index: 1 [05:58:38.652] | : . ' , ; requestWorker() ... done [05:58:38.652] | : . ' , ; eraseGlobalEnvironment() ... [05:58:38.653] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:38.653] | : . ' , ; launchFuture() ... [05:58:38.653] | : . ' , ; ` cluster node index: 1 [05:58:38.654] | : . ' , ; ` getFutureData() ... [05:58:38.654] | : . ' , ; ` | getFutureCore() ... [05:58:38.654] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [05:58:38.654] | : . ' , ; ` | getFutureCore() ... done [05:58:38.655] | : . ' , ; ` | getFutureCapture() ... [05:58:38.655] | : . ' , ; ` | getFutureCapture() ... done [05:58:38.655] | : . ' , ; ` | getFutureContext() ... [05:58:38.656] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.656] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:38.656] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.657] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:38.657] | : . ' , ; ` | getFutureContext() ... done [05:58:38.657] | : . ' , ; ` getFutureData() ... done [05:58:38.658] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:38.658] | : . ' , ; ` | Appended future to position #1 [05:58:38.659] | : . ' , ; ` | Number of registered futures: 1 [05:58:38.659] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:38.659] | : . ' , ; launchFuture() ... done [05:58:38.659] | : . ' , ; MultisessionFuture started [05:58:38.660] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:38.660] | : . ' Launching futures ... done [05:58:38.660] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:38.661] | : . Using MultisessionFutureBackend ... done [05:58:38.661] | : run() for 'Future' () ... done [05:58:38.661] | future(..., label = NULL) ... done [05:58:38.662] | value() for MultisessionFuture () ... [05:58:38.662] | : result() for ClusterFuture ... [05:58:38.662] | : . assertValidConnection() ... [05:58:38.663] | : . ' cluster node index: 1 [05:58:38.663] | : . assertValidConnection() ... done [05:58:38.663] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:38.664] | : . ' cluster node index: 1 [05:58:38.667] | : . ' [1] TRUE [05:58:38.668] | : . ' received data: [05:58:38.668] | : . ' List of 5 [05:58:38.668] | : . ' $ type : chr "VALUE" [05:58:38.668] | : . ' $ value :List of 16 [05:58:38.668] | : . ' ..$ value :List of 12 [05:58:38.668] | : . ' .. ..$ coefficients : Named num [1:3] 43 146 23 [05:58:38.668] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [05:58:38.668] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [05:58:38.668] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.668] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [05:58:38.668] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" "" ... [05:58:38.668] | : . ' .. ..$ rank : int 3 [05:58:38.668] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [05:58:38.668] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [05:58:38.668] | : . ' .. ..$ assign : int [1:3] 0 1 1 [05:58:38.668] | : . ' .. ..$ qr :List of 5 [05:58:38.668] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [05:58:38.668] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.668] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [05:58:38.668] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [05:58:38.668] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 1 [05:58:38.668] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [05:58:38.668] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [05:58:38.668] | : . ' .. .. ..$ tol : num 1e-07 [05:58:38.668] | : . ' .. .. ..$ rank : int 3 [05:58:38.668] | : . ' .. .. ..- attr(*, "class")= chr "qr" [05:58:38.668] | : . ' .. ..$ df.residual : int 47 [05:58:38.668] | : . ' .. ..$ xlevels : Named list() [05:58:38.668] | : . ' .. ..$ call : language lm(formula = dist ~ poly(speed, 2), data = cars) [05:58:38.668] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ poly(speed, 2) [05:58:38.668] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [05:58:38.668] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.668] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. .. .. ..$ : chr "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. ..- attr(*, "order")= int 1 [05:58:38.668] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.668] | : . ' .. .. .. ..- attr(*, "response")= int 1 [05:58:38.668] | : . ' .. .. .. ..- attr(*, ".Environment")= [05:58:38.668] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [05:58:38.668] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [05:58:38.668] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [05:58:38.668] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [05:58:38.668] | : . ' .. .. ..$ poly(speed, 2): 'poly' num [1:50, 1:2] -0.308 -0.308 -0.227 -0.227 -0.2 ... [05:58:38.668] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.668] | : . ' .. .. .. .. ..$ : NULL [05:58:38.668] | : . ' .. .. .. .. ..$ : chr [1:2] "1" "2" [05:58:38.668] | : . ' .. .. .. ..- attr(*, "coefs")=List of 2 [05:58:38.668] | : . ' .. .. .. .. ..$ alpha: num [1:2] 15.4 14.8 [05:58:38.668] | : . ' .. .. .. .. ..$ norm2: num [1:4] 1 50 1370 52924 [05:58:38.668] | : . ' .. .. .. ..- attr(*, "degree")= int [1:2] 1 2 [05:58:38.668] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ poly(speed, 2) [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [05:58:38.668] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [05:58:38.668] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. .. .. .. ..$ : chr "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [05:58:38.668] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [05:58:38.668] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [05:58:38.668] | : . ' .. ..- attr(*, "class")= chr "lm" [05:58:38.668] | : . ' ..$ visible : logi TRUE [05:58:38.668] | : . ' ..$ stdout : chr "" [05:58:38.668] | : . ' ..$ conditions : list() [05:58:38.668] | : . ' ..$ rng : logi FALSE [05:58:38.668] | : . ' ..$ seed : NULL [05:58:38.668] | : . ' ..$ misuseGlobalEnv : NULL [05:58:38.668] | : . ' ..$ misuseConnections :List of 3 [05:58:38.668] | : . ' .. ..$ added : NULL [05:58:38.668] | : . ' .. ..$ removed : NULL [05:58:38.668] | : . ' .. ..$ replaced: NULL [05:58:38.668] | : . ' ..$ misuseDevices : NULL [05:58:38.668] | : . ' ..$ misuseDefaultDevice: list() [05:58:38.668] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.668] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.668] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "26" [05:58:38.668] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:38.668] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:38.668] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:38.668] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:38.668] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:38.668] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:38.668] | : . ' .. .. ..$ pid : int 148948 [05:58:38.668] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:38.668] | : . ' .. .. ..$ random: int 2147483647 [05:58:38.668] | : . ' ..$ r_info :List of 4 [05:58:38.668] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:38.668] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:38.668] | : . ' .. ..$ os : chr "windows" [05:58:38.668] | : . ' .. ..$ os_name : chr "Windows" [05:58:38.668] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:38.668] | : . ' ..$ version : chr "1.8" [05:58:38.668] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:38.668] | : . ' $ success: logi TRUE [05:58:38.668] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.02 NA NA [05:58:38.668] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:38.668] | : . ' $ tag : NULL [05:58:38.724] | : . ' Received FutureResult [05:58:38.724] | : . ' FutureResult: [05:58:38.724] | : . ' value: 'lm' [05:58:38.724] | : . ' visible: TRUE [05:58:38.724] | : . ' stdout: character [05:58:38.724] | : . ' conditions: [n = 0] [05:58:38.724] | : . ' RNG used: FALSE [05:58:38.724] | : . ' duration: 0.007383108 secs (started 2025-06-05 05:58:38.658696) [05:58:38.724] | : . ' version: 1.8 [05:58:38.725] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:38.725] | : . ' , Removed future from position #1 [05:58:38.725] | : . ' , Number of registered futures: 0 [05:58:38.725] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:38.726] | : . ' Erased future from future backend [05:58:38.726] | : . ' result() for ClusterFuture ... [05:58:38.726] | : . ' , result already collected: FutureResult [05:58:38.726] | : . ' result() for ClusterFuture ... done [05:58:38.726] | : . ' signalConditions() ... [05:58:38.726] | : . ' , include = 'immediateCondition' [05:58:38.727] | : . ' , exclude = [05:58:38.727] | : . ' , resignal = FALSE [05:58:38.727] | : . ' , Number of conditions: 0 [05:58:38.727] | : . ' , int 0 [05:58:38.728] | : . ' signalConditions() ... done [05:58:38.728] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:38.728] | : result() for ClusterFuture ... done [05:58:38.728] | : result() for ClusterFuture ... [05:58:38.728] | : . result already collected: FutureResult [05:58:38.728] | : result() for ClusterFuture ... done [05:58:38.729] | : signalConditions() ... [05:58:38.729] | : . include = 'immediateCondition' [05:58:38.729] | : . exclude = [05:58:38.729] | : . resignal = FALSE [05:58:38.729] | : . Number of conditions: 0 [05:58:38.729] | : . int 0 [05:58:38.730] | : signalConditions() ... done [05:58:38.730] | : relay stdout ... [05:58:38.730] | : relay stdout ... done [05:58:38.730] | : check for misuse ... [05:58:38.731] | : check for misuse ... done [05:58:38.731] | 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) ... [05:58:38.733] | future(..., label = NULL) ... [05:58:38.733] | : lazy: FALSE [05:58:38.733] | : stdout: TRUE [05:58:38.733] | : conditions: [n=1] 'condition' [05:58:38.733] | : gc: FALSE [05:58:38.734] | : earlySignal: FALSE [05:58:38.734] | : getGlobalsAndPackages() ... [05:58:38.734] | : . Searching for globals ... [05:58:38.794] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [05:58:38.795] | : . Searching for globals ... done [05:58:38.795] | : . Resolving globals: FALSE [05:58:38.795] | : . Search for packages associated with the globals ... [05:58:38.796] | : . ' Packages associated with globals: [1] 'base' [05:58:38.797] | : . ' Packages: [1] 'base' [05:58:38.797] | : . Search for packages associated with the globals ... done [05:58:38.798] | : . Packages after dropping 'base': [0] [05:58:38.798] | : . globals: [3] 'outer_function', 'map', 'inner_function' [05:58:38.798] | : . packages: [0] [05:58:38.798] | : getGlobalsAndPackages() ... done [05:58:38.799] | : run() for 'Future' () ... [05:58:38.799] | : . state: 'created' [05:58:38.799] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.800] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.800] | : . Using MultisessionFutureBackend ... [05:58:38.800] | : . ' Number of futures since start: 12 (12 created, 12 launched, 12 finished) [05:58:38.801] | : . ' Launching futures ... [05:58:38.801] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:38.801] | : . ' , ; Workers: [n=2] [05:58:38.801] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:38.804] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:38.805] | : . ' , ; requestWorker() ... [05:58:38.805] | : . ' , ; ` requestNode() ... [05:58:38.805] | : . ' , ; ` | Number of workers: 2 [05:58:38.806] | : . ' , ; ` | Polling for a free worker ... [05:58:38.806] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.806] | : . ' , ; ` | : . Listing all futures [05:58:38.806] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.807] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.807] | : . ' , ; ` | : Total time: 0 [05:58:38.807] | : . ' , ; ` | Polling for a free worker ... done [05:58:38.807] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.807] | : . ' , ; ` | : Listing all futures [05:58:38.808] | : . ' , ; ` | : Number of registered futures: 0 [05:58:38.808] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.808] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:38.808] | : . ' , ; ` | Index of first available worker: 1 [05:58:38.809] | : . ' , ; ` | Validate that the worker is functional ... [05:58:38.887] | : . ' , ; ` | : Worker is functional [05:58:38.887] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:38.888] | : . ' , ; ` | : . Listing all futures [05:58:38.888] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:38.888] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:38.889] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:38.889] | : . ' , ; ` requestNode() ... done [05:58:38.889] | : . ' , ; ` cluster node index: 1 [05:58:38.889] | : . ' , ; requestWorker() ... done [05:58:38.890] | : . ' , ; eraseGlobalEnvironment() ... [05:58:38.891] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:38.891] | : . ' , ; launchFuture() ... [05:58:38.891] | : . ' , ; ` cluster node index: 1 [05:58:38.891] | : . ' , ; ` getFutureData() ... [05:58:38.892] | : . ' , ; ` | getFutureCore() ... [05:58:38.892] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [05:58:38.892] | : . ' , ; ` | getFutureCore() ... done [05:58:38.892] | : . ' , ; ` | getFutureCapture() ... [05:58:38.893] | : . ' , ; ` | getFutureCapture() ... done [05:58:38.893] | : . ' , ; ` | getFutureContext() ... [05:58:38.893] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:38.893] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:38.894] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:38.894] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:38.894] | : . ' , ; ` | getFutureContext() ... done [05:58:38.895] | : . ' , ; ` getFutureData() ... done [05:58:38.895] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:38.896] | : . ' , ; ` | Appended future to position #1 [05:58:38.896] | : . ' , ; ` | Number of registered futures: 1 [05:58:38.896] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:38.896] | : . ' , ; launchFuture() ... done [05:58:38.897] | : . ' , ; MultisessionFuture started [05:58:38.897] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:38.897] | : . ' Launching futures ... done [05:58:38.897] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:38.898] | : . Using MultisessionFutureBackend ... done [05:58:38.898] | : run() for 'Future' () ... done [05:58:38.898] | future(..., label = NULL) ... done [05:58:38.898] | value() for MultisessionFuture () ... [05:58:38.899] | : result() for ClusterFuture ... [05:58:38.899] | : . assertValidConnection() ... [05:58:38.899] | : . ' cluster node index: 1 [05:58:38.900] | : . assertValidConnection() ... done [05:58:38.900] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:38.900] | : . ' cluster node index: 1 [05:58:38.914] | : . ' [1] TRUE [05:58:38.914] | : . ' received data: [05:58:38.915] | : . ' List of 5 [05:58:38.915] | : . ' $ type : chr "VALUE" [05:58:38.915] | : . ' $ value :List of 16 [05:58:38.915] | : . ' ..$ value :List of 2 [05:58:38.915] | : . ' .. ..$ : num [1:2] 2 3 [05:58:38.915] | : . ' .. ..$ : num [1:2] 2 3 [05:58:38.915] | : . ' ..$ visible : logi TRUE [05:58:38.915] | : . ' ..$ stdout : chr "" [05:58:38.915] | : . ' ..$ conditions : list() [05:58:38.915] | : . ' ..$ rng : logi FALSE [05:58:38.915] | : . ' ..$ seed : NULL [05:58:38.915] | : . ' ..$ misuseGlobalEnv : NULL [05:58:38.915] | : . ' ..$ misuseConnections :List of 3 [05:58:38.915] | : . ' .. ..$ added : NULL [05:58:38.915] | : . ' .. ..$ removed : NULL [05:58:38.915] | : . ' .. ..$ replaced: NULL [05:58:38.915] | : . ' ..$ misuseDevices : NULL [05:58:38.915] | : . ' ..$ misuseDefaultDevice: list() [05:58:38.915] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.915] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:38" [05:58:38.915] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "27" [05:58:38.915] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:38.915] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:38.915] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:38.915] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:38.915] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:38.915] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:38.915] | : . ' .. .. ..$ pid : int 148948 [05:58:38.915] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:38.915] | : . ' .. .. ..$ random: int 2147483647 [05:58:38.915] | : . ' ..$ r_info :List of 4 [05:58:38.915] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:38.915] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:38.915] | : . ' .. ..$ os : chr "windows" [05:58:38.915] | : . ' .. ..$ os_name : chr "Windows" [05:58:38.915] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:38.915] | : . ' ..$ version : chr "1.8" [05:58:38.915] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:38.915] | : . ' $ success: logi TRUE [05:58:38.915] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.02 NA NA [05:58:38.915] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:38.915] | : . ' $ tag : NULL [05:58:38.933] | : . ' Received FutureResult [05:58:38.933] | : . ' FutureResult: [05:58:38.933] | : . ' value: 'list' [05:58:38.933] | : . ' visible: TRUE [05:58:38.933] | : . ' stdout: character [05:58:38.933] | : . ' conditions: [n = 0] [05:58:38.933] | : . ' RNG used: FALSE [05:58:38.933] | : . ' duration: 0.01600385 secs (started 2025-06-05 05:58:38.89613) [05:58:38.933] | : . ' version: 1.8 [05:58:38.934] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:38.934] | : . ' , Removed future from position #1 [05:58:38.935] | : . ' , Number of registered futures: 0 [05:58:38.935] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:38.935] | : . ' Erased future from future backend [05:58:38.936] | : . ' result() for ClusterFuture ... [05:58:38.936] | : . ' , result already collected: FutureResult [05:58:38.936] | : . ' result() for ClusterFuture ... done [05:58:38.937] | : . ' signalConditions() ... [05:58:38.937] | : . ' , include = 'immediateCondition' [05:58:38.937] | : . ' , exclude = [05:58:38.937] | : . ' , resignal = FALSE [05:58:38.938] | : . ' , Number of conditions: 0 [05:58:38.938] | : . ' , int 0 [05:58:38.939] | : . ' signalConditions() ... done [05:58:38.939] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:38.939] | : result() for ClusterFuture ... done [05:58:38.940] | : result() for ClusterFuture ... [05:58:38.940] | : . result already collected: FutureResult [05:58:38.940] | : result() for ClusterFuture ... done [05:58:38.941] | : signalConditions() ... [05:58:38.941] | : . include = 'immediateCondition' [05:58:38.941] | : . exclude = [05:58:38.941] | : . resignal = FALSE [05:58:38.942] | : . Number of conditions: 0 [05:58:38.942] | : . int 0 [05:58:38.943] | : signalConditions() ... done [05:58:38.943] | : relay stdout ... [05:58:38.943] | : relay stdout ... done [05:58:38.943] | : check for misuse ... [05:58:38.944] | : check for misuse ... done [05:58:38.944] | value() for MultisessionFuture () ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [05:58:38.946] | future(..., label = NULL) ... [05:58:38.947] | : lazy: FALSE [05:58:38.947] | : stdout: TRUE [05:58:38.947] | : conditions: [n=1] 'condition' [05:58:38.947] | : gc: FALSE [05:58:38.948] | : earlySignal: FALSE [05:58:38.948] | : getGlobalsAndPackages() ... [05:58:38.948] | : . Searching for globals ... [05:58:39.009] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [05:58:39.009] | : . Searching for globals ... done [05:58:39.010] | : . Resolving globals: FALSE [05:58:39.010] | : . Search for packages associated with the globals ... [05:58:39.011] | : . ' Packages associated with globals: [1] 'base' [05:58:39.012] | : . ' Packages: [1] 'base' [05:58:39.012] | : . Search for packages associated with the globals ... done [05:58:39.012] | : . Packages after dropping 'base': [0] [05:58:39.013] | : . globals: [3] 'outer_function', 'map', 'inner_function' [05:58:39.013] | : . packages: [0] [05:58:39.013] | : getGlobalsAndPackages() ... done [05:58:39.014] | : run() for 'Future' () ... [05:58:39.014] | : . state: 'created' [05:58:39.014] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:39.015] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:39.015] | : . Using MultisessionFutureBackend ... [05:58:39.015] | : . ' Number of futures since start: 13 (13 created, 13 launched, 13 finished) [05:58:39.015] | : . ' Launching futures ... [05:58:39.016] | : . ' , launchFuture() for ClusterFutureBackend ... [05:58:39.016] | : . ' , ; Workers: [n=2] [05:58:39.016] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-06-04 r88278 ucrt), platform x86_64-w64-mingw32) [05:58:39.019] | : . ' , ; FutureRegistry: 'workers-c4fe10913b20251b5772632d40937f42' [05:58:39.020] | : . ' , ; requestWorker() ... [05:58:39.020] | : . ' , ; ` requestNode() ... [05:58:39.020] | : . ' , ; ` | Number of workers: 2 [05:58:39.021] | : . ' , ; ` | Polling for a free worker ... [05:58:39.021] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:39.021] | : . ' , ; ` | : . Listing all futures [05:58:39.021] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:39.022] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:39.022] | : . ' , ; ` | : Total time: 0 [05:58:39.022] | : . ' , ; ` | Polling for a free worker ... done [05:58:39.023] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:39.023] | : . ' , ; ` | : Listing all futures [05:58:39.023] | : . ' , ; ` | : Number of registered futures: 0 [05:58:39.023] | : . ' , ; ` | FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:39.024] | : . ' , ; ` | avail: [n=2] '1', '2' [05:58:39.024] | : . ' , ; ` | Index of first available worker: 1 [05:58:39.024] | : . ' , ; ` | Validate that the worker is functional ... [05:58:39.101] | : . ' , ; ` | : Worker is functional [05:58:39.102] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... [05:58:39.102] | : . ' , ; ` | : . Listing all futures [05:58:39.102] | : . ' , ; ` | : . Number of registered futures: 0 [05:58:39.103] | : . ' , ; ` | : FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'list', earlySignal = 0) ... done [05:58:39.103] | : . ' , ; ` | Validate that the worker is functional ... done [05:58:39.103] | : . ' , ; ` requestNode() ... done [05:58:39.104] | : . ' , ; ` cluster node index: 1 [05:58:39.104] | : . ' , ; requestWorker() ... done [05:58:39.104] | : . ' , ; eraseGlobalEnvironment() ... [05:58:39.105] | : . ' , ; eraseGlobalEnvironment() ... done [05:58:39.106] | : . ' , ; launchFuture() ... [05:58:39.106] | : . ' , ; ` cluster node index: 1 [05:58:39.106] | : . ' , ; ` getFutureData() ... [05:58:39.107] | : . ' , ; ` | getFutureCore() ... [05:58:39.107] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [05:58:39.107] | : . ' , ; ` | getFutureCore() ... done [05:58:39.107] | : . ' , ; ` | getFutureCapture() ... [05:58:39.107] | : . ' , ; ` | getFutureCapture() ... done [05:58:39.108] | : . ' , ; ` | getFutureContext() ... [05:58:39.108] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [05:58:39.108] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [05:58:39.108] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [05:58:39.109] | : . ' , ; ` | : Packages needed by future backend (n = 0): [05:58:39.109] | : . ' , ; ` | getFutureContext() ... done [05:58:39.109] | : . ' , ; ` getFutureData() ... done [05:58:39.110] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... [05:58:39.110] | : . ' , ; ` | Appended future to position #1 [05:58:39.110] | : . ' , ; ` | Number of registered futures: 1 [05:58:39.111] | : . ' , ; ` FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'add', earlySignal = 0) ... done [05:58:39.111] | : . ' , ; launchFuture() ... done [05:58:39.111] | : . ' , ; MultisessionFuture started [05:58:39.111] | : . ' , launchFuture() for ClusterFutureBackend ... done [05:58:39.112] | : . ' Launching futures ... done [05:58:39.112] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [05:58:39.112] | : . Using MultisessionFutureBackend ... done [05:58:39.112] | : run() for 'Future' () ... done [05:58:39.112] | future(..., label = NULL) ... done [05:58:39.113] | value() for MultisessionFuture () ... [05:58:39.113] | : result() for ClusterFuture ... [05:58:39.113] | : . assertValidConnection() ... [05:58:39.114] | : . ' cluster node index: 1 [05:58:39.114] | : . assertValidConnection() ... done [05:58:39.114] | : . receiveMessageFromWorker() for ClusterFuture ... [05:58:39.115] | : . ' cluster node index: 1 [05:58:39.118] | : . ' [1] TRUE [05:58:39.119] | : . ' received data: [05:58:39.119] | : . ' List of 5 [05:58:39.119] | : . ' $ type : chr "VALUE" [05:58:39.119] | : . ' $ value :List of 16 [05:58:39.119] | : . ' ..$ value :List of 2 [05:58:39.119] | : . ' .. ..$ : num [1:2] 2 3 [05:58:39.119] | : . ' .. ..$ : num [1:2] 2 3 [05:58:39.119] | : . ' ..$ visible : logi TRUE [05:58:39.119] | : . ' ..$ stdout : chr "" [05:58:39.119] | : . ' ..$ conditions : list() [05:58:39.119] | : . ' ..$ rng : logi FALSE [05:58:39.119] | : . ' ..$ seed : NULL [05:58:39.119] | : . ' ..$ misuseGlobalEnv : NULL [05:58:39.119] | : . ' ..$ misuseConnections :List of 3 [05:58:39.119] | : . ' .. ..$ added : NULL [05:58:39.119] | : . ' .. ..$ removed : NULL [05:58:39.119] | : . ' .. ..$ replaced: NULL [05:58:39.119] | : . ' ..$ misuseDevices : NULL [05:58:39.119] | : . ' ..$ misuseDefaultDevice: list() [05:58:39.119] | : . ' ..$ started : POSIXct[1:1], format: "2025-06-05 05:58:39" [05:58:39.119] | : . ' ..$ finished : POSIXct[1:1], format: "2025-06-05 05:58:39" [05:58:39.119] | : . ' ..$ uuid : chr [1:2] "7a29762c038d8cc73b2d73ead6bdcab4" "28" [05:58:39.119] | : . ' ..$ session_uuid : chr "a190d82f5f69bf4286cf9d9eb9ff83cb" [05:58:39.119] | : . ' .. ..- attr(*, "source")=List of 5 [05:58:39.119] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [05:58:39.119] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [05:58:39.119] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [05:58:39.119] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [05:58:39.119] | : . ' .. .. ..$ pid : int 148948 [05:58:39.119] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-06-05 05:58:36" [05:58:39.119] | : . ' .. .. ..$ random: int 2147483647 [05:58:39.119] | : . ' ..$ r_info :List of 4 [05:58:39.119] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [05:58:39.119] | : . ' .. .. ..$ : int [1:3] 4 6 0 [05:58:39.119] | : . ' .. ..$ os : chr "windows" [05:58:39.119] | : . ' .. ..$ os_name : chr "Windows" [05:58:39.119] | : . ' .. ..$ captures_utf8: logi TRUE [05:58:39.119] | : . ' ..$ version : chr "1.8" [05:58:39.119] | : . ' ..- attr(*, "class")= chr "FutureResult" [05:58:39.119] | : . ' $ success: logi TRUE [05:58:39.119] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.01 NA NA [05:58:39.119] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [05:58:39.119] | : . ' $ tag : NULL [05:58:39.139] | : . ' Received FutureResult [05:58:39.139] | : . ' FutureResult: [05:58:39.139] | : . ' value: 'list' [05:58:39.139] | : . ' visible: TRUE [05:58:39.139] | : . ' stdout: character [05:58:39.139] | : . ' conditions: [n = 0] [05:58:39.139] | : . ' RNG used: FALSE [05:58:39.139] | : . ' duration: 0.006034851 secs (started 2025-06-05 05:58:39.110815) [05:58:39.139] | : . ' version: 1.8 [05:58:39.140] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... [05:58:39.140] | : . ' , Removed future from position #1 [05:58:39.141] | : . ' , Number of registered futures: 0 [05:58:39.141] | : . ' FutureRegistry('workers-c4fe10913b20251b5772632d40937f42', action = 'remove', earlySignal = 0) ... done [05:58:39.141] | : . ' Erased future from future backend [05:58:39.141] | : . ' result() for ClusterFuture ... [05:58:39.141] | : . ' , result already collected: FutureResult [05:58:39.141] | : . ' result() for ClusterFuture ... done [05:58:39.142] | : . ' signalConditions() ... [05:58:39.142] | : . ' , include = 'immediateCondition' [05:58:39.142] | : . ' , exclude = [05:58:39.142] | : . ' , resignal = FALSE [05:58:39.142] | : . ' , Number of conditions: 0 [05:58:39.142] | : . ' , int 0 [05:58:39.143] | : . ' signalConditions() ... done [05:58:39.143] | : . receiveMessageFromWorker() for ClusterFuture ... done [05:58:39.143] | : result() for ClusterFuture ... done [05:58:39.144] | : result() for ClusterFuture ... [05:58:39.144] | : . result already collected: FutureResult [05:58:39.144] | : result() for ClusterFuture ... done [05:58:39.144] | : signalConditions() ... [05:58:39.144] | : . include = 'immediateCondition' [05:58:39.145] | : . exclude = [05:58:39.145] | : . resignal = FALSE [05:58:39.145] | : . Number of conditions: 0 [05:58:39.145] | : . int 0 [05:58:39.146] | : signalConditions() ... done [05:58:39.146] | : relay stdout ... [05:58:39.147] | : relay stdout ... done [05:58:39.147] | : check for misuse ... [05:58:39.147] | : check for misuse ... done [05:58:39.148] | 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=213] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS44_HOME', 'RTOOLS45_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS45_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTME_NAME', 'R_TESTME_PACKAGE', 'R_TESTME_PATH', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_MAYBE_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_START_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_LOG_USE_INFO_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_NOTE_MISSING_PACKAGE_ANCHORS_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '_R_USE_STRICT_R_HEADERS_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_SPECIAL__', 'maj.version', 'nextArg--timingsnextArg--install', 'tempdirname' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: 03/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/090.gc.R' 04/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/099.session_info.R' 05/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/995.detritus-connections.R' 06/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/999.detritus-files.R' Skipping, because path appears not to be an 'R CMD check' folder: 'D:/temp/2025_06_05_05_55_16_20588' Sourcing 6 epilogue scripts ... done Test time: user.self=5s, sys.self=0.2s, elapsed=6s, user.child=NAs, sys.child=NAs Test 'globals,formulas' ... success > > proc.time() user system elapsed 5.18 0.31 6.53