Lines Matching refs:CacheDir
16 executor::cache::CacheDir,
45 build_dir: CacheDir,
46 /// 如果任务需要源文件缓存,则此字段为 Some(CacheDir),否则为 None(使用本地源文件路径)
47 source_dir: Option<CacheDir>,
73 let build_dir = CacheDir::new(entity.clone(), CacheDirType::Build)?;
76 let source_dir = if CacheDir::need_source_cache(&entity) {
77 Some(CacheDir::new(entity.clone(), CacheDirType::Source)?)
682 let build_dir = CacheDir::build_dir(entity.clone())?;
684 let build_dir_key = CacheDir::build_dir_env_key(&entity)?;
691 if CacheDir::need_source_cache(entity) {
692 let source_dir = CacheDir::source_dir(entity.clone())?;
693 let source_dir_key = CacheDir::source_dir_env_key(&entity)?;