Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 51) sorted by relevance

123

/developtools/ace_ets2bundle/compiler/src/fast_build/common/
Drollup-plugin-watch-change.ts39 if (this.cache && this.cache.has(key)) {
40 modifiedFiles = this.cache.get(key);
45 this.cache.set(key, modifiedFiles);
68 this.cache.set('watchChangedFilesCache', 'watchChangedFiles');
69 const watchModifiedFiles: string[] = this.cache.get('watchModifiedFiles') || [];
70 const watchRemovedFiles: string[] = this.cache.get('watchRemovedFiles') || [];
76 if (this.cache.get('lastWatchResourcesArr')) {
77 storedFileInfo.lastResourcesSet = new Set([...this.cache.get('lastWatchResourcesArr')]);
/developtools/ace_ets2bundle/compiler/src/fast_build/visual/
Drollup-plugin-visual.ts62 if (this.cache.has(visualId)) {
63 this.cache.delete(visualId);
69 if (!this.cache.has(visualId)) {
70 this.cache.set(visualId, currentTimestamp);
73 const lastTimestamp: number = this.cache.get(visualId);
74 this.cache.set(visualId, currentTimestamp);
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/
Drollup-plugin-ets-typescript.ts88 cacheFile = this.cache.get('transformCacheFiles');
89 storedFileInfo.addGlobalCacheInfo(this.cache.get('resourceListCacheInfo'),
90 this.cache.get('resourceToFileCacheInfo'));
91 if (this.cache.get('lastResourcesArr')) {
92 storedFileInfo.lastResourcesSet = new Set([...this.cache.get('lastResourcesArr')]);
102 if (this.cache.get('fileCacheInfo')) {
103 fileCacheInfo = this.cache.get('fileCacheInfo')[path.resolve(id)];
167 this.cache.set('disableCacheOptions', disableCacheOptions);
168 this.cache.set('lastResourcesArr', [...storedFileInfo.resourcesArr]);
169 storedFileInfo.clearCollectedInfo(this.cache);
[all …]
/developtools/ace_js2bundle/ace-loader/plugin/codegen/
Dindex.js1cache=e}visit(e){e instanceof o.Tag?this.genTag(e):e instanceof o.Style&&this.genStyle(e)}static g…
/developtools/profiler/device/plugins/memory_plugin/src/
Dtest_main.cpp30 std::vector<char*> cache; in main() local
48 cache.emplace(cache.begin() + i - 1, buf); in main()
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dcache.ts26 const lastMetaInfo: string = rollupObject.cache.get(ARK_COMPILER_META_INFO);
28 rollupObject.cache.set(IS_CACHE_INVALID, true);
31 rollupObject.cache.set(ARK_COMPILER_META_INFO, metaInfo);
/developtools/ace_ets2bundle/compiler/src/
Dets_checker.ts262 export let cache: Cache = {}; variable
289 cache = wholeCache.fileList;
291 cache = {};
317 'fileList': cache
418 if (diagnostic.file && cache[path.resolve(diagnostic.file.fileName)]) {
419 cache[path.resolve(diagnostic.file.fileName)].error = true;
446 const value: CacheFileName = cache[file];
461 cache[file] = { mtimeMs, children: [], parent: [], error: false };
487 …const cache: Map<string, ts.ResolvedTypeReferenceDirective> = new Map<string, ts.ResolvedTypeRefer… constant
491 if (!cache.has(typeName)) {
[all …]
Dutils.ts729 saveCacheFileInfo(cache) {
731 const fileCacheInfo: {[id: string]: fileInfo | tsFileInfo} = cache.get('fileCacheInfo') || {};
732 const resourceToFileCacheInfo = cache.get('resourceToFileCacheInfo') || {};
761 cache.set('fileCacheInfo', fileCacheInfo);
762 cache.set('resourceListCacheInfo', [...this.resourceList]);
763 cache.set('resourceToFileCacheInfo', resourceToFile);
765 const cacheInfo: {[id: string]: fileInfo} = cache.get('fileCacheInfo') || {};
769 cache.set('fileCacheInfo', cacheInfo);
803 clearCollectedInfo(cache) {
806 this.saveCacheFileInfo(cache);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dcommon_mode.ts132 …return rollupObject.cache.get(IS_CACHE_INVALID) || rollupObject.cache.get(IS_CACHE_INVALID) === un…
139 rollupObject.cache.set(IS_CACHE_INVALID, false);
/developtools/integration_verification/tools/fotff/utils/
Druntime.go28 var runtimeCache = cache.New(24*time.Hour, time.Hour)
46 runtimeCache.Set(sectionKey(section, k), v, cache.DefaultExpiration)
/developtools/ace_ets2bundle/compiler/
Dwebpack.config.js126 config.cache = {
189 if (config.cache) {
190 config.cache.buildDependencies = {
194 config.cache.buildDependencies.config.push(rootPackageJsonPath);
197 config.cache.buildDependencies.config.push(modulePackageJsonPath);
Dbabel.config.js17 api.cache(true);
/developtools/profiler/host/smartperf/trace_streamer/src/table/base/
Dtable_base.h45 TableRegister(db, dataCache, tableName, [](const TraceDataCache* cache) { in TableDeclare()
46 return std::unique_ptr<TableBase>(std::make_unique<T>(cache)); in TableDeclare()
100 …static void TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, TabTem…
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.h45 TableRegister(db, dataCache, tableName, [](const TraceDataCache* cache) { in TableDeclare()
46 return std::unique_ptr<TableBase>(std::make_unique<T>(cache)); in TableDeclare()
105 …static void TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, TabTem…
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
Dtable_base.h46 TableRegister(db, dataCache, name, [](const TraceDataCache* cache) { in TableDeclare()
47 return std::unique_ptr<TableBase>(std::make_unique<T>(cache)); in TableDeclare()
114 …static void TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, TabTem…
/developtools/smartperf_host/trace_streamer/sdk/dubai_sdk/table/
Dtable_base.h46 TableRegister(db, dataCache, name, [](const TraceDataCache* cache) { in TableDeclare()
47 return std::unique_ptr<TableBase>(std::make_unique<T>(cache)); in TableDeclare()
114 …static void TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, TabTem…
/developtools/ace_js2bundle/ace-loader/
Dwebpack.rich.config.js167 cache: { property
261 if (config.cache) {
262 config.cache.buildDependencies = {
266 config.cache.buildDependencies.config.push(rootPackageJsonPath);
269 config.cache.buildDependencies.config.push(modulePackageJsonPath);
295 config.cache.cacheDirectory = path.resolve(process.env.cachePath, '.rich_cache',
Dbabel.config.js17 api.cache(true);
Dwebpack.lite.config.js39 cache: { property
142 webpackConfig.cache.cacheDirectory = path.resolve(process.env.cachePath, '.lite_cache');
/developtools/smartperf_host/
D.gitignore14 trace_streamer/.cache
/developtools/profiler/device/plugins/network_plugin/src/
Dnetwork_plugin.cpp218 NetDetails cache = {0}; in ReadTxRxBytes() local
230 cache.type = tmp; in ReadTxRxBytes()
239 cache.rx = rxBytes; in ReadTxRxBytes()
244 cache.tx = txBytes; in ReadTxRxBytes()
246 AddNetDetails(cell, cache); in ReadTxRxBytes()
/developtools/ace_ets2bundle/
DREADME_zh.md34 npm cache clean -f
/developtools/integration_verification/tools/fotff/
Dgo.mod10 github.com/patrickmn/go-cache v2.1.0+incompatible
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/doc/
Dwasm.md18 │ │ ├── prebuilts/emsdk/emsdk/emscripten/cache
/developtools/smartperf_host/trace_streamer/sdk/dubai_sdk/doc/
Dwasm.md18 │ │ ├── prebuilts/emsdk/emsdk/emscripten/cache

123