Lines Matching defs:cache_root
27 let cache_root: String;
32 cache_root = env.unwrap();
50 cache_root = format!("{}/dadk_cache", cwd);
62 cache_root = x.to_string();
65 let cache_root = PathBuf::from(cache_root);
68 if !cache_root.exists() {
69 info!("Cache root dir not exists, create it: {:?}", cache_root);
70 std::fs::create_dir_all(&cache_root).map_err(|e| ExecutorError::IoError(e.to_string()))?;
71 } else if !cache_root.is_dir() {
76 format!("Cache root dir is not a directory: {:?}", cache_root),
84 CACHE_ROOT_INIT_ONCE.call_once(|| CACHE_ROOT.init(cache_root));
129 let cache_root = CACHE_ROOT.get();
133 format!("{}/build/{}", cache_root.to_str().unwrap(), name_version)
136 format!("{}/source/{}", cache_root.to_str().unwrap(), name_version)
141 cache_root.to_str().unwrap(),