Home
last modified time | relevance | path

Searched refs:reports_cache (Results 1 – 3 of 3) sorted by relevance

/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/tools/dashboard/
H A Dgenerate_dashboard.py192 reports_cache = dict()
194 reports_cache = pickle.load(open(cache_fn, "rb"))
197 reports_cache = {
198 k: v for k, v in reports_cache.items() if path.getmtime(k) < cache_age
204 if fn in reports_cache:
205 report = reports_cache[fn]
212 reports_cache[fn] = report
218 if reports_cache:
219 pickle.dump(reports_cache, open(cache_fn, "wb"))
/dports/science/cp2k-data/cp2k-7.1.0/tools/dashboard/
H A Dgenerate_dashboard.py191 reports_cache = dict()
193 reports_cache = pickle.load(open(cache_fn, "rb"))
196 reports_cache = {
197 k: v for k, v in reports_cache.items() if path.getmtime(k) < cache_age
203 if fn in reports_cache:
204 report = reports_cache[fn]
211 reports_cache[fn] = report
217 if reports_cache:
218 pickle.dump(reports_cache, open(cache_fn, "wb"))
/dports/devel/hyperscan/hyperscan-5.4.0/src/nfa/
H A Dlimex_compile.cpp1006 ReportListCache &reports_cache) { in addReports() argument
1012 auto cache_it = reports_cache.find(my_reports); in addReports()
1013 if (cache_it != end(reports_cache)) { in addReports()
1029 reports_cache.emplace(move(my_reports), offset); in addReports()
1034 void buildAcceptsList(const build_info &args, ReportListCache &reports_cache, in buildAcceptsList() argument
1064 a.reports = addReports(h[v].reports, reports, reports_cache); in buildAcceptsList()
1072 void buildAccepts(const build_info &args, ReportListCache &reports_cache, in buildAccepts() argument
1100 buildAcceptsList(args, reports_cache, verts_accept, accepts, reports, in buildAccepts()
1378 u32 buildExceptionMap(const build_info &args, ReportListCache &reports_cache, in buildExceptionMap() argument
1421 addReports(reports, reportList, reports_cache); in buildExceptionMap()
[all …]