- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 33 for sekondes (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
configHelper.setLoadCallback(() -> { latch.countDown(); return 1; }); configHelper.update(); assertTrue("Load method should be called within 5 seconds", latch.await(5, TimeUnit.SECONDS)); assertEquals(1, configHelper.getLoadCallCount()); } @Test public void test_update_multipleCallsIncrementLoadCount() throws InterruptedException {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
protected final ConcurrentHashMap<String, JobProcess> runningProcessMap = new ConcurrentHashMap<>(); /** Timeout in seconds for process destruction */ protected int processDestroyTimeout = 10; /** Timeout in seconds for stream closing operations */ protected int streamCloseTimeout = 10; /** * Default constructor for ProcessHelper.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 06:54:47 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
public void setCookieDomain(final String cookieDomain) { this.cookieDomain = cookieDomain; } /** * Sets the maximum age of the user identification cookie in seconds. * * @param cookieMaxAge the maximum age in seconds */ public void setCookieMaxAge(final int cookieMaxAge) { this.cookieMaxAge = cookieMaxAge; } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
this.encryptedCookieValue = encryptedCookieValue; } /** * Sets the maximum age of the role information in seconds. * @param maxAge The maximum age of the role information in seconds. */ public void setMaxAge(final long maxAge) { this.maxAge = maxAge; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
protected int maxRedirectCount; /** Executor service for concurrent processing of file operations. */ private final ExecutorService executor; /** Timeout in seconds for executor service termination during shutdown. */ private int executorTerminationTimeout = 300; /** * Constructs a new FileListIndexUpdateCallbackImpl with the specified parameters. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 29.7K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
return false; } return true; } /** * Get the Retry-After header value in seconds. * @return the retry after seconds */ public int getRetryAfterSeconds() { return ComponentUtil.getFessConfig().getRateLimitRetryAfterSecondsAsInteger(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/RateLimitFilter.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 6.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/LoadControlFilter.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
// Default constructor } /** * Initializes the session manager and starts the cleanup scheduler. */ @PostConstruct public void init() { // 5 minutes = 300 seconds cleanupTask = TimeoutManager.getInstance().addTimeoutTarget(this::cleanupExpiredSessions, 300, true); if (logger.isDebugEnabled()) { logger.debug("Initialized ChatSessionManager"); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0)