- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for refreshes (0.06 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This cache is refreshed periodically based on the lastLoadedTime. */ protected volatile String[] dataStoreNames = StringUtil.EMPTY_STRINGS; /** * Timestamp of the last time data store names were loaded from plugin files. * Used to implement a time-based cache refresh mechanism. * Volatile to ensure visibility across threads. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
public ActionResponse godHandPrologue(final ActionRuntime runtime) { fessLoginAssist.getSavedUserBean().ifPresent(u -> { final boolean result = u.getFessUser().refresh(); if (logger.isDebugEnabled()) { logger.debug("Refreshed user info: result={}", result); } }); return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
buildLabelTypePatternList(labelTypeList); return labelTypeList.size(); } /** * Refreshes the label type items and patterns. * * @param labelTypeList The list of label types. */ public void refresh(final List<LabelType> labelTypeList) { buildLabelTypeItems(labelTypeList); buildLabelTypePatternList(labelTypeList); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
} return OptionalThing.of(pipeline); } /** * Refreshes the crawling configuration cache by invalidating all cached entries. * This forces the next access to reload configurations from the underlying services. */ public void refresh() { crawlingConfigCache.invalidateAll(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.5K bytes - Viewed (1) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(map.evictsBySize()).isFalse(); assertThat(map.expires()).isFalse(); assertThat(map.expiresAfterWrite()).isFalse(); assertThat(map.expiresAfterAccess()).isFalse(); assertThat(map.refreshes()).isFalse(); } public void testSetKeyEquivalence() { Equivalence<Object> testEquivalence = new Equivalence<Object>() { @OverrideRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 115.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(map.evictsBySize()).isFalse(); assertThat(map.expires()).isFalse(); assertThat(map.expiresAfterWrite()).isFalse(); assertThat(map.expiresAfterAccess()).isFalse(); assertThat(map.refreshes()).isFalse(); } public void testSetKeyEquivalence() { Equivalence<Object> testEquivalence = new Equivalence<Object>() { @OverrideRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 117.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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)