- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 279 for processes (0.04 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
/** * RankFusionProcessor manages multiple search engines and combines their results using rank fusion algorithms. * This processor supports searching with multiple searchers concurrently and merging their results based on * ranking scores to provide more comprehensive and accurate search results. * * The processor maintains a pool of searchers and an executor service for concurrent operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertTrue(result.isPresent()); // Test that we can chain operations String processed = result.map(s -> s.toLowerCase()).orElse("default"); assertEquals("hello world", processed); // Test with null value String nullValue = null; OptionalEntity<String> emptyResult = OptionalUtil.ofNullable(nullValue);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
* @param dataMap the document data to be indexed as key-value pairs */ void store(DataStoreParams paramMap, Map<String, Object> dataMap); /** * Returns the total number of documents processed by this callback. * * @return the document count */ long getDocumentSize(); /** * Returns the total execution time for index update operations. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt
} readControlFrame() } } /** * Reads a message body into across one or more frames. Control frames that occur between * fragments will be processed. If the message payload is masked this will unmask as it's being * processed. */ @Throws(IOException::class) private fun readMessage() { while (true) { if (closed) throw IOException("closed") if (frameLength > 0L) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 22:04:11 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermRangeQueryCommandTest.java
QueryBuilder builder = queryCommand.convertTermRangeQuery(context, query, 1.0f); assertNotNull(builder); assertTrue(builder instanceof RangeQueryBuilder); // Query was processed successfully RangeQueryBuilder rqb = (RangeQueryBuilder) builder; assertEquals("title", rqb.fieldName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComWriteResponseTest.java
buf[0] = 0x00; buf[1] = 0x10; // count = 4096 in little-endian (0x1000) int returned = resp.readParameterWordsWireFormat(buf, 0); assertEquals(8, returned, "Method should return 8 bytes processed"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
* Represents an API response for bulk operations, containing a list of processed items. */ public static class ApiBulkResponse extends ApiResponse { /** * Constructs an empty ApiBulkResponse. */ public ApiBulkResponse() { // NOP } /** * The list of items processed in the bulk operation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* * @param index the name of the index to scroll through * @param callback the function to apply to each search hit, returning true to continue or false to stop * @return the number of documents processed */ public static long scroll(final String index, final Function<SearchHit, Boolean> callback) { final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
stackTraceCount.incrementAndGet(); } }; ThreadDumpUtil.processThreadDump(countingConsumer); // Verify that multiple threads were processed assertTrue("Should process at least one thread", threadCount.get() >= 1); assertTrue("Should have stack trace elements", stackTraceCount.get() > 0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0)