- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 146 for refreshes (0.05 seconds)
-
android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java
} if (expireAfterAccess != null) { builder.expireAfterAccess(expireAfterAccess.duration, expireAfterAccess.unit); } if (refresh != null) { builder.refreshAfterWrite(refresh.duration, refresh.unit); } if (keyStrength != null) { builder.setKeyStrength(keyStrength); } if (valueStrength != null) { builder.setValueStrength(valueStrength);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 8.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
*/ default boolean isEditable() { return false; } /** * Refreshes the user's information from the underlying data source. * @return True if refresh was successful, false otherwise. */ default boolean refresh() { return false; }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
return duplicateHostBhv.selectByPK(id); } /** * Stores (inserts or updates) a duplicate host configuration. * * <p>This method immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated; * otherwise, a new configuration will be created.</p> *
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
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}Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Oct 08 18:55:33 GMT 2025 - 51.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
return dataConfigList; } /** * Deletes the specified data configuration from the system. * * <p>This operation permanently removes the data configuration and * immediately refreshes the index to ensure the change is visible.</p> * * @param dataConfig the data configuration to delete * @throws IllegalArgumentException if dataConfig is nullCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8K bytes - Click Count (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 */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (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. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
CLAUDE.md
- **SuggestSettings**: NOT thread-safe for modifications ### Performance - Use batch operations for indexing (100-500 items) - Don't call `refresh()` too frequently - Limit `maxReadingNum` to prevent memory issues - OpenSearch auto-refreshes every 1 second by default ### Compatibility - Designed for OpenSearch 2.x+ - All text processing uses UTF-8
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 8.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #suggest()}: Creates a new SuggestRequestBuilder for querying suggestions.</li> * <li>{@link #popularWords()}: Creates a new PopularWordsRequestBuilder for querying popular words.</li> * <li>{@link #refresh()}: Refreshes the suggestion indices.</li> * <li>{@link #shutdown()}: Shuts down the thread pool.</li> * <li>{@link #createIndexIfNothing()}: Creates a new index if no index exists.</li>
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 21.6K bytes - Click Count (3) -
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}Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Oct 08 18:55:33 GMT 2025 - 51.6K bytes - Click Count (0)