Home
last modified time | relevance | path

Searched full:caches (Results 1 – 25 of 2060) sorted by relevance

12345678910>>...83

/external/dagger2/util/
Dcleanup-github-caches.py1 """Cleans out the GitHub Actions cache by deleting obsolete caches.
4 python cleanup-github-caches.py
20 # Group caches by their Git reference, e.g "refs/pull/3968/merge"
25 # Caclulate caches that should be deleted.
27 for ref, caches in caches_by_ref.items():
28 # If the pull request is already "closed", then delete all caches.
35 caches_to_delete += caches
40 # Check for caches with the same key prefix and delete the older caches.
42 for cache in caches:
85 https://api.github.com/repos/google/dagger/actions/caches/{0}
[all …]
/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java38 * {@link LoadingCache} tests that deal with empty caches.
46 for (LoadingCache<Object, Object> cache : caches()) { in testEmpty()
53 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidate_empty()
64 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidateAll_empty()
75 for (LoadingCache<Object, Object> cache : caches()) { in testEquals_null()
82 // all caches should be different: instance equality in testEqualsAndHashCode_different()
92 for (LoadingCache<Object, Object> cache : caches()) { in testGet_null()
99 for (LoadingCache<Object, Object> cache : caches()) { in testGetUnchecked_null()
108 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_nullToArray()
116 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_addNotSupported()
[all …]
DPopulatedCachesTest.java43 * {@link LoadingCache} tests that deal with caches that actually contain some key-value mappings.
56 for (LoadingCache<Object, Object> cache : caches()) { in testSize_populated()
66 for (LoadingCache<Object, Object> cache : caches()) { in testContainsKey_found()
82 for (LoadingCache<Object, Object> cache : caches()) { in testPut_populated()
105 for (LoadingCache<Object, Object> cache : caches()) { in testPutIfAbsent_populated()
126 for (LoadingCache<Object, Object> cache : caches()) { in testPutAll_populated()
140 for (LoadingCache<Object, Object> cache : caches()) { in testReplace_populated()
161 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKey()
176 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKeyAndValue()
193 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_populated()
[all …]
/external/guava/android/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java38 * {@link LoadingCache} tests that deal with empty caches.
46 for (LoadingCache<Object, Object> cache : caches()) { in testEmpty()
53 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidate_empty()
64 for (LoadingCache<Object, Object> cache : caches()) { in testInvalidateAll_empty()
75 for (LoadingCache<Object, Object> cache : caches()) { in testEquals_null()
82 // all caches should be different: instance equality in testEqualsAndHashCode_different()
92 for (LoadingCache<Object, Object> cache : caches()) { in testGet_null()
99 for (LoadingCache<Object, Object> cache : caches()) { in testGetUnchecked_null()
108 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_nullToArray()
116 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_addNotSupported()
[all …]
DPopulatedCachesTest.java43 * {@link LoadingCache} tests that deal with caches that actually contain some key-value mappings.
56 for (LoadingCache<Object, Object> cache : caches()) { in testSize_populated()
66 for (LoadingCache<Object, Object> cache : caches()) { in testContainsKey_found()
82 for (LoadingCache<Object, Object> cache : caches()) { in testPut_populated()
105 for (LoadingCache<Object, Object> cache : caches()) { in testPutIfAbsent_populated()
126 for (LoadingCache<Object, Object> cache : caches()) { in testPutAll_populated()
140 for (LoadingCache<Object, Object> cache : caches()) { in testReplace_populated()
161 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKey()
176 for (LoadingCache<Object, Object> cache : caches()) { in testRemove_byKeyAndValue()
193 for (LoadingCache<Object, Object> cache : caches()) { in testKeySet_populated()
[all …]
/external/cronet/third_party/libc++/src/utils/ci/
Drun-buildbot257 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx03.cmake"
263 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx11.cmake"
269 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx14.cmake"
275 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx17.cmake"
281 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx20.cmake"
287 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx23.cmake"
293 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx26.cmake"
309 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx11.cmake" \
320 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-asan.cmake"
325 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-msan.cmake"
[all …]
/external/cpuinfo/src/arm/windows/
Dinit-by-logical-sys-info.c50 struct cpuinfo_cache *caches,
59 struct cpuinfo_cache* caches,
76 struct cpuinfo_cache* caches,
124 struct cpuinfo_cache* caches = NULL; in cpu_info_init_by_logical_sys_info() local
166 /* 2. Read topology information via MSDN API: packages, cores and caches*/ in cpu_info_init_by_logical_sys_info()
191 /* There is no API to read number of caches, so we need to iterate twice on caches: in cpu_info_init_by_logical_sys_info()
192 1. Count all type of caches -> allocate memory in cpu_info_init_by_logical_sys_info()
197 caches, numbers_of_caches, in cpu_info_init_by_logical_sys_info()
228 /* We allocate one contiguous cache array for all caches, then use offsets per cache type. */ in cpu_info_init_by_logical_sys_info()
229 caches = HeapAlloc(heap, HEAP_ZERO_MEMORY, nr_of_all_caches * sizeof(struct cpuinfo_cache)); in cpu_info_init_by_logical_sys_info()
[all …]
/external/accompanist/.github/workflows/
Dbuild-snapshot.yml45 ~/.gradle/caches/modules-*
46 ~/.gradle/caches/jars-*
47 ~/.gradle/caches/build-cache-*
116 ~/.gradle/caches/modules-*
117 ~/.gradle/caches/jars-*
118 ~/.gradle/caches/build-cache-*
191 ~/.gradle/caches/modules-*
192 ~/.gradle/caches/jars-*
193 ~/.gradle/caches/build-cache-*
/external/crosvm/infra/config/generated/
Dcr-buildbucket.cfg54 caches {
73 caches {
92 caches {
111 caches {
130 caches {
200 caches {
219 caches {
238 caches {
257 caches {
276 caches {
/external/libchrome/base/android/java/src/org/chromium/base/metrics/
DCachedMetrics.java59 * Caches an action that will be recorded after native side is loaded.
92 /** Caches a set of integer histogram samples. */
124 /** Caches a set of enumerated histogram samples. */
158 /** Caches a set of times histogram samples. */
193 /** Caches a set of boolean histogram samples. */
226 * Caches a set of custom count histogram samples.
267 * Caches a set of count histogram samples in range [1, 100).
277 * Caches a set of count histogram samples in range [1, 1000).
287 * Caches a set of count histogram samples in range [1, 1000000).
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/JITLink/
DDWARFRecordSectionSplitter.cpp36 DenseMap<Block *, LinkGraph::SplitBlockCache> Caches; in operator ()() local
39 // Pre-build the split caches. in operator ()()
41 Caches[B] = LinkGraph::SplitBlockCache::value_type(); in operator ()()
43 Caches[&Sym->getBlock()]->push_back(Sym); in operator ()()
45 llvm::sort(*Caches[B], [](const Symbol *LHS, const Symbol *RHS) { in operator ()()
50 // Iterate over blocks (we do this by iterating over Caches entries rather in operator ()()
53 for (auto &KV : Caches) { in operator ()()
/external/dagger2/.github/actions/cleanup-caches/
Daction.yml1 name: 'Clean up caches'
2 description: 'Cleans up GitHub Action caches.'
9 - name: 'Cleanup caches'
10 run: python ./util/cleanup-github-caches.py
/external/mesa3d/src/gallium/drivers/iris/
Diris_pipe_control.c27 * GPUs. It can invalidate caches, stall until rendering reaches various
34 * top of the pipeline (invalidating caches before drawing), while some are
66 * contents of the flushed caches were intended to become visible from in iris_emit_pipe_control_flush()
67 * any of the invalidated caches. Split it in two PIPE_CONTROLs, the in iris_emit_pipe_control_flush()
69 * caches are coherent with memory once the specified R/O caches are in iris_emit_pipe_control_flush()
105 * related caches are flushed to memory, where the data will become
115 * ensures the write caches are flushed and doesn't guarantee the data
139 * write caches flushed with Post-Sync-Operation as Write Immediate in iris_emit_end_of_pipe_sync()
160 * This is useful because the GPU has separate incoherent caches for the
163 * same surface is accessed through multiple caches (e.g. due to
[all …]
/external/mesa3d/src/gallium/drivers/crocus/
Dcrocus_pipe_control.c27 * GPUs. It can invalidate caches, stall until rendering reaches various
34 * top of the pipeline (invalidating caches before drawing), while some are
69 * contents of the flushed caches were intended to become visible from in crocus_emit_pipe_control_flush()
70 * any of the invalidated caches. Split it in two PIPE_CONTROLs, the in crocus_emit_pipe_control_flush()
72 * caches are coherent with memory once the specified R/O caches are in crocus_emit_pipe_control_flush()
124 * WM HW will internally manage the draining pipe and flushing of the caches in crocus_emit_depth_stall_flushes()
140 * related caches are flushed to memory, where the data will become
150 * ensures the write caches are flushed and doesn't guarantee the data
177 * write caches flushed with Post-Sync-Operation as Write Immediate in crocus_emit_end_of_pipe_sync()
278 * Flush and invalidate all caches (for debugging purposes).
[all …]
/external/XNNPACK/src/operators/
Dprelu-nc.c32 xnn_caches_t caches, in create_prelu_nc() argument
88 if (caches != NULL) { in create_prelu_nc()
89 prelu_op->weights_cache = caches->weights_cache; in create_prelu_nc()
126 xnn_caches_t caches, in xnn_create_prelu_nc_f16() argument
140 caches, in xnn_create_prelu_nc_f16()
150 xnn_caches_t caches, in xnn_create_prelu_nc_f32() argument
159 caches, in xnn_create_prelu_nc_f32()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_channel.cc190 // GrpcChannelCache that caches results to FindWorkerChannel() calls.
194 // Takes ownership of the caches passed to the constructor.
197 explicit MultiGrpcChannelCache(const std::vector<GrpcChannelCache*>& caches, in MultiGrpcChannelCache() argument
199 : CachingGrpcChannelCache(num_channels_per_target), caches_(caches) {} in MultiGrpcChannelCache()
355 std::vector<GrpcChannelCache*> caches; in NewGrpcChannelCache() local
356 caches.reserve(num_jobs); in NewGrpcChannelCache()
359 caches.push_back( in NewGrpcChannelCache()
363 return caches.size() == 1 ? caches[0] in NewGrpcChannelCache()
365 caches, options.num_channels_per_target()); in NewGrpcChannelCache()
/external/clang/cmake/caches/
DREADME.txt1 CMake Caches
7 You can use the caches files with the following CMake invocation:
34 cmake -G <generator> -C <path_to_clang>/cmake/caches/PGO.cmake <source dir>
69 cmake -C <path to clang>/cmake/caches/3-stage.cmake -G Ninja <path to llvm>
/external/perfetto/ui/src/assets/
Dbigtrace.html36 * <a href="javascript:clearAllCaches();">Clear all the site storage and caches</a> and reload the p…
38 * Clear the site data and caches from devtools, following <a target="_blank" href="https://develope…
75 // For the 'Click here to clear all caches'.
80 if (window.caches) {
82 const keys = await window.caches.keys();
83 keys.forEach(k => promises.push(window.caches.delete(k)));
Dindex.html39 * <a href="javascript:clearAllCaches();">Clear all the site storage and caches</a> and reload the p…
41 * Clear the site data and caches from devtools, following <a target="_blank" href="https://develope…
78 // For the 'Click here to clear all caches'.
83 if (window.caches) {
85 const keys = await window.caches.keys();
86 keys.forEach(k => promises.push(window.caches.delete(k)));
/external/angle/src/libANGLE/renderer/vulkan/
DShareGroupVk.h51 // synchronous update to the caches.
120 // VkFramebuffer caches
131 // Descriptor set caches
148 // partial pipelines are created in the following caches. These caches are in the share group
/external/arm-trusted-firmware/lib/cpus/aarch64/
Dgeneric.S30 * Turn off caches.
36 * Flush L1 caches.
49 * Turn off caches.
55 * Flush L1 caches.
68 * Flush L2 caches.
/external/trusty/arm-trusted-firmware/lib/cpus/aarch64/
Dgeneric.S30 * Turn off caches.
36 * Flush L1 caches.
49 * Turn off caches.
55 * Flush L1 caches.
68 * Flush L2 caches.
/external/subsampling-scale-image-view/
D.travis.yml4 - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
5 - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
12 - $HOME/.gradle/caches/
/external/cpuinfo/src/x86/mach/
Dinit.c133 cpuinfo_log_debug("detected %"PRIu32" L1 caches", l1_count); in cpuinfo_x86_mach_init()
151 cpuinfo_log_debug("detected %"PRIu32" L2 caches", l2_count); in cpuinfo_x86_mach_init()
167 cpuinfo_log_debug("detected %"PRIu32" L3 caches", l3_count); in cpuinfo_x86_mach_init()
184 cpuinfo_log_debug("detected %"PRIu32" L4 caches", l4_count); in cpuinfo_x86_mach_init()
190 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1I caches", in cpuinfo_x86_mach_init()
214 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1D caches", in cpuinfo_x86_mach_init()
238 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L2 caches", in cpuinfo_x86_mach_init()
262 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L3 caches", in cpuinfo_x86_mach_init()
286 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L4 caches", in cpuinfo_x86_mach_init()
/external/mesa3d/docs/drivers/freedreno/hw/
Dlrz.rst111 LRZ Caches
114 ``LRZ_FLUSH`` flushes and invalidates LRZ caches, there are two caches:
120 the caches should be flushed with ``LRZ_FLUSH`` afterwards.
122 ``GRAS_LRZ_CNTL`` reads from these caches.

12345678910>>...83