- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 32 for blivit (0.33 seconds)
-
src/main/resources/fess_indices/_aws/fess.json
}, "finnish_stop": { "type": "stop",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 117.5K bytes - Click Count (0) -
src/main/resources/fess_indices/_cloud/fess.json
}, "finnish_stop": { "type": "stop",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 117.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
assertTrue(e.getMessage().contains("10 crawler processes are running")); assertTrue(e.getMessage().contains("Max processes are 5")); } } // Test execute method with no max process limit @Test public void test_execute_noMaxProcessLimit() { // Setup test crawlJob = new CrawlJob() { @Override protected int getRunningJobCount() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
EntraIdAuthenticator authenticator = new EntraIdAuthenticator(); authenticator.setMaxGroupDepth(2); // Test that depth limit returns empty arrays when depth is exceeded // With depth limit set to 2, depth 10 should return empty arrays Pair<String[], String[]> result = authenticator.getParentGroup(null, "test-id", 10); assertNotNull(result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0) -
src/main/webapp/js/search.js
} var loadImage = function(img, url, limit) { var imgData = new Image(); $(imgData).on("load", function() { $(img).css("background-image", ""); $(img).attr("src", url); }); $(imgData).on("error", function() { if (limit > 0) { setTimeout(function() { loadImage(img, url, limit - 1); }, IMG_LOADING_DELAY); } else {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
} @Test public void test_constructorWithMessageAndErrorCode() { final LlmException exception = new LlmException("Rate limit exceeded", LlmException.ERROR_RATE_LIMIT); assertEquals("Rate limit exceeded", exception.getMessage()); assertEquals(LlmException.ERROR_RATE_LIMIT, exception.getErrorCode()); assertNull(exception.getCause()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. 60 */ String RATE_LIMIT_RETRY_AFTER_SECONDS = "rate.limit.retry.after.seconds"; /** The key of the configuration. e.g. 127.0.0.1,::1 */ String RATE_LIMIT_WHITELIST_IPS = "rate.limit.whitelist.ips"; /** The key of the configuration. e.g. */ String RATE_LIMIT_BLOCKED_IPS = "rate.limit.blocked.ips";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/main/resources/fess_config.properties
# Whether rate limiting is enabled. rate.limit.enabled=false # Maximum number of requests allowed per window. rate.limit.requests.per.window=100 # Window size in milliseconds. rate.limit.window.ms=60000 # Duration in milliseconds to block IP when limit exceeded. rate.limit.block.duration.ms=300000 # Retry-After header value in seconds. rate.limit.retry.after.seconds=60
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
public class ResultOffsetExceededExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test with normal message String message = "Offset exceeded the limit"; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); assertEquals(message, exception.getMessage()); assertNotNull(exception.getStackTrace());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
* * @author FessProject */ public class LlmException extends FessSystemException { private static final long serialVersionUID = 1L; /** Error code for rate limit (HTTP 429). */ public static final String ERROR_RATE_LIMIT = "rate_limit"; /** Error code for authentication failure (HTTP 401/403). */ public static final String ERROR_AUTH = "auth_error";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 3.5K bytes - Click Count (0)