- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for refreshedAt (0.06 sec)
-
cmd/tier.go
tierConfigVersion = 2 ) // tierConfigPath refers to remote tier config object name var tierConfigPath = path.Join(minioConfigPrefix, tierConfigFile) const tierCfgRefreshAtHdr = "X-MinIO-TierCfg-RefreshedAt" // TierConfigMgr holds the collection of remote tiers configured in this deployment. type TierConfigMgr struct { sync.RWMutex `msg:"-"` drivercache map[string]WarmBackend `msg:"-"`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
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) -
cmd/bucket-metadata-sys.go
// GetConfig returns a specific configuration from the bucket metadata. // The returned object may not be modified. // reloaded will be true if metadata refreshed from disk func (sys *BucketMetadataSys) GetConfig(ctx context.Context, bucket string) (meta BucketMetadata, reloaded bool, err error) { objAPI := newObjectLayerFn() if objAPI == nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.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) -
cmd/local-locker.go
idx++ continue } reply = true l.removeEntry(resource, dsync.LockArgs{UID: args.UID}, &lris) idx++ } } func (l *localLocker) Refresh(ctx context.Context, args dsync.LockArgs) (refreshed bool, err error) { if ctx.Err() != nil { return false, ctx.Err() } defer l.getMutex()() if ctx.Err() != nil { return false, ctx.Err() } // Check whether uid is still active.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheLoadingTest.java
assertEquals(0, stats.loadExceptionCount()); assertEquals(1, stats.hitCount()); ticker.advance(1, MILLISECONDS); assertSame(one, cache.getUnchecked(key)); // refreshed stats = cache.stats(); assertEquals(1, stats.missCount()); assertEquals(1, stats.loadSuccessCount()); assertEquals(1, stats.loadExceptionCount()); assertEquals(2, stats.hitCount());
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/sso/aad/AzureAdAuthenticator.java
} } /** * Attempts to refresh tokens silently using the MSAL4J silent authentication flow. * @param user The Azure AD user whose tokens need to be refreshed. * @return The new authentication result, or null if silent refresh failed. */ public IAuthenticationResult refreshTokenSilently(final AzureAdCredential.AzureAdUser user) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * 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<>(); stream(ComponentUtil.getVirtualHostHelper().getVirtualHostPaths())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)