Searched refs:cacheDir (Results 1 – 8 of 8) sorted by relevance
/third_party/vk-gl-cts/scripts/khr_util/ |
D | registry_cache.py | 88 def checkoutFile (repository, revision, filename, cacheDir): argument 100 fullDstPath = os.path.join(cacheDir, "git") 111 def fetchFile (dstPath, repository, revision, filename, checksum, cacheDir): argument 121 data = checkoutFile(repository, revision, filename, cacheDir) 149 cacheDir = os.path.join(os.path.dirname(__file__), "cache") 150 cachePath = os.path.join(cacheDir, source.getCacheFilename()) 153 …Path, source.getRepo(), source.getRevision(), source.getFilename(), source.getChecksum(), cacheDir)
|
/third_party/node/deps/npm/test/tap/ |
D | ci.js | 15 const cacheDir = common.cache constant 54 return Promise.all([rimraf(cacheDir), rimraf(testDir)]).then(() => { 318 return Promise.all([rimraf(cacheDir), rimraf(testDir)]) 319 .then(() => fixture.create(cacheDir)) 323 `--cache=${cacheDir}`, 333 return fs.readdirAsync(path.join(cacheDir, '_cacache')) 343 return Promise.all([rimraf(cacheDir), rimraf(testDir)])
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/view/ |
D | ResourceCleaner.java | 65 File cacheDir = mContext.getCacheDir(); in start() local 66 if (cacheDir == null) { in start() 70 final CleanTask task = new CleanTask(cacheDir.listFiles(new FilenameFilter() { in start()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/ |
D | main.go | 84 cacheDir = flag.String("cache", "cache", "path to the output cache directory") var 107 cacheRoot: *cacheDir, 470 cacheDir := path.Join(r.cacheRoot, "deqp", hash) 471 buildDir := path.Join(cacheDir, "build") 472 if !util.IsDir(cacheDir) { 473 if err := os.MkdirAll(cacheDir, 0777); err != nil { 474 return deqpBuild{}, cause.Wrap(err, "Couldn't make deqp cache directory '%s'", cacheDir) 480 os.RemoveAll(cacheDir) 488 log.Printf("Checking out deqp %v branch %v into %v\n", cfg.Remote, cfg.Branch, cacheDir) 489 if err := git.CheckoutRemoteBranch(cacheDir, cfg.Remote, cfg.Branch); err != nil { [all …]
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/application/ |
D | Context.js | 280 this.cacheDir = "[PC Preview] unknow cacheDir";
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/ |
D | build_system.dart | 377 cacheDir: Cache.instance.getRoot(), 387 @required this.cacheDir, 398 /// The [Source] value which is substituted with the path to [cacheDir]. 420 final Directory cacheDir;
|
D | source.dart | 67 fs.path.split(environment.cacheDir.resolveSymbolicLinksSync()));
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
D | cache.dart | 612 final String cacheDir = toolsDir[0]; 614 final Directory dir = fs.directory(fs.path.join(location.path, cacheDir)); 615 await _downloadZipArchive('Downloading $cacheDir tools...', Uri.parse(url + urlPath), dir); 651 final String cacheDir = toolsDir[0]; 653 exists = await _doesRemoteExist('Checking $cacheDir tools are available...',
|