- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 139 for segons (0.03 seconds)
-
src/main/resources/fess_config.properties
# 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 # Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1). rate.limit.whitelist.ips=127.0.0.1,::1 # Comma-separated list of 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 - 59.3K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePackageInfoDataTask.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 2.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/JobExecutorTest.java
jobExecutor.addShutdownListener(listener1); assertEquals(listener1, jobExecutor.shutdownListener); // Replace with second listener jobExecutor.addShutdownListener(listener2); assertEquals(listener2, jobExecutor.shutdownListener); // Verify only second listener is called jobExecutor.shutdown(); assertEquals(10, callCount.get()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
public void test_evaluate_stringOperations() { final Map<String, Object> params = new HashMap<>(); params.put("first", "Hello"); params.put("second", "World"); assertEquals("HelloWorld", groovyEngine.evaluate("return first + second", params)); assertEquals("HELLO", groovyEngine.evaluate("return first.toUpperCase()", params)); assertEquals(5, groovyEngine.evaluate("return first.length()", params));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
throw new RuntimeException("Operation timed out after 30 seconds"); } }; ComponentUtil.register(searchEngineClient, "searchEngineClient"); // Execute the job String result = purgeDocJob.execute(); // Assert error message is in the result assertTrue(result.contains("Operation timed out after 30 seconds")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
} @Test public void test_first_element_from_list() { Map<String, Object> doc = new HashMap<>(); List<String> list = Arrays.asList("first", "second", "third"); doc.put("key", list); assertEquals("first", DocumentUtil.getValue(doc, "key", String.class)); List<String> numList = Arrays.asList("123", "456", "789");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 13.6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
} fun assertHasAccepted(vararg accepted: Pair<String, List<String>>) { assertThat("Has accepted", richReport.accepted, inAnyOrder(accepted.map { ReportMessage(it.first, it.second) })) } fun assertHasErrors(vararg errors: List<String>) { assertHasErrors(*errors.toList().flatten().toTypedArray()) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess/gl/stopwords.txt
nos nosa nosas noso nosos nós nun nunha nuns nunhas o os ou ó ós para pero pode pois pola polas polo polos por que se senón ser seu seus sexa sido sobre súa súas tamén tan te ten teñen teño ter teu teus ti tido tiña tiven túa túas un unha
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 19 06:31:02 GMT 2018 - 932 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java
events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null)); events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null)); String details = testableJob.testFormatDetails(events); int posFirst = details.indexOf("first"); int posSecond = details.indexOf("second"); int posThird = details.indexOf("third");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
/** List of JVM options to apply when executing the job */ protected List<String> jvmOptions = new ArrayList<>(); /** Lasta environment configuration */ protected String lastaEnv; /** Timeout in seconds for job execution (-1 means no timeout) */ protected int timeout = -1; // sec /** Flag indicating whether the process has timed out */ protected boolean processTimeout = false; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0)