Searched defs:cache (Results 1 - 6 of 6) sorted by relevance

/opengrok/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java51 private JDBCHistoryCache cache; field in class:JDBCHistoryCacheTest
76 * Set up the test environment with repositories and a cache instance.
82 cache = new JDBCHistoryCache(
84 cache.initialize();
101 cache = null;
193 cache.store(historyToStore, repos);
194 cache.optimize();
198 cache.store(historyNull, repos);
199 cache.optimize();
206 History retrievedHistory = cache
[all...]
H A DFileHistoryCacheTest.java46 * Test file based history cache with special focus on incremental reindex.
53 private FileHistoryCache cache; field in class:FileHistoryCacheTest
59 * Set up the test environment with repositories and a cache instance.
68 cache = new FileHistoryCache();
69 cache.initialize();
82 cache = null;
125 * Basic tests for the {@code store()} method on cache with disabled
137 cache.store(historyToStore, repo);
141 assertEquals("9:8b340409b3a8", cache.getLatestCachedRevision(repo));
145 cache
[all...]
/opengrok/src/org/opensolaris/opengrok/authorization/
H A DAuthorizationPluginClassLoader.java46 private final Map<String, Class> cache = new HashMap<>(); field in class:AuthorizationPluginClassLoader
222 if ((c = cache.get(name)) != null) {
233 cache.put(name, c);
244 cache.put(name, c);
258 cache.put(name, c);
271 cache.put(name, c);
H A DAuthorizationFramework.java340 * Internally performed with a predicate. Using cache in request attributes.
343 * @param cache cache
349 private boolean checkAll(HttpServletRequest request, String cache, String name, argument
351 Map<String, Boolean> m = (Map<String, Boolean>) request.getAttribute(cache);
367 request.setAttribute(cache, m);
377 request.setAttribute(cache, m);
/opengrok/src/org/opensolaris/opengrok/history/
H A DRepository.java273 * Create a history log cache for all files in this repository.
278 * @param cache the cache instance in which to store the history log
279 * @param sinceRevision if non-null, incrementally update the cache with all
285 final void createCache(HistoryCache cache, String sinceRevision) argument
291 // If we don't have a directory parser, we can't create the cache
296 "Skipping creation of history cache for {0}, since retrieval "
314 // (bug #14724) so we'll try to regenerate the cache from
318 + "recreate the history cache from scratch.", he);
325 // Got full history successfully. Clear the history cache s
[all...]
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 45 milliseconds