- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 47 for largeop (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
String json2 = result2.toString().replaceAll("[\\s\\n]", ""); assertEquals(json1, json2); } @Test public void test_execute_withVeryLargeBoost() { // Test execute method with very large boost value QueryContext context = new QueryContext("*:*", false); MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = Float.MAX_VALUE;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
return getDocumentListByQuery(searchEngineClient, queryBuilder, fields); } /** * Retrieves a list of documents that match the specified query. * This method handles large result sets by using scroll search when necessary * and enforces maximum document size limits. * * @param searchEngineClient the search engine client to use for retrieval
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
@Test public void test_constructorWithThrowableCause_OutOfMemoryError() { // Test that constructor accepts Error as cause (verifies Throwable parameter change) String url = "http://example.com/large-dataset"; String message = "Crawling failed due to memory exhaustion"; OutOfMemoryError error = new OutOfMemoryError("Heap space exhausted");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java
createFacetQueryView("timestamp", "1month", "timestamp:[now-1M TO *]", "1year", "timestamp:[now-1y TO *]"), createFacetQueryView("size", "small", "content_length:[0 TO 10000]", "large", "content_length:[10000 TO *]")); final MockHttpServletRequest request = new MockHttpServletRequest(); request.setParameterValues("ex_q",
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 14 01:39:16 GMT 2026 - 35K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.Constants; import org.codelibs.fess.util.ComponentUtil; /** * Manager class for coordinating LLM (Large Language Model) client operations. * * This class serves as the central coordinator for LLM operations in Fess. * It manages registered LLM clients and provides access to the configured
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
java.lang.reflect.Modifier.isStatic(method.getModifiers())); } } } @Test public void test_parse_large_input() { // Test with large input to ensure performance StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { if (i > 0) sb.append(",");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertTrue(toStringResult.contains("partialResults=false")); } @Test public void test_calculatePageInfo_extremeValues() { // Test with very large record count QueryResponseList qrList = new QueryResponseList(null, 0, 100, 0) { @Override public int size() { return 100; } };
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} /** * Exports all crawling information parameters to CSV format. * The CSV output includes: SessionId, SessionCreatedTime, Key, Value, CreatedTime. * Uses cursor-based selection to handle large datasets efficiently. * * @param writer the Writer to output CSV data to */ public void exportCsv(final Writer writer) { final CsvConfig cfg = new CsvConfig(',', '"', '"');Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator.setCommandTimeout(0L); assertTrue(true); // Test negative timeout generator.setCommandTimeout(-1L); assertTrue(true); // Test very large timeout generator.setCommandTimeout(Long.MAX_VALUE); assertTrue(true); // Test destroy timeout generator.setCommandDestroyTimeout(0L); assertTrue(true);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0)