- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 59 for 30000 (0.02 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
assertEquals(500, crawlerStatsHelper.maxCacheSize); } public void test_setCacheExpireAfterWrite() { crawlerStatsHelper.setCacheExpireAfterWrite(30000); assertEquals(30000, crawlerStatsHelper.cacheExpireAfterWrite); } public void test_recordWithStatsAction() { String key = "test"; crawlerStatsHelper.begin(key);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
return "60000"; } @Override public String getIndexHealthTimeout() { return "10000"; } @Override public String getIndexIndexTimeout() { return "60000"; } @Override public String getIndexIndicesTimeout() { return "60000"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
} public void test_setCrawlerWaitMillis() { IntervalControlHelper helper = new IntervalControlHelper(); // Test default wait time assertEquals(10000, helper.crawlerWaitMillis); // Test setting new wait time helper.setCrawlerWaitMillis(5000); assertEquals(5000, helper.crawlerWaitMillis); helper.setCrawlerWaitMillis(0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* This message is shown to users on the authentication page. */ @Size(max = 3000) public String notificationLogin; /** * Notification message displayed on the search top page. * This message is shown to users on the main search page. */ @Size(max = 3000) public String notificationSearchTop; /** * System log level for controlling log verbosity.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
} public void testAsMap_containsValue() { Cache<Integer, Integer> cache = CacheBuilder.newBuilder().expireAfterWrite(20000, MILLISECONDS).ticker(fakeTicker).build(); cache.put(654, 2675); fakeTicker.advance(10000, MILLISECONDS); cache.put(2456, 56); cache.put(2, 15); fakeTicker.advance(10001, MILLISECONDS); assertTrue(cache.asMap().containsValue(15));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Map<String, String> infoMap = new HashMap<>(); infoMap.put(Constants.CRAWLER_STATUS, Constants.TRUE); infoMap.put("CrawlerStartTime", "2024-01-01T10:00:00"); infoMap.put("CrawlerEndTime", "2024-01-01T11:00:00"); try { crawler.sendMail(infoMap); } catch (Exception e) { fail("Should not throw exception: " + e.getMessage()); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/OkHttpClientTest.kt
val client = clientTestRule.newClient() assertThat(client.callTimeoutMillis).isEqualTo(0) assertThat(client.connectTimeoutMillis).isEqualTo(10000) assertThat(client.readTimeoutMillis).isEqualTo(10000) assertThat(client.writeTimeoutMillis).isEqualTo(10000) assertThat(client.pingIntervalMillis).isEqualTo(0) assertThat(client.webSocketCloseTimeout).isEqualTo(60_000) } @Test fun webSocketDefaults() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 13.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
return "1048576"; // 1MB } @Override public Integer getIndexerDataMaxDocumentCacheSizeAsInteger() { return 10000; } @Override public String getIndexFieldUrl() { return "url"; } @Override public String getIndexFieldId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ResponseBodyJvmTest.kt
fun stringEmpty() { val body = body("") assertThat(body.string()).isEqualTo("") } @Test fun stringLooksLikeBomButTooShort() { val body = body("000048") assertThat(body.string()).isEqualTo("\u0000\u0000H") } @Test fun stringDefaultsToUtf8() { val body = body("68656c6c6f") assertThat(body.string()).isEqualTo("hello") } @Test fun stringExplicitCharset() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0)