R Under development (unstable) (2024-07-28 r86931 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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. > message("*** sysinfo() ...") *** sysinfo() ... > > message("- Base R system information:") - Base R system information: > > utils::str(list( + "capabilities()" = as.list(capabilities()), + .Machine = .Machine, + .Platform = .Platform, + R.version = R.version, + "Sys.info()" = as.list(Sys.info()) + )) List of 5 $ capabilities():List of 19 ..$ jpeg : logi TRUE ..$ png : logi TRUE ..$ tiff : logi TRUE ..$ tcltk : logi TRUE ..$ X11 : logi FALSE ..$ aqua : logi FALSE ..$ http/ftp : logi TRUE ..$ sockets : logi TRUE ..$ libxml : logi FALSE ..$ fifo : logi TRUE ..$ cledit : logi FALSE ..$ iconv : logi TRUE ..$ NLS : logi TRUE ..$ Rprof : logi TRUE ..$ profmem : logi TRUE ..$ cairo : logi TRUE ..$ ICU : logi TRUE ..$ long.double: logi TRUE ..$ libcurl : logi TRUE $ .Machine :List of 29 ..$ double.eps : num 2.22e-16 ..$ double.neg.eps : num 1.11e-16 ..$ double.xmin : num 2.23e-308 ..$ double.xmax : num 1.8e+308 ..$ double.base : int 2 ..$ double.digits : int 53 ..$ double.rounding : int 5 ..$ double.guard : int 0 ..$ double.ulp.digits : int -52 ..$ double.neg.ulp.digits : int -53 ..$ double.exponent : int 11 ..$ double.min.exp : int -1022 ..$ double.max.exp : int 1024 ..$ integer.max : int 2147483647 ..$ sizeof.long : int 4 ..$ sizeof.longlong : int 8 ..$ sizeof.longdouble : int 16 ..$ sizeof.pointer : int 8 ..$ sizeof.time_t : int 8 ..$ longdouble.eps : num 1.08e-19 ..$ longdouble.neg.eps : num 5.42e-20 ..$ longdouble.digits : int 64 ..$ longdouble.rounding : int 5 ..$ longdouble.guard : int 0 ..$ longdouble.ulp.digits : int -63 ..$ longdouble.neg.ulp.digits: int -64 ..$ longdouble.exponent : int 15 ..$ longdouble.min.exp : int -16382 ..$ longdouble.max.exp : int 16384 $ .Platform :List of 8 ..$ OS.type : chr "windows" ..$ file.sep : chr "/" ..$ dynlib.ext: chr ".dll" ..$ GUI : chr "RTerm" ..$ endian : chr "little" ..$ pkgType : chr "win.binary" ..$ path.sep : chr ";" ..$ r_arch : chr "x64" $ R.version :List of 15 ..$ platform : chr "x86_64-w64-mingw32" ..$ arch : chr "x86_64" ..$ os : chr "mingw32" ..$ crt : chr "ucrt" ..$ system : chr "x86_64, mingw32" ..$ status : chr "Under development (unstable)" ..$ major : chr "4" ..$ minor : chr "5.0" ..$ year : chr "2024" ..$ month : chr "07" ..$ day : chr "28" ..$ svn rev : chr "86931" ..$ language : chr "R" ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 ucrt)" ..$ nickname : chr "Unsuffered Consequences" ..- attr(*, "class")= chr "simple.list" $ Sys.info() :List of 8 ..$ sysname : chr "Windows" ..$ release : chr "Server x64" ..$ version : chr "build 20348" ..$ nodename : chr "CRANWIN3" ..$ machine : chr "x86-64" ..$ login : chr "CRAN" ..$ user : chr "CRAN" ..$ effective_user: chr "CRAN" > > message("- Session information:") - Session information: > print(utils::sessionInfo()) R Under development (unstable) (2024-07-28 r86931 ucrt) Platform: x86_64-w64-mingw32/x64 Running under: Windows Server 2022 x64 (build 20348) Matrix products: default locale: [1] LC_COLLATE=C LC_CTYPE=German_Germany.utf8 [3] LC_MONETARY=C LC_NUMERIC=C [5] LC_TIME=C time zone: Europe/Berlin tzcode source: internal attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] compiler_4.5.0 > > > message("- sysinfo():") - sysinfo(): > print(startup::sysinfo()) $sysname [1] "Windows" $release [1] "Server x64" $version [1] "build 20348" $nodename [1] "CRANWIN3" $machine [1] "x86-64" $login [1] "CRAN" $user [1] "CRAN" $effective_user [1] "CRAN" $os [1] "windows" $gui [1] "RTerm" $interactive [1] FALSE $jupyter [1] FALSE $rapp [1] FALSE $rgui [1] FALSE $rstudio [1] FALSE $rstudioterm [1] FALSE $microsoftr [1] FALSE $ess [1] FALSE $radian [1] FALSE $rtichoke [1] FALSE $rice [1] FALSE $pqr [1] FALSE $vscode [1] FALSE $webr [1] FALSE $wine [1] FALSE $dirname [1] "tests" $quiet [1] FALSE $save [1] TRUE > > message("*** sysinfo() ... DONE") *** sysinfo() ... DONE > > proc.time() user system elapsed 0.17 0.03 0.20