R Under development (unstable) (2025-05-08 r88190 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## This runs testme test script inst/testme/test-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) [01:57:27.401] Option 'future.startup.script': TRUE [01:57:27.402] Future startup scripts considered: '.future.R', '~/.future.R' [01:57:27.403] 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') ... [01:57:27.454] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.454] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:57:27.454] | : all.equal() for FutureStrategyList ... [01:57:27.455] | : . New stack: [01:57:27.455] | : . List of 1 [01:57:27.455] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.455] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.455] | : . ..- attr(*, "init")= logi TRUE [01:57:27.455] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.455] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.455] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.455] | : . ..- attr(*, "call")= language plan(strategy) [01:57:27.455] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.459] | : . Old stack: [01:57:27.460] | : . List of 1 [01:57:27.460] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.460] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.460] | : . ..- attr(*, "init")= logi TRUE [01:57:27.460] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.460] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.460] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.460] | : . ..- attr(*, "call")= language plan(sequential) [01:57:27.460] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.463] | : . Not identical [01:57:27.463] | : . all.equal() for future ... [01:57:27.463] | : . ' List of 2 [01:57:27.463] | : . ' $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.463] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.463] | : . ' ..- attr(*, "init")= logi TRUE [01:57:27.463] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.463] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.463] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.463] | : . ' ..- attr(*, "call")= language plan(strategy) [01:57:27.463] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.463] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.463] | : . ' ..- attr(*, "init")= logi TRUE [01:57:27.463] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.463] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.463] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.463] | : . ' ..- attr(*, "call")= language plan(sequential) [01:57:27.469] | : . all.equal() for future ... done [01:57:27.469] | : all.equal() for FutureStrategyList ... done [01:57:27.469] | : plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.469] | : List of future strategies: [01:57:27.469] | : 1. sequential: [01:57:27.469] | : - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.469] | : - tweaked: FALSE [01:57:27.469] | : - call: plan(sequential) [01:57:27.470] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [01:57:27.470] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done - lm() ... [01:57:27.471] future(..., label = NULL) ... [01:57:27.471] | lazy: FALSE [01:57:27.471] | stdout: TRUE [01:57:27.471] | conditions: [n=1] 'condition' [01:57:27.471] | gc: FALSE [01:57:27.471] | earlySignal: FALSE [01:57:27.472] | getGlobalsAndPackages() ... [01:57:27.472] | : Searching for globals ... [01:57:27.496] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:27.496] | : Searching for globals ... done [01:57:27.498] | : Resolving globals: FALSE [01:57:27.498] | : Search for packages associated with the globals ... [01:57:27.499] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.499] | : . Packages: [2] 'base', 'stats' [01:57:27.499] | : Search for packages associated with the globals ... done [01:57:27.500] | : Packages after dropping 'base': [1] 'stats' [01:57:27.500] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.500] | : globals: [2] 'weight', 'group' [01:57:27.500] | : packages: [1] 'stats' [01:57:27.500] | getGlobalsAndPackages() ... done [01:57:27.501] | run() for 'Future' (NULL) ... [01:57:27.501] | : state: 'created' [01:57:27.502] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.502] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [01:57:27.502] | : . ' function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.502] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.502] | : . ' - attr(*, "init")= logi TRUE [01:57:27.502] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.502] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.502] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.502] | : . ' - attr(*, "call")= language plan(sequential) [01:57:27.504] | : . ' init: TRUE [01:57:27.505] | : . ' makeFutureBackend() ... [01:57:27.505] | : . ' , Backend function: <'NULL'> [01:57:27.505] | : . ' , Evaluator tweak arguments: [n=0] [01:57:27.505] | : . ' , list() [01:57:27.505] | : . ' , Evaluator formal arguments: [n=2] [01:57:27.506] | : . ' , list() [01:57:27.506] | : . ' , Backend factory arguments: [n=2] [01:57:27.506] | : . ' , Dotted pair list of 2 [01:57:27.506] | : . ' , $ gc : logi FALSE [01:57:27.506] | : . ' , $ earlySignal: logi FALSE [01:57:27.507] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [01:57:27.508] | : . ' makeFutureBackend() ... done [01:57:27.508] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [01:57:27.508] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.508] | : Using SequentialFutureBackend ... [01:57:27.508] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:57:27.509] | : . Launching futures ... [01:57:27.509] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.509] | : . ' , getFutureData() ... [01:57:27.509] | : . ' , ; getFutureCore() ... [01:57:27.510] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.510] | : . ' , ; getFutureCore() ... done [01:57:27.510] | : . ' , ; getFutureCapture() ... [01:57:27.510] | : . ' , ; getFutureCapture() ... done [01:57:27.510] | : . ' , ; getFutureContext() ... [01:57:27.511] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.511] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.511] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.511] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.511] | : . ' , ; getFutureContext() ... done [01:57:27.512] | : . ' , getFutureData() ... done [01:57:27.513] | : . ' , attachPackages() ... [01:57:27.513] | : . ' , ; packages: [n=1] 'future' [01:57:27.513] | : . ' , attachPackages() ... done [01:57:27.513] | : . ' , attachPackages() ... [01:57:27.514] | : . ' , ; packages: [n=1] 'stats' [01:57:27.514] | : . ' , attachPackages() ... done [01:57:27.514] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.515] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.515] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.515] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.516] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.516] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.516] | : . ' , ; ` | New stack: [01:57:27.516] | : . ' , ; ` | List of 1 [01:57:27.516] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.516] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.516] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.516] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.516] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.516] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.516] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.516] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.544] | : . ' , ; ` | Old stack: [01:57:27.545] | : . ' , ; ` | List of 1 [01:57:27.545] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.545] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.545] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.545] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.545] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.545] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.545] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.545] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.545] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.545] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.545] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.549] | : . ' , ; ` | Not identical [01:57:27.549] | : . ' , ; ` | all.equal() for future ... [01:57:27.549] | : . ' , ; ` | : List of 2 [01:57:27.549] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.549] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.549] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.549] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.549] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.549] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.549] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.556] | : . ' , ; ` | all.equal() for future ... done [01:57:27.556] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.556] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.556] | : . ' , ; ` List of future strategies: [01:57:27.556] | : . ' , ; ` 1. sequential: [01:57:27.556] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.556] | : . ' , ; ` - tweaked: FALSE [01:57:27.556] | : . ' , ; ` - call: plan(sequential) [01:57:27.557] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.557] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.558] | : . ' , assign_globals() ... [01:57:27.558] | : . ' , List of 2 [01:57:27.558] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:27.558] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:27.558] | : . ' , - attr(*, "where")=List of 2 [01:57:27.558] | : . ' , ..$ weight: [01:57:27.558] | : . ' , ..$ group : [01:57:27.558] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.558] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.558] | : . ' , - attr(*, "total_size")= num NA [01:57:27.558] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.587] | : . ' , - copied 'weight' to environment [01:57:27.588] | : . ' , - copied 'group' to environment [01:57:27.588] | : . ' , assign_globals() ... done [01:57:27.593] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.593] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.593] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.593] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.594] | : . ' , ; ` | : New stack: [01:57:27.594] | : . ' , ; ` | : List of 1 [01:57:27.594] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.594] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.594] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.594] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.594] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.594] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.598] | : . ' , ; ` | : Old stack: [01:57:27.598] | : . ' , ; ` | : List of 1 [01:57:27.598] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.598] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.598] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.598] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.598] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.598] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.602] | : . ' , ; ` | : Identical [01:57:27.602] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.602] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.602] | : . ' , ; ` | List of future strategies: [01:57:27.602] | : . ' , ; ` | 1. sequential: [01:57:27.602] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.602] | : . ' , ; ` | - tweaked: FALSE [01:57:27.602] | : . ' , ; ` | - call: plan(sequential) [01:57:27.603] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.603] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.603] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.607] | : . ' , SequentialFuture started (and completed) [01:57:27.608] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.608] | : . Launching futures ... done [01:57:27.608] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.608] | : Using SequentialFutureBackend ... done [01:57:27.609] | run() for 'Future' (NULL) ... done [01:57:27.609] future(..., label = NULL) ... done [01:57:27.609] value() for SequentialFuture (NULL) ... [01:57:27.610] | relay stdout ... [01:57:27.610] | relay stdout ... done [01:57:27.610] | check for misuse ... [01:57:27.610] | check for misuse ... done [01:57:27.610] value() for SequentialFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:27.613] future(..., label = NULL) ... [01:57:27.613] | lazy: TRUE [01:57:27.613] | stdout: TRUE [01:57:27.614] | conditions: [n=1] 'condition' [01:57:27.614] | gc: FALSE [01:57:27.614] | earlySignal: FALSE [01:57:27.614] | getGlobalsAndPackages() ... [01:57:27.614] | : Searching for globals ... [01:57:27.632] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:27.632] | : Searching for globals ... done [01:57:27.632] | : Resolving globals: FALSE [01:57:27.633] | : Search for packages associated with the globals ... [01:57:27.633] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.633] | : . Packages: [2] 'base', 'stats' [01:57:27.634] | : Search for packages associated with the globals ... done [01:57:27.634] | : Packages after dropping 'base': [1] 'stats' [01:57:27.634] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.634] | : globals: [2] 'weight', 'group' [01:57:27.634] | : packages: [1] 'stats' [01:57:27.635] | getGlobalsAndPackages() ... done [01:57:27.635] future(..., label = NULL) ... done [01:57:27.635] value() for Future (NULL) ... [01:57:27.635] | run() for 'Future' (NULL) ... [01:57:27.636] | : state: 'created' [01:57:27.636] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.636] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.636] | : Using SequentialFutureBackend ... [01:57:27.636] | : . Number of futures since start: 1 (1 created, 1 launched, 1 finished) [01:57:27.637] | : . Launching futures ... [01:57:27.637] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.637] | : . ' , getFutureData() ... [01:57:27.637] | : . ' , ; getFutureCore() ... [01:57:27.637] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.638] | : . ' , ; getFutureCore() ... done [01:57:27.638] | : . ' , ; getFutureCapture() ... [01:57:27.638] | : . ' , ; getFutureCapture() ... done [01:57:27.638] | : . ' , ; getFutureContext() ... [01:57:27.638] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.639] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.639] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.639] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.639] | : . ' , ; getFutureContext() ... done [01:57:27.639] | : . ' , getFutureData() ... done [01:57:27.640] | : . ' , attachPackages() ... [01:57:27.640] | : . ' , ; packages: [n=1] 'future' [01:57:27.640] | : . ' , attachPackages() ... done [01:57:27.640] | : . ' , attachPackages() ... [01:57:27.641] | : . ' , ; packages: [n=1] 'stats' [01:57:27.641] | : . ' , attachPackages() ... done [01:57:27.641] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.642] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.642] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.642] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.643] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.643] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.643] | : . ' , ; ` | New stack: [01:57:27.643] | : . ' , ; ` | List of 1 [01:57:27.643] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.643] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.643] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.643] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.643] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.643] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.643] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.643] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.647] | : . ' , ; ` | Old stack: [01:57:27.647] | : . ' , ; ` | List of 1 [01:57:27.647] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.647] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.647] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.647] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.647] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.647] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.647] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.647] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.647] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.647] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.647] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.652] | : . ' , ; ` | Not identical [01:57:27.652] | : . ' , ; ` | all.equal() for future ... [01:57:27.653] | : . ' , ; ` | : List of 2 [01:57:27.653] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.653] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.653] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.653] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.653] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.653] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.653] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.660] | : . ' , ; ` | all.equal() for future ... done [01:57:27.661] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.661] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.661] | : . ' , ; ` List of future strategies: [01:57:27.661] | : . ' , ; ` 1. sequential: [01:57:27.661] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.661] | : . ' , ; ` - tweaked: FALSE [01:57:27.661] | : . ' , ; ` - call: plan(sequential) [01:57:27.662] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.662] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.662] | : . ' , assign_globals() ... [01:57:27.662] | : . ' , List of 2 [01:57:27.662] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:27.662] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:27.662] | : . ' , - attr(*, "where")=List of 2 [01:57:27.662] | : . ' , ..$ weight: [01:57:27.662] | : . ' , ..$ group : [01:57:27.662] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.662] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.662] | : . ' , - attr(*, "total_size")= num NA [01:57:27.662] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.667] | : . ' , - copied 'weight' to environment [01:57:27.667] | : . ' , - copied 'group' to environment [01:57:27.667] | : . ' , assign_globals() ... done [01:57:27.671] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.671] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.672] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.672] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.672] | : . ' , ; ` | : New stack: [01:57:27.672] | : . ' , ; ` | : List of 1 [01:57:27.672] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.672] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.672] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.672] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.672] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.672] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.677] | : . ' , ; ` | : Old stack: [01:57:27.677] | : . ' , ; ` | : List of 1 [01:57:27.677] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.677] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.677] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.677] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.677] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.677] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.682] | : . ' , ; ` | : Identical [01:57:27.682] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.683] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.683] | : . ' , ; ` | List of future strategies: [01:57:27.683] | : . ' , ; ` | 1. sequential: [01:57:27.683] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.683] | : . ' , ; ` | - tweaked: FALSE [01:57:27.683] | : . ' , ; ` | - call: plan(sequential) [01:57:27.683] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.684] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.684] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.684] | : . ' , SequentialFuture started (and completed) [01:57:27.685] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.685] | : . Launching futures ... done [01:57:27.685] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.685] | : Using SequentialFutureBackend ... done [01:57:27.686] | run() for 'Future' (NULL) ... done [01:57:27.686] | relay stdout ... [01:57:27.686] | relay stdout ... done [01:57:27.686] | check for misuse ... [01:57:27.687] | check for misuse ... done [01:57:27.687] value() for Future (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:27.690] future(..., label = NULL) ... [01:57:27.691] | lazy: FALSE [01:57:27.691] | stdout: TRUE [01:57:27.691] | conditions: [n=1] 'condition' [01:57:27.691] | gc: FALSE [01:57:27.691] | earlySignal: FALSE [01:57:27.694] | getGlobalsAndPackages() ... [01:57:27.694] | : Searching for globals ... [01:57:27.709] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:27.709] | : Searching for globals ... done [01:57:27.709] | : Resolving globals: FALSE [01:57:27.709] | : Search for packages associated with the globals ... [01:57:27.710] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.710] | : . Packages: [2] 'base', 'stats' [01:57:27.710] | : Search for packages associated with the globals ... done [01:57:27.710] | : Packages after dropping 'base': [1] 'stats' [01:57:27.711] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.711] | : globals: [2] 'weight', 'group' [01:57:27.711] | : packages: [1] 'stats' [01:57:27.711] | getGlobalsAndPackages() ... done [01:57:27.711] | run() for 'Future' (NULL) ... [01:57:27.712] | : state: 'created' [01:57:27.712] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.712] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.712] | : Using SequentialFutureBackend ... [01:57:27.712] | : . Number of futures since start: 2 (2 created, 2 launched, 2 finished) [01:57:27.713] | : . Launching futures ... [01:57:27.713] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.713] | : . ' , getFutureData() ... [01:57:27.713] | : . ' , ; getFutureCore() ... [01:57:27.713] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.713] | : . ' , ; getFutureCore() ... done [01:57:27.714] | : . ' , ; getFutureCapture() ... [01:57:27.714] | : . ' , ; getFutureCapture() ... done [01:57:27.714] | : . ' , ; getFutureContext() ... [01:57:27.714] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.714] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.714] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.715] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.715] | : . ' , ; getFutureContext() ... done [01:57:27.715] | : . ' , getFutureData() ... done [01:57:27.715] | : . ' , attachPackages() ... [01:57:27.715] | : . ' , ; packages: [n=1] 'future' [01:57:27.716] | : . ' , attachPackages() ... done [01:57:27.716] | : . ' , attachPackages() ... [01:57:27.716] | : . ' , ; packages: [n=1] 'stats' [01:57:27.716] | : . ' , attachPackages() ... done [01:57:27.717] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.717] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.717] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.718] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.718] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.718] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.718] | : . ' , ; ` | New stack: [01:57:27.718] | : . ' , ; ` | List of 1 [01:57:27.718] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.718] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.718] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.718] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.718] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.718] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.718] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.718] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.722] | : . ' , ; ` | Old stack: [01:57:27.722] | : . ' , ; ` | List of 1 [01:57:27.722] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.722] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.722] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.722] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.722] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.722] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.722] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.722] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.722] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.722] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.722] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.726] | : . ' , ; ` | Not identical [01:57:27.726] | : . ' , ; ` | all.equal() for future ... [01:57:27.726] | : . ' , ; ` | : List of 2 [01:57:27.726] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.726] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.726] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.726] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.726] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.726] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.726] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.734] | : . ' , ; ` | all.equal() for future ... done [01:57:27.734] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.734] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.735] | : . ' , ; ` List of future strategies: [01:57:27.735] | : . ' , ; ` 1. sequential: [01:57:27.735] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.735] | : . ' , ; ` - tweaked: FALSE [01:57:27.735] | : . ' , ; ` - call: plan(sequential) [01:57:27.735] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.736] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.736] | : . ' , assign_globals() ... [01:57:27.736] | : . ' , List of 2 [01:57:27.736] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:27.736] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:27.736] | : . ' , - attr(*, "where")=List of 2 [01:57:27.736] | : . ' , ..$ weight: [01:57:27.736] | : . ' , ..$ group : [01:57:27.736] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.736] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.736] | : . ' , - attr(*, "total_size")= num NA [01:57:27.736] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.742] | : . ' , - copied 'weight' to environment [01:57:27.742] | : . ' , - copied 'group' to environment [01:57:27.742] | : . ' , assign_globals() ... done [01:57:27.746] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.746] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.747] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.747] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.747] | : . ' , ; ` | : New stack: [01:57:27.747] | : . ' , ; ` | : List of 1 [01:57:27.747] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.747] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.747] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.747] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.747] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.747] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.752] | : . ' , ; ` | : Old stack: [01:57:27.752] | : . ' , ; ` | : List of 1 [01:57:27.752] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.752] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.752] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.752] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.752] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.752] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.756] | : . ' , ; ` | : Identical [01:57:27.757] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.757] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.757] | : . ' , ; ` | List of future strategies: [01:57:27.757] | : . ' , ; ` | 1. sequential: [01:57:27.757] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.757] | : . ' , ; ` | - tweaked: FALSE [01:57:27.757] | : . ' , ; ` | - call: plan(sequential) [01:57:27.758] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.758] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.758] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.759] | : . ' , SequentialFuture started (and completed) [01:57:27.759] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.759] | : . Launching futures ... done [01:57:27.759] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.759] | : Using SequentialFutureBackend ... done [01:57:27.760] | run() for 'Future' (NULL) ... done [01:57:27.760] future(..., label = NULL) ... done [01:57:27.760] value() for SequentialFuture (NULL) ... [01:57:27.760] | relay stdout ... [01:57:27.760] | relay stdout ... done [01:57:27.761] | check for misuse ... [01:57:27.761] | check for misuse ... done [01:57:27.761] value() for SequentialFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:27.763] future(..., label = NULL) ... [01:57:27.763] | lazy: FALSE [01:57:27.764] | stdout: TRUE [01:57:27.764] | conditions: [n=1] 'condition' [01:57:27.764] | gc: FALSE [01:57:27.764] | earlySignal: FALSE [01:57:27.764] | getGlobalsAndPackages() ... [01:57:27.765] | : Searching for globals ... [01:57:27.779] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:27.780] | : Searching for globals ... done [01:57:27.780] | : Resolving globals: FALSE [01:57:27.780] | : Search for packages associated with the globals ... [01:57:27.780] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.781] | : . Packages: [2] 'base', 'stats' [01:57:27.781] | : Search for packages associated with the globals ... done [01:57:27.781] | : Packages after dropping 'base': [1] 'stats' [01:57:27.781] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.781] | : globals: [2] 'weight', 'group' [01:57:27.782] | : packages: [1] 'stats' [01:57:27.782] | getGlobalsAndPackages() ... done [01:57:27.782] | run() for 'Future' (NULL) ... [01:57:27.782] | : state: 'created' [01:57:27.782] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.783] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.783] | : Using SequentialFutureBackend ... [01:57:27.783] | : . Number of futures since start: 3 (3 created, 3 launched, 3 finished) [01:57:27.783] | : . Launching futures ... [01:57:27.783] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.784] | : . ' , getFutureData() ... [01:57:27.784] | : . ' , ; getFutureCore() ... [01:57:27.784] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.784] | : . ' , ; getFutureCore() ... done [01:57:27.784] | : . ' , ; getFutureCapture() ... [01:57:27.785] | : . ' , ; getFutureCapture() ... done [01:57:27.785] | : . ' , ; getFutureContext() ... [01:57:27.785] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.785] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.785] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.785] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.786] | : . ' , ; getFutureContext() ... done [01:57:27.786] | : . ' , getFutureData() ... done [01:57:27.788] | : . ' , attachPackages() ... [01:57:27.788] | : . ' , ; packages: [n=1] 'future' [01:57:27.788] | : . ' , attachPackages() ... done [01:57:27.788] | : . ' , attachPackages() ... [01:57:27.788] | : . ' , ; packages: [n=1] 'stats' [01:57:27.789] | : . ' , attachPackages() ... done [01:57:27.789] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.789] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.789] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.790] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.790] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.790] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.790] | : . ' , ; ` | New stack: [01:57:27.790] | : . ' , ; ` | List of 1 [01:57:27.790] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.790] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.790] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.790] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.790] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.790] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.790] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.790] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.794] | : . ' , ; ` | Old stack: [01:57:27.794] | : . ' , ; ` | List of 1 [01:57:27.794] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.794] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.794] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.794] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.794] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.794] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.794] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.794] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.794] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.794] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.794] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.798] | : . ' , ; ` | Not identical [01:57:27.798] | : . ' , ; ` | all.equal() for future ... [01:57:27.798] | : . ' , ; ` | : List of 2 [01:57:27.798] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.798] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.798] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.798] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.798] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.798] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.798] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.805] | : . ' , ; ` | all.equal() for future ... done [01:57:27.805] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.805] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.805] | : . ' , ; ` List of future strategies: [01:57:27.805] | : . ' , ; ` 1. sequential: [01:57:27.805] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.805] | : . ' , ; ` - tweaked: FALSE [01:57:27.805] | : . ' , ; ` - call: plan(sequential) [01:57:27.806] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.806] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.806] | : . ' , assign_globals() ... [01:57:27.806] | : . ' , List of 2 [01:57:27.806] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:27.806] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:27.806] | : . ' , - attr(*, "where")=List of 2 [01:57:27.806] | : . ' , ..$ weight: [01:57:27.806] | : . ' , ..$ group : [01:57:27.806] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.806] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.806] | : . ' , - attr(*, "total_size")= num NA [01:57:27.806] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.810] | : . ' , - copied 'weight' to environment [01:57:27.810] | : . ' , - copied 'group' to environment [01:57:27.811] | : . ' , assign_globals() ... done [01:57:27.814] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.814] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.814] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.814] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.814] | : . ' , ; ` | : New stack: [01:57:27.815] | : . ' , ; ` | : List of 1 [01:57:27.815] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.815] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.815] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.815] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.815] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.815] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.819] | : . ' , ; ` | : Old stack: [01:57:27.819] | : . ' , ; ` | : List of 1 [01:57:27.819] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.819] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.819] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.819] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.819] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.819] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.823] | : . ' , ; ` | : Identical [01:57:27.823] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.823] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.823] | : . ' , ; ` | List of future strategies: [01:57:27.823] | : . ' , ; ` | 1. sequential: [01:57:27.823] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.823] | : . ' , ; ` | - tweaked: FALSE [01:57:27.823] | : . ' , ; ` | - call: plan(sequential) [01:57:27.824] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.824] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.824] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.825] | : . ' , SequentialFuture started (and completed) [01:57:27.825] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.825] | : . Launching futures ... done [01:57:27.825] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.825] | : Using SequentialFutureBackend ... done [01:57:27.826] | run() for 'Future' (NULL) ... done [01:57:27.826] future(..., label = NULL) ... done [01:57:27.826] value() for SequentialFuture (NULL) ... [01:57:27.826] | relay stdout ... [01:57:27.826] | relay stdout ... done [01:57:27.827] | check for misuse ... [01:57:27.827] | check for misuse ... done [01:57:27.827] value() for SequentialFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:27.829] future(..., label = NULL) ... [01:57:27.829] | lazy: TRUE [01:57:27.829] | stdout: TRUE [01:57:27.830] | conditions: [n=1] 'condition' [01:57:27.830] | gc: FALSE [01:57:27.830] | earlySignal: FALSE [01:57:27.830] | getGlobalsAndPackages() ... [01:57:27.830] | : Searching for globals ... [01:57:27.845] | : . globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:27.846] | : Searching for globals ... done [01:57:27.846] | : Resolving globals: FALSE [01:57:27.846] | : Search for packages associated with the globals ... [01:57:27.846] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.847] | : . Packages: [2] 'base', 'stats' [01:57:27.847] | : Search for packages associated with the globals ... done [01:57:27.847] | : Packages after dropping 'base': [1] 'stats' [01:57:27.847] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.848] | : globals: [2] 'weight', 'group' [01:57:27.848] | : packages: [1] 'stats' [01:57:27.848] | getGlobalsAndPackages() ... done [01:57:27.848] future(..., label = NULL) ... done [01:57:27.848] value() for Future (NULL) ... [01:57:27.849] | run() for 'Future' (NULL) ... [01:57:27.849] | : state: 'created' [01:57:27.849] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.849] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.849] | : Using SequentialFutureBackend ... [01:57:27.849] | : . Number of futures since start: 4 (4 created, 4 launched, 4 finished) [01:57:27.850] | : . Launching futures ... [01:57:27.850] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.850] | : . ' , getFutureData() ... [01:57:27.850] | : . ' , ; getFutureCore() ... [01:57:27.850] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.851] | : . ' , ; getFutureCore() ... done [01:57:27.851] | : . ' , ; getFutureCapture() ... [01:57:27.851] | : . ' , ; getFutureCapture() ... done [01:57:27.851] | : . ' , ; getFutureContext() ... [01:57:27.851] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.851] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.852] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.852] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.852] | : . ' , ; getFutureContext() ... done [01:57:27.852] | : . ' , getFutureData() ... done [01:57:27.852] | : . ' , attachPackages() ... [01:57:27.852] | : . ' , ; packages: [n=1] 'future' [01:57:27.853] | : . ' , attachPackages() ... done [01:57:27.853] | : . ' , attachPackages() ... [01:57:27.853] | : . ' , ; packages: [n=1] 'stats' [01:57:27.853] | : . ' , attachPackages() ... done [01:57:27.854] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.854] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.854] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.855] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.855] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.855] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.855] | : . ' , ; ` | New stack: [01:57:27.855] | : . ' , ; ` | List of 1 [01:57:27.855] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.855] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.855] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.855] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.855] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.855] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.855] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.855] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.858] | : . ' , ; ` | Old stack: [01:57:27.859] | : . ' , ; ` | List of 1 [01:57:27.859] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.859] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.859] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.859] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.859] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.859] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.859] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.859] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.859] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.859] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.859] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.863] | : . ' , ; ` | Not identical [01:57:27.863] | : . ' , ; ` | all.equal() for future ... [01:57:27.863] | : . ' , ; ` | : List of 2 [01:57:27.863] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.863] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.863] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.863] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.863] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.863] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.863] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.870] | : . ' , ; ` | all.equal() for future ... done [01:57:27.870] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.870] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.870] | : . ' , ; ` List of future strategies: [01:57:27.870] | : . ' , ; ` 1. sequential: [01:57:27.870] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.870] | : . ' , ; ` - tweaked: FALSE [01:57:27.870] | : . ' , ; ` - call: plan(sequential) [01:57:27.871] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.871] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.871] | : . ' , assign_globals() ... [01:57:27.872] | : . ' , List of 2 [01:57:27.872] | : . ' , $ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:27.872] | : . ' , $ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:27.872] | : . ' , - attr(*, "where")=List of 2 [01:57:27.872] | : . ' , ..$ weight: [01:57:27.872] | : . ' , ..$ group : [01:57:27.872] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.872] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.872] | : . ' , - attr(*, "total_size")= num NA [01:57:27.872] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.876] | : . ' , - copied 'weight' to environment [01:57:27.876] | : . ' , - copied 'group' to environment [01:57:27.876] | : . ' , assign_globals() ... done [01:57:27.881] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.881] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.881] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.881] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.882] | : . ' , ; ` | : New stack: [01:57:27.882] | : . ' , ; ` | : List of 1 [01:57:27.882] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.882] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.882] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.882] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.882] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.882] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.886] | : . ' , ; ` | : Old stack: [01:57:27.886] | : . ' , ; ` | : List of 1 [01:57:27.886] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.886] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.886] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.886] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.886] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.886] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.890] | : . ' , ; ` | : Identical [01:57:27.890] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.890] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.890] | : . ' , ; ` | List of future strategies: [01:57:27.890] | : . ' , ; ` | 1. sequential: [01:57:27.890] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.890] | : . ' , ; ` | - tweaked: FALSE [01:57:27.890] | : . ' , ; ` | - call: plan(sequential) [01:57:27.891] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.891] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.891] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.892] | : . ' , SequentialFuture started (and completed) [01:57:27.892] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.892] | : . Launching futures ... done [01:57:27.892] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.893] | : Using SequentialFutureBackend ... done [01:57:27.893] | run() for 'Future' (NULL) ... done [01:57:27.893] | relay stdout ... [01:57:27.893] | relay stdout ... done [01:57:27.893] | check for misuse ... [01:57:27.894] | check for misuse ... done [01:57:27.894] value() for Future (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 - Globals - one-side formulas, e.g. xtabs(~ x) ... [01:57:27.896] future(..., label = NULL) ... [01:57:27.896] | lazy: FALSE [01:57:27.896] | stdout: TRUE [01:57:27.896] | conditions: [n=1] 'condition' [01:57:27.896] | gc: FALSE [01:57:27.897] | earlySignal: FALSE [01:57:27.897] | getGlobalsAndPackages() ... [01:57:27.897] | : Searching for globals ... [01:57:27.907] | : . globals found: [4] '{', 'xtabs', 'x', '~' [01:57:27.907] | : Searching for globals ... done [01:57:27.907] | : Resolving globals: FALSE [01:57:27.907] | : Search for packages associated with the globals ... [01:57:27.907] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.908] | : . Packages: [2] 'base', 'stats' [01:57:27.908] | : Search for packages associated with the globals ... done [01:57:27.908] | : Packages after dropping 'base': [1] 'stats' [01:57:27.908] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.909] | : globals: [1] 'x' [01:57:27.909] | : packages: [1] 'stats' [01:57:27.909] | getGlobalsAndPackages() ... done [01:57:27.909] | run() for 'Future' (NULL) ... [01:57:27.909] | : state: 'created' [01:57:27.910] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.910] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.910] | : Using SequentialFutureBackend ... [01:57:27.910] | : . Number of futures since start: 5 (5 created, 5 launched, 5 finished) [01:57:27.910] | : . Launching futures ... [01:57:27.911] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.911] | : . ' , getFutureData() ... [01:57:27.911] | : . ' , ; getFutureCore() ... [01:57:27.911] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.911] | : . ' , ; getFutureCore() ... done [01:57:27.911] | : . ' , ; getFutureCapture() ... [01:57:27.912] | : . ' , ; getFutureCapture() ... done [01:57:27.912] | : . ' , ; getFutureContext() ... [01:57:27.912] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.912] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.912] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.912] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.913] | : . ' , ; getFutureContext() ... done [01:57:27.913] | : . ' , getFutureData() ... done [01:57:27.913] | : . ' , attachPackages() ... [01:57:27.913] | : . ' , ; packages: [n=1] 'future' [01:57:27.913] | : . ' , attachPackages() ... done [01:57:27.914] | : . ' , attachPackages() ... [01:57:27.914] | : . ' , ; packages: [n=1] 'stats' [01:57:27.914] | : . ' , attachPackages() ... done [01:57:27.914] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.915] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.915] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.915] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.916] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.916] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.916] | : . ' , ; ` | New stack: [01:57:27.916] | : . ' , ; ` | List of 1 [01:57:27.916] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.916] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.916] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.916] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.916] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.916] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.916] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.916] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.919] | : . ' , ; ` | Old stack: [01:57:27.919] | : . ' , ; ` | List of 1 [01:57:27.919] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.919] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.919] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.919] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.919] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.919] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.919] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.919] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.919] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.919] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.919] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.923] | : . ' , ; ` | Not identical [01:57:27.924] | : . ' , ; ` | all.equal() for future ... [01:57:27.924] | : . ' , ; ` | : List of 2 [01:57:27.924] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.924] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.924] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.924] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.924] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.924] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.924] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.930] | : . ' , ; ` | all.equal() for future ... done [01:57:27.931] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.931] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.931] | : . ' , ; ` List of future strategies: [01:57:27.931] | : . ' , ; ` 1. sequential: [01:57:27.931] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.931] | : . ' , ; ` - tweaked: FALSE [01:57:27.931] | : . ' , ; ` - call: plan(sequential) [01:57:27.932] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.932] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.932] | : . ' , assign_globals() ... [01:57:27.932] | : . ' , List of 1 [01:57:27.932] | : . ' , $ x: num [1:5] 1 1 2 2 2 [01:57:27.932] | : . ' , - attr(*, "where")=List of 1 [01:57:27.932] | : . ' , ..$ x: [01:57:27.932] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.932] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.932] | : . ' , - attr(*, "total_size")= num NA [01:57:27.932] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.935] | : . ' , - copied 'x' to environment [01:57:27.936] | : . ' , assign_globals() ... done [01:57:27.938] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.938] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.939] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.939] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.939] | : . ' , ; ` | : New stack: [01:57:27.939] | : . ' , ; ` | : List of 1 [01:57:27.939] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.939] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.939] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.939] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.939] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.939] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.943] | : . ' , ; ` | : Old stack: [01:57:27.943] | : . ' , ; ` | : List of 1 [01:57:27.943] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.943] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.943] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.943] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.943] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.943] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.947] | : . ' , ; ` | : Identical [01:57:27.948] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:27.948] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.948] | : . ' , ; ` | List of future strategies: [01:57:27.948] | : . ' , ; ` | 1. sequential: [01:57:27.948] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.948] | : . ' , ; ` | - tweaked: FALSE [01:57:27.948] | : . ' , ; ` | - call: plan(sequential) [01:57:27.949] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.949] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.949] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.949] | : . ' , SequentialFuture started (and completed) [01:57:27.950] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:27.950] | : . Launching futures ... done [01:57:27.950] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:27.950] | : Using SequentialFutureBackend ... done [01:57:27.950] | run() for 'Future' (NULL) ... done [01:57:27.951] future(..., label = NULL) ... done [01:57:27.951] value() for SequentialFuture (NULL) ... [01:57:27.951] | relay stdout ... [01:57:27.951] | relay stdout ... done [01:57:27.951] | check for misuse ... [01:57:27.951] | check for misuse ... done [01:57:27.952] value() for SequentialFuture (NULL) ... done x 1 2 2 3 [01:57:27.952] future(..., label = NULL) ... [01:57:27.953] | lazy: FALSE [01:57:27.953] | stdout: TRUE [01:57:27.953] | conditions: [n=1] 'condition' [01:57:27.953] | gc: FALSE [01:57:27.953] | earlySignal: FALSE [01:57:27.953] | getGlobalsAndPackages() ... [01:57:27.954] | : Searching for globals ... [01:57:27.963] | : . globals found: [4] '{', 'xtabs', 'x', '~' [01:57:27.963] | : Searching for globals ... done [01:57:27.964] | : Resolving globals: FALSE [01:57:27.964] | : Search for packages associated with the globals ... [01:57:27.964] | : . Packages associated with globals: [2] 'base', 'stats' [01:57:27.964] | : . Packages: [2] 'base', 'stats' [01:57:27.965] | : Search for packages associated with the globals ... done [01:57:27.965] | : Packages after dropping 'base': [1] 'stats' [01:57:27.965] | : Packages after dropping non-attached packages: [1] 'stats' [01:57:27.965] | : globals: [1] 'x' [01:57:27.965] | : packages: [1] 'stats' [01:57:27.966] | getGlobalsAndPackages() ... done [01:57:27.966] | run() for 'Future' (NULL) ... [01:57:27.966] | : state: 'created' [01:57:27.966] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.967] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.967] | : Using SequentialFutureBackend ... [01:57:27.967] | : . Number of futures since start: 6 (6 created, 6 launched, 6 finished) [01:57:27.967] | : . Launching futures ... [01:57:27.967] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:27.967] | : . ' , getFutureData() ... [01:57:27.968] | : . ' , ; getFutureCore() ... [01:57:27.968] | : . ' , ; ` Packages needed by the future expression (n = 1): 'stats' [01:57:27.968] | : . ' , ; getFutureCore() ... done [01:57:27.968] | : . ' , ; getFutureCapture() ... [01:57:27.968] | : . ' , ; getFutureCapture() ... done [01:57:27.969] | : . ' , ; getFutureContext() ... [01:57:27.971] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.971] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:27.971] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.971] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:27.971] | : . ' , ; getFutureContext() ... done [01:57:27.972] | : . ' , getFutureData() ... done [01:57:27.972] | : . ' , attachPackages() ... [01:57:27.972] | : . ' , ; packages: [n=1] 'future' [01:57:27.972] | : . ' , attachPackages() ... done [01:57:27.972] | : . ' , attachPackages() ... [01:57:27.972] | : . ' , ; packages: [n=1] 'stats' [01:57:27.973] | : . ' , attachPackages() ... done [01:57:27.973] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:27.973] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:27.974] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:27.974] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.974] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.974] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:27.975] | : . ' , ; ` | New stack: [01:57:27.975] | : . ' , ; ` | List of 1 [01:57:27.975] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.975] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.975] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:27.975] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.975] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.975] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.975] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.975] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.978] | : . ' , ; ` | Old stack: [01:57:27.978] | : . ' , ; ` | List of 1 [01:57:27.978] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.978] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.978] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:27.978] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.978] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.978] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.978] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:27.978] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.978] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.978] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.978] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:27.982] | : . ' , ; ` | Not identical [01:57:27.982] | : . ' , ; ` | all.equal() for future ... [01:57:27.983] | : . ' , ; ` | : List of 2 [01:57:27.983] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.983] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:27.983] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.983] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.983] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.983] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.983] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.989] | : . ' , ; ` | all.equal() for future ... done [01:57:27.990] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:27.990] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:27.990] | : . ' , ; ` List of future strategies: [01:57:27.990] | : . ' , ; ` 1. sequential: [01:57:27.990] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:27.990] | : . ' , ; ` - tweaked: FALSE [01:57:27.990] | : . ' , ; ` - call: plan(sequential) [01:57:27.991] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:27.991] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:27.991] | : . ' , assign_globals() ... [01:57:27.991] | : . ' , List of 1 [01:57:27.991] | : . ' , $ x: num [1:5] 1 1 2 2 2 [01:57:27.991] | : . ' , - attr(*, "where")=List of 1 [01:57:27.991] | : . ' , ..$ x: [01:57:27.991] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:27.991] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:27.991] | : . ' , - attr(*, "total_size")= num NA [01:57:27.991] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:27.994] | : . ' , - copied 'x' to environment [01:57:27.995] | : . ' , assign_globals() ... done [01:57:27.998] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.998] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:27.998] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:27.999] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:27.999] | : . ' , ; ` | : New stack: [01:57:27.999] | : . ' , ; ` | : List of 1 [01:57:27.999] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.999] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:27.999] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:27.999] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:27.999] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:27.999] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.003] | : . ' , ; ` | : Old stack: [01:57:28.003] | : . ' , ; ` | : List of 1 [01:57:28.003] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.003] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.003] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.003] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.003] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.003] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.007] | : . ' , ; ` | : Identical [01:57:28.007] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.008] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.008] | : . ' , ; ` | List of future strategies: [01:57:28.008] | : . ' , ; ` | 1. sequential: [01:57:28.008] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.008] | : . ' , ; ` | - tweaked: FALSE [01:57:28.008] | : . ' , ; ` | - call: plan(sequential) [01:57:28.008] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.009] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.009] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.009] | : . ' , SequentialFuture started (and completed) [01:57:28.010] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.010] | : . Launching futures ... done [01:57:28.010] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.010] | : Using SequentialFutureBackend ... done [01:57:28.010] | run() for 'Future' (NULL) ... done [01:57:28.011] future(..., label = NULL) ... done [01:57:28.011] value() for SequentialFuture (NULL) ... [01:57:28.011] | relay stdout ... [01:57:28.011] | relay stdout ... done [01:57:28.011] | check for misuse ... [01:57:28.012] | check for misuse ... done [01:57:28.012] value() for SequentialFuture (NULL) ... 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 [01:57:28.014] future(..., label = NULL) ... [01:57:28.015] | lazy: FALSE [01:57:28.015] | stdout: TRUE [01:57:28.015] | conditions: [n=1] 'condition' [01:57:28.015] | gc: FALSE [01:57:28.015] | earlySignal: FALSE [01:57:28.015] | getGlobalsAndPackages() ... [01:57:28.016] | : Searching for globals ... [01:57:28.032] | : . globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [01:57:28.032] | : Searching for globals ... done [01:57:28.033] | : Resolving globals: FALSE [01:57:28.033] | : Search for packages associated with the globals ... [01:57:28.033] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:28.034] | : . Packages: [3] 'base', 'stats', 'datasets' [01:57:28.034] | : Search for packages associated with the globals ... done [01:57:28.034] | : Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:28.034] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:28.034] | : globals: [0] [01:57:28.035] | : packages: [2] 'stats', 'datasets' [01:57:28.035] | getGlobalsAndPackages() ... done [01:57:28.035] | run() for 'Future' (NULL) ... [01:57:28.035] | : state: 'created' [01:57:28.036] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.036] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.036] | : Using SequentialFutureBackend ... [01:57:28.036] | : . Number of futures since start: 7 (7 created, 7 launched, 7 finished) [01:57:28.036] | : . Launching futures ... [01:57:28.036] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.037] | : . ' , getFutureData() ... [01:57:28.037] | : . ' , ; getFutureCore() ... [01:57:28.037] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:28.037] | : . ' , ; getFutureCore() ... done [01:57:28.037] | : . ' , ; getFutureCapture() ... [01:57:28.037] | : . ' , ; getFutureCapture() ... done [01:57:28.038] | : . ' , ; getFutureContext() ... [01:57:28.038] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.038] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.038] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.038] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.039] | : . ' , ; getFutureContext() ... done [01:57:28.039] | : . ' , getFutureData() ... done [01:57:28.039] | : . ' , attachPackages() ... [01:57:28.039] | : . ' , ; packages: [n=1] 'future' [01:57:28.039] | : . ' , attachPackages() ... done [01:57:28.040] | : . ' , attachPackages() ... [01:57:28.040] | : . ' , ; packages: [n=2] 'stats', 'datasets' [01:57:28.040] | : . ' , attachPackages() ... done [01:57:28.041] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.041] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.041] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.041] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.042] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.042] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.042] | : . ' , ; ` | New stack: [01:57:28.042] | : . ' , ; ` | List of 1 [01:57:28.042] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.042] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.042] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.042] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.042] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.042] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.042] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.042] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.046] | : . ' , ; ` | Old stack: [01:57:28.046] | : . ' , ; ` | List of 1 [01:57:28.046] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.046] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.046] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.046] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.046] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.046] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.046] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.046] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.046] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.046] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.046] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.050] | : . ' , ; ` | Not identical [01:57:28.050] | : . ' , ; ` | all.equal() for future ... [01:57:28.050] | : . ' , ; ` | : List of 2 [01:57:28.050] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.050] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.050] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.050] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.050] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.050] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.050] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.057] | : . ' , ; ` | all.equal() for future ... done [01:57:28.057] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.057] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.058] | : . ' , ; ` List of future strategies: [01:57:28.058] | : . ' , ; ` 1. sequential: [01:57:28.058] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.058] | : . ' , ; ` - tweaked: FALSE [01:57:28.058] | : . ' , ; ` - call: plan(sequential) [01:57:28.058] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.058] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.062] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.062] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.062] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.062] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.063] | : . ' , ; ` | : New stack: [01:57:28.063] | : . ' , ; ` | : List of 1 [01:57:28.063] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.063] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.063] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.063] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.063] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.063] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.069] | : . ' , ; ` | : Old stack: [01:57:28.069] | : . ' , ; ` | : List of 1 [01:57:28.069] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.069] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.069] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.069] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.069] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.069] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.073] | : . ' , ; ` | : Identical [01:57:28.073] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.073] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.073] | : . ' , ; ` | List of future strategies: [01:57:28.073] | : . ' , ; ` | 1. sequential: [01:57:28.073] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.073] | : . ' , ; ` | - tweaked: FALSE [01:57:28.073] | : . ' , ; ` | - call: plan(sequential) [01:57:28.074] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.074] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.074] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.075] | : . ' , SequentialFuture started (and completed) [01:57:28.075] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.075] | : . Launching futures ... done [01:57:28.076] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.076] | : Using SequentialFutureBackend ... done [01:57:28.076] | run() for 'Future' (NULL) ... done [01:57:28.076] future(..., label = NULL) ... done [01:57:28.076] value() for SequentialFuture (NULL) ... [01:57:28.077] | relay stdout ... [01:57:28.077] | relay stdout ... done [01:57:28.077] | check for misuse ... [01:57:28.077] | check for misuse ... done [01:57:28.077] value() for SequentialFuture (NULL) ... 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 [01:57:28.080] future(..., label = NULL) ... [01:57:28.080] | lazy: FALSE [01:57:28.080] | stdout: TRUE [01:57:28.081] | conditions: [n=1] 'condition' [01:57:28.081] | gc: FALSE [01:57:28.081] | earlySignal: FALSE [01:57:28.081] | getGlobalsAndPackages() ... [01:57:28.081] | : Searching for globals ... [01:57:28.097] | : . globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [01:57:28.098] | : Searching for globals ... done [01:57:28.098] | : Resolving globals: FALSE [01:57:28.098] | : Search for packages associated with the globals ... [01:57:28.098] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:28.099] | : . Packages: [3] 'base', 'stats', 'datasets' [01:57:28.099] | : Search for packages associated with the globals ... done [01:57:28.099] | : Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:28.099] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:28.100] | : globals: [0] [01:57:28.100] | : packages: [2] 'stats', 'datasets' [01:57:28.100] | getGlobalsAndPackages() ... done [01:57:28.100] | run() for 'Future' (NULL) ... [01:57:28.100] | : state: 'created' [01:57:28.101] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.101] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.101] | : Using SequentialFutureBackend ... [01:57:28.101] | : . Number of futures since start: 8 (8 created, 8 launched, 8 finished) [01:57:28.101] | : . Launching futures ... [01:57:28.102] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.102] | : . ' , getFutureData() ... [01:57:28.102] | : . ' , ; getFutureCore() ... [01:57:28.102] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:28.102] | : . ' , ; getFutureCore() ... done [01:57:28.102] | : . ' , ; getFutureCapture() ... [01:57:28.103] | : . ' , ; getFutureCapture() ... done [01:57:28.103] | : . ' , ; getFutureContext() ... [01:57:28.103] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.103] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.103] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.104] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.104] | : . ' , ; getFutureContext() ... done [01:57:28.104] | : . ' , getFutureData() ... done [01:57:28.104] | : . ' , attachPackages() ... [01:57:28.104] | : . ' , ; packages: [n=1] 'future' [01:57:28.105] | : . ' , attachPackages() ... done [01:57:28.105] | : . ' , attachPackages() ... [01:57:28.105] | : . ' , ; packages: [n=2] 'stats', 'datasets' [01:57:28.105] | : . ' , attachPackages() ... done [01:57:28.106] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.106] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.106] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.107] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.107] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.107] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.107] | : . ' , ; ` | New stack: [01:57:28.107] | : . ' , ; ` | List of 1 [01:57:28.107] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.107] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.107] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.107] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.107] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.107] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.107] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.107] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.111] | : . ' , ; ` | Old stack: [01:57:28.112] | : . ' , ; ` | List of 1 [01:57:28.112] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.112] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.112] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.112] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.112] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.112] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.112] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.112] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.112] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.112] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.112] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.116] | : . ' , ; ` | Not identical [01:57:28.116] | : . ' , ; ` | all.equal() for future ... [01:57:28.116] | : . ' , ; ` | : List of 2 [01:57:28.116] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.116] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.116] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.116] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.116] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.116] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.116] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.123] | : . ' , ; ` | all.equal() for future ... done [01:57:28.123] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.123] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.123] | : . ' , ; ` List of future strategies: [01:57:28.123] | : . ' , ; ` 1. sequential: [01:57:28.123] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.123] | : . ' , ; ` - tweaked: FALSE [01:57:28.123] | : . ' , ; ` - call: plan(sequential) [01:57:28.124] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.124] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.127] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.127] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.128] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.128] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.128] | : . ' , ; ` | : New stack: [01:57:28.128] | : . ' , ; ` | : List of 1 [01:57:28.128] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.128] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.128] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.128] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.128] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.128] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.132] | : . ' , ; ` | : Old stack: [01:57:28.133] | : . ' , ; ` | : List of 1 [01:57:28.133] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.133] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.133] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.133] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.133] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.133] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.137] | : . ' , ; ` | : Identical [01:57:28.137] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.137] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.137] | : . ' , ; ` | List of future strategies: [01:57:28.137] | : . ' , ; ` | 1. sequential: [01:57:28.137] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.137] | : . ' , ; ` | - tweaked: FALSE [01:57:28.137] | : . ' , ; ` | - call: plan(sequential) [01:57:28.138] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.138] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.139] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.139] | : . ' , SequentialFuture started (and completed) [01:57:28.139] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.140] | : . Launching futures ... done [01:57:28.140] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.140] | : Using SequentialFutureBackend ... done [01:57:28.140] | run() for 'Future' (NULL) ... done [01:57:28.140] future(..., label = NULL) ... done [01:57:28.141] value() for SequentialFuture (NULL) ... [01:57:28.141] | relay stdout ... [01:57:28.141] | relay stdout ... done [01:57:28.141] | check for misuse ... [01:57:28.141] | check for misuse ... done [01:57:28.141] value() for SequentialFuture (NULL) ... 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 [01:57:28.144] future(..., label = NULL) ... [01:57:28.145] | lazy: FALSE [01:57:28.145] | stdout: TRUE [01:57:28.145] | conditions: [n=1] 'condition' [01:57:28.145] | gc: FALSE [01:57:28.145] | earlySignal: FALSE [01:57:28.145] | getGlobalsAndPackages() ... [01:57:28.146] | : Searching for globals ... [01:57:28.177] | : . globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [01:57:28.178] | : Searching for globals ... done [01:57:28.178] | : Resolving globals: FALSE [01:57:28.178] | : Search for packages associated with the globals ... [01:57:28.179] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:28.179] | : . Packages: [3] 'base', 'stats', 'datasets' [01:57:28.180] | : Search for packages associated with the globals ... done [01:57:28.180] | : Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:28.180] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:28.180] | : globals: [0] [01:57:28.181] | : packages: [2] 'stats', 'datasets' [01:57:28.181] | getGlobalsAndPackages() ... done [01:57:28.181] | run() for 'Future' (NULL) ... [01:57:28.182] | : state: 'created' [01:57:28.182] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.182] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.182] | : Using SequentialFutureBackend ... [01:57:28.182] | : . Number of futures since start: 9 (9 created, 9 launched, 9 finished) [01:57:28.183] | : . Launching futures ... [01:57:28.183] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.183] | : . ' , getFutureData() ... [01:57:28.183] | : . ' , ; getFutureCore() ... [01:57:28.183] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:28.184] | : . ' , ; getFutureCore() ... done [01:57:28.184] | : . ' , ; getFutureCapture() ... [01:57:28.184] | : . ' , ; getFutureCapture() ... done [01:57:28.184] | : . ' , ; getFutureContext() ... [01:57:28.185] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.185] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.185] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.185] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.185] | : . ' , ; getFutureContext() ... done [01:57:28.186] | : . ' , getFutureData() ... done [01:57:28.186] | : . ' , attachPackages() ... [01:57:28.186] | : . ' , ; packages: [n=1] 'future' [01:57:28.186] | : . ' , attachPackages() ... done [01:57:28.187] | : . ' , attachPackages() ... [01:57:28.187] | : . ' , ; packages: [n=2] 'stats', 'datasets' [01:57:28.187] | : . ' , attachPackages() ... done [01:57:28.188] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.188] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.188] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.189] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.189] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.189] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.190] | : . ' , ; ` | New stack: [01:57:28.190] | : . ' , ; ` | List of 1 [01:57:28.190] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.190] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.190] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.190] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.190] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.190] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.190] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.190] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.195] | : . ' , ; ` | Old stack: [01:57:28.195] | : . ' , ; ` | List of 1 [01:57:28.195] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.195] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.195] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.195] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.195] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.195] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.195] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.195] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.195] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.195] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.195] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.200] | : . ' , ; ` | Not identical [01:57:28.200] | : . ' , ; ` | all.equal() for future ... [01:57:28.201] | : . ' , ; ` | : List of 2 [01:57:28.201] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.201] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.201] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.201] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.201] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.201] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.201] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.210] | : . ' , ; ` | all.equal() for future ... done [01:57:28.210] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.210] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.210] | : . ' , ; ` List of future strategies: [01:57:28.210] | : . ' , ; ` 1. sequential: [01:57:28.210] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.210] | : . ' , ; ` - tweaked: FALSE [01:57:28.210] | : . ' , ; ` - call: plan(sequential) [01:57:28.212] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.212] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.216] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.217] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.217] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.217] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.217] | : . ' , ; ` | : New stack: [01:57:28.218] | : . ' , ; ` | : List of 1 [01:57:28.218] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.218] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.218] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.218] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.218] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.218] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.222] | : . ' , ; ` | : Old stack: [01:57:28.223] | : . ' , ; ` | : List of 1 [01:57:28.223] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.223] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.223] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.223] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.223] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.223] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.227] | : . ' , ; ` | : Identical [01:57:28.228] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.228] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.228] | : . ' , ; ` | List of future strategies: [01:57:28.228] | : . ' , ; ` | 1. sequential: [01:57:28.228] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.228] | : . ' , ; ` | - tweaked: FALSE [01:57:28.228] | : . ' , ; ` | - call: plan(sequential) [01:57:28.229] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.229] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.229] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.230] | : . ' , SequentialFuture started (and completed) [01:57:28.230] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.231] | : . Launching futures ... done [01:57:28.231] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.231] | : Using SequentialFutureBackend ... done [01:57:28.231] | run() for 'Future' (NULL) ... done [01:57:28.232] future(..., label = NULL) ... done [01:57:28.232] value() for SequentialFuture (NULL) ... [01:57:28.233] | relay stdout ... [01:57:28.233] | relay stdout ... done [01:57:28.233] | check for misuse ... [01:57:28.233] | check for misuse ... done [01:57:28.234] value() for SequentialFuture (NULL) ... 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 [01:57:28.238] future(..., label = NULL) ... [01:57:28.238] | lazy: FALSE [01:57:28.238] | stdout: TRUE [01:57:28.239] | conditions: [n=1] 'condition' [01:57:28.239] | gc: FALSE [01:57:28.239] | earlySignal: FALSE [01:57:28.239] | getGlobalsAndPackages() ... [01:57:28.239] | : Searching for globals ... [01:57:28.273] | : . globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [01:57:28.273] | : Searching for globals ... done [01:57:28.273] | : Resolving globals: FALSE [01:57:28.273] | : Search for packages associated with the globals ... [01:57:28.274] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:28.274] | : . Packages: [3] 'base', 'stats', 'datasets' [01:57:28.275] | : Search for packages associated with the globals ... done [01:57:28.275] | : Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:28.275] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:28.275] | : globals: [0] [01:57:28.276] | : packages: [2] 'stats', 'datasets' [01:57:28.276] | getGlobalsAndPackages() ... done [01:57:28.276] | run() for 'Future' (NULL) ... [01:57:28.276] | : state: 'created' [01:57:28.277] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.282] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.282] | : Using SequentialFutureBackend ... [01:57:28.282] | : . Number of futures since start: 10 (10 created, 10 launched, 10 finished) [01:57:28.282] | : . Launching futures ... [01:57:28.283] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.283] | : . ' , getFutureData() ... [01:57:28.283] | : . ' , ; getFutureCore() ... [01:57:28.283] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:28.283] | : . ' , ; getFutureCore() ... done [01:57:28.284] | : . ' , ; getFutureCapture() ... [01:57:28.284] | : . ' , ; getFutureCapture() ... done [01:57:28.284] | : . ' , ; getFutureContext() ... [01:57:28.284] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.284] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.285] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.285] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.285] | : . ' , ; getFutureContext() ... done [01:57:28.285] | : . ' , getFutureData() ... done [01:57:28.285] | : . ' , attachPackages() ... [01:57:28.286] | : . ' , ; packages: [n=1] 'future' [01:57:28.286] | : . ' , attachPackages() ... done [01:57:28.286] | : . ' , attachPackages() ... [01:57:28.286] | : . ' , ; packages: [n=2] 'stats', 'datasets' [01:57:28.287] | : . ' , attachPackages() ... done [01:57:28.287] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.287] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.288] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.288] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.288] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.289] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.289] | : . ' , ; ` | New stack: [01:57:28.289] | : . ' , ; ` | List of 1 [01:57:28.289] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.289] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.289] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.289] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.289] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.289] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.289] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.289] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.293] | : . ' , ; ` | Old stack: [01:57:28.293] | : . ' , ; ` | List of 1 [01:57:28.293] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.293] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.293] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.293] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.293] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.293] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.293] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.293] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.293] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.293] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.293] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.298] | : . ' , ; ` | Not identical [01:57:28.298] | : . ' , ; ` | all.equal() for future ... [01:57:28.299] | : . ' , ; ` | : List of 2 [01:57:28.299] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.299] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.299] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.299] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.299] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.299] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.299] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.306] | : . ' , ; ` | all.equal() for future ... done [01:57:28.307] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.307] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.307] | : . ' , ; ` List of future strategies: [01:57:28.307] | : . ' , ; ` 1. sequential: [01:57:28.307] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.307] | : . ' , ; ` - tweaked: FALSE [01:57:28.307] | : . ' , ; ` - call: plan(sequential) [01:57:28.308] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.308] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.313] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.313] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.313] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.313] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.314] | : . ' , ; ` | : New stack: [01:57:28.314] | : . ' , ; ` | : List of 1 [01:57:28.314] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.314] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.314] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.314] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.314] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.314] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.318] | : . ' , ; ` | : Old stack: [01:57:28.319] | : . ' , ; ` | : List of 1 [01:57:28.319] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.319] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.319] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.319] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.319] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.319] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.323] | : . ' , ; ` | : Identical [01:57:28.323] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.324] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.324] | : . ' , ; ` | List of future strategies: [01:57:28.324] | : . ' , ; ` | 1. sequential: [01:57:28.324] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.324] | : . ' , ; ` | - tweaked: FALSE [01:57:28.324] | : . ' , ; ` | - call: plan(sequential) [01:57:28.325] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.325] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.325] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.326] | : . ' , SequentialFuture started (and completed) [01:57:28.326] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.326] | : . Launching futures ... done [01:57:28.327] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.327] | : Using SequentialFutureBackend ... done [01:57:28.327] | run() for 'Future' (NULL) ... done [01:57:28.327] future(..., label = NULL) ... done [01:57:28.328] value() for SequentialFuture (NULL) ... [01:57:28.328] | relay stdout ... [01:57:28.328] | relay stdout ... done [01:57:28.328] | check for misuse ... [01:57:28.328] | check for misuse ... done [01:57:28.329] value() for SequentialFuture (NULL) ... 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 [01:57:28.334] future(..., label = NULL) ... [01:57:28.334] | lazy: FALSE [01:57:28.334] | stdout: TRUE [01:57:28.334] | conditions: [n=1] 'condition' [01:57:28.335] | gc: FALSE [01:57:28.335] | earlySignal: FALSE [01:57:28.335] | getGlobalsAndPackages() ... [01:57:28.335] | : Searching for globals ... [01:57:28.355] | : . globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [01:57:28.355] | : Searching for globals ... done [01:57:28.355] | : Resolving globals: FALSE [01:57:28.356] | : Search for packages associated with the globals ... [01:57:28.356] | : . Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:28.357] | : . Packages: [3] 'base', 'stats', 'datasets' [01:57:28.357] | : Search for packages associated with the globals ... done [01:57:28.358] | : Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:28.358] | : Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:28.358] | : globals: [0] [01:57:28.358] | : packages: [2] 'stats', 'datasets' [01:57:28.359] | getGlobalsAndPackages() ... done [01:57:28.359] | run() for 'Future' (NULL) ... [01:57:28.359] | : state: 'created' [01:57:28.360] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.360] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.360] | : Using SequentialFutureBackend ... [01:57:28.360] | : . Number of futures since start: 11 (11 created, 11 launched, 11 finished) [01:57:28.360] | : . Launching futures ... [01:57:28.361] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.361] | : . ' , getFutureData() ... [01:57:28.361] | : . ' , ; getFutureCore() ... [01:57:28.361] | : . ' , ; ` Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:28.361] | : . ' , ; getFutureCore() ... done [01:57:28.362] | : . ' , ; getFutureCapture() ... [01:57:28.362] | : . ' , ; getFutureCapture() ... done [01:57:28.362] | : . ' , ; getFutureContext() ... [01:57:28.362] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.362] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.363] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.363] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.363] | : . ' , ; getFutureContext() ... done [01:57:28.363] | : . ' , getFutureData() ... done [01:57:28.364] | : . ' , attachPackages() ... [01:57:28.364] | : . ' , ; packages: [n=1] 'future' [01:57:28.364] | : . ' , attachPackages() ... done [01:57:28.364] | : . ' , attachPackages() ... [01:57:28.364] | : . ' , ; packages: [n=2] 'stats', 'datasets' [01:57:28.365] | : . ' , attachPackages() ... done [01:57:28.366] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.366] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.366] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.366] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.367] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.367] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.367] | : . ' , ; ` | New stack: [01:57:28.367] | : . ' , ; ` | List of 1 [01:57:28.367] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.367] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.367] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.367] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.367] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.367] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.367] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.367] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.371] | : . ' , ; ` | Old stack: [01:57:28.372] | : . ' , ; ` | List of 1 [01:57:28.372] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.372] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.372] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.372] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.372] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.372] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.372] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.372] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.372] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.372] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.372] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.377] | : . ' , ; ` | Not identical [01:57:28.377] | : . ' , ; ` | all.equal() for future ... [01:57:28.377] | : . ' , ; ` | : List of 2 [01:57:28.377] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.377] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.377] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.377] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.377] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.377] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.377] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.385] | : . ' , ; ` | all.equal() for future ... done [01:57:28.385] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.385] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.385] | : . ' , ; ` List of future strategies: [01:57:28.385] | : . ' , ; ` 1. sequential: [01:57:28.385] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.385] | : . ' , ; ` - tweaked: FALSE [01:57:28.385] | : . ' , ; ` - call: plan(sequential) [01:57:28.386] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.386] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.391] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.391] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.391] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.392] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.392] | : . ' , ; ` | : New stack: [01:57:28.392] | : . ' , ; ` | : List of 1 [01:57:28.392] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.392] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.392] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.392] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.392] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.392] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.401] | : . ' , ; ` | : Old stack: [01:57:28.402] | : . ' , ; ` | : List of 1 [01:57:28.402] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.402] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.402] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.402] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.402] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.402] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.406] | : . ' , ; ` | : Identical [01:57:28.406] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.406] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.407] | : . ' , ; ` | List of future strategies: [01:57:28.407] | : . ' , ; ` | 1. sequential: [01:57:28.407] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.407] | : . ' , ; ` | - tweaked: FALSE [01:57:28.407] | : . ' , ; ` | - call: plan(sequential) [01:57:28.407] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.407] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.408] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.408] | : . ' , SequentialFuture started (and completed) [01:57:28.409] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.409] | : . Launching futures ... done [01:57:28.409] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.409] | : Using SequentialFutureBackend ... done [01:57:28.409] | run() for 'Future' (NULL) ... done [01:57:28.410] future(..., label = NULL) ... done [01:57:28.410] value() for SequentialFuture (NULL) ... [01:57:28.410] | relay stdout ... [01:57:28.410] | relay stdout ... done [01:57:28.410] | check for misuse ... [01:57:28.411] | check for misuse ... done [01:57:28.411] value() for SequentialFuture (NULL) ... 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) ... [01:57:28.413] future(..., label = NULL) ... [01:57:28.414] | lazy: FALSE [01:57:28.414] | stdout: TRUE [01:57:28.414] | conditions: [n=1] 'condition' [01:57:28.414] | gc: FALSE [01:57:28.414] | earlySignal: FALSE [01:57:28.414] | getGlobalsAndPackages() ... [01:57:28.415] | : Searching for globals ... [01:57:28.464] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [01:57:28.465] | : Searching for globals ... done [01:57:28.465] | : Resolving globals: FALSE [01:57:28.465] | : Search for packages associated with the globals ... [01:57:28.466] | : . Packages associated with globals: [1] 'base' [01:57:28.467] | : . Packages: [1] 'base' [01:57:28.467] | : Search for packages associated with the globals ... done [01:57:28.467] | : Packages after dropping 'base': [0] [01:57:28.467] | : globals: [3] 'outer_function', 'map', 'inner_function' [01:57:28.467] | : packages: [0] [01:57:28.468] | getGlobalsAndPackages() ... done [01:57:28.468] | run() for 'Future' (NULL) ... [01:57:28.468] | : state: 'created' [01:57:28.468] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.469] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.469] | : Using SequentialFutureBackend ... [01:57:28.469] | : . Number of futures since start: 12 (12 created, 12 launched, 12 finished) [01:57:28.469] | : . Launching futures ... [01:57:28.470] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.470] | : . ' , getFutureData() ... [01:57:28.470] | : . ' , ; getFutureCore() ... [01:57:28.470] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:57:28.470] | : . ' , ; getFutureCore() ... done [01:57:28.471] | : . ' , ; getFutureCapture() ... [01:57:28.471] | : . ' , ; getFutureCapture() ... done [01:57:28.471] | : . ' , ; getFutureContext() ... [01:57:28.471] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.471] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.472] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.472] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.472] | : . ' , ; getFutureContext() ... done [01:57:28.472] | : . ' , getFutureData() ... done [01:57:28.473] | : . ' , attachPackages() ... [01:57:28.473] | : . ' , ; packages: [n=1] 'future' [01:57:28.473] | : . ' , attachPackages() ... done [01:57:28.473] | : . ' , attachPackages() ... [01:57:28.473] | : . ' , ; packages: [n=0] [01:57:28.474] | : . ' , attachPackages() ... done [01:57:28.474] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.474] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.475] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.475] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.476] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.476] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.476] | : . ' , ; ` | New stack: [01:57:28.476] | : . ' , ; ` | List of 1 [01:57:28.476] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.476] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.476] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.476] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.476] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.476] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.476] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.476] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.480] | : . ' , ; ` | Old stack: [01:57:28.480] | : . ' , ; ` | List of 1 [01:57:28.480] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.480] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.480] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.480] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.480] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.480] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.480] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.480] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.480] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.480] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.480] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.485] | : . ' , ; ` | Not identical [01:57:28.485] | : . ' , ; ` | all.equal() for future ... [01:57:28.485] | : . ' , ; ` | : List of 2 [01:57:28.485] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.485] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.485] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.485] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.485] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.485] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.485] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.498] | : . ' , ; ` | all.equal() for future ... done [01:57:28.498] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.498] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.498] | : . ' , ; ` List of future strategies: [01:57:28.498] | : . ' , ; ` 1. sequential: [01:57:28.498] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.498] | : . ' , ; ` - tweaked: FALSE [01:57:28.498] | : . ' , ; ` - call: plan(sequential) [01:57:28.499] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.499] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.499] | : . ' , assign_globals() ... [01:57:28.500] | : . ' , List of 3 [01:57:28.500] | : . ' , $ outer_function:function (x) [01:57:28.500] | : . ' , $ map :function (.x, .f, ...) [01:57:28.500] | : . ' , $ inner_function:function (x) [01:57:28.500] | : . ' , - attr(*, "where")=List of 3 [01:57:28.500] | : . ' , ..$ outer_function: [01:57:28.500] | : . ' , ..$ map : [01:57:28.500] | : . ' , ..$ inner_function: [01:57:28.500] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:28.500] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:28.500] | : . ' , - attr(*, "total_size")= num NA [01:57:28.500] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:28.504] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [01:57:28.504] | : . ' , - copied 'outer_function' to environment [01:57:28.505] | : . ' , - reassign environment for 'map' [where=globalenv()] [01:57:28.505] | : . ' , - copied 'map' to environment [01:57:28.505] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [01:57:28.505] | : . ' , - copied 'inner_function' to environment [01:57:28.505] | : . ' , assign_globals() ... done [01:57:28.514] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.515] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.515] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.515] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.515] | : . ' , ; ` | : New stack: [01:57:28.516] | : . ' , ; ` | : List of 1 [01:57:28.516] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.516] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.516] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.516] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.516] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.516] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.520] | : . ' , ; ` | : Old stack: [01:57:28.520] | : . ' , ; ` | : List of 1 [01:57:28.520] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.520] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.520] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.520] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.520] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.520] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.525] | : . ' , ; ` | : Identical [01:57:28.525] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.525] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.525] | : . ' , ; ` | List of future strategies: [01:57:28.525] | : . ' , ; ` | 1. sequential: [01:57:28.525] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.525] | : . ' , ; ` | - tweaked: FALSE [01:57:28.525] | : . ' , ; ` | - call: plan(sequential) [01:57:28.526] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.526] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.527] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.527] | : . ' , SequentialFuture started (and completed) [01:57:28.527] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.528] | : . Launching futures ... done [01:57:28.528] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.528] | : Using SequentialFutureBackend ... done [01:57:28.528] | run() for 'Future' (NULL) ... done [01:57:28.529] future(..., label = NULL) ... done [01:57:28.529] value() for SequentialFuture (NULL) ... [01:57:28.529] | relay stdout ... [01:57:28.529] | relay stdout ... done [01:57:28.529] | check for misuse ... [01:57:28.530] | check for misuse ... done [01:57:28.530] value() for SequentialFuture (NULL) ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [01:57:28.531] future(..., label = NULL) ... [01:57:28.532] | lazy: FALSE [01:57:28.532] | stdout: TRUE [01:57:28.532] | conditions: [n=1] 'condition' [01:57:28.532] | gc: FALSE [01:57:28.532] | earlySignal: FALSE [01:57:28.533] | getGlobalsAndPackages() ... [01:57:28.533] | : Searching for globals ... [01:57:28.580] | : . globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [01:57:28.580] | : Searching for globals ... done [01:57:28.581] | : Resolving globals: FALSE [01:57:28.581] | : Search for packages associated with the globals ... [01:57:28.581] | : . Packages associated with globals: [1] 'base' [01:57:28.582] | : . Packages: [1] 'base' [01:57:28.582] | : Search for packages associated with the globals ... done [01:57:28.582] | : Packages after dropping 'base': [0] [01:57:28.583] | : globals: [3] 'outer_function', 'map', 'inner_function' [01:57:28.583] | : packages: [0] [01:57:28.583] | getGlobalsAndPackages() ... done [01:57:28.583] | run() for 'Future' (NULL) ... [01:57:28.584] | : state: 'created' [01:57:28.584] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.584] | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.584] | : Using SequentialFutureBackend ... [01:57:28.584] | : . Number of futures since start: 13 (13 created, 13 launched, 13 finished) [01:57:28.585] | : . Launching futures ... [01:57:28.585] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [01:57:28.585] | : . ' , getFutureData() ... [01:57:28.585] | : . ' , ; getFutureCore() ... [01:57:28.585] | : . ' , ; ` Packages needed by the future expression (n = 0): [01:57:28.586] | : . ' , ; getFutureCore() ... done [01:57:28.586] | : . ' , ; getFutureCapture() ... [01:57:28.586] | : . ' , ; getFutureCapture() ... done [01:57:28.590] | : . ' , ; getFutureContext() ... [01:57:28.590] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.590] | : . ' , ; ` | Getting stack without first backend: [n=0] [01:57:28.591] | : . ' , ; ` plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.591] | : . ' , ; ` Packages needed by future backend (n = 0): [01:57:28.591] | : . ' , ; getFutureContext() ... done [01:57:28.591] | : . ' , getFutureData() ... done [01:57:28.592] | : . ' , attachPackages() ... [01:57:28.592] | : . ' , ; packages: [n=1] 'future' [01:57:28.592] | : . ' , attachPackages() ... done [01:57:28.592] | : . ' , attachPackages() ... [01:57:28.592] | : . ' , ; packages: [n=0] [01:57:28.593] | : . ' , attachPackages() ... done [01:57:28.593] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.593] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [01:57:28.594] | : . ' , plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.594] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.594] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.594] | : . ' , ; ` all.equal() for FutureStrategyList ... [01:57:28.595] | : . ' , ; ` | New stack: [01:57:28.595] | : . ' , ; ` | List of 1 [01:57:28.595] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.595] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.595] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [01:57:28.595] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.595] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.595] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.595] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.595] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.598] | : . ' , ; ` | Old stack: [01:57:28.598] | : . ' , ; ` | List of 1 [01:57:28.598] | : . ' , ; ` | $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.598] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.598] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [01:57:28.598] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.598] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.598] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.598] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [01:57:28.598] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.598] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.598] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.598] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.603] | : . ' , ; ` | Not identical [01:57:28.603] | : . ' , ; ` | all.equal() for future ... [01:57:28.603] | : . ' , ; ` | : List of 2 [01:57:28.603] | : . ' , ; ` | : $ target :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.603] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [01:57:28.603] | : . ' , ; ` | : $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.603] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.603] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.603] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.603] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.611] | : . ' , ; ` | all.equal() for future ... done [01:57:28.611] | : . ' , ; ` all.equal() for FutureStrategyList ... done [01:57:28.612] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.612] | : . ' , ; ` List of future strategies: [01:57:28.612] | : . ' , ; ` 1. sequential: [01:57:28.612] | : . ' , ; ` - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.612] | : . ' , ; ` - tweaked: FALSE [01:57:28.612] | : . ' , ; ` - call: plan(sequential) [01:57:28.613] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.613] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.613] | : . ' , assign_globals() ... [01:57:28.613] | : . ' , List of 3 [01:57:28.613] | : . ' , $ outer_function:function (x) [01:57:28.613] | : . ' , $ map :function (.x, .f, ...) [01:57:28.613] | : . ' , $ inner_function:function (x) [01:57:28.613] | : . ' , - attr(*, "where")=List of 3 [01:57:28.613] | : . ' , ..$ outer_function: [01:57:28.613] | : . ' , ..$ map : [01:57:28.613] | : . ' , ..$ inner_function: [01:57:28.613] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [01:57:28.613] | : . ' , - attr(*, "resolved")= logi FALSE [01:57:28.613] | : . ' , - attr(*, "total_size")= num NA [01:57:28.613] | : . ' , - attr(*, "already-done")= logi TRUE [01:57:28.618] | : . ' , - reassign environment for 'outer_function' [where=globalenv()] [01:57:28.618] | : . ' , - copied 'outer_function' to environment [01:57:28.618] | : . ' , - reassign environment for 'map' [where=globalenv()] [01:57:28.618] | : . ' , - copied 'map' to environment [01:57:28.619] | : . ' , - reassign environment for 'inner_function' [where=globalenv()] [01:57:28.619] | : . ' , - copied 'inner_function' to environment [01:57:28.619] | : . ' , assign_globals() ... done [01:57:28.622] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.622] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [01:57:28.622] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [01:57:28.623] | : . ' , ; ` | all.equal() for FutureStrategyList ... [01:57:28.623] | : . ' , ; ` | : New stack: [01:57:28.623] | : . ' , ; ` | : List of 1 [01:57:28.623] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.623] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.623] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.623] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.623] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.623] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.628] | : . ' , ; ` | : Old stack: [01:57:28.628] | : . ' , ; ` | : List of 1 [01:57:28.628] | : . ' , ; ` | : $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.628] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [01:57:28.628] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.628] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.628] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.628] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.632] | : . ' , ; ` | : Identical [01:57:28.632] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [01:57:28.633] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [01:57:28.633] | : . ' , ; ` | List of future strategies: [01:57:28.633] | : . ' , ; ` | 1. sequential: [01:57:28.633] | : . ' , ; ` | - args: function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame(), workers = "") [01:57:28.633] | : . ' , ; ` | - tweaked: FALSE [01:57:28.633] | : . ' , ; ` | - call: plan(sequential) [01:57:28.634] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [01:57:28.634] | : . ' , ; plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.634] | : . ' , plan(, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [01:57:28.635] | : . ' , SequentialFuture started (and completed) [01:57:28.635] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [01:57:28.635] | : . Launching futures ... done [01:57:28.635] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [01:57:28.635] | : Using SequentialFutureBackend ... done [01:57:28.636] | run() for 'Future' (NULL) ... done [01:57:28.636] future(..., label = NULL) ... done [01:57:28.636] value() for SequentialFuture (NULL) ... [01:57:28.636] | relay stdout ... [01:57:28.637] | relay stdout ... done [01:57:28.637] | check for misuse ... [01:57:28.637] | check for misuse ... done [01:57:28.637] value() for SequentialFuture (NULL) ... 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') ... [01:57:28.642] plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.643] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [01:57:28.643] | : all.equal() for FutureStrategyList ... [01:57:28.643] | : . New stack: [01:57:28.644] | : . List of 1 [01:57:28.644] | : . $ :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [01:57:28.644] | : . gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.644] | : . ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [01:57:28.644] | : . ..- attr(*, "init")= logi TRUE [01:57:28.644] | : . ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [01:57:28.644] | : . gc = FALSE, earlySignal = FALSE, ...) [01:57:28.644] | : . .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.644] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.644] | : . ..- attr(*, "untweakable")= chr "persistent" [01:57:28.644] | : . ..- attr(*, "call")= language plan(strategy) [01:57:28.644] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.648] | : . Old stack: [01:57:28.648] | : . List of 1 [01:57:28.648] | : . $ :function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.648] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.648] | : . ..- attr(*, "init")= chr "done" [01:57:28.648] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.648] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.648] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.648] | : . ..- attr(*, "call")= language plan(sequential) [01:57:28.648] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.648] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.648] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.648] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.653] | : . Not identical [01:57:28.654] | : . all.equal() for future ... [01:57:28.654] | : . ' List of 2 [01:57:28.654] | : . ' $ target :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [01:57:28.654] | : . ' gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.654] | : . ' ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [01:57:28.654] | : . ' ..- attr(*, "init")= logi TRUE [01:57:28.654] | : . ' ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [01:57:28.654] | : . ' gc = FALSE, earlySignal = FALSE, ...) [01:57:28.654] | : . ' .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.654] | : . ' ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.654] | : . ' ..- attr(*, "untweakable")= chr "persistent" [01:57:28.654] | : . ' ..- attr(*, "call")= language plan(strategy) [01:57:28.654] | : . ' $ current:function (..., gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.654] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [01:57:28.654] | : . ' ..- attr(*, "init")= chr "done" [01:57:28.654] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.654] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.654] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.654] | : . ' ..- attr(*, "call")= language plan(sequential) [01:57:28.654] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [01:57:28.654] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [01:57:28.654] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [01:57:28.667] | : . ' Formals differ [01:57:28.668] | : . all.equal() for future ... done [01:57:28.668] | : . Future strategies differ at level 1 [01:57:28.668] | : all.equal() for FutureStrategyList ... done [01:57:28.669] | : plan(): Setting new future backend stack: [01:57:28.669] | : List of future strategies: [01:57:28.669] | : 1. multisession: [01:57:28.669] | : - args: function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.669] | : - tweaked: FALSE [01:57:28.669] | : - call: plan(strategy) [01:57:28.670] | : List of 1 [01:57:28.670] | : $ :function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [01:57:28.670] | : gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.670] | : ..- attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [01:57:28.670] | : ..- attr(*, "init")= logi TRUE [01:57:28.670] | : ..- attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [01:57:28.670] | : gc = FALSE, earlySignal = FALSE, ...) [01:57:28.670] | : .. ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.670] | : ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.670] | : ..- attr(*, "untweakable")= chr "persistent" [01:57:28.670] | : ..- attr(*, "call")= language plan(strategy) [01:57:28.670] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [01:57:28.675] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... [01:57:28.675] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:28.675] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [01:57:28.676] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:28.676] | : . Legacy shutdown of cluster workers ... [01:57:28.677] | : . ' Stopping existing cluster ... [01:57:28.677] | : . ' , No pre-existing cluster. Skipping [01:57:28.677] | : . ' Stopping existing cluster ... done [01:57:28.677] | : . Legacy shutdown of cluster workers ... done [01:57:28.677] | : plan(): plan_cleanup('sequential', 'uniprocess', 'future', 'function', cleanup = NA) ... done [01:57:28.678] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... [01:57:28.678] | : . function (..., workers = availableCores(), lazy = FALSE, rscript_libs = .libPaths(), [01:57:28.678] | : . gc = FALSE, earlySignal = FALSE, envir = parent.frame()) [01:57:28.678] | : . - attr(*, "class")= chr [1:5] "multisession" "cluster" "multiprocess" "future" ... [01:57:28.678] | : . - attr(*, "init")= logi TRUE [01:57:28.678] | : . - attr(*, "factory")=function (workers = availableCores(), rscript_libs = .libPaths(), interrupts = TRUE, [01:57:28.678] | : . gc = FALSE, earlySignal = FALSE, ...) [01:57:28.678] | : . ..- attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.678] | : . - attr(*, "tweakable")= chr [1:11] "workers" "rscript_libs" "interrupts" "gc" ... [01:57:28.678] | : . - attr(*, "untweakable")= chr "persistent" [01:57:28.678] | : . - attr(*, "call")= language plan(strategy) [01:57:28.681] | : . init: TRUE [01:57:28.682] | : . makeFutureBackend() ... [01:57:28.682] | : . ' Backend function: <'NULL'> [01:57:28.682] | : . ' Evaluator tweak arguments: [n=0] [01:57:28.682] | : . ' list() [01:57:28.683] | : . ' Evaluator formal arguments: [n=4] [01:57:28.683] | : . ' list() [01:57:28.684] | : . ' Backend factory arguments: [n=4] [01:57:28.684] | : . ' Dotted pair list of 4 [01:57:28.684] | : . ' $ workers : language availableCores() [01:57:28.684] | : . ' $ rscript_libs: language .libPaths() [01:57:28.684] | : . ' $ gc : logi FALSE [01:57:28.684] | : . ' $ earlySignal : logi FALSE [01:57:28.687] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... [01:57:28.687] | : . ' , Arguments: [01:57:28.687] | : . ' , List of 5 [01:57:28.687] | : . ' , $ workers : Named int 2 [01:57:28.687] | : . ' , ..- attr(*, "names")= chr "mc.cores" [01:57:28.687] | : . ' , $ rscript_libs: chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:57:28.687] | : . ' , $ interrupts : logi TRUE [01:57:28.687] | : . ' , $ gc : logi FALSE [01:57:28.687] | : . ' , $ earlySignal : logi FALSE [01:57:28.693] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... [01:57:28.693] | : . ' , ; workers: 2 [01:57:28.693] | : . ' , ; getCluster() ... [01:57:28.694] | : . ' , ; getCluster() ... done [01:57:28.694] | : . ' , ; Stopping existing cluster ... [01:57:28.694] | : . ' , ; ` No pre-existing cluster. Skipping [01:57:28.694] | : . ' , ; Stopping existing cluster ... done [01:57:28.694] | : . ' , ; Starting new cluster ... [01:57:28.695] | : . ' , ; ` makeCluster(workers, ...) ... [01:57:28.695] | : . ' , ; ` | Arguments: [01:57:28.695] | : . ' , ; ` | List of 2 [01:57:28.695] | : . ' , ; ` | $ : int 2 [01:57:28.695] | : . ' , ; ` | $ rscript_libs: chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:57:28.696] | : . ' , ; ` | .makeCluster() ... [01:57:28.697] | : . ' , ; ` | : workers: '2' [01:57:28.697] | : . ' , ; ` | : R_FUTURE_PLAN: NA [01:57:28.697] | : . ' , ; ` | : parallelly::makeClusterPSOCK() arguments: [01:57:28.698] | : . ' , ; ` | : List of 2 [01:57:28.698] | : . ' , ; ` | : $ : int 2 [01:57:28.698] | : . ' , ; ` | : $ rscript_libs: chr [1:2] "D:/temp/2025_05_09_01_55_17_23336/RtmpsDakIT/RLIBS_1b6487de1dd0" "D:/RCompile/recent/R/library" [01:57:29.247] | : . ' , ; ` | : Generated cluster UUID [01:57:29.247] | : . ' , ; ` | : Cluster UUID: 'f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.247] | : . ' , ; ` | : Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.250] | : . ' , ; ` | .makeCluster() ... done [01:57:29.250] | : . ' , ; ` | Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.252] | : . ' , ; ` makeCluster(workers, ...) ... done [01:57:29.252] | : . ' , ; ` Number of workers: 2 [01:57:29.252] | : . ' , ; ` Workers UUID: 'f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.253] | : . ' , ; Starting new cluster ... done [01:57:29.253] | : . ' , ClusterFutureBackend(..., persistent = FALSE, gc = FALSE, earlySignal = FALSE) ... done [01:57:29.253] | : . ' , Backend: <'MultisessionFutureBackend', 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [01:57:29.253] | : . ' MultisessionFutureBackend(workers = , interrupts = TRUE, ...) ... done [01:57:29.253] | : . makeFutureBackend() ... done [01:57:29.254] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.254] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.254] | : . plan(): nbrOfWorkers() = 2 [01:57:29.254] | : plan(): plan_init() of 'multisession', 'cluster', 'multiprocess', 'future', 'function' ... done [01:57:29.254] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done - lm() ... [01:57:29.255] | future(..., label = NULL) ... [01:57:29.255] | : lazy: FALSE [01:57:29.255] | : stdout: TRUE [01:57:29.255] | : conditions: [n=1] 'condition' [01:57:29.255] | : gc: FALSE [01:57:29.255] | : earlySignal: FALSE [01:57:29.256] | : getGlobalsAndPackages() ... [01:57:29.256] | : . Searching for globals ... [01:57:29.271] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:29.271] | : . Searching for globals ... done [01:57:29.271] | : . Resolving globals: FALSE [01:57:29.271] | : . Search for packages associated with the globals ... [01:57:29.272] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:29.272] | : . ' Packages: [2] 'base', 'stats' [01:57:29.272] | : . Search for packages associated with the globals ... done [01:57:29.272] | : . Packages after dropping 'base': [1] 'stats' [01:57:29.273] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:29.273] | : . globals: [2] 'weight', 'group' [01:57:29.273] | : . packages: [1] 'stats' [01:57:29.273] | : getGlobalsAndPackages() ... done [01:57:29.274] | : run() for 'Future' (NULL) ... [01:57:29.274] | : . state: 'created' [01:57:29.274] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.274] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.274] | : . Using MultisessionFutureBackend ... [01:57:29.274] | : . ' Number of futures since start: 0 (0 created, 0 launched, 0 finished) [01:57:29.275] | : . ' Launching futures ... [01:57:29.275] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:29.275] | : . ' , ; Workers: [n=2] [01:57:29.275] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.277] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.277] | : . ' , ; requestWorker() ... [01:57:29.278] | : . ' , ; ` requestNode() ... [01:57:29.278] | : . ' , ; ` | Number of workers: 2 [01:57:29.278] | : . ' , ; ` | Polling for a free worker ... [01:57:29.278] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.278] | : . ' , ; ` | : . Created empty registry 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.278] | : . ' , ; ` | : . Listing all futures [01:57:29.279] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.279] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.279] | : . ' , ; ` | : Total time: 0 [01:57:29.279] | : . ' , ; ` | Polling for a free worker ... done [01:57:29.279] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.279] | : . ' , ; ` | : Listing all futures [01:57:29.280] | : . ' , ; ` | : Number of registered futures: 0 [01:57:29.280] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.280] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:29.280] | : . ' , ; ` | Index of first available worker: 1 [01:57:29.280] | : . ' , ; ` | Validate that the worker is functional ... [01:57:29.407] | : . ' , ; ` | : Worker is functional [01:57:29.407] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.407] | : . ' , ; ` | : . Listing all futures [01:57:29.407] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.408] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.408] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:29.408] | : . ' , ; ` requestNode() ... done [01:57:29.408] | : . ' , ; ` cluster node index: 1 [01:57:29.408] | : . ' , ; requestWorker() ... done [01:57:29.409] | : . ' , ; eraseGlobalEnvironment() ... [01:57:29.409] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:29.409] | : . ' , ; launchFuture() ... [01:57:29.409] | : . ' , ; ` cluster node index: 1 [01:57:29.410] | : . ' , ; ` getFutureData() ... [01:57:29.410] | : . ' , ; ` | getFutureCore() ... [01:57:29.410] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:29.410] | : . ' , ; ` | getFutureCore() ... done [01:57:29.410] | : . ' , ; ` | getFutureCapture() ... [01:57:29.411] | : . ' , ; ` | getFutureCapture() ... done [01:57:29.411] | : . ' , ; ` | getFutureContext() ... [01:57:29.411] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.411] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:29.411] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.411] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:29.412] | : . ' , ; ` | getFutureContext() ... done [01:57:29.412] | : . ' , ; ` getFutureData() ... done [01:57:29.412] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:29.413] | : . ' , ; ` | Appended future to position #1 [01:57:29.413] | : . ' , ; ` | Number of registered futures: 1 [01:57:29.413] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:29.413] | : . ' , ; launchFuture() ... done [01:57:29.413] | : . ' , ; MultisessionFuture started [01:57:29.413] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:29.414] | : . ' Launching futures ... done [01:57:29.414] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:29.414] | : . Using MultisessionFutureBackend ... done [01:57:29.414] | : run() for 'Future' (NULL) ... done [01:57:29.414] | future(..., label = NULL) ... done [01:57:29.414] | value() for MultisessionFuture (NULL) ... [01:57:29.415] | : result() for ClusterFuture ... [01:57:29.415] | : . assertValidConnection() ... [01:57:29.415] | : . ' cluster node index: 1 [01:57:29.416] | : . assertValidConnection() ... done [01:57:29.416] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:29.417] | : . ' cluster node index: 1 [01:57:29.475] | : . ' [1] TRUE [01:57:29.475] | : . ' received data: [01:57:29.475] | : . ' List of 5 [01:57:29.475] | : . ' $ type : chr "VALUE" [01:57:29.475] | : . ' $ value :List of 14 [01:57:29.475] | : . ' ..$ value :List of 13 [01:57:29.475] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [01:57:29.475] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [01:57:29.475] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [01:57:29.475] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.475] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [01:57:29.475] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [01:57:29.475] | : . ' .. ..$ rank : int 2 [01:57:29.475] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [01:57:29.475] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.475] | : . ' .. ..$ assign : int [1:2] 1 1 [01:57:29.475] | : . ' .. ..$ qr :List of 5 [01:57:29.475] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [01:57:29.475] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.475] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [01:57:29.475] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [01:57:29.475] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [01:57:29.475] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [01:57:29.475] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [01:57:29.475] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [01:57:29.475] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:29.475] | : . ' .. .. ..$ tol : num 1e-07 [01:57:29.475] | : . ' .. .. ..$ rank : int 2 [01:57:29.475] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:29.475] | : . ' .. ..$ df.residual : int 18 [01:57:29.475] | : . ' .. ..$ contrasts :List of 1 [01:57:29.475] | : . ' .. .. ..$ group: chr "contr.treatment" [01:57:29.475] | : . ' .. ..$ xlevels :List of 1 [01:57:29.475] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [01:57:29.475] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [01:57:29.475] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.475] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.475] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.475] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.475] | : . ' .. .. .. .. .. ..$ : chr "group" [01:57:29.475] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.475] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:29.475] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.475] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:29.475] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:29.475] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.475] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.475] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [01:57:29.475] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:29.475] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:29.475] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.475] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.475] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.475] | : . ' .. .. .. .. .. .. ..$ : chr "group" [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.475] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.475] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.475] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:29.475] | : . ' ..$ visible : logi TRUE [01:57:29.475] | : . ' ..$ stdout : chr "" [01:57:29.475] | : . ' ..$ conditions : list() [01:57:29.475] | : . ' ..$ rng : logi FALSE [01:57:29.475] | : . ' ..$ misuseGlobalEnv : NULL [01:57:29.475] | : . ' ..$ misuseConnections:List of 3 [01:57:29.475] | : . ' .. ..$ added : NULL [01:57:29.475] | : . ' .. ..$ removed : NULL [01:57:29.475] | : . ' .. ..$ replaced: NULL [01:57:29.475] | : . ' ..$ misuseDevices : NULL [01:57:29.475] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.475] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.475] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "15" [01:57:29.475] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:29.475] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:29.475] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:29.475] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:29.475] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:29.475] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:29.475] | : . ' .. .. ..$ pid : int 181724 [01:57:29.475] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.475] | : . ' .. .. ..$ random: int 2147483647 [01:57:29.475] | : . ' ..$ r_info :List of 4 [01:57:29.475] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:29.475] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:29.475] | : . ' .. ..$ os : chr "windows" [01:57:29.475] | : . ' .. ..$ os_name : chr "Windows" [01:57:29.475] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:29.475] | : . ' ..$ version : chr "1.8" [01:57:29.475] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:29.475] | : . ' $ success: logi TRUE [01:57:29.475] | : . ' $ time : 'proc_time' Named num [1:5] 0.05 0.01 0.06 NA NA [01:57:29.475] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:29.475] | : . ' $ tag : NULL [01:57:29.513] | : . ' Received FutureResult [01:57:29.513] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:29.513] | : . ' , Removed future from position #1 [01:57:29.513] | : . ' , Number of registered futures: 0 [01:57:29.514] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:29.514] | : . ' Erased future from future backend [01:57:29.514] | : . ' result() for ClusterFuture ... [01:57:29.514] | : . ' , result already collected: FutureResult [01:57:29.514] | : . ' result() for ClusterFuture ... done [01:57:29.514] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:29.515] | : result() for ClusterFuture ... done [01:57:29.515] | : result() for ClusterFuture ... [01:57:29.515] | : . result already collected: FutureResult [01:57:29.515] | : result() for ClusterFuture ... done [01:57:29.515] | : relay stdout ... [01:57:29.515] | : relay stdout ... done [01:57:29.516] | : check for misuse ... [01:57:29.516] | : check for misuse ... done [01:57:29.516] | value() for MultisessionFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:29.518] | future(..., label = NULL) ... [01:57:29.518] | : lazy: TRUE [01:57:29.518] | : stdout: TRUE [01:57:29.518] | : conditions: [n=1] 'condition' [01:57:29.519] | : gc: FALSE [01:57:29.519] | : earlySignal: FALSE [01:57:29.519] | : getGlobalsAndPackages() ... [01:57:29.519] | : . Searching for globals ... [01:57:29.537] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:29.538] | : . Searching for globals ... done [01:57:29.538] | : . Resolving globals: FALSE [01:57:29.538] | : . Search for packages associated with the globals ... [01:57:29.539] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:29.539] | : . ' Packages: [2] 'base', 'stats' [01:57:29.539] | : . Search for packages associated with the globals ... done [01:57:29.539] | : . Packages after dropping 'base': [1] 'stats' [01:57:29.540] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:29.540] | : . globals: [2] 'weight', 'group' [01:57:29.540] | : . packages: [1] 'stats' [01:57:29.540] | : getGlobalsAndPackages() ... done [01:57:29.540] | future(..., label = NULL) ... done [01:57:29.541] | value() for Future (NULL) ... [01:57:29.541] | : run() for 'Future' (NULL) ... [01:57:29.541] | : . state: 'created' [01:57:29.541] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.541] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.541] | : . Using MultisessionFutureBackend ... [01:57:29.542] | : . ' Number of futures since start: 1 (1 created, 1 launched, 1 finished) [01:57:29.542] | : . ' Launching futures ... [01:57:29.542] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:29.542] | : . ' , ; Workers: [n=2] [01:57:29.542] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.544] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.545] | : . ' , ; requestWorker() ... [01:57:29.545] | : . ' , ; ` requestNode() ... [01:57:29.545] | : . ' , ; ` | Number of workers: 2 [01:57:29.545] | : . ' , ; ` | Polling for a free worker ... [01:57:29.545] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.545] | : . ' , ; ` | : . Listing all futures [01:57:29.546] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.546] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.546] | : . ' , ; ` | : Total time: 0 [01:57:29.546] | : . ' , ; ` | Polling for a free worker ... done [01:57:29.546] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.546] | : . ' , ; ` | : Listing all futures [01:57:29.547] | : . ' , ; ` | : Number of registered futures: 0 [01:57:29.547] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.547] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:29.547] | : . ' , ; ` | Index of first available worker: 1 [01:57:29.547] | : . ' , ; ` | Validate that the worker is functional ... [01:57:29.591] | : . ' , ; ` | : Worker is functional [01:57:29.591] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.591] | : . ' , ; ` | : . Listing all futures [01:57:29.591] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.592] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.592] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:29.592] | : . ' , ; ` requestNode() ... done [01:57:29.592] | : . ' , ; ` cluster node index: 1 [01:57:29.592] | : . ' , ; requestWorker() ... done [01:57:29.592] | : . ' , ; eraseGlobalEnvironment() ... [01:57:29.593] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:29.593] | : . ' , ; launchFuture() ... [01:57:29.593] | : . ' , ; ` cluster node index: 1 [01:57:29.593] | : . ' , ; ` getFutureData() ... [01:57:29.594] | : . ' , ; ` | getFutureCore() ... [01:57:29.594] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:29.594] | : . ' , ; ` | getFutureCore() ... done [01:57:29.594] | : . ' , ; ` | getFutureCapture() ... [01:57:29.594] | : . ' , ; ` | getFutureCapture() ... done [01:57:29.594] | : . ' , ; ` | getFutureContext() ... [01:57:29.595] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.595] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:29.595] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.595] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:29.595] | : . ' , ; ` | getFutureContext() ... done [01:57:29.595] | : . ' , ; ` getFutureData() ... done [01:57:29.596] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:29.596] | : . ' , ; ` | Appended future to position #1 [01:57:29.596] | : . ' , ; ` | Number of registered futures: 1 [01:57:29.596] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:29.597] | : . ' , ; launchFuture() ... done [01:57:29.597] | : . ' , ; MultisessionFuture started [01:57:29.597] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:29.597] | : . ' Launching futures ... done [01:57:29.597] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:29.597] | : . Using MultisessionFutureBackend ... done [01:57:29.598] | : run() for 'Future' (NULL) ... done [01:57:29.598] | : result() for ClusterFuture ... [01:57:29.598] | : . assertValidConnection() ... [01:57:29.598] | : . ' cluster node index: 1 [01:57:29.599] | : . assertValidConnection() ... done [01:57:29.599] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:29.599] | : . ' cluster node index: 1 [01:57:29.603] | : . ' [1] TRUE [01:57:29.604] | : . ' received data: [01:57:29.604] | : . ' List of 5 [01:57:29.604] | : . ' $ type : chr "VALUE" [01:57:29.604] | : . ' $ value :List of 14 [01:57:29.604] | : . ' ..$ value :List of 13 [01:57:29.604] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [01:57:29.604] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [01:57:29.604] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [01:57:29.604] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.604] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [01:57:29.604] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [01:57:29.604] | : . ' .. ..$ rank : int 2 [01:57:29.604] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [01:57:29.604] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.604] | : . ' .. ..$ assign : int [1:2] 1 1 [01:57:29.604] | : . ' .. ..$ qr :List of 5 [01:57:29.604] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [01:57:29.604] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.604] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [01:57:29.604] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [01:57:29.604] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [01:57:29.604] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [01:57:29.604] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [01:57:29.604] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [01:57:29.604] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:29.604] | : . ' .. .. ..$ tol : num 1e-07 [01:57:29.604] | : . ' .. .. ..$ rank : int 2 [01:57:29.604] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:29.604] | : . ' .. ..$ df.residual : int 18 [01:57:29.604] | : . ' .. ..$ contrasts :List of 1 [01:57:29.604] | : . ' .. .. ..$ group: chr "contr.treatment" [01:57:29.604] | : . ' .. ..$ xlevels :List of 1 [01:57:29.604] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [01:57:29.604] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [01:57:29.604] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.604] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.604] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.604] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.604] | : . ' .. .. .. .. .. ..$ : chr "group" [01:57:29.604] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.604] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:29.604] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.604] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:29.604] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:29.604] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.604] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.604] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [01:57:29.604] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:29.604] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:29.604] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.604] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.604] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.604] | : . ' .. .. .. .. .. .. ..$ : chr "group" [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.604] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.604] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.604] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:29.604] | : . ' ..$ visible : logi TRUE [01:57:29.604] | : . ' ..$ stdout : chr "" [01:57:29.604] | : . ' ..$ conditions : list() [01:57:29.604] | : . ' ..$ rng : logi FALSE [01:57:29.604] | : . ' ..$ misuseGlobalEnv : NULL [01:57:29.604] | : . ' ..$ misuseConnections:List of 3 [01:57:29.604] | : . ' .. ..$ added : NULL [01:57:29.604] | : . ' .. ..$ removed : NULL [01:57:29.604] | : . ' .. ..$ replaced: NULL [01:57:29.604] | : . ' ..$ misuseDevices : NULL [01:57:29.604] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.604] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.604] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "16" [01:57:29.604] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:29.604] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:29.604] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:29.604] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:29.604] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:29.604] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:29.604] | : . ' .. .. ..$ pid : int 181724 [01:57:29.604] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.604] | : . ' .. .. ..$ random: int 2147483647 [01:57:29.604] | : . ' ..$ r_info :List of 4 [01:57:29.604] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:29.604] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:29.604] | : . ' .. ..$ os : chr "windows" [01:57:29.604] | : . ' .. ..$ os_name : chr "Windows" [01:57:29.604] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:29.604] | : . ' ..$ version : chr "1.8" [01:57:29.604] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:29.604] | : . ' $ success: logi TRUE [01:57:29.604] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:29.604] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:29.604] | : . ' $ tag : NULL [01:57:29.641] | : . ' Received FutureResult [01:57:29.641] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:29.641] | : . ' , Removed future from position #1 [01:57:29.641] | : . ' , Number of registered futures: 0 [01:57:29.641] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:29.642] | : . ' Erased future from future backend [01:57:29.642] | : . ' result() for ClusterFuture ... [01:57:29.642] | : . ' , result already collected: FutureResult [01:57:29.642] | : . ' result() for ClusterFuture ... done [01:57:29.642] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:29.643] | : result() for ClusterFuture ... done [01:57:29.643] | : result() for ClusterFuture ... [01:57:29.643] | : . result already collected: FutureResult [01:57:29.643] | : result() for ClusterFuture ... done [01:57:29.643] | : relay stdout ... [01:57:29.643] | : relay stdout ... done [01:57:29.643] | : check for misuse ... [01:57:29.644] | : check for misuse ... done [01:57:29.644] | value() for Future (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:29.646] | future(..., label = NULL) ... [01:57:29.646] | : lazy: FALSE [01:57:29.646] | : stdout: TRUE [01:57:29.646] | : conditions: [n=1] 'condition' [01:57:29.647] | : gc: FALSE [01:57:29.647] | : earlySignal: FALSE [01:57:29.647] | : getGlobalsAndPackages() ... [01:57:29.647] | : . Searching for globals ... [01:57:29.662] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:29.662] | : . Searching for globals ... done [01:57:29.662] | : . Resolving globals: FALSE [01:57:29.662] | : . Search for packages associated with the globals ... [01:57:29.663] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:29.663] | : . ' Packages: [2] 'base', 'stats' [01:57:29.663] | : . Search for packages associated with the globals ... done [01:57:29.663] | : . Packages after dropping 'base': [1] 'stats' [01:57:29.664] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:29.664] | : . globals: [2] 'weight', 'group' [01:57:29.664] | : . packages: [1] 'stats' [01:57:29.664] | : getGlobalsAndPackages() ... done [01:57:29.664] | : run() for 'Future' (NULL) ... [01:57:29.665] | : . state: 'created' [01:57:29.665] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.665] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.665] | : . Using MultisessionFutureBackend ... [01:57:29.665] | : . ' Number of futures since start: 2 (2 created, 2 launched, 2 finished) [01:57:29.666] | : . ' Launching futures ... [01:57:29.666] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:29.666] | : . ' , ; Workers: [n=2] [01:57:29.666] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.668] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.668] | : . ' , ; requestWorker() ... [01:57:29.668] | : . ' , ; ` requestNode() ... [01:57:29.669] | : . ' , ; ` | Number of workers: 2 [01:57:29.669] | : . ' , ; ` | Polling for a free worker ... [01:57:29.669] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.669] | : . ' , ; ` | : . Listing all futures [01:57:29.669] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.669] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.670] | : . ' , ; ` | : Total time: 0 [01:57:29.670] | : . ' , ; ` | Polling for a free worker ... done [01:57:29.670] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.670] | : . ' , ; ` | : Listing all futures [01:57:29.670] | : . ' , ; ` | : Number of registered futures: 0 [01:57:29.670] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.671] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:29.671] | : . ' , ; ` | Index of first available worker: 1 [01:57:29.671] | : . ' , ; ` | Validate that the worker is functional ... [01:57:29.715] | : . ' , ; ` | : Worker is functional [01:57:29.715] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.715] | : . ' , ; ` | : . Listing all futures [01:57:29.715] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.715] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.716] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:29.716] | : . ' , ; ` requestNode() ... done [01:57:29.716] | : . ' , ; ` cluster node index: 1 [01:57:29.716] | : . ' , ; requestWorker() ... done [01:57:29.716] | : . ' , ; eraseGlobalEnvironment() ... [01:57:29.717] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:29.717] | : . ' , ; launchFuture() ... [01:57:29.717] | : . ' , ; ` cluster node index: 1 [01:57:29.717] | : . ' , ; ` getFutureData() ... [01:57:29.717] | : . ' , ; ` | getFutureCore() ... [01:57:29.718] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:29.718] | : . ' , ; ` | getFutureCore() ... done [01:57:29.718] | : . ' , ; ` | getFutureCapture() ... [01:57:29.718] | : . ' , ; ` | getFutureCapture() ... done [01:57:29.718] | : . ' , ; ` | getFutureContext() ... [01:57:29.718] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.719] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:29.719] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.719] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:29.719] | : . ' , ; ` | getFutureContext() ... done [01:57:29.719] | : . ' , ; ` getFutureData() ... done [01:57:29.720] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:29.720] | : . ' , ; ` | Appended future to position #1 [01:57:29.720] | : . ' , ; ` | Number of registered futures: 1 [01:57:29.720] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:29.720] | : . ' , ; launchFuture() ... done [01:57:29.721] | : . ' , ; MultisessionFuture started [01:57:29.721] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:29.721] | : . ' Launching futures ... done [01:57:29.721] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:29.721] | : . Using MultisessionFutureBackend ... done [01:57:29.721] | : run() for 'Future' (NULL) ... done [01:57:29.722] | future(..., label = NULL) ... done [01:57:29.722] | value() for MultisessionFuture (NULL) ... [01:57:29.722] | : result() for ClusterFuture ... [01:57:29.722] | : . assertValidConnection() ... [01:57:29.722] | : . ' cluster node index: 1 [01:57:29.723] | : . assertValidConnection() ... done [01:57:29.723] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:29.723] | : . ' cluster node index: 1 [01:57:29.725] | : . ' [1] TRUE [01:57:29.726] | : . ' received data: [01:57:29.726] | : . ' List of 5 [01:57:29.726] | : . ' $ type : chr "VALUE" [01:57:29.726] | : . ' $ value :List of 14 [01:57:29.726] | : . ' ..$ value :List of 13 [01:57:29.726] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [01:57:29.726] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [01:57:29.726] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [01:57:29.726] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.726] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [01:57:29.726] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [01:57:29.726] | : . ' .. ..$ rank : int 2 [01:57:29.726] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [01:57:29.726] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.726] | : . ' .. ..$ assign : int [1:2] 1 1 [01:57:29.726] | : . ' .. ..$ qr :List of 5 [01:57:29.726] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [01:57:29.726] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.726] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [01:57:29.726] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [01:57:29.726] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [01:57:29.726] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [01:57:29.726] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [01:57:29.726] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [01:57:29.726] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:29.726] | : . ' .. .. ..$ tol : num 1e-07 [01:57:29.726] | : . ' .. .. ..$ rank : int 2 [01:57:29.726] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:29.726] | : . ' .. ..$ df.residual : int 18 [01:57:29.726] | : . ' .. ..$ contrasts :List of 1 [01:57:29.726] | : . ' .. .. ..$ group: chr "contr.treatment" [01:57:29.726] | : . ' .. ..$ xlevels :List of 1 [01:57:29.726] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [01:57:29.726] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [01:57:29.726] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.726] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.726] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.726] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.726] | : . ' .. .. .. .. .. ..$ : chr "group" [01:57:29.726] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.726] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:29.726] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.726] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:29.726] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:29.726] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.726] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.726] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [01:57:29.726] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:29.726] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:29.726] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.726] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.726] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.726] | : . ' .. .. .. .. .. .. ..$ : chr "group" [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.726] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.726] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.726] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:29.726] | : . ' ..$ visible : logi TRUE [01:57:29.726] | : . ' ..$ stdout : chr "" [01:57:29.726] | : . ' ..$ conditions : list() [01:57:29.726] | : . ' ..$ rng : logi FALSE [01:57:29.726] | : . ' ..$ misuseGlobalEnv : NULL [01:57:29.726] | : . ' ..$ misuseConnections:List of 3 [01:57:29.726] | : . ' .. ..$ added : NULL [01:57:29.726] | : . ' .. ..$ removed : NULL [01:57:29.726] | : . ' .. ..$ replaced: NULL [01:57:29.726] | : . ' ..$ misuseDevices : NULL [01:57:29.726] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.726] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.726] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "17" [01:57:29.726] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:29.726] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:29.726] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:29.726] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:29.726] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:29.726] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:29.726] | : . ' .. .. ..$ pid : int 181724 [01:57:29.726] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.726] | : . ' .. .. ..$ random: int 2147483647 [01:57:29.726] | : . ' ..$ r_info :List of 4 [01:57:29.726] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:29.726] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:29.726] | : . ' .. ..$ os : chr "windows" [01:57:29.726] | : . ' .. ..$ os_name : chr "Windows" [01:57:29.726] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:29.726] | : . ' ..$ version : chr "1.8" [01:57:29.726] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:29.726] | : . ' $ success: logi TRUE [01:57:29.726] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:29.726] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:29.726] | : . ' $ tag : NULL [01:57:29.768] | : . ' Received FutureResult [01:57:29.768] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:29.768] | : . ' , Removed future from position #1 [01:57:29.769] | : . ' , Number of registered futures: 0 [01:57:29.769] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:29.769] | : . ' Erased future from future backend [01:57:29.769] | : . ' result() for ClusterFuture ... [01:57:29.769] | : . ' , result already collected: FutureResult [01:57:29.769] | : . ' result() for ClusterFuture ... done [01:57:29.770] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:29.770] | : result() for ClusterFuture ... done [01:57:29.770] | : result() for ClusterFuture ... [01:57:29.770] | : . result already collected: FutureResult [01:57:29.770] | : result() for ClusterFuture ... done [01:57:29.770] | : relay stdout ... [01:57:29.771] | : relay stdout ... done [01:57:29.771] | : check for misuse ... [01:57:29.771] | : check for misuse ... done [01:57:29.771] | value() for MultisessionFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:29.773] | future(..., label = NULL) ... [01:57:29.773] | : lazy: FALSE [01:57:29.774] | : stdout: TRUE [01:57:29.774] | : conditions: [n=1] 'condition' [01:57:29.774] | : gc: FALSE [01:57:29.774] | : earlySignal: FALSE [01:57:29.774] | : getGlobalsAndPackages() ... [01:57:29.774] | : . Searching for globals ... [01:57:29.789] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:29.789] | : . Searching for globals ... done [01:57:29.789] | : . Resolving globals: FALSE [01:57:29.789] | : . Search for packages associated with the globals ... [01:57:29.790] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:29.790] | : . ' Packages: [2] 'base', 'stats' [01:57:29.790] | : . Search for packages associated with the globals ... done [01:57:29.791] | : . Packages after dropping 'base': [1] 'stats' [01:57:29.791] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:29.791] | : . globals: [2] 'weight', 'group' [01:57:29.791] | : . packages: [1] 'stats' [01:57:29.791] | : getGlobalsAndPackages() ... done [01:57:29.792] | : run() for 'Future' (NULL) ... [01:57:29.792] | : . state: 'created' [01:57:29.792] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.792] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.792] | : . Using MultisessionFutureBackend ... [01:57:29.793] | : . ' Number of futures since start: 3 (3 created, 3 launched, 3 finished) [01:57:29.793] | : . ' Launching futures ... [01:57:29.793] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:29.793] | : . ' , ; Workers: [n=2] [01:57:29.793] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.795] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.796] | : . ' , ; requestWorker() ... [01:57:29.796] | : . ' , ; ` requestNode() ... [01:57:29.796] | : . ' , ; ` | Number of workers: 2 [01:57:29.796] | : . ' , ; ` | Polling for a free worker ... [01:57:29.796] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.796] | : . ' , ; ` | : . Listing all futures [01:57:29.797] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.797] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.797] | : . ' , ; ` | : Total time: 0 [01:57:29.797] | : . ' , ; ` | Polling for a free worker ... done [01:57:29.797] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.797] | : . ' , ; ` | : Listing all futures [01:57:29.798] | : . ' , ; ` | : Number of registered futures: 0 [01:57:29.798] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.798] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:29.798] | : . ' , ; ` | Index of first available worker: 1 [01:57:29.798] | : . ' , ; ` | Validate that the worker is functional ... [01:57:29.843] | : . ' , ; ` | : Worker is functional [01:57:29.844] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.844] | : . ' , ; ` | : . Listing all futures [01:57:29.844] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.844] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.844] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:29.845] | : . ' , ; ` requestNode() ... done [01:57:29.845] | : . ' , ; ` cluster node index: 1 [01:57:29.845] | : . ' , ; requestWorker() ... done [01:57:29.845] | : . ' , ; eraseGlobalEnvironment() ... [01:57:29.846] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:29.846] | : . ' , ; launchFuture() ... [01:57:29.846] | : . ' , ; ` cluster node index: 1 [01:57:29.846] | : . ' , ; ` getFutureData() ... [01:57:29.846] | : . ' , ; ` | getFutureCore() ... [01:57:29.846] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:29.847] | : . ' , ; ` | getFutureCore() ... done [01:57:29.847] | : . ' , ; ` | getFutureCapture() ... [01:57:29.847] | : . ' , ; ` | getFutureCapture() ... done [01:57:29.847] | : . ' , ; ` | getFutureContext() ... [01:57:29.847] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.848] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:29.848] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.848] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:29.848] | : . ' , ; ` | getFutureContext() ... done [01:57:29.848] | : . ' , ; ` getFutureData() ... done [01:57:29.849] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:29.849] | : . ' , ; ` | Appended future to position #1 [01:57:29.849] | : . ' , ; ` | Number of registered futures: 1 [01:57:29.849] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:29.850] | : . ' , ; launchFuture() ... done [01:57:29.850] | : . ' , ; MultisessionFuture started [01:57:29.850] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:29.850] | : . ' Launching futures ... done [01:57:29.850] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:29.850] | : . Using MultisessionFutureBackend ... done [01:57:29.851] | : run() for 'Future' (NULL) ... done [01:57:29.851] | future(..., label = NULL) ... done [01:57:29.851] | value() for MultisessionFuture (NULL) ... [01:57:29.851] | : result() for ClusterFuture ... [01:57:29.851] | : . assertValidConnection() ... [01:57:29.852] | : . ' cluster node index: 1 [01:57:29.852] | : . assertValidConnection() ... done [01:57:29.852] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:29.852] | : . ' cluster node index: 1 [01:57:29.857] | : . ' [1] TRUE [01:57:29.857] | : . ' received data: [01:57:29.857] | : . ' List of 5 [01:57:29.857] | : . ' $ type : chr "VALUE" [01:57:29.857] | : . ' $ value :List of 14 [01:57:29.857] | : . ' ..$ value :List of 13 [01:57:29.857] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [01:57:29.857] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [01:57:29.857] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [01:57:29.857] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.857] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [01:57:29.857] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [01:57:29.857] | : . ' .. ..$ rank : int 2 [01:57:29.857] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [01:57:29.857] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.857] | : . ' .. ..$ assign : int [1:2] 1 1 [01:57:29.857] | : . ' .. ..$ qr :List of 5 [01:57:29.857] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [01:57:29.857] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.857] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [01:57:29.857] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [01:57:29.857] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [01:57:29.857] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [01:57:29.857] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [01:57:29.857] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [01:57:29.857] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:29.857] | : . ' .. .. ..$ tol : num 1e-07 [01:57:29.857] | : . ' .. .. ..$ rank : int 2 [01:57:29.857] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:29.857] | : . ' .. ..$ df.residual : int 18 [01:57:29.857] | : . ' .. ..$ contrasts :List of 1 [01:57:29.857] | : . ' .. .. ..$ group: chr "contr.treatment" [01:57:29.857] | : . ' .. ..$ xlevels :List of 1 [01:57:29.857] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [01:57:29.857] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [01:57:29.857] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.857] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.857] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.857] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.857] | : . ' .. .. .. .. .. ..$ : chr "group" [01:57:29.857] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.857] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:29.857] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.857] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:29.857] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:29.857] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.857] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.857] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [01:57:29.857] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:29.857] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:29.857] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.857] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.857] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.857] | : . ' .. .. .. .. .. .. ..$ : chr "group" [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.857] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.857] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.857] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:29.857] | : . ' ..$ visible : logi TRUE [01:57:29.857] | : . ' ..$ stdout : chr "" [01:57:29.857] | : . ' ..$ conditions : list() [01:57:29.857] | : . ' ..$ rng : logi FALSE [01:57:29.857] | : . ' ..$ misuseGlobalEnv : NULL [01:57:29.857] | : . ' ..$ misuseConnections:List of 3 [01:57:29.857] | : . ' .. ..$ added : NULL [01:57:29.857] | : . ' .. ..$ removed : NULL [01:57:29.857] | : . ' .. ..$ replaced: NULL [01:57:29.857] | : . ' ..$ misuseDevices : NULL [01:57:29.857] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.857] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.857] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "18" [01:57:29.857] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:29.857] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:29.857] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:29.857] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:29.857] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:29.857] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:29.857] | : . ' .. .. ..$ pid : int 181724 [01:57:29.857] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.857] | : . ' .. .. ..$ random: int 2147483647 [01:57:29.857] | : . ' ..$ r_info :List of 4 [01:57:29.857] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:29.857] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:29.857] | : . ' .. ..$ os : chr "windows" [01:57:29.857] | : . ' .. ..$ os_name : chr "Windows" [01:57:29.857] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:29.857] | : . ' ..$ version : chr "1.8" [01:57:29.857] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:29.857] | : . ' $ success: logi TRUE [01:57:29.857] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.01 NA NA [01:57:29.857] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:29.857] | : . ' $ tag : NULL [01:57:29.895] | : . ' Received FutureResult [01:57:29.895] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:29.896] | : . ' , Removed future from position #1 [01:57:29.896] | : . ' , Number of registered futures: 0 [01:57:29.896] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:29.896] | : . ' Erased future from future backend [01:57:29.896] | : . ' result() for ClusterFuture ... [01:57:29.896] | : . ' , result already collected: FutureResult [01:57:29.897] | : . ' result() for ClusterFuture ... done [01:57:29.897] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:29.897] | : result() for ClusterFuture ... done [01:57:29.897] | : result() for ClusterFuture ... [01:57:29.897] | : . result already collected: FutureResult [01:57:29.897] | : result() for ClusterFuture ... done [01:57:29.898] | : relay stdout ... [01:57:29.898] | : relay stdout ... done [01:57:29.898] | : check for misuse ... [01:57:29.898] | : check for misuse ... done [01:57:29.898] | value() for MultisessionFuture (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 [01:57:29.900] | future(..., label = NULL) ... [01:57:29.901] | : lazy: TRUE [01:57:29.901] | : stdout: TRUE [01:57:29.901] | : conditions: [n=1] 'condition' [01:57:29.901] | : gc: FALSE [01:57:29.901] | : earlySignal: FALSE [01:57:29.901] | : getGlobalsAndPackages() ... [01:57:29.902] | : . Searching for globals ... [01:57:29.916] | : . ' globals found: [6] '{', 'lm', 'weight', '-', 'group', '~' [01:57:29.916] | : . Searching for globals ... done [01:57:29.917] | : . Resolving globals: FALSE [01:57:29.917] | : . Search for packages associated with the globals ... [01:57:29.917] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:29.917] | : . ' Packages: [2] 'base', 'stats' [01:57:29.918] | : . Search for packages associated with the globals ... done [01:57:29.918] | : . Packages after dropping 'base': [1] 'stats' [01:57:29.918] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:29.918] | : . globals: [2] 'weight', 'group' [01:57:29.918] | : . packages: [1] 'stats' [01:57:29.919] | : getGlobalsAndPackages() ... done [01:57:29.919] | future(..., label = NULL) ... done [01:57:29.919] | value() for Future (NULL) ... [01:57:29.919] | : run() for 'Future' (NULL) ... [01:57:29.920] | : . state: 'created' [01:57:29.920] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.920] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.920] | : . Using MultisessionFutureBackend ... [01:57:29.920] | : . ' Number of futures since start: 4 (4 created, 4 launched, 4 finished) [01:57:29.920] | : . ' Launching futures ... [01:57:29.921] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:29.921] | : . ' , ; Workers: [n=2] [01:57:29.921] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:29.923] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:29.923] | : . ' , ; requestWorker() ... [01:57:29.923] | : . ' , ; ` requestNode() ... [01:57:29.923] | : . ' , ; ` | Number of workers: 2 [01:57:29.924] | : . ' , ; ` | Polling for a free worker ... [01:57:29.924] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.924] | : . ' , ; ` | : . Listing all futures [01:57:29.924] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.924] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.924] | : . ' , ; ` | : Total time: 0 [01:57:29.925] | : . ' , ; ` | Polling for a free worker ... done [01:57:29.925] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.925] | : . ' , ; ` | : Listing all futures [01:57:29.925] | : . ' , ; ` | : Number of registered futures: 0 [01:57:29.925] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.925] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:29.926] | : . ' , ; ` | Index of first available worker: 1 [01:57:29.926] | : . ' , ; ` | Validate that the worker is functional ... [01:57:29.970] | : . ' , ; ` | : Worker is functional [01:57:29.971] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:29.971] | : . ' , ; ` | : . Listing all futures [01:57:29.971] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:29.971] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:29.971] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:29.971] | : . ' , ; ` requestNode() ... done [01:57:29.972] | : . ' , ; ` cluster node index: 1 [01:57:29.972] | : . ' , ; requestWorker() ... done [01:57:29.972] | : . ' , ; eraseGlobalEnvironment() ... [01:57:29.972] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:29.973] | : . ' , ; launchFuture() ... [01:57:29.973] | : . ' , ; ` cluster node index: 1 [01:57:29.973] | : . ' , ; ` getFutureData() ... [01:57:29.973] | : . ' , ; ` | getFutureCore() ... [01:57:29.973] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:29.973] | : . ' , ; ` | getFutureCore() ... done [01:57:29.974] | : . ' , ; ` | getFutureCapture() ... [01:57:29.974] | : . ' , ; ` | getFutureCapture() ... done [01:57:29.974] | : . ' , ; ` | getFutureContext() ... [01:57:29.974] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:29.974] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:29.975] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:29.975] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:29.975] | : . ' , ; ` | getFutureContext() ... done [01:57:29.975] | : . ' , ; ` getFutureData() ... done [01:57:29.975] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:29.976] | : . ' , ; ` | Appended future to position #1 [01:57:29.976] | : . ' , ; ` | Number of registered futures: 1 [01:57:29.976] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:29.976] | : . ' , ; launchFuture() ... done [01:57:29.976] | : . ' , ; MultisessionFuture started [01:57:29.976] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:29.977] | : . ' Launching futures ... done [01:57:29.977] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:29.977] | : . Using MultisessionFutureBackend ... done [01:57:29.977] | : run() for 'Future' (NULL) ... done [01:57:29.977] | : result() for ClusterFuture ... [01:57:29.978] | : . assertValidConnection() ... [01:57:29.978] | : . ' cluster node index: 1 [01:57:29.978] | : . assertValidConnection() ... done [01:57:29.978] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:29.978] | : . ' cluster node index: 1 [01:57:29.981] | : . ' [1] TRUE [01:57:29.982] | : . ' received data: [01:57:29.982] | : . ' List of 5 [01:57:29.982] | : . ' $ type : chr "VALUE" [01:57:29.982] | : . ' $ value :List of 14 [01:57:29.982] | : . ' ..$ value :List of 13 [01:57:29.982] | : . ' .. ..$ coefficients : Named num [1:2] 5.03 4.66 [01:57:29.982] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "groupCtl" "groupTrt" [01:57:29.982] | : . ' .. ..$ residuals : Named num [1:20] -0.862 0.548 0.148 1.078 -0.532 ... [01:57:29.982] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.982] | : . ' .. ..$ effects : Named num [1:20] -15.913 -14.739 0.355 1.285 -0.325 ... [01:57:29.982] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "groupCtl" "groupTrt" "" "" ... [01:57:29.982] | : . ' .. ..$ rank : int 2 [01:57:29.982] | : . ' .. ..$ fitted.values: Named num [1:20] 5.03 5.03 5.03 5.03 5.03 ... [01:57:29.982] | : . ' .. .. ..- attr(*, "names")= chr [1:20] "1" "2" "3" "4" ... [01:57:29.982] | : . ' .. ..$ assign : int [1:2] 1 1 [01:57:29.982] | : . ' .. ..$ qr :List of 5 [01:57:29.982] | : . ' .. .. ..$ qr : num [1:20, 1:2] -3.162 0.316 0.316 0.316 0.316 ... [01:57:29.982] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.982] | : . ' .. .. .. .. ..$ : chr [1:20] "1" "2" "3" "4" ... [01:57:29.982] | : . ' .. .. .. .. ..$ : chr [1:2] "groupCtl" "groupTrt" [01:57:29.982] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 1 1 [01:57:29.982] | : . ' .. .. .. ..- attr(*, "contrasts")=List of 1 [01:57:29.982] | : . ' .. .. .. .. ..$ group: chr "contr.treatment" [01:57:29.982] | : . ' .. .. ..$ qraux: num [1:2] 1.32 1 [01:57:29.982] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:29.982] | : . ' .. .. ..$ tol : num 1e-07 [01:57:29.982] | : . ' .. .. ..$ rank : int 2 [01:57:29.982] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:29.982] | : . ' .. ..$ df.residual : int 18 [01:57:29.982] | : . ' .. ..$ contrasts :List of 1 [01:57:29.982] | : . ' .. .. ..$ group: chr "contr.treatment" [01:57:29.982] | : . ' .. ..$ xlevels :List of 1 [01:57:29.982] | : . ' .. .. ..$ group: chr [1:2] "Ctl" "Trt" [01:57:29.982] | : . ' .. ..$ call : language lm(formula = weight ~ group - 1) [01:57:29.982] | : . ' .. ..$ terms :Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.982] | : . ' .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.982] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.982] | : . ' .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.982] | : . ' .. .. .. .. .. ..$ : chr "group" [01:57:29.982] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.982] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:29.982] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.982] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:29.982] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:29.982] | : . ' .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.982] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.982] | : . ' .. ..$ model :'data.frame': 20 obs. of 2 variables: [01:57:29.982] | : . ' .. .. ..$ weight: num [1:20] 4.17 5.58 5.18 6.11 4.5 4.61 5.17 4.53 5.33 5.14 ... [01:57:29.982] | : . ' .. .. ..$ group : Factor w/ 2 levels "Ctl","Trt": 1 1 1 1 1 1 1 1 1 1 ... [01:57:29.982] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language weight ~ group - 1 [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(weight, group) [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:29.982] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:29.982] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "weight" "group" [01:57:29.982] | : . ' .. .. .. .. .. .. ..$ : chr "group" [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "group" [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(weight, group) [01:57:29.982] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "factor" [01:57:29.982] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "weight" "group" [01:57:29.982] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:29.982] | : . ' ..$ visible : logi TRUE [01:57:29.982] | : . ' ..$ stdout : chr "" [01:57:29.982] | : . ' ..$ conditions : list() [01:57:29.982] | : . ' ..$ rng : logi FALSE [01:57:29.982] | : . ' ..$ misuseGlobalEnv : NULL [01:57:29.982] | : . ' ..$ misuseConnections:List of 3 [01:57:29.982] | : . ' .. ..$ added : NULL [01:57:29.982] | : . ' .. ..$ removed : NULL [01:57:29.982] | : . ' .. ..$ replaced: NULL [01:57:29.982] | : . ' ..$ misuseDevices : NULL [01:57:29.982] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.982] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.982] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "19" [01:57:29.982] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:29.982] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:29.982] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:29.982] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:29.982] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:29.982] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:29.982] | : . ' .. .. ..$ pid : int 181724 [01:57:29.982] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:29.982] | : . ' .. .. ..$ random: int 2147483647 [01:57:29.982] | : . ' ..$ r_info :List of 4 [01:57:29.982] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:29.982] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:29.982] | : . ' .. ..$ os : chr "windows" [01:57:29.982] | : . ' .. ..$ os_name : chr "Windows" [01:57:29.982] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:29.982] | : . ' ..$ version : chr "1.8" [01:57:29.982] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:29.982] | : . ' $ success: logi TRUE [01:57:29.982] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0.02 NA NA [01:57:29.982] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:29.982] | : . ' $ tag : NULL [01:57:30.017] | : . ' Received FutureResult [01:57:30.018] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.020] | : . ' , Removed future from position #1 [01:57:30.020] | : . ' , Number of registered futures: 0 [01:57:30.020] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.020] | : . ' Erased future from future backend [01:57:30.021] | : . ' result() for ClusterFuture ... [01:57:30.021] | : . ' , result already collected: FutureResult [01:57:30.021] | : . ' result() for ClusterFuture ... done [01:57:30.021] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.021] | : result() for ClusterFuture ... done [01:57:30.022] | : result() for ClusterFuture ... [01:57:30.022] | : . result already collected: FutureResult [01:57:30.022] | : result() for ClusterFuture ... done [01:57:30.022] | : relay stdout ... [01:57:30.022] | : relay stdout ... done [01:57:30.022] | : check for misuse ... [01:57:30.023] | : check for misuse ... done [01:57:30.023] | value() for Future (NULL) ... done Call: lm(formula = weight ~ group - 1) Coefficients: groupCtl groupTrt 5.032 4.661 - Globals - one-side formulas, e.g. xtabs(~ x) ... [01:57:30.025] | future(..., label = NULL) ... [01:57:30.025] | : lazy: FALSE [01:57:30.025] | : stdout: TRUE [01:57:30.025] | : conditions: [n=1] 'condition' [01:57:30.025] | : gc: FALSE [01:57:30.026] | : earlySignal: FALSE [01:57:30.026] | : getGlobalsAndPackages() ... [01:57:30.026] | : . Searching for globals ... [01:57:30.035] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [01:57:30.036] | : . Searching for globals ... done [01:57:30.036] | : . Resolving globals: FALSE [01:57:30.036] | : . Search for packages associated with the globals ... [01:57:30.036] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:30.037] | : . ' Packages: [2] 'base', 'stats' [01:57:30.037] | : . Search for packages associated with the globals ... done [01:57:30.037] | : . Packages after dropping 'base': [1] 'stats' [01:57:30.037] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:30.038] | : . globals: [1] 'x' [01:57:30.038] | : . packages: [1] 'stats' [01:57:30.038] | : getGlobalsAndPackages() ... done [01:57:30.038] | : run() for 'Future' (NULL) ... [01:57:30.038] | : . state: 'created' [01:57:30.039] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.039] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.039] | : . Using MultisessionFutureBackend ... [01:57:30.039] | : . ' Number of futures since start: 5 (5 created, 5 launched, 5 finished) [01:57:30.039] | : . ' Launching futures ... [01:57:30.039] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.040] | : . ' , ; Workers: [n=2] [01:57:30.040] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.042] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.042] | : . ' , ; requestWorker() ... [01:57:30.042] | : . ' , ; ` requestNode() ... [01:57:30.042] | : . ' , ; ` | Number of workers: 2 [01:57:30.042] | : . ' , ; ` | Polling for a free worker ... [01:57:30.043] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.043] | : . ' , ; ` | : . Listing all futures [01:57:30.043] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.043] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.043] | : . ' , ; ` | : Total time: 0 [01:57:30.043] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.044] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.044] | : . ' , ; ` | : Listing all futures [01:57:30.044] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.044] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.044] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.044] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.045] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.093] | : . ' , ; ` | : Worker is functional [01:57:30.093] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.093] | : . ' , ; ` | : . Listing all futures [01:57:30.094] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.094] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.094] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.094] | : . ' , ; ` requestNode() ... done [01:57:30.094] | : . ' , ; ` cluster node index: 1 [01:57:30.095] | : . ' , ; requestWorker() ... done [01:57:30.095] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.095] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.096] | : . ' , ; launchFuture() ... [01:57:30.096] | : . ' , ; ` cluster node index: 1 [01:57:30.096] | : . ' , ; ` getFutureData() ... [01:57:30.096] | : . ' , ; ` | getFutureCore() ... [01:57:30.096] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:30.096] | : . ' , ; ` | getFutureCore() ... done [01:57:30.097] | : . ' , ; ` | getFutureCapture() ... [01:57:30.097] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.097] | : . ' , ; ` | getFutureContext() ... [01:57:30.097] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.097] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.097] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.098] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.098] | : . ' , ; ` | getFutureContext() ... done [01:57:30.098] | : . ' , ; ` getFutureData() ... done [01:57:30.098] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.099] | : . ' , ; ` | Appended future to position #1 [01:57:30.099] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.099] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.099] | : . ' , ; launchFuture() ... done [01:57:30.099] | : . ' , ; MultisessionFuture started [01:57:30.099] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.100] | : . ' Launching futures ... done [01:57:30.100] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.100] | : . Using MultisessionFutureBackend ... done [01:57:30.100] | : run() for 'Future' (NULL) ... done [01:57:30.100] | future(..., label = NULL) ... done [01:57:30.101] | value() for MultisessionFuture (NULL) ... [01:57:30.101] | : result() for ClusterFuture ... [01:57:30.101] | : . assertValidConnection() ... [01:57:30.101] | : . ' cluster node index: 1 [01:57:30.102] | : . assertValidConnection() ... done [01:57:30.102] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.102] | : . ' cluster node index: 1 [01:57:30.105] | : . ' [1] TRUE [01:57:30.105] | : . ' received data: [01:57:30.105] | : . ' List of 5 [01:57:30.105] | : . ' $ type : chr "VALUE" [01:57:30.105] | : . ' $ value :List of 14 [01:57:30.105] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [01:57:30.105] | : . ' .. ..- attr(*, "dimnames")=List of 1 [01:57:30.105] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [01:57:30.105] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [01:57:30.105] | : . ' ..$ visible : logi TRUE [01:57:30.105] | : . ' ..$ stdout : chr "" [01:57:30.105] | : . ' ..$ conditions : list() [01:57:30.105] | : . ' ..$ rng : logi FALSE [01:57:30.105] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.105] | : . ' ..$ misuseConnections:List of 3 [01:57:30.105] | : . ' .. ..$ added : NULL [01:57:30.105] | : . ' .. ..$ removed : NULL [01:57:30.105] | : . ' .. ..$ replaced: NULL [01:57:30.105] | : . ' ..$ misuseDevices : NULL [01:57:30.105] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.105] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.105] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "20" [01:57:30.105] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.105] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.105] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.105] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.105] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.105] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.105] | : . ' .. .. ..$ pid : int 181724 [01:57:30.105] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.105] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.105] | : . ' ..$ r_info :List of 4 [01:57:30.105] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.105] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.105] | : . ' .. ..$ os : chr "windows" [01:57:30.105] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.105] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.105] | : . ' ..$ version : chr "1.8" [01:57:30.105] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.105] | : . ' $ success: logi TRUE [01:57:30.105] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:30.105] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.105] | : . ' $ tag : NULL [01:57:30.120] | : . ' Received FutureResult [01:57:30.120] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.120] | : . ' , Removed future from position #1 [01:57:30.120] | : . ' , Number of registered futures: 0 [01:57:30.121] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.121] | : . ' Erased future from future backend [01:57:30.121] | : . ' result() for ClusterFuture ... [01:57:30.121] | : . ' , result already collected: FutureResult [01:57:30.121] | : . ' result() for ClusterFuture ... done [01:57:30.121] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.122] | : result() for ClusterFuture ... done [01:57:30.122] | : result() for ClusterFuture ... [01:57:30.122] | : . result already collected: FutureResult [01:57:30.122] | : result() for ClusterFuture ... done [01:57:30.122] | : relay stdout ... [01:57:30.123] | : relay stdout ... done [01:57:30.123] | : check for misuse ... [01:57:30.123] | : check for misuse ... done [01:57:30.123] | value() for MultisessionFuture (NULL) ... done x 1 2 2 3 [01:57:30.124] | future(..., label = NULL) ... [01:57:30.124] | : lazy: FALSE [01:57:30.124] | : stdout: TRUE [01:57:30.124] | : conditions: [n=1] 'condition' [01:57:30.125] | : gc: FALSE [01:57:30.125] | : earlySignal: FALSE [01:57:30.125] | : getGlobalsAndPackages() ... [01:57:30.125] | : . Searching for globals ... [01:57:30.135] | : . ' globals found: [4] '{', 'xtabs', 'x', '~' [01:57:30.135] | : . Searching for globals ... done [01:57:30.135] | : . Resolving globals: FALSE [01:57:30.135] | : . Search for packages associated with the globals ... [01:57:30.135] | : . ' Packages associated with globals: [2] 'base', 'stats' [01:57:30.136] | : . ' Packages: [2] 'base', 'stats' [01:57:30.136] | : . Search for packages associated with the globals ... done [01:57:30.136] | : . Packages after dropping 'base': [1] 'stats' [01:57:30.137] | : . Packages after dropping non-attached packages: [1] 'stats' [01:57:30.137] | : . globals: [1] 'x' [01:57:30.137] | : . packages: [1] 'stats' [01:57:30.137] | : getGlobalsAndPackages() ... done [01:57:30.137] | : run() for 'Future' (NULL) ... [01:57:30.138] | : . state: 'created' [01:57:30.138] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.138] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.138] | : . Using MultisessionFutureBackend ... [01:57:30.138] | : . ' Number of futures since start: 6 (6 created, 6 launched, 6 finished) [01:57:30.138] | : . ' Launching futures ... [01:57:30.139] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.139] | : . ' , ; Workers: [n=2] [01:57:30.139] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.141] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.141] | : . ' , ; requestWorker() ... [01:57:30.141] | : . ' , ; ` requestNode() ... [01:57:30.141] | : . ' , ; ` | Number of workers: 2 [01:57:30.142] | : . ' , ; ` | Polling for a free worker ... [01:57:30.142] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.142] | : . ' , ; ` | : . Listing all futures [01:57:30.142] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.142] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.142] | : . ' , ; ` | : Total time: 0 [01:57:30.143] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.143] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.143] | : . ' , ; ` | : Listing all futures [01:57:30.143] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.143] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.143] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.144] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.144] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.189] | : . ' , ; ` | : Worker is functional [01:57:30.189] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.189] | : . ' , ; ` | : . Listing all futures [01:57:30.190] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.190] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.190] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.190] | : . ' , ; ` requestNode() ... done [01:57:30.190] | : . ' , ; ` cluster node index: 1 [01:57:30.190] | : . ' , ; requestWorker() ... done [01:57:30.191] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.191] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.191] | : . ' , ; launchFuture() ... [01:57:30.191] | : . ' , ; ` cluster node index: 1 [01:57:30.192] | : . ' , ; ` getFutureData() ... [01:57:30.192] | : . ' , ; ` | getFutureCore() ... [01:57:30.192] | : . ' , ; ` | : Packages needed by the future expression (n = 1): 'stats' [01:57:30.192] | : . ' , ; ` | getFutureCore() ... done [01:57:30.192] | : . ' , ; ` | getFutureCapture() ... [01:57:30.192] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.193] | : . ' , ; ` | getFutureContext() ... [01:57:30.193] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.193] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.193] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.193] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.193] | : . ' , ; ` | getFutureContext() ... done [01:57:30.195] | : . ' , ; ` getFutureData() ... done [01:57:30.196] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.196] | : . ' , ; ` | Appended future to position #1 [01:57:30.196] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.197] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.197] | : . ' , ; launchFuture() ... done [01:57:30.197] | : . ' , ; MultisessionFuture started [01:57:30.197] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.197] | : . ' Launching futures ... done [01:57:30.197] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.198] | : . Using MultisessionFutureBackend ... done [01:57:30.198] | : run() for 'Future' (NULL) ... done [01:57:30.198] | future(..., label = NULL) ... done [01:57:30.198] | value() for MultisessionFuture (NULL) ... [01:57:30.198] | : result() for ClusterFuture ... [01:57:30.199] | : . assertValidConnection() ... [01:57:30.199] | : . ' cluster node index: 1 [01:57:30.199] | : . assertValidConnection() ... done [01:57:30.199] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.199] | : . ' cluster node index: 1 [01:57:30.230] | : . ' [1] TRUE [01:57:30.231] | : . ' received data: [01:57:30.231] | : . ' List of 5 [01:57:30.231] | : . ' $ type : chr "VALUE" [01:57:30.231] | : . ' $ value :List of 14 [01:57:30.231] | : . ' ..$ value : 'xtabs' int [1:2(1d)] 2 3 [01:57:30.231] | : . ' .. ..- attr(*, "dimnames")=List of 1 [01:57:30.231] | : . ' .. .. ..$ x: chr [1:2] "1" "2" [01:57:30.231] | : . ' .. ..- attr(*, "call")= language xtabs(formula = ~x) [01:57:30.231] | : . ' ..$ visible : logi TRUE [01:57:30.231] | : . ' ..$ stdout : chr "" [01:57:30.231] | : . ' ..$ conditions : list() [01:57:30.231] | : . ' ..$ rng : logi FALSE [01:57:30.231] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.231] | : . ' ..$ misuseConnections:List of 3 [01:57:30.231] | : . ' .. ..$ added : NULL [01:57:30.231] | : . ' .. ..$ removed : NULL [01:57:30.231] | : . ' .. ..$ replaced: NULL [01:57:30.231] | : . ' ..$ misuseDevices : NULL [01:57:30.231] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.231] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.231] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "21" [01:57:30.231] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.231] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.231] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.231] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.231] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.231] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.231] | : . ' .. .. ..$ pid : int 181724 [01:57:30.231] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.231] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.231] | : . ' ..$ r_info :List of 4 [01:57:30.231] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.231] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.231] | : . ' .. ..$ os : chr "windows" [01:57:30.231] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.231] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.231] | : . ' ..$ version : chr "1.8" [01:57:30.231] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.231] | : . ' $ success: logi TRUE [01:57:30.231] | : . ' $ time : 'proc_time' Named num [1:5] 0.03 0 0.03 NA NA [01:57:30.231] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.231] | : . ' $ tag : NULL [01:57:30.245] | : . ' Received FutureResult [01:57:30.246] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.246] | : . ' , Removed future from position #1 [01:57:30.246] | : . ' , Number of registered futures: 0 [01:57:30.246] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.246] | : . ' Erased future from future backend [01:57:30.247] | : . ' result() for ClusterFuture ... [01:57:30.247] | : . ' , result already collected: FutureResult [01:57:30.247] | : . ' result() for ClusterFuture ... done [01:57:30.247] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.247] | : result() for ClusterFuture ... done [01:57:30.248] | : result() for ClusterFuture ... [01:57:30.248] | : . result already collected: FutureResult [01:57:30.248] | : result() for ClusterFuture ... done [01:57:30.248] | : relay stdout ... [01:57:30.248] | : relay stdout ... done [01:57:30.248] | : check for misuse ... [01:57:30.249] | : check for misuse ... done [01:57:30.249] | value() for MultisessionFuture (NULL) ... 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 [01:57:30.251] | future(..., label = NULL) ... [01:57:30.251] | : lazy: FALSE [01:57:30.251] | : stdout: TRUE [01:57:30.251] | : conditions: [n=1] 'condition' [01:57:30.251] | : gc: FALSE [01:57:30.251] | : earlySignal: FALSE [01:57:30.252] | : getGlobalsAndPackages() ... [01:57:30.252] | : . Searching for globals ... [01:57:30.268] | : . ' globals found: [7] '{', 'lm', 'dist', '-', '.', '~', 'cars' [01:57:30.268] | : . Searching for globals ... done [01:57:30.268] | : . Resolving globals: FALSE [01:57:30.268] | : . Search for packages associated with the globals ... [01:57:30.268] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:30.269] | : . ' Packages: [3] 'base', 'stats', 'datasets' [01:57:30.269] | : . Search for packages associated with the globals ... done [01:57:30.269] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:30.270] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:30.270] | : . globals: [0] [01:57:30.270] | : . packages: [2] 'stats', 'datasets' [01:57:30.270] | : getGlobalsAndPackages() ... done [01:57:30.270] | : run() for 'Future' (NULL) ... [01:57:30.271] | : . state: 'created' [01:57:30.271] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.271] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.271] | : . Using MultisessionFutureBackend ... [01:57:30.271] | : . ' Number of futures since start: 7 (7 created, 7 launched, 7 finished) [01:57:30.272] | : . ' Launching futures ... [01:57:30.272] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.272] | : . ' , ; Workers: [n=2] [01:57:30.272] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.274] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.274] | : . ' , ; requestWorker() ... [01:57:30.274] | : . ' , ; ` requestNode() ... [01:57:30.275] | : . ' , ; ` | Number of workers: 2 [01:57:30.275] | : . ' , ; ` | Polling for a free worker ... [01:57:30.275] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.275] | : . ' , ; ` | : . Listing all futures [01:57:30.275] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.275] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.276] | : . ' , ; ` | : Total time: 0 [01:57:30.276] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.276] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.276] | : . ' , ; ` | : Listing all futures [01:57:30.276] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.276] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.277] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.277] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.277] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.322] | : . ' , ; ` | : Worker is functional [01:57:30.322] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.323] | : . ' , ; ` | : . Listing all futures [01:57:30.323] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.323] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.323] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.323] | : . ' , ; ` requestNode() ... done [01:57:30.323] | : . ' , ; ` cluster node index: 1 [01:57:30.324] | : . ' , ; requestWorker() ... done [01:57:30.324] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.324] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.325] | : . ' , ; launchFuture() ... [01:57:30.325] | : . ' , ; ` cluster node index: 1 [01:57:30.325] | : . ' , ; ` getFutureData() ... [01:57:30.325] | : . ' , ; ` | getFutureCore() ... [01:57:30.325] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:30.326] | : . ' , ; ` | getFutureCore() ... done [01:57:30.326] | : . ' , ; ` | getFutureCapture() ... [01:57:30.326] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.326] | : . ' , ; ` | getFutureContext() ... [01:57:30.326] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.326] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.327] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.327] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.327] | : . ' , ; ` | getFutureContext() ... done [01:57:30.327] | : . ' , ; ` getFutureData() ... done [01:57:30.328] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.328] | : . ' , ; ` | Appended future to position #1 [01:57:30.328] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.328] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.328] | : . ' , ; launchFuture() ... done [01:57:30.328] | : . ' , ; MultisessionFuture started [01:57:30.329] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.329] | : . ' Launching futures ... done [01:57:30.329] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.329] | : . Using MultisessionFutureBackend ... done [01:57:30.329] | : run() for 'Future' (NULL) ... done [01:57:30.330] | future(..., label = NULL) ... done [01:57:30.330] | value() for MultisessionFuture (NULL) ... [01:57:30.330] | : result() for ClusterFuture ... [01:57:30.330] | : . assertValidConnection() ... [01:57:30.330] | : . ' cluster node index: 1 [01:57:30.331] | : . assertValidConnection() ... done [01:57:30.331] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.331] | : . ' cluster node index: 1 [01:57:30.334] | : . ' [1] TRUE [01:57:30.335] | : . ' received data: [01:57:30.335] | : . ' List of 5 [01:57:30.335] | : . ' $ type : chr "VALUE" [01:57:30.335] | : . ' $ value :List of 14 [01:57:30.335] | : . ' ..$ value :List of 12 [01:57:30.335] | : . ' .. ..$ coefficients : Named num 2.91 [01:57:30.335] | : . ' .. .. ..- attr(*, "names")= chr "speed" [01:57:30.335] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [01:57:30.335] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.335] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [01:57:30.335] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [01:57:30.335] | : . ' .. ..$ rank : int 1 [01:57:30.335] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [01:57:30.335] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.335] | : . ' .. ..$ assign : int 1 [01:57:30.335] | : . ' .. ..$ qr :List of 5 [01:57:30.335] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [01:57:30.335] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.335] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [01:57:30.335] | : . ' .. .. .. .. ..$ : chr "speed" [01:57:30.335] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [01:57:30.335] | : . ' .. .. ..$ qraux: num 1.03 [01:57:30.335] | : . ' .. .. ..$ pivot: int 1 [01:57:30.335] | : . ' .. .. ..$ tol : num 1e-07 [01:57:30.335] | : . ' .. .. ..$ rank : int 1 [01:57:30.335] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:30.335] | : . ' .. ..$ df.residual : int 49 [01:57:30.335] | : . ' .. ..$ xlevels : Named list() [01:57:30.335] | : . ' .. ..$ call : language lm(formula = dist ~ . - 1, data = cars) [01:57:30.335] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed - 1 [01:57:30.335] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.335] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.335] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.335] | : . ' .. .. .. .. .. ..$ : chr "speed" [01:57:30.335] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.335] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:30.335] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:30.335] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:30.335] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:30.335] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.335] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.335] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [01:57:30.335] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [01:57:30.335] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [01:57:30.335] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed - 1 [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.335] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.335] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.335] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.335] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.335] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.335] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:30.335] | : . ' ..$ visible : logi TRUE [01:57:30.335] | : . ' ..$ stdout : chr "" [01:57:30.335] | : . ' ..$ conditions : list() [01:57:30.335] | : . ' ..$ rng : logi FALSE [01:57:30.335] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.335] | : . ' ..$ misuseConnections:List of 3 [01:57:30.335] | : . ' .. ..$ added : NULL [01:57:30.335] | : . ' .. ..$ removed : NULL [01:57:30.335] | : . ' .. ..$ replaced: NULL [01:57:30.335] | : . ' ..$ misuseDevices : NULL [01:57:30.335] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.335] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.335] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "22" [01:57:30.335] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.335] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.335] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.335] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.335] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.335] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.335] | : . ' .. .. ..$ pid : int 181724 [01:57:30.335] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.335] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.335] | : . ' ..$ r_info :List of 4 [01:57:30.335] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.335] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.335] | : . ' .. ..$ os : chr "windows" [01:57:30.335] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.335] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.335] | : . ' ..$ version : chr "1.8" [01:57:30.335] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.335] | : . ' $ success: logi TRUE [01:57:30.335] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:30.335] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.335] | : . ' $ tag : NULL [01:57:30.371] | : . ' Received FutureResult [01:57:30.371] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.371] | : . ' , Removed future from position #1 [01:57:30.372] | : . ' , Number of registered futures: 0 [01:57:30.372] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.372] | : . ' Erased future from future backend [01:57:30.372] | : . ' result() for ClusterFuture ... [01:57:30.372] | : . ' , result already collected: FutureResult [01:57:30.372] | : . ' result() for ClusterFuture ... done [01:57:30.373] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.373] | : result() for ClusterFuture ... done [01:57:30.373] | : result() for ClusterFuture ... [01:57:30.373] | : . result already collected: FutureResult [01:57:30.373] | : result() for ClusterFuture ... done [01:57:30.374] | : relay stdout ... [01:57:30.374] | : relay stdout ... done [01:57:30.374] | : check for misuse ... [01:57:30.374] | : check for misuse ... done [01:57:30.374] | value() for MultisessionFuture (NULL) ... 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 [01:57:30.377] | future(..., label = NULL) ... [01:57:30.377] | : lazy: FALSE [01:57:30.377] | : stdout: TRUE [01:57:30.378] | : conditions: [n=1] 'condition' [01:57:30.378] | : gc: FALSE [01:57:30.378] | : earlySignal: FALSE [01:57:30.378] | : getGlobalsAndPackages() ... [01:57:30.378] | : . Searching for globals ... [01:57:30.394] | : . ' globals found: [7] '{', 'lm', 'dist', '+', '.', '~', 'cars' [01:57:30.394] | : . Searching for globals ... done [01:57:30.394] | : . Resolving globals: FALSE [01:57:30.395] | : . Search for packages associated with the globals ... [01:57:30.395] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:30.395] | : . ' Packages: [3] 'base', 'stats', 'datasets' [01:57:30.395] | : . Search for packages associated with the globals ... done [01:57:30.396] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:30.396] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:30.396] | : . globals: [0] [01:57:30.396] | : . packages: [2] 'stats', 'datasets' [01:57:30.396] | : getGlobalsAndPackages() ... done [01:57:30.397] | : run() for 'Future' (NULL) ... [01:57:30.397] | : . state: 'created' [01:57:30.397] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.397] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.398] | : . Using MultisessionFutureBackend ... [01:57:30.398] | : . ' Number of futures since start: 8 (8 created, 8 launched, 8 finished) [01:57:30.398] | : . ' Launching futures ... [01:57:30.398] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.398] | : . ' , ; Workers: [n=2] [01:57:30.399] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.401] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.401] | : . ' , ; requestWorker() ... [01:57:30.401] | : . ' , ; ` requestNode() ... [01:57:30.401] | : . ' , ; ` | Number of workers: 2 [01:57:30.401] | : . ' , ; ` | Polling for a free worker ... [01:57:30.401] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.402] | : . ' , ; ` | : . Listing all futures [01:57:30.402] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.402] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.402] | : . ' , ; ` | : Total time: 0 [01:57:30.402] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.402] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.403] | : . ' , ; ` | : Listing all futures [01:57:30.403] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.403] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.403] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.403] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.403] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.448] | : . ' , ; ` | : Worker is functional [01:57:30.448] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.449] | : . ' , ; ` | : . Listing all futures [01:57:30.449] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.449] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.449] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.449] | : . ' , ; ` requestNode() ... done [01:57:30.449] | : . ' , ; ` cluster node index: 1 [01:57:30.450] | : . ' , ; requestWorker() ... done [01:57:30.450] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.450] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.450] | : . ' , ; launchFuture() ... [01:57:30.451] | : . ' , ; ` cluster node index: 1 [01:57:30.451] | : . ' , ; ` getFutureData() ... [01:57:30.451] | : . ' , ; ` | getFutureCore() ... [01:57:30.451] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:30.451] | : . ' , ; ` | getFutureCore() ... done [01:57:30.452] | : . ' , ; ` | getFutureCapture() ... [01:57:30.452] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.452] | : . ' , ; ` | getFutureContext() ... [01:57:30.452] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.452] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.453] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.453] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.453] | : . ' , ; ` | getFutureContext() ... done [01:57:30.453] | : . ' , ; ` getFutureData() ... done [01:57:30.453] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.454] | : . ' , ; ` | Appended future to position #1 [01:57:30.454] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.454] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.454] | : . ' , ; launchFuture() ... done [01:57:30.454] | : . ' , ; MultisessionFuture started [01:57:30.455] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.455] | : . ' Launching futures ... done [01:57:30.455] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.455] | : . Using MultisessionFutureBackend ... done [01:57:30.455] | : run() for 'Future' (NULL) ... done [01:57:30.455] | future(..., label = NULL) ... done [01:57:30.456] | value() for MultisessionFuture (NULL) ... [01:57:30.456] | : result() for ClusterFuture ... [01:57:30.456] | : . assertValidConnection() ... [01:57:30.456] | : . ' cluster node index: 1 [01:57:30.457] | : . assertValidConnection() ... done [01:57:30.457] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.457] | : . ' cluster node index: 1 [01:57:30.459] | : . ' [1] TRUE [01:57:30.459] | : . ' received data: [01:57:30.459] | : . ' List of 5 [01:57:30.459] | : . ' $ type : chr "VALUE" [01:57:30.459] | : . ' $ value :List of 14 [01:57:30.459] | : . ' ..$ value :List of 12 [01:57:30.459] | : . ' .. ..$ coefficients : Named num 2.91 [01:57:30.459] | : . ' .. .. ..- attr(*, "names")= chr "speed" [01:57:30.459] | : . ' .. ..$ residuals : Named num [1:50] -9.64 -1.64 -16.36 1.64 -7.27 ... [01:57:30.459] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.459] | : . ' .. ..$ effects : Named num [1:50] -334.59 -1.31 -15.8 2.2 -6.63 ... [01:57:30.459] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "speed" "" "" "" ... [01:57:30.459] | : . ' .. ..$ rank : int 1 [01:57:30.459] | : . ' .. ..$ fitted.values: Named num [1:50] 11.6 11.6 20.4 20.4 23.3 ... [01:57:30.459] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.459] | : . ' .. ..$ assign : int 1 [01:57:30.459] | : . ' .. ..$ qr :List of 5 [01:57:30.459] | : . ' .. .. ..$ qr : num [1:50, 1] -115.013 0.0348 0.0609 0.0609 0.0696 ... [01:57:30.459] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.459] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [01:57:30.459] | : . ' .. .. .. .. ..$ : chr "speed" [01:57:30.459] | : . ' .. .. .. ..- attr(*, "assign")= int 1 [01:57:30.459] | : . ' .. .. ..$ qraux: num 1.03 [01:57:30.459] | : . ' .. .. ..$ pivot: int 1 [01:57:30.459] | : . ' .. .. ..$ tol : num 1e-07 [01:57:30.459] | : . ' .. .. ..$ rank : int 1 [01:57:30.459] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:30.459] | : . ' .. ..$ df.residual : int 49 [01:57:30.459] | : . ' .. ..$ xlevels : Named list() [01:57:30.459] | : . ' .. ..$ call : language lm(formula = dist ~ . + 0, data = cars) [01:57:30.459] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + 0 [01:57:30.459] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.459] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.459] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.459] | : . ' .. .. .. .. .. ..$ : chr "speed" [01:57:30.459] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.459] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:30.459] | : . ' .. .. .. ..- attr(*, "intercept")= int 0 [01:57:30.459] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:30.459] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:30.459] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.459] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.459] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [01:57:30.459] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [01:57:30.459] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [01:57:30.459] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + 0 [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.459] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.459] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.459] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 0 [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.459] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.459] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.459] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:30.459] | : . ' ..$ visible : logi TRUE [01:57:30.459] | : . ' ..$ stdout : chr "" [01:57:30.459] | : . ' ..$ conditions : list() [01:57:30.459] | : . ' ..$ rng : logi FALSE [01:57:30.459] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.459] | : . ' ..$ misuseConnections:List of 3 [01:57:30.459] | : . ' .. ..$ added : NULL [01:57:30.459] | : . ' .. ..$ removed : NULL [01:57:30.459] | : . ' .. ..$ replaced: NULL [01:57:30.459] | : . ' ..$ misuseDevices : NULL [01:57:30.459] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.459] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.459] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "23" [01:57:30.459] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.459] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.459] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.459] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.459] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.459] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.459] | : . ' .. .. ..$ pid : int 181724 [01:57:30.459] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.459] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.459] | : . ' ..$ r_info :List of 4 [01:57:30.459] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.459] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.459] | : . ' .. ..$ os : chr "windows" [01:57:30.459] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.459] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.459] | : . ' ..$ version : chr "1.8" [01:57:30.459] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.459] | : . ' $ success: logi TRUE [01:57:30.459] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:30.459] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.459] | : . ' $ tag : NULL [01:57:30.495] | : . ' Received FutureResult [01:57:30.496] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.496] | : . ' , Removed future from position #1 [01:57:30.496] | : . ' , Number of registered futures: 0 [01:57:30.496] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.496] | : . ' Erased future from future backend [01:57:30.497] | : . ' result() for ClusterFuture ... [01:57:30.497] | : . ' , result already collected: FutureResult [01:57:30.497] | : . ' result() for ClusterFuture ... done [01:57:30.497] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.497] | : result() for ClusterFuture ... done [01:57:30.497] | : result() for ClusterFuture ... [01:57:30.498] | : . result already collected: FutureResult [01:57:30.498] | : result() for ClusterFuture ... done [01:57:30.498] | : relay stdout ... [01:57:30.498] | : relay stdout ... done [01:57:30.498] | : check for misuse ... [01:57:30.498] | : check for misuse ... done [01:57:30.499] | value() for MultisessionFuture (NULL) ... 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 [01:57:30.501] | future(..., label = NULL) ... [01:57:30.502] | : lazy: FALSE [01:57:30.502] | : stdout: TRUE [01:57:30.502] | : conditions: [n=1] 'condition' [01:57:30.502] | : gc: FALSE [01:57:30.502] | : earlySignal: FALSE [01:57:30.503] | : getGlobalsAndPackages() ... [01:57:30.503] | : . Searching for globals ... [01:57:30.524] | : . ' globals found: [8] '{', 'lm', 'dist', '+', 'speed', '^', '~', 'cars' [01:57:30.524] | : . Searching for globals ... done [01:57:30.524] | : . Resolving globals: FALSE [01:57:30.524] | : . Search for packages associated with the globals ... [01:57:30.525] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:30.525] | : . ' Packages: [3] 'base', 'stats', 'datasets' [01:57:30.525] | : . Search for packages associated with the globals ... done [01:57:30.525] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:30.526] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:30.526] | : . globals: [0] [01:57:30.526] | : . packages: [2] 'stats', 'datasets' [01:57:30.526] | : getGlobalsAndPackages() ... done [01:57:30.526] | : run() for 'Future' (NULL) ... [01:57:30.527] | : . state: 'created' [01:57:30.527] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.527] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.527] | : . Using MultisessionFutureBackend ... [01:57:30.527] | : . ' Number of futures since start: 9 (9 created, 9 launched, 9 finished) [01:57:30.528] | : . ' Launching futures ... [01:57:30.528] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.528] | : . ' , ; Workers: [n=2] [01:57:30.528] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.530] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.530] | : . ' , ; requestWorker() ... [01:57:30.531] | : . ' , ; ` requestNode() ... [01:57:30.531] | : . ' , ; ` | Number of workers: 2 [01:57:30.531] | : . ' , ; ` | Polling for a free worker ... [01:57:30.531] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.531] | : . ' , ; ` | : . Listing all futures [01:57:30.531] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.532] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.532] | : . ' , ; ` | : Total time: 0 [01:57:30.532] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.532] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.532] | : . ' , ; ` | : Listing all futures [01:57:30.532] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.533] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.533] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.533] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.533] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.578] | : . ' , ; ` | : Worker is functional [01:57:30.578] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.578] | : . ' , ; ` | : . Listing all futures [01:57:30.579] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.579] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.579] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.579] | : . ' , ; ` requestNode() ... done [01:57:30.579] | : . ' , ; ` cluster node index: 1 [01:57:30.579] | : . ' , ; requestWorker() ... done [01:57:30.580] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.580] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.580] | : . ' , ; launchFuture() ... [01:57:30.580] | : . ' , ; ` cluster node index: 1 [01:57:30.581] | : . ' , ; ` getFutureData() ... [01:57:30.581] | : . ' , ; ` | getFutureCore() ... [01:57:30.581] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:30.581] | : . ' , ; ` | getFutureCore() ... done [01:57:30.581] | : . ' , ; ` | getFutureCapture() ... [01:57:30.581] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.582] | : . ' , ; ` | getFutureContext() ... [01:57:30.582] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.582] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.582] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.582] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.583] | : . ' , ; ` | getFutureContext() ... done [01:57:30.583] | : . ' , ; ` getFutureData() ... done [01:57:30.583] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.583] | : . ' , ; ` | Appended future to position #1 [01:57:30.584] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.584] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.584] | : . ' , ; launchFuture() ... done [01:57:30.584] | : . ' , ; MultisessionFuture started [01:57:30.584] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.584] | : . ' Launching futures ... done [01:57:30.585] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.585] | : . Using MultisessionFutureBackend ... done [01:57:30.585] | : run() for 'Future' (NULL) ... done [01:57:30.585] | future(..., label = NULL) ... done [01:57:30.585] | value() for MultisessionFuture (NULL) ... [01:57:30.585] | : result() for ClusterFuture ... [01:57:30.586] | : . assertValidConnection() ... [01:57:30.586] | : . ' cluster node index: 1 [01:57:30.586] | : . assertValidConnection() ... done [01:57:30.586] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.587] | : . ' cluster node index: 1 [01:57:30.589] | : . ' [1] TRUE [01:57:30.589] | : . ' received data: [01:57:30.589] | : . ' List of 5 [01:57:30.589] | : . ' $ type : chr "VALUE" [01:57:30.589] | : . ' $ value :List of 14 [01:57:30.589] | : . ' ..$ value :List of 12 [01:57:30.589] | : . ' .. ..$ coefficients : Named num [1:2] -17.58 3.93 [01:57:30.589] | : . ' .. .. ..- attr(*, "names")= chr [1:2] "(Intercept)" "speed" [01:57:30.589] | : . ' .. ..$ residuals : Named num [1:50] 3.85 11.85 -5.95 12.05 2.12 ... [01:57:30.589] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.589] | : . ' .. ..$ effects : Named num [1:50] -303.914 145.552 -8.115 9.885 0.194 ... [01:57:30.589] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "" "" ... [01:57:30.589] | : . ' .. ..$ rank : int 2 [01:57:30.589] | : . ' .. ..$ fitted.values: Named num [1:50] -1.85 -1.85 9.95 9.95 13.88 ... [01:57:30.589] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.589] | : . ' .. ..$ assign : int [1:2] 0 1 [01:57:30.589] | : . ' .. ..$ qr :List of 5 [01:57:30.589] | : . ' .. .. ..$ qr : num [1:50, 1:2] -7.071 0.141 0.141 0.141 0.141 ... [01:57:30.589] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.589] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [01:57:30.589] | : . ' .. .. .. .. ..$ : chr [1:2] "(Intercept)" "speed" [01:57:30.589] | : . ' .. .. .. ..- attr(*, "assign")= int [1:2] 0 1 [01:57:30.589] | : . ' .. .. ..$ qraux: num [1:2] 1.14 1.27 [01:57:30.589] | : . ' .. .. ..$ pivot: int [1:2] 1 2 [01:57:30.589] | : . ' .. .. ..$ tol : num 1e-07 [01:57:30.589] | : . ' .. .. ..$ rank : int 2 [01:57:30.589] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:30.589] | : . ' .. ..$ df.residual : int 48 [01:57:30.589] | : . ' .. ..$ xlevels : Named list() [01:57:30.589] | : . ' .. ..$ call : language lm(formula = dist ~ speed + speed^2, data = cars) [01:57:30.589] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + speed^2 [01:57:30.589] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.589] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.589] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.589] | : . ' .. .. .. .. .. ..$ : chr "speed" [01:57:30.589] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.589] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:30.589] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.589] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:30.589] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:30.589] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.589] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.589] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [01:57:30.589] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [01:57:30.589] | : . ' .. .. ..$ speed: num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [01:57:30.589] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + speed^2 [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed) [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.589] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.589] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "speed" [01:57:30.589] | : . ' .. .. .. .. .. .. ..$ : chr "speed" [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "speed" [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed) [01:57:30.589] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" [01:57:30.589] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" [01:57:30.589] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:30.589] | : . ' ..$ visible : logi TRUE [01:57:30.589] | : . ' ..$ stdout : chr "" [01:57:30.589] | : . ' ..$ conditions : list() [01:57:30.589] | : . ' ..$ rng : logi FALSE [01:57:30.589] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.589] | : . ' ..$ misuseConnections:List of 3 [01:57:30.589] | : . ' .. ..$ added : NULL [01:57:30.589] | : . ' .. ..$ removed : NULL [01:57:30.589] | : . ' .. ..$ replaced: NULL [01:57:30.589] | : . ' ..$ misuseDevices : NULL [01:57:30.589] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.589] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.589] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "24" [01:57:30.589] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.589] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.589] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.589] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.589] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.589] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.589] | : . ' .. .. ..$ pid : int 181724 [01:57:30.589] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.589] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.589] | : . ' ..$ r_info :List of 4 [01:57:30.589] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.589] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.589] | : . ' .. ..$ os : chr "windows" [01:57:30.589] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.589] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.589] | : . ' ..$ version : chr "1.8" [01:57:30.589] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.589] | : . ' $ success: logi TRUE [01:57:30.589] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:30.589] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.589] | : . ' $ tag : NULL [01:57:30.626] | : . ' Received FutureResult [01:57:30.626] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.626] | : . ' , Removed future from position #1 [01:57:30.626] | : . ' , Number of registered futures: 0 [01:57:30.626] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.627] | : . ' Erased future from future backend [01:57:30.627] | : . ' result() for ClusterFuture ... [01:57:30.627] | : . ' , result already collected: FutureResult [01:57:30.627] | : . ' result() for ClusterFuture ... done [01:57:30.627] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.628] | : result() for ClusterFuture ... done [01:57:30.628] | : result() for ClusterFuture ... [01:57:30.628] | : . result already collected: FutureResult [01:57:30.628] | : result() for ClusterFuture ... done [01:57:30.628] | : relay stdout ... [01:57:30.628] | : relay stdout ... done [01:57:30.629] | : check for misuse ... [01:57:30.629] | : check for misuse ... done [01:57:30.629] | value() for MultisessionFuture (NULL) ... 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 [01:57:30.632] | future(..., label = NULL) ... [01:57:30.632] | : lazy: FALSE [01:57:30.632] | : stdout: TRUE [01:57:30.632] | : conditions: [n=1] 'condition' [01:57:30.633] | : gc: FALSE [01:57:30.633] | : earlySignal: FALSE [01:57:30.633] | : getGlobalsAndPackages() ... [01:57:30.633] | : . Searching for globals ... [01:57:30.656] | : . ' globals found: [9] '{', 'lm', 'dist', '+', 'speed', 'I', '^', '~', 'cars' [01:57:30.656] | : . Searching for globals ... done [01:57:30.657] | : . Resolving globals: FALSE [01:57:30.657] | : . Search for packages associated with the globals ... [01:57:30.657] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:30.658] | : . ' Packages: [3] 'base', 'stats', 'datasets' [01:57:30.658] | : . Search for packages associated with the globals ... done [01:57:30.658] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:30.658] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:30.659] | : . globals: [0] [01:57:30.659] | : . packages: [2] 'stats', 'datasets' [01:57:30.659] | : getGlobalsAndPackages() ... done [01:57:30.659] | : run() for 'Future' (NULL) ... [01:57:30.659] | : . state: 'created' [01:57:30.660] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.660] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.660] | : . Using MultisessionFutureBackend ... [01:57:30.660] | : . ' Number of futures since start: 10 (10 created, 10 launched, 10 finished) [01:57:30.660] | : . ' Launching futures ... [01:57:30.661] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.661] | : . ' , ; Workers: [n=2] [01:57:30.661] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.663] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.663] | : . ' , ; requestWorker() ... [01:57:30.663] | : . ' , ; ` requestNode() ... [01:57:30.663] | : . ' , ; ` | Number of workers: 2 [01:57:30.664] | : . ' , ; ` | Polling for a free worker ... [01:57:30.664] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.664] | : . ' , ; ` | : . Listing all futures [01:57:30.664] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.664] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.664] | : . ' , ; ` | : Total time: 0 [01:57:30.665] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.665] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.665] | : . ' , ; ` | : Listing all futures [01:57:30.665] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.665] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.665] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.666] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.666] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.710] | : . ' , ; ` | : Worker is functional [01:57:30.711] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.711] | : . ' , ; ` | : . Listing all futures [01:57:30.711] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.711] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.711] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.711] | : . ' , ; ` requestNode() ... done [01:57:30.712] | : . ' , ; ` cluster node index: 1 [01:57:30.712] | : . ' , ; requestWorker() ... done [01:57:30.712] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.712] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.713] | : . ' , ; launchFuture() ... [01:57:30.713] | : . ' , ; ` cluster node index: 1 [01:57:30.713] | : . ' , ; ` getFutureData() ... [01:57:30.713] | : . ' , ; ` | getFutureCore() ... [01:57:30.713] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:30.713] | : . ' , ; ` | getFutureCore() ... done [01:57:30.714] | : . ' , ; ` | getFutureCapture() ... [01:57:30.714] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.714] | : . ' , ; ` | getFutureContext() ... [01:57:30.714] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.714] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.714] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.715] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.715] | : . ' , ; ` | getFutureContext() ... done [01:57:30.715] | : . ' , ; ` getFutureData() ... done [01:57:30.715] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.716] | : . ' , ; ` | Appended future to position #1 [01:57:30.716] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.716] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.716] | : . ' , ; launchFuture() ... done [01:57:30.716] | : . ' , ; MultisessionFuture started [01:57:30.716] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.717] | : . ' Launching futures ... done [01:57:30.717] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.717] | : . Using MultisessionFutureBackend ... done [01:57:30.717] | : run() for 'Future' (NULL) ... done [01:57:30.717] | future(..., label = NULL) ... done [01:57:30.717] | value() for MultisessionFuture (NULL) ... [01:57:30.718] | : result() for ClusterFuture ... [01:57:30.718] | : . assertValidConnection() ... [01:57:30.718] | : . ' cluster node index: 1 [01:57:30.718] | : . assertValidConnection() ... done [01:57:30.719] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.719] | : . ' cluster node index: 1 [01:57:30.721] | : . ' [1] TRUE [01:57:30.722] | : . ' received data: [01:57:30.722] | : . ' List of 5 [01:57:30.722] | : . ' $ type : chr "VALUE" [01:57:30.722] | : . ' $ value :List of 14 [01:57:30.722] | : . ' ..$ value :List of 12 [01:57:30.722] | : . ' .. ..$ coefficients : Named num [1:3] 2.47 0.913 0.1 [01:57:30.722] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [01:57:30.722] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.722] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [01:57:30.722] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "speed" "I(speed^2)" "" ... [01:57:30.722] | : . ' .. ..$ rank : int 3 [01:57:30.722] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [01:57:30.722] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.722] | : . ' .. ..$ assign : int [1:3] 0 1 2 [01:57:30.722] | : . ' .. ..$ qr :List of 5 [01:57:30.722] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [01:57:30.722] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.722] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [01:57:30.722] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 2 [01:57:30.722] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [01:57:30.722] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [01:57:30.722] | : . ' .. .. ..$ tol : num 1e-07 [01:57:30.722] | : . ' .. .. ..$ rank : int 3 [01:57:30.722] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:30.722] | : . ' .. ..$ df.residual : int 47 [01:57:30.722] | : . ' .. ..$ xlevels : Named list() [01:57:30.722] | : . ' .. ..$ call : language lm(formula = dist ~ speed + I(speed^2), data = cars) [01:57:30.722] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [01:57:30.722] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [01:57:30.722] | : . ' .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.722] | : . ' .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [01:57:30.722] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.722] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:30.722] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:30.722] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [01:57:30.722] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. ..$ model :'data.frame': 50 obs. of 3 variables: [01:57:30.722] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [01:57:30.722] | : . ' .. .. ..$ speed : num [1:50] 4 4 7 7 8 9 10 10 10 11 ... [01:57:30.722] | : . ' .. .. ..$ I(speed^2): 'AsIs' num [1:50] 16 16 49 49 64 81 100 100 100 121 ... [01:57:30.722] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ speed + I(speed^2) [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, speed, I(speed^2)) [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:3, 1:2] 0 1 0 0 0 1 [01:57:30.722] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.722] | : . ' .. .. .. .. .. .. ..$ : chr [1:3] "dist" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr [1:2] "speed" "I(speed^2)" [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "order")= int [1:2] 1 1 [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, speed, I(speed^2)) [01:57:30.722] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:3] "numeric" "numeric" "numeric" [01:57:30.722] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:3] "dist" "speed" "I(speed^2)" [01:57:30.722] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:30.722] | : . ' ..$ visible : logi TRUE [01:57:30.722] | : . ' ..$ stdout : chr "" [01:57:30.722] | : . ' ..$ conditions : list() [01:57:30.722] | : . ' ..$ rng : logi FALSE [01:57:30.722] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.722] | : . ' ..$ misuseConnections:List of 3 [01:57:30.722] | : . ' .. ..$ added : NULL [01:57:30.722] | : . ' .. ..$ removed : NULL [01:57:30.722] | : . ' .. ..$ replaced: NULL [01:57:30.722] | : . ' ..$ misuseDevices : NULL [01:57:30.722] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.722] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.722] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "25" [01:57:30.722] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.722] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.722] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.722] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.722] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.722] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.722] | : . ' .. .. ..$ pid : int 181724 [01:57:30.722] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.722] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.722] | : . ' ..$ r_info :List of 4 [01:57:30.722] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.722] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.722] | : . ' .. ..$ os : chr "windows" [01:57:30.722] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.722] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.722] | : . ' ..$ version : chr "1.8" [01:57:30.722] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.722] | : . ' $ success: logi TRUE [01:57:30.722] | : . ' $ time : 'proc_time' Named num [1:5] 0.01 0 0.01 NA NA [01:57:30.722] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.722] | : . ' $ tag : NULL [01:57:30.759] | : . ' Received FutureResult [01:57:30.759] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.760] | : . ' , Removed future from position #1 [01:57:30.760] | : . ' , Number of registered futures: 0 [01:57:30.760] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.760] | : . ' Erased future from future backend [01:57:30.760] | : . ' result() for ClusterFuture ... [01:57:30.760] | : . ' , result already collected: FutureResult [01:57:30.761] | : . ' result() for ClusterFuture ... done [01:57:30.761] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.761] | : result() for ClusterFuture ... done [01:57:30.761] | : result() for ClusterFuture ... [01:57:30.761] | : . result already collected: FutureResult [01:57:30.762] | : result() for ClusterFuture ... done [01:57:30.762] | : relay stdout ... [01:57:30.762] | : relay stdout ... done [01:57:30.762] | : check for misuse ... [01:57:30.762] | : check for misuse ... done [01:57:30.762] | value() for MultisessionFuture (NULL) ... 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 [01:57:30.766] | future(..., label = NULL) ... [01:57:30.766] | : lazy: FALSE [01:57:30.766] | : stdout: TRUE [01:57:30.766] | : conditions: [n=1] 'condition' [01:57:30.766] | : gc: FALSE [01:57:30.766] | : earlySignal: FALSE [01:57:30.767] | : getGlobalsAndPackages() ... [01:57:30.767] | : . Searching for globals ... [01:57:30.782] | : . ' globals found: [7] '{', 'lm', 'dist', 'poly', 'speed', '~', 'cars' [01:57:30.783] | : . Searching for globals ... done [01:57:30.783] | : . Resolving globals: FALSE [01:57:30.783] | : . Search for packages associated with the globals ... [01:57:30.783] | : . ' Packages associated with globals: [3] 'base', 'stats', 'datasets' [01:57:30.784] | : . ' Packages: [3] 'base', 'stats', 'datasets' [01:57:30.784] | : . Search for packages associated with the globals ... done [01:57:30.784] | : . Packages after dropping 'base': [2] 'stats', 'datasets' [01:57:30.784] | : . Packages after dropping non-attached packages: [2] 'stats', 'datasets' [01:57:30.785] | : . globals: [0] [01:57:30.785] | : . packages: [2] 'stats', 'datasets' [01:57:30.785] | : getGlobalsAndPackages() ... done [01:57:30.785] | : run() for 'Future' (NULL) ... [01:57:30.785] | : . state: 'created' [01:57:30.786] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.786] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.786] | : . Using MultisessionFutureBackend ... [01:57:30.786] | : . ' Number of futures since start: 11 (11 created, 11 launched, 11 finished) [01:57:30.786] | : . ' Launching futures ... [01:57:30.787] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.787] | : . ' , ; Workers: [n=2] [01:57:30.787] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.789] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.789] | : . ' , ; requestWorker() ... [01:57:30.789] | : . ' , ; ` requestNode() ... [01:57:30.789] | : . ' , ; ` | Number of workers: 2 [01:57:30.790] | : . ' , ; ` | Polling for a free worker ... [01:57:30.790] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.790] | : . ' , ; ` | : . Listing all futures [01:57:30.790] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.790] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.790] | : . ' , ; ` | : Total time: 0 [01:57:30.791] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.791] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.791] | : . ' , ; ` | : Listing all futures [01:57:30.791] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.791] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.791] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.792] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.792] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.837] | : . ' , ; ` | : Worker is functional [01:57:30.837] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.837] | : . ' , ; ` | : . Listing all futures [01:57:30.837] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.837] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.838] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.838] | : . ' , ; ` requestNode() ... done [01:57:30.838] | : . ' , ; ` cluster node index: 1 [01:57:30.838] | : . ' , ; requestWorker() ... done [01:57:30.838] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.839] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.839] | : . ' , ; launchFuture() ... [01:57:30.839] | : . ' , ; ` cluster node index: 1 [01:57:30.839] | : . ' , ; ` getFutureData() ... [01:57:30.839] | : . ' , ; ` | getFutureCore() ... [01:57:30.840] | : . ' , ; ` | : Packages needed by the future expression (n = 2): 'stats', 'datasets' [01:57:30.840] | : . ' , ; ` | getFutureCore() ... done [01:57:30.840] | : . ' , ; ` | getFutureCapture() ... [01:57:30.840] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.840] | : . ' , ; ` | getFutureContext() ... [01:57:30.840] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.841] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.841] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.841] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.841] | : . ' , ; ` | getFutureContext() ... done [01:57:30.841] | : . ' , ; ` getFutureData() ... done [01:57:30.842] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.842] | : . ' , ; ` | Appended future to position #1 [01:57:30.842] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.842] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.842] | : . ' , ; launchFuture() ... done [01:57:30.843] | : . ' , ; MultisessionFuture started [01:57:30.843] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.843] | : . ' Launching futures ... done [01:57:30.843] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.843] | : . Using MultisessionFutureBackend ... done [01:57:30.843] | : run() for 'Future' (NULL) ... done [01:57:30.844] | future(..., label = NULL) ... done [01:57:30.844] | value() for MultisessionFuture (NULL) ... [01:57:30.844] | : result() for ClusterFuture ... [01:57:30.844] | : . assertValidConnection() ... [01:57:30.844] | : . ' cluster node index: 1 [01:57:30.845] | : . assertValidConnection() ... done [01:57:30.845] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.845] | : . ' cluster node index: 1 [01:57:30.849] | : . ' [1] TRUE [01:57:30.849] | : . ' received data: [01:57:30.849] | : . ' List of 5 [01:57:30.849] | : . ' $ type : chr "VALUE" [01:57:30.849] | : . ' $ value :List of 14 [01:57:30.849] | : . ' ..$ value :List of 12 [01:57:30.849] | : . ' .. ..$ coefficients : Named num [1:3] 43 146 23 [01:57:30.849] | : . ' .. .. ..- attr(*, "names")= chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [01:57:30.849] | : . ' .. ..$ residuals : Named num [1:50] -5.723 2.277 -9.761 8.239 -0.174 ... [01:57:30.849] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.849] | : . ' .. ..$ effects : Named num [1:50] -303.91 145.55 -23 9.04 0.17 ... [01:57:30.849] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" "" ... [01:57:30.849] | : . ' .. ..$ rank : int 3 [01:57:30.849] | : . ' .. ..$ fitted.values: Named num [1:50] 7.72 7.72 13.76 13.76 16.17 ... [01:57:30.849] | : . ' .. .. ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... [01:57:30.849] | : . ' .. ..$ assign : int [1:3] 0 1 1 [01:57:30.849] | : . ' .. ..$ qr :List of 5 [01:57:30.849] | : . ' .. .. ..$ qr : num [1:50, 1:3] -7.071 0.141 0.141 0.141 0.141 ... [01:57:30.849] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.849] | : . ' .. .. .. .. ..$ : chr [1:50] "1" "2" "3" "4" ... [01:57:30.849] | : . ' .. .. .. .. ..$ : chr [1:3] "(Intercept)" "poly(speed, 2)1" "poly(speed, 2)2" [01:57:30.849] | : . ' .. .. .. ..- attr(*, "assign")= int [1:3] 0 1 1 [01:57:30.849] | : . ' .. .. ..$ qraux: num [1:3] 1.14 1.27 1.06 [01:57:30.849] | : . ' .. .. ..$ pivot: int [1:3] 1 2 3 [01:57:30.849] | : . ' .. .. ..$ tol : num 1e-07 [01:57:30.849] | : . ' .. .. ..$ rank : int 3 [01:57:30.849] | : . ' .. .. ..- attr(*, "class")= chr "qr" [01:57:30.849] | : . ' .. ..$ df.residual : int 47 [01:57:30.849] | : . ' .. ..$ xlevels : Named list() [01:57:30.849] | : . ' .. ..$ call : language lm(formula = dist ~ poly(speed, 2), data = cars) [01:57:30.849] | : . ' .. ..$ terms :Classes 'terms', 'formula' language dist ~ poly(speed, 2) [01:57:30.849] | : . ' .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [01:57:30.849] | : . ' .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.849] | : . ' .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. .. .. ..$ : chr "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. ..- attr(*, "order")= int 1 [01:57:30.849] | : . ' .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.849] | : . ' .. .. .. ..- attr(*, "response")= int 1 [01:57:30.849] | : . ' .. .. .. ..- attr(*, ".Environment")= [01:57:30.849] | : . ' .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [01:57:30.849] | : . ' .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [01:57:30.849] | : . ' .. ..$ model :'data.frame': 50 obs. of 2 variables: [01:57:30.849] | : . ' .. .. ..$ dist : num [1:50] 2 10 4 22 16 10 18 26 34 17 ... [01:57:30.849] | : . ' .. .. ..$ poly(speed, 2): 'poly' num [1:50, 1:2] -0.308 -0.308 -0.227 -0.227 -0.2 ... [01:57:30.849] | : . ' .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.849] | : . ' .. .. .. .. ..$ : NULL [01:57:30.849] | : . ' .. .. .. .. ..$ : chr [1:2] "1" "2" [01:57:30.849] | : . ' .. .. .. ..- attr(*, "coefs")=List of 2 [01:57:30.849] | : . ' .. .. .. .. ..$ alpha: num [1:2] 15.4 14.8 [01:57:30.849] | : . ' .. .. .. .. ..$ norm2: num [1:4] 1 50 1370 52924 [01:57:30.849] | : . ' .. .. .. ..- attr(*, "degree")= int [1:2] 1 2 [01:57:30.849] | : . ' .. .. ..- attr(*, "terms")=Classes 'terms', 'formula' language dist ~ poly(speed, 2) [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "variables")= language list(dist, poly(speed, 2)) [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "factors")= int [1:2, 1] 0 1 [01:57:30.849] | : . ' .. .. .. .. .. ..- attr(*, "dimnames")=List of 2 [01:57:30.849] | : . ' .. .. .. .. .. .. ..$ : chr [1:2] "dist" "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. .. .. .. ..$ : chr "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "term.labels")= chr "poly(speed, 2)" [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "order")= int 1 [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "intercept")= int 1 [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "response")= int 1 [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, ".Environment")= [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "predvars")= language list(dist, poly(speed, 2, coefs = list(alpha = c(15.4, 14.803503649635), norm2 = c(1, 50, 1370, 52923.5831824818)))) [01:57:30.849] | : . ' .. .. .. .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "nmatrix.2" [01:57:30.849] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "dist" "poly(speed, 2)" [01:57:30.849] | : . ' .. ..- attr(*, "class")= chr "lm" [01:57:30.849] | : . ' ..$ visible : logi TRUE [01:57:30.849] | : . ' ..$ stdout : chr "" [01:57:30.849] | : . ' ..$ conditions : list() [01:57:30.849] | : . ' ..$ rng : logi FALSE [01:57:30.849] | : . ' ..$ misuseGlobalEnv : NULL [01:57:30.849] | : . ' ..$ misuseConnections:List of 3 [01:57:30.849] | : . ' .. ..$ added : NULL [01:57:30.849] | : . ' .. ..$ removed : NULL [01:57:30.849] | : . ' .. ..$ replaced: NULL [01:57:30.849] | : . ' ..$ misuseDevices : NULL [01:57:30.849] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.849] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:30.849] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "26" [01:57:30.849] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:30.849] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:30.849] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:30.849] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:30.849] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:30.849] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:30.849] | : . ' .. .. ..$ pid : int 181724 [01:57:30.849] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:30.849] | : . ' .. .. ..$ random: int 2147483647 [01:57:30.849] | : . ' ..$ r_info :List of 4 [01:57:30.849] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:30.849] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:30.849] | : . ' .. ..$ os : chr "windows" [01:57:30.849] | : . ' .. ..$ os_name : chr "Windows" [01:57:30.849] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:30.849] | : . ' ..$ version : chr "1.8" [01:57:30.849] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:30.849] | : . ' $ success: logi TRUE [01:57:30.849] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:30.849] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:30.849] | : . ' $ tag : NULL [01:57:30.887] | : . ' Received FutureResult [01:57:30.887] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:30.887] | : . ' , Removed future from position #1 [01:57:30.887] | : . ' , Number of registered futures: 0 [01:57:30.887] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:30.888] | : . ' Erased future from future backend [01:57:30.888] | : . ' result() for ClusterFuture ... [01:57:30.888] | : . ' , result already collected: FutureResult [01:57:30.888] | : . ' result() for ClusterFuture ... done [01:57:30.888] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:30.888] | : result() for ClusterFuture ... done [01:57:30.889] | : result() for ClusterFuture ... [01:57:30.889] | : . result already collected: FutureResult [01:57:30.889] | : result() for ClusterFuture ... done [01:57:30.889] | : relay stdout ... [01:57:30.889] | : relay stdout ... done [01:57:30.889] | : check for misuse ... [01:57:30.890] | : check for misuse ... done [01:57:30.890] | value() for MultisessionFuture (NULL) ... 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) ... [01:57:30.892] | future(..., label = NULL) ... [01:57:30.892] | : lazy: FALSE [01:57:30.892] | : stdout: TRUE [01:57:30.892] | : conditions: [n=1] 'condition' [01:57:30.893] | : gc: FALSE [01:57:30.893] | : earlySignal: FALSE [01:57:30.893] | : getGlobalsAndPackages() ... [01:57:30.893] | : . Searching for globals ... [01:57:30.934] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [01:57:30.935] | : . Searching for globals ... done [01:57:30.935] | : . Resolving globals: FALSE [01:57:30.935] | : . Search for packages associated with the globals ... [01:57:30.935] | : . ' Packages associated with globals: [1] 'base' [01:57:30.936] | : . ' Packages: [1] 'base' [01:57:30.936] | : . Search for packages associated with the globals ... done [01:57:30.936] | : . Packages after dropping 'base': [0] [01:57:30.937] | : . globals: [3] 'outer_function', 'map', 'inner_function' [01:57:30.937] | : . packages: [0] [01:57:30.937] | : getGlobalsAndPackages() ... done [01:57:30.937] | : run() for 'Future' (NULL) ... [01:57:30.937] | : . state: 'created' [01:57:30.938] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.938] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.938] | : . Using MultisessionFutureBackend ... [01:57:30.938] | : . ' Number of futures since start: 12 (12 created, 12 launched, 12 finished) [01:57:30.938] | : . ' Launching futures ... [01:57:30.939] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:30.939] | : . ' , ; Workers: [n=2] [01:57:30.939] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:30.941] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:30.941] | : . ' , ; requestWorker() ... [01:57:30.941] | : . ' , ; ` requestNode() ... [01:57:30.941] | : . ' , ; ` | Number of workers: 2 [01:57:30.941] | : . ' , ; ` | Polling for a free worker ... [01:57:30.942] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.942] | : . ' , ; ` | : . Listing all futures [01:57:30.942] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.942] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.942] | : . ' , ; ` | : Total time: 0 [01:57:30.943] | : . ' , ; ` | Polling for a free worker ... done [01:57:30.943] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.943] | : . ' , ; ` | : Listing all futures [01:57:30.943] | : . ' , ; ` | : Number of registered futures: 0 [01:57:30.943] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.943] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:30.944] | : . ' , ; ` | Index of first available worker: 1 [01:57:30.944] | : . ' , ; ` | Validate that the worker is functional ... [01:57:30.989] | : . ' , ; ` | : Worker is functional [01:57:30.989] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:30.989] | : . ' , ; ` | : . Listing all futures [01:57:30.989] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:30.989] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:30.990] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:30.990] | : . ' , ; ` requestNode() ... done [01:57:30.990] | : . ' , ; ` cluster node index: 1 [01:57:30.990] | : . ' , ; requestWorker() ... done [01:57:30.990] | : . ' , ; eraseGlobalEnvironment() ... [01:57:30.991] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:30.991] | : . ' , ; launchFuture() ... [01:57:30.991] | : . ' , ; ` cluster node index: 1 [01:57:30.991] | : . ' , ; ` getFutureData() ... [01:57:30.991] | : . ' , ; ` | getFutureCore() ... [01:57:30.992] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [01:57:30.992] | : . ' , ; ` | getFutureCore() ... done [01:57:30.992] | : . ' , ; ` | getFutureCapture() ... [01:57:30.992] | : . ' , ; ` | getFutureCapture() ... done [01:57:30.992] | : . ' , ; ` | getFutureContext() ... [01:57:30.992] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:30.993] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:30.993] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:30.993] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:30.993] | : . ' , ; ` | getFutureContext() ... done [01:57:30.993] | : . ' , ; ` getFutureData() ... done [01:57:30.994] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:30.994] | : . ' , ; ` | Appended future to position #1 [01:57:30.994] | : . ' , ; ` | Number of registered futures: 1 [01:57:30.994] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:30.994] | : . ' , ; launchFuture() ... done [01:57:30.995] | : . ' , ; MultisessionFuture started [01:57:30.995] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:30.995] | : . ' Launching futures ... done [01:57:30.995] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:30.995] | : . Using MultisessionFutureBackend ... done [01:57:30.995] | : run() for 'Future' (NULL) ... done [01:57:30.996] | future(..., label = NULL) ... done [01:57:30.996] | value() for MultisessionFuture (NULL) ... [01:57:30.996] | : result() for ClusterFuture ... [01:57:30.996] | : . assertValidConnection() ... [01:57:30.996] | : . ' cluster node index: 1 [01:57:30.997] | : . assertValidConnection() ... done [01:57:30.997] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:30.997] | : . ' cluster node index: 1 [01:57:31.010] | : . ' [1] TRUE [01:57:31.011] | : . ' received data: [01:57:31.011] | : . ' List of 5 [01:57:31.011] | : . ' $ type : chr "VALUE" [01:57:31.011] | : . ' $ value :List of 14 [01:57:31.011] | : . ' ..$ value :List of 2 [01:57:31.011] | : . ' .. ..$ : num [1:2] 2 3 [01:57:31.011] | : . ' .. ..$ : num [1:2] 2 3 [01:57:31.011] | : . ' ..$ visible : logi TRUE [01:57:31.011] | : . ' ..$ stdout : chr "" [01:57:31.011] | : . ' ..$ conditions : list() [01:57:31.011] | : . ' ..$ rng : logi FALSE [01:57:31.011] | : . ' ..$ misuseGlobalEnv : NULL [01:57:31.011] | : . ' ..$ misuseConnections:List of 3 [01:57:31.011] | : . ' .. ..$ added : NULL [01:57:31.011] | : . ' .. ..$ removed : NULL [01:57:31.011] | : . ' .. ..$ replaced: NULL [01:57:31.011] | : . ' ..$ misuseDevices : NULL [01:57:31.011] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:30" [01:57:31.011] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:31" [01:57:31.011] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "27" [01:57:31.011] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:31.011] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:31.011] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:31.011] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:31.011] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:31.011] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:31.011] | : . ' .. .. ..$ pid : int 181724 [01:57:31.011] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:31.011] | : . ' .. .. ..$ random: int 2147483647 [01:57:31.011] | : . ' ..$ r_info :List of 4 [01:57:31.011] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:31.011] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:31.011] | : . ' .. ..$ os : chr "windows" [01:57:31.011] | : . ' .. ..$ os_name : chr "Windows" [01:57:31.011] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:31.011] | : . ' ..$ version : chr "1.8" [01:57:31.011] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:31.011] | : . ' $ success: logi TRUE [01:57:31.011] | : . ' $ time : 'proc_time' Named num [1:5] 0.02 0 0.01 NA NA [01:57:31.011] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:31.011] | : . ' $ tag : NULL [01:57:31.024] | : . ' Received FutureResult [01:57:31.024] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:31.024] | : . ' , Removed future from position #1 [01:57:31.025] | : . ' , Number of registered futures: 0 [01:57:31.025] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:31.025] | : . ' Erased future from future backend [01:57:31.025] | : . ' result() for ClusterFuture ... [01:57:31.025] | : . ' , result already collected: FutureResult [01:57:31.026] | : . ' result() for ClusterFuture ... done [01:57:31.026] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:31.026] | : result() for ClusterFuture ... done [01:57:31.026] | : result() for ClusterFuture ... [01:57:31.026] | : . result already collected: FutureResult [01:57:31.026] | : result() for ClusterFuture ... done [01:57:31.027] | : relay stdout ... [01:57:31.027] | : relay stdout ... done [01:57:31.027] | : check for misuse ... [01:57:31.027] | : check for misuse ... done [01:57:31.027] | value() for MultisessionFuture (NULL) ... done List of 2 $ : num [1:2] 2 3 $ : num [1:2] 2 3 [01:57:31.029] | future(..., label = NULL) ... [01:57:31.029] | : lazy: FALSE [01:57:31.029] | : stdout: TRUE [01:57:31.029] | : conditions: [n=1] 'condition' [01:57:31.029] | : gc: FALSE [01:57:31.029] | : earlySignal: FALSE [01:57:31.030] | : getGlobalsAndPackages() ... [01:57:31.030] | : . Searching for globals ... [01:57:31.085] | : . ' globals found: [17] '{', 'outer_function', 'map', ':', '~', 'inner_function', '.x', 'if', 'inherits', '<-', '[[', '-', 'eval', 'bquote', 'lapply', '.', '+' [01:57:31.085] | : . Searching for globals ... done [01:57:31.086] | : . Resolving globals: FALSE [01:57:31.086] | : . Search for packages associated with the globals ... [01:57:31.086] | : . ' Packages associated with globals: [1] 'base' [01:57:31.087] | : . ' Packages: [1] 'base' [01:57:31.088] | : . Search for packages associated with the globals ... done [01:57:31.088] | : . Packages after dropping 'base': [0] [01:57:31.088] | : . globals: [3] 'outer_function', 'map', 'inner_function' [01:57:31.088] | : . packages: [0] [01:57:31.089] | : getGlobalsAndPackages() ... done [01:57:31.089] | : run() for 'Future' (NULL) ... [01:57:31.089] | : . state: 'created' [01:57:31.090] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:31.090] | : . plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:31.090] | : . Using MultisessionFutureBackend ... [01:57:31.090] | : . ' Number of futures since start: 13 (13 created, 13 launched, 13 finished) [01:57:31.091] | : . ' Launching futures ... [01:57:31.091] | : . ' , launchFuture() for ClusterFutureBackend ... [01:57:31.091] | : . ' , ; Workers: [n=2] [01:57:31.091] | : . ' , ; Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2025-05-08 r88190 ucrt), platform x86_64-w64-mingw32) [01:57:31.095] | : . ' , ; FutureRegistry: 'workers-f9bfafa666a3cb79ea562fd25d75b5cb' [01:57:31.095] | : . ' , ; requestWorker() ... [01:57:31.095] | : . ' , ; ` requestNode() ... [01:57:31.095] | : . ' , ; ` | Number of workers: 2 [01:57:31.095] | : . ' , ; ` | Polling for a free worker ... [01:57:31.096] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:31.096] | : . ' , ; ` | : . Listing all futures [01:57:31.096] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:31.096] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:31.097] | : . ' , ; ` | : Total time: 0 [01:57:31.097] | : . ' , ; ` | Polling for a free worker ... done [01:57:31.097] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:31.097] | : . ' , ; ` | : Listing all futures [01:57:31.097] | : . ' , ; ` | : Number of registered futures: 0 [01:57:31.098] | : . ' , ; ` | FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:31.098] | : . ' , ; ` | avail: [n=2] '1', '2' [01:57:31.098] | : . ' , ; ` | Index of first available worker: 1 [01:57:31.098] | : . ' , ; ` | Validate that the worker is functional ... [01:57:31.150] | : . ' , ; ` | : Worker is functional [01:57:31.150] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... [01:57:31.150] | : . ' , ; ` | : . Listing all futures [01:57:31.151] | : . ' , ; ` | : . Number of registered futures: 0 [01:57:31.151] | : . ' , ; ` | : FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'list', earlySignal = 0) ... done [01:57:31.151] | : . ' , ; ` | Validate that the worker is functional ... done [01:57:31.151] | : . ' , ; ` requestNode() ... done [01:57:31.151] | : . ' , ; ` cluster node index: 1 [01:57:31.152] | : . ' , ; requestWorker() ... done [01:57:31.152] | : . ' , ; eraseGlobalEnvironment() ... [01:57:31.153] | : . ' , ; eraseGlobalEnvironment() ... done [01:57:31.153] | : . ' , ; launchFuture() ... [01:57:31.153] | : . ' , ; ` cluster node index: 1 [01:57:31.154] | : . ' , ; ` getFutureData() ... [01:57:31.154] | : . ' , ; ` | getFutureCore() ... [01:57:31.154] | : . ' , ; ` | : Packages needed by the future expression (n = 0): [01:57:31.154] | : . ' , ; ` | getFutureCore() ... done [01:57:31.154] | : . ' , ; ` | getFutureCapture() ... [01:57:31.154] | : . ' , ; ` | getFutureCapture() ... done [01:57:31.155] | : . ' , ; ` | getFutureContext() ... [01:57:31.155] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [01:57:31.155] | : . ' , ; ` | : . Getting stack without first backend: [n=0] [01:57:31.155] | : . ' , ; ` | : plan(, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [01:57:31.155] | : . ' , ; ` | : Packages needed by future backend (n = 0): [01:57:31.156] | : . ' , ; ` | getFutureContext() ... done [01:57:31.156] | : . ' , ; ` getFutureData() ... done [01:57:31.156] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... [01:57:31.157] | : . ' , ; ` | Appended future to position #1 [01:57:31.157] | : . ' , ; ` | Number of registered futures: 1 [01:57:31.157] | : . ' , ; ` FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'add', earlySignal = 0) ... done [01:57:31.157] | : . ' , ; launchFuture() ... done [01:57:31.157] | : . ' , ; MultisessionFuture started [01:57:31.158] | : . ' , launchFuture() for ClusterFutureBackend ... done [01:57:31.158] | : . ' Launching futures ... done [01:57:31.158] | : . ' Future launched: 'MultisessionFuture', 'ClusterFuture', 'MultiprocessFuture', 'Future' [01:57:31.158] | : . Using MultisessionFutureBackend ... done [01:57:31.158] | : run() for 'Future' (NULL) ... done [01:57:31.159] | future(..., label = NULL) ... done [01:57:31.159] | value() for MultisessionFuture (NULL) ... [01:57:31.159] | : result() for ClusterFuture ... [01:57:31.159] | : . assertValidConnection() ... [01:57:31.160] | : . ' cluster node index: 1 [01:57:31.160] | : . assertValidConnection() ... done [01:57:31.160] | : . receiveMessageFromWorker() for ClusterFuture ... [01:57:31.160] | : . ' cluster node index: 1 [01:57:31.161] | : . ' [1] TRUE [01:57:31.161] | : . ' received data: [01:57:31.162] | : . ' List of 5 [01:57:31.162] | : . ' $ type : chr "VALUE" [01:57:31.162] | : . ' $ value :List of 14 [01:57:31.162] | : . ' ..$ value :List of 2 [01:57:31.162] | : . ' .. ..$ : num [1:2] 2 3 [01:57:31.162] | : . ' .. ..$ : num [1:2] 2 3 [01:57:31.162] | : . ' ..$ visible : logi TRUE [01:57:31.162] | : . ' ..$ stdout : chr "" [01:57:31.162] | : . ' ..$ conditions : list() [01:57:31.162] | : . ' ..$ rng : logi FALSE [01:57:31.162] | : . ' ..$ misuseGlobalEnv : NULL [01:57:31.162] | : . ' ..$ misuseConnections:List of 3 [01:57:31.162] | : . ' .. ..$ added : NULL [01:57:31.162] | : . ' .. ..$ removed : NULL [01:57:31.162] | : . ' .. ..$ replaced: NULL [01:57:31.162] | : . ' ..$ misuseDevices : NULL [01:57:31.162] | : . ' ..$ started : POSIXct[1:1], format: "2025-05-09 01:57:31" [01:57:31.162] | : . ' ..$ finished : POSIXct[1:1], format: "2025-05-09 01:57:31" [01:57:31.162] | : . ' ..$ uuid : chr [1:2] "bf2f95f171bf1928c2f2bcbce20f3852" "28" [01:57:31.162] | : . ' ..$ session_uuid : chr "494037d081179c7b1aa8ec2606873c59" [01:57:31.162] | : . ' .. ..- attr(*, "source")=List of 5 [01:57:31.162] | : . ' .. .. ..$ host : Named chr "CRANWIN3" [01:57:31.162] | : . ' .. .. .. ..- attr(*, "names")= chr "COMPUTERNAME" [01:57:31.162] | : . ' .. .. ..$ info : Named chr [1:9] "Windows" "Server x64" "build 20348" "CRANWIN3" ... [01:57:31.162] | : . ' .. .. .. ..- attr(*, "names")= chr [1:9] "sysname" "release" "version" "nodename" ... [01:57:31.162] | : . ' .. .. ..$ pid : int 181724 [01:57:31.162] | : . ' .. .. ..$ time : POSIXct[1:1], format: "2025-05-09 01:57:29" [01:57:31.162] | : . ' .. .. ..$ random: int 2147483647 [01:57:31.162] | : . ' ..$ r_info :List of 4 [01:57:31.162] | : . ' .. ..$ version :Classes 'R_system_version', 'package_version', 'numeric_version' hidden list of 1 [01:57:31.162] | : . ' .. .. ..$ : int [1:3] 4 6 0 [01:57:31.162] | : . ' .. ..$ os : chr "windows" [01:57:31.162] | : . ' .. ..$ os_name : chr "Windows" [01:57:31.162] | : . ' .. ..$ captures_utf8: logi TRUE [01:57:31.162] | : . ' ..$ version : chr "1.8" [01:57:31.162] | : . ' ..- attr(*, "class")= chr "FutureResult" [01:57:31.162] | : . ' $ success: logi TRUE [01:57:31.162] | : . ' $ time : 'proc_time' Named num [1:5] 0 0 0 NA NA [01:57:31.162] | : . ' ..- attr(*, "names")= chr [1:5] "user.self" "sys.self" "elapsed" "user.child" ... [01:57:31.162] | : . ' $ tag : NULL [01:57:31.176] | : . ' Received FutureResult [01:57:31.176] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... [01:57:31.177] | : . ' , Removed future from position #1 [01:57:31.177] | : . ' , Number of registered futures: 0 [01:57:31.177] | : . ' FutureRegistry('workers-f9bfafa666a3cb79ea562fd25d75b5cb', action = 'remove', earlySignal = 0) ... done [01:57:31.177] | : . ' Erased future from future backend [01:57:31.177] | : . ' result() for ClusterFuture ... [01:57:31.178] | : . ' , result already collected: FutureResult [01:57:31.178] | : . ' result() for ClusterFuture ... done [01:57:31.178] | : . receiveMessageFromWorker() for ClusterFuture ... done [01:57:31.178] | : result() for ClusterFuture ... done [01:57:31.178] | : result() for ClusterFuture ... [01:57:31.179] | : . result already collected: FutureResult [01:57:31.179] | : result() for ClusterFuture ... done [01:57:31.179] | : relay stdout ... [01:57:31.179] | : relay stdout ... done [01:57:31.179] | : check for misuse ... [01:57:31.179] | : check for misuse ... done [01:57:31.180] | value() for MultisessionFuture (NULL) ... 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_05_09_01_55_17_23336' Sourcing 6 epilogue scripts ... done Test time: user.self=3s, sys.self=0.09s, elapsed=4s, user.child=NAs, sys.child=NAs Test 'globals,formulas' ... success > > proc.time() user system elapsed 3.40 0.12 4.12