R/cache_ui.R
Targets are listed in the workflow plan
data frame (see drake_plan()
.
built(path = getwd(), search = TRUE, cache = drake::get_cache(path = path, search = search, verbose = verbose), verbose = drake::default_verbose(), jobs = 1)
path | Root directory of the drake project,
or if |
---|---|
search | logical. If |
cache | drake cache. See |
verbose | logical or numeric, control printing to the console.
Use
|
jobs | number of jobs/workers for parallel processing |
Character vector naming the built targets in the cache.
cached()
, loadd()
,
link{imported}
# NOT RUN { test_with_dir("Quarantine side effects.", { load_basic_example() # Load drake's canonical example. make(my_plan) # Run the project, build all the targets. built() # List all the cached targets (built objects and files). # For file targets, only the fingerprints/hashes are stored. }) # }