- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for Refreshed (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryExpiredException.java
package org.codelibs.fess.dict; /** * Exception thrown when a dictionary has expired and is no longer valid. * This runtime exception indicates that a dictionary file or dictionary data * has exceeded its lifetime and should be refreshed or reloaded. */ public class DictionaryExpiredException extends RuntimeException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
authenticator.updateMemberOf(this); permissions = null; if (logger.isDebugEnabled()) { logger.debug("Token refreshed successfully via silent authentication"); } return true; } } catch (final Exception e) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
*/ protected Map<String, DataStore> dataStoreMap = new LinkedHashMap<>(); /** * Cached array of available data store names discovered from plugin JAR files. * This cache is refreshed periodically based on the lastLoadedTime. */ protected String[] dataStoreNames = StringUtil.EMPTY_STRINGS; /** * Timestamp of the last time data store names were loaded from plugin files.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheLoader.java
*/ public abstract V load(K key) throws Exception; /** * Computes or retrieves a replacement value corresponding to an already-cached {@code key}. This * method is called when an existing cache entry is refreshed by {@link * CacheBuilder#refreshAfterWrite}, or through a call to {@link LoadingCache#refresh}. * * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java
private Set<DurationSpec> expireAfterWrites = Sets.newHashSet((DurationSpec) null); private Set<DurationSpec> expireAfterAccesses = Sets.newHashSet((DurationSpec) null); private Set<DurationSpec> refreshes = Sets.newHashSet((DurationSpec) null); private Set<Strength> keyStrengths = Sets.newHashSet((Strength) null); private Set<Strength> valueStrengths = Sets.newHashSet((Strength) null); @CanIgnoreReturnValue
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
* @return True if the user's information is editable, false otherwise. */ 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; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (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> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (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 null
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0)