Lines Matching refs:cache
1086 with open(jsonfile, 'r', encoding='utf-8') as cache:
1087 return json.load(cache)
1728 with open(full_path, 'r', encoding='utf-8') as cache:
1729 for line in cache.readlines():
1840 with open(build_file, 'r', encoding='utf-8') as cache:
1841 data = cache.readlines()
1926 with open(result_html, 'w', encoding='utf-8') as cache:
1927 cache.write('<!DOCTYPE html><html><body>')
1930 cache.write(f'<h1>{"atest " + result.get("args")}</h1>')
1932 cache.write(f'<h2>{timestamp}</h2>')
1934 cache.write(
1938 cache.write('</body></html>')
1969 with open(log, 'r', encoding='utf-8') as cache:
1970 contents = cache.read().splitlines()
2062 with open(log, 'r', encoding='utf-8') as cache:
2063 content = cache.read()