- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 86 for 180000 (0.03 seconds)
-
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java
processor.setSearcher(new TestSearcher(100)); processor.init(); final List<Map<String, Object>> results = processor.search("*", new TestSearchRequestParams(0, 10000, 0), OptionalThing.empty()); assertNotNull(results); // Should return only available documents assertEquals(100, results.size()); } } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
} } // Test getTimeAdjustTimeMillisAsLong values @Test public void test_getTimeAdjustTimeMillisAsLong_values() { Long[] testValues = { 0L, 1L, -1L, 1000L, -1000L, 60000L, -60000L, 3600000L, -3600000L, Long.MAX_VALUE, Long.MIN_VALUE }; for (Long value : testValues) { FessConfig testConfig = new FessConfig.SimpleImpl() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Default interval time in milliseconds for file system crawling. */ public static final int DEFAULT_INTERVAL_TIME_FOR_FS = 1000; /** Default interval time in milliseconds for web crawling. */ public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000; /** Default number of threads for file system crawling. */ public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 35.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/LoadControlFilterTest.java
// ================= @Test public void test_doFilter_webDisabled() throws IOException, ServletException { setConfig(100, 100); testableFilter.setCpuPercent((short) 90); mockRequest.setRequestURI("/search"); testableFilter.doFilter(mockRequest, mockResponse, mockFilterChain);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
for (int i = 0; i < 10000; i++) { if (i % 1000 == 0) { logger.info("count:" + i + ", " + MemoryUtil.getMemoryUsageLog()); } ResponseData responseData = new ResponseData(); responseData.setCharSet("UTF-8"); responseData.setContentLength(data.length()); responseData.setExecutionTime(1000L);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
String query = "*"; int allRecordCount = 1000; int pageSize = 100; int offset = 0; try (RankFusionProcessor rankFusionProcessor = new RankFusionProcessor()) { rankFusionProcessor.setSearcher(new TestMainSearcher(allRecordCount)); rankFusionProcessor.register(new TestSubSearcher(10, 0, 0)); rankFusionProcessor.init();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/webapp/css/chat.css
} .thinking-dots span:nth-child(1) { animation-delay: -0.32s; } .thinking-dots span:nth-child(2) { animation-delay: -0.16s; } @keyframes thinking-bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } } /* ============================================ Error Banner (ADS Flag style) ============================================ */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
final long current = 1000 * systemHelper.getCurrentTimeAsLocalDateTime().atZone(ZoneId.systemDefault()).toInstant().getEpochSecond(); final long now = System.currentTimeMillis(); assertTrue(now + ">=" + current + " : " + (now - current), now >= current); assertTrue(now - 1000 + "<" + current + " : " + (current - now + 1000), now - 1000 < current); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return value.longValue(); } value = getAsInteger("elasticsearch.heartbeat_interval"); if (value != null) { return value.longValue(); } return 10000L; } // =================================================================================== // Rate Limit
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator1.setCommandList(Collections.singletonList("echo test1")); generator2.setCommandList(Collections.singletonList("echo test2")); generator1.setCommandTimeout(1000L); generator2.setCommandTimeout(2000L); assertTrue("Multiple generators should work independently", true); } // Test command string construction edge cases @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0)