- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for refreshes (0.94 sec)
-
android/guava/src/com/google/common/cache/CacheBuilder.java
* implementation; otherwise refreshes will be performed during unrelated cache read and write * operations. * * <p>Currently automatic refreshes are performed when the first stale request for an entry * occurs. The request triggering refresh will make a synchronous call to {@link * CacheLoader#reload}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
return numOfDeleted; } /** * Refreshes the specified index to make recent changes visible for search. * This operation ensures that all pending writes are persisted and searchable. * * @param searchEngineClient the search engine client to use for refresh * @param index the index name to refresh * @return the refresh status code */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertTrue(user.refresh()); assertEquals(1, user.getRefreshCount()); // Test multiple refreshes user.refresh(); user.refresh(); assertEquals(3, user.getRefreshCount()); // Test custom implementation that returns false user = new TestRefreshableFessUser("testuser", false); assertFalse(user.refresh());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
*/ public void deleteBadWord(final String badWord) { suggester.indexer().deleteBadWord(badWord); refresh(); } /** * Refreshes the suggest index. */ public synchronized void refresh() { suggester.refresh(); if (popularWordHelper != null) { popularWordHelper.clearCache(); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // PUT /api/admin/elevateword/setting /** * Updates an existing elevate word setting. * Refreshes all elevate words in the suggest helper to maintain consistency. * * @param body elevate word setting data to update * @return JSON response with updated setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]); } /** * Refreshes the design JSP files for all virtual hosts. * * @return A list of paths to the refreshed files. */ public List<Path> refreshDesignJspFiles() { final List<Path> fileList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertFalse(map.evictsBySize()); assertFalse(map.expires()); assertFalse(map.expiresAfterWrite()); assertFalse(map.expiresAfterAccess()); assertFalse(map.refreshes()); } public void testSetKeyEquivalence() { Equivalence<Object> testEquivalence = new Equivalence<Object>() { @Override protected boolean doEquivalent(Object a, Object b) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} } /** * Refreshes the specified indices to make recent changes visible for search. * * @param indices the indices to refresh */ public void refresh(final String... indices) { client.admin().indices().prepareRefresh(indices).execute(new ActionListener<RefreshResponse>() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheLoadingTest.java
ConcurrentMap<String, String> map = cache.asMap(); map.put(refreshKey, refreshKey); assertEquals(1, map.size()); assertFalse(map.containsKey(getKey)); assertSame(refreshKey, map.get(refreshKey)); new Thread() { @Override public void run() { cache.getUnchecked(getKey);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 85.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
if (logger.isDebugEnabled()) { logger.debug("Token refreshed successfully via silent authentication"); } return true; } } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Silent token refresh failed: {}", e.getMessage()); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0)