├── .Rbuildignore ├── .Rinstignore ├── .github ├── .gitignore ├── .travis.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── R-CMD-check.yaml │ ├── doFuture.tests.extra.yaml │ └── test-coverage.yaml ├── .gitignore ├── .make └── Makefile ├── CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── 000.import.R ├── 001.bquote.R ├── 001.import_future_functions.R ├── condition-handlers.R ├── doFuture-package.R ├── doFuture.R ├── doFuture2.R ├── dofuture_OP.R ├── globals.R ├── makeChunks.R ├── options.R ├── registerDoFuture.R ├── testme.R ├── utils-debug.R ├── utils.R ├── with.DoPar.R ├── withDoRNG.R └── zzz.R ├── README.md ├── incl ├── OVERVIEW.md ├── doFuture.R ├── dofuture_OP.R └── with.R ├── inst ├── CITATION ├── WORDLIST └── testme │ ├── _epilogue │ ├── 001.undo-future.R │ ├── 002.undo-state.R │ ├── 090.gc.R │ ├── 099.session_info.R │ ├── 995.detritus-connections.R │ └── 999.detritus-files.R │ ├── _prologue │ ├── 001.load.R │ ├── 002.record-state.R │ ├── 030.imports.R │ ├── 050.utils.R │ ├── 090.context.R │ ├── 090.options.R │ ├── 091.envvars.R │ ├── 099.future-setup.R │ └── 995.detrius-connections.R │ ├── deploy.R │ ├── run.R │ ├── test-foreach_dofuture,errors.R │ ├── test-foreach_dofuture,globals.R │ ├── test-foreach_dofuture,nested_colon.R │ ├── test-foreach_dofuture,nested_dofuture.R │ ├── test-foreach_dofuture,rng.R │ ├── test-foreach_dofuture.R │ ├── test-foreach_dopar,doRNG,dopar.R │ ├── test-foreach_dopar,doRNG,dorng.R │ ├── test-foreach_dopar,errors.R │ ├── test-foreach_dopar,flavor_dofuture.R │ ├── test-foreach_dopar,globals.R │ ├── test-foreach_dopar,nested_colon.R │ ├── test-foreach_dopar,nested_dopar.R │ ├── test-foreach_dopar,options-for-export.R │ ├── test-foreach_dopar.R │ ├── test-makeChunks.R │ ├── test-options,nested.R │ ├── test-registerDoFuture.R │ ├── test-times.R │ ├── test-utils.R │ ├── test-with.DoPar.R │ └── test-withDoRNG.R ├── man ├── doFuture.Rd ├── doFuture.options.Rd ├── grapes-dofuture-grapes.Rd ├── makeChunks.Rd ├── registerDoFuture.Rd ├── with.DoPar.Rd └── withDoRNG.Rd ├── pkgdown ├── _pkgdown.yml ├── _pkgdown.yml.rsp └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── README.md ├── cran.md ├── failures.md ├── problems.md ├── revdepcheck.Renviron └── run.R ├── tests ├── test-foreach_dofuture,errors.R ├── test-foreach_dofuture,globals.R ├── test-foreach_dofuture,nested_colon.R ├── test-foreach_dofuture,nested_dofuture.R ├── test-foreach_dofuture,rng.R ├── test-foreach_dofuture.R ├── test-foreach_dopar,doRNG,dopar.R ├── test-foreach_dopar,doRNG,dorng.R ├── test-foreach_dopar,errors.R ├── test-foreach_dopar,flavor_dofuture.R ├── test-foreach_dopar,globals.R ├── test-foreach_dopar,nested_colon.R ├── test-foreach_dopar,nested_dopar.R ├── test-foreach_dopar,options-for-export.R ├── test-foreach_dopar.R ├── test-makeChunks.R ├── test-options,nested.R ├── test-registerDoFuture.R ├── test-times.R ├── test-utils.R ├── test-with.DoPar.R └── test-withDoRNG.R └── vignettes ├── doFuture-1-overview.md.rsp ├── doFuture-2-dopar.md.rsp └── doFuture-3-dofuture.md.rsp /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rinstignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.Rinstignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/.travis.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/doFuture.tests.extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/workflows/doFuture.tests.extra.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.gitignore -------------------------------------------------------------------------------- /.make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/.make/Makefile -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/000.import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/000.import.R -------------------------------------------------------------------------------- /R/001.bquote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/001.bquote.R -------------------------------------------------------------------------------- /R/001.import_future_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/001.import_future_functions.R -------------------------------------------------------------------------------- /R/condition-handlers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/condition-handlers.R -------------------------------------------------------------------------------- /R/doFuture-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/doFuture-package.R -------------------------------------------------------------------------------- /R/doFuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/doFuture.R -------------------------------------------------------------------------------- /R/doFuture2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/doFuture2.R -------------------------------------------------------------------------------- /R/dofuture_OP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/dofuture_OP.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/makeChunks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/makeChunks.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/options.R -------------------------------------------------------------------------------- /R/registerDoFuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/registerDoFuture.R -------------------------------------------------------------------------------- /R/testme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/testme.R -------------------------------------------------------------------------------- /R/utils-debug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/utils-debug.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/with.DoPar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/with.DoPar.R -------------------------------------------------------------------------------- /R/withDoRNG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/withDoRNG.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/README.md -------------------------------------------------------------------------------- /incl/OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/incl/OVERVIEW.md -------------------------------------------------------------------------------- /incl/doFuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/incl/doFuture.R -------------------------------------------------------------------------------- /incl/dofuture_OP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/incl/dofuture_OP.R -------------------------------------------------------------------------------- /incl/with.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/incl/with.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/testme/_epilogue/001.undo-future.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/001.undo-future.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/002.undo-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/002.undo-state.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/090.gc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/090.gc.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/099.session_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/099.session_info.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/995.detritus-connections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/995.detritus-connections.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/999.detritus-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_epilogue/999.detritus-files.R -------------------------------------------------------------------------------- /inst/testme/_prologue/001.load.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/001.load.R -------------------------------------------------------------------------------- /inst/testme/_prologue/002.record-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/002.record-state.R -------------------------------------------------------------------------------- /inst/testme/_prologue/030.imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/030.imports.R -------------------------------------------------------------------------------- /inst/testme/_prologue/050.utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/050.utils.R -------------------------------------------------------------------------------- /inst/testme/_prologue/090.context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/090.context.R -------------------------------------------------------------------------------- /inst/testme/_prologue/090.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/090.options.R -------------------------------------------------------------------------------- /inst/testme/_prologue/091.envvars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/091.envvars.R -------------------------------------------------------------------------------- /inst/testme/_prologue/099.future-setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/099.future-setup.R -------------------------------------------------------------------------------- /inst/testme/_prologue/995.detrius-connections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/_prologue/995.detrius-connections.R -------------------------------------------------------------------------------- /inst/testme/deploy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/deploy.R -------------------------------------------------------------------------------- /inst/testme/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/run.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture,errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture,errors.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture,globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture,globals.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture,nested_colon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture,nested_colon.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture,nested_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture,nested_dofuture.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture,rng.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture,rng.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dofuture.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,doRNG,dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,doRNG,dopar.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,doRNG,dorng.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,doRNG,dorng.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,errors.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,flavor_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,flavor_dofuture.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,globals.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,nested_colon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,nested_colon.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,nested_dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,nested_dopar.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar,options-for-export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar,options-for-export.R -------------------------------------------------------------------------------- /inst/testme/test-foreach_dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-foreach_dopar.R -------------------------------------------------------------------------------- /inst/testme/test-makeChunks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-makeChunks.R -------------------------------------------------------------------------------- /inst/testme/test-options,nested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-options,nested.R -------------------------------------------------------------------------------- /inst/testme/test-registerDoFuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-registerDoFuture.R -------------------------------------------------------------------------------- /inst/testme/test-times.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-times.R -------------------------------------------------------------------------------- /inst/testme/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-utils.R -------------------------------------------------------------------------------- /inst/testme/test-with.DoPar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-with.DoPar.R -------------------------------------------------------------------------------- /inst/testme/test-withDoRNG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/inst/testme/test-withDoRNG.R -------------------------------------------------------------------------------- /man/doFuture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/doFuture.Rd -------------------------------------------------------------------------------- /man/doFuture.options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/doFuture.options.Rd -------------------------------------------------------------------------------- /man/grapes-dofuture-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/grapes-dofuture-grapes.Rd -------------------------------------------------------------------------------- /man/makeChunks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/makeChunks.Rd -------------------------------------------------------------------------------- /man/registerDoFuture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/registerDoFuture.Rd -------------------------------------------------------------------------------- /man/with.DoPar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/with.DoPar.Rd -------------------------------------------------------------------------------- /man/withDoRNG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/man/withDoRNG.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/_pkgdown.yml.rsp -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /revdep/revdepcheck.Renviron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/revdepcheck.Renviron -------------------------------------------------------------------------------- /revdep/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/revdep/run.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture,errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture,errors.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture,globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture,globals.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture,nested_colon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture,nested_colon.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture,nested_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture,nested_dofuture.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture,rng.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture,rng.R -------------------------------------------------------------------------------- /tests/test-foreach_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dofuture.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,doRNG,dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,doRNG,dopar.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,doRNG,dorng.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,doRNG,dorng.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,errors.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,flavor_dofuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,flavor_dofuture.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,globals.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,nested_colon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,nested_colon.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,nested_dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,nested_dopar.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar,options-for-export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar,options-for-export.R -------------------------------------------------------------------------------- /tests/test-foreach_dopar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-foreach_dopar.R -------------------------------------------------------------------------------- /tests/test-makeChunks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-makeChunks.R -------------------------------------------------------------------------------- /tests/test-options,nested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-options,nested.R -------------------------------------------------------------------------------- /tests/test-registerDoFuture.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-registerDoFuture.R -------------------------------------------------------------------------------- /tests/test-times.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-times.R -------------------------------------------------------------------------------- /tests/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-utils.R -------------------------------------------------------------------------------- /tests/test-with.DoPar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-with.DoPar.R -------------------------------------------------------------------------------- /tests/test-withDoRNG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/tests/test-withDoRNG.R -------------------------------------------------------------------------------- /vignettes/doFuture-1-overview.md.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/vignettes/doFuture-1-overview.md.rsp -------------------------------------------------------------------------------- /vignettes/doFuture-2-dopar.md.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/vignettes/doFuture-2-dopar.md.rsp -------------------------------------------------------------------------------- /vignettes/doFuture-3-dofuture.md.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/doFuture/HEAD/vignettes/doFuture-3-dofuture.md.rsp --------------------------------------------------------------------------------