- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 181 for processed_ (0.12 sec)
-
okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt
*/ @JvmStatic @JvmName("enqueue") fun Call.enqueueEventSource(listener: EventSourceListener): EventSource = RealEventSource(this, listener).also(this::enqueue) /** * Processes the existing response with [listener]. */ @JvmStatic @JvmName("process") fun Response.processEventSource(listener: EventSourceListener) = RealEventSource(this, listener).processResponse(this) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 2.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* specified access policy. * * @param capacity the capacity of this queue * @param fair if {@code true} then queue accesses for threads blocked on insertion or removal, * are processed in FIFO order; if {@code false} the access order is unspecified. * @throws IllegalArgumentException if {@code capacity} is less than 1 */ public MonitorBasedArrayBlockingQueue(int capacity, boolean fair) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Helper class for managing data crawling operations in Fess. * This class coordinates the execution of data store crawling processes, * managing multiple concurrent crawling threads and handling the indexing * of crawled documents into the search engine. * * <p>The DataIndexHelper supports:</p> * <ul>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java
import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.RangeQueryBuilder; /** * Command class for handling term range query execution and conversion. * This class processes Lucene TermRangeQuery objects and converts them to OpenSearch QueryBuilder instances. */ public class TermRangeQueryCommand extends QueryCommand {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
try { jobHelper.setJobRuntime(runtime); process(runtime); } finally { jobHelper.setJobRuntime(null); } } /** * Processes the job. * @param runtime The job runtime. */ protected void process(final LaJobRuntime runtime) { if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} catch (final Exception e) { logger.warn("Failed to update thumbnail field at {}", thumbnailId, e); } } /** * Processes thumbnail generation with a consumer function. * @param id The document ID. * @param consumer The consumer function to process thumbnail and config ID. * @return True if processing was successful, false otherwise.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
br = new BufferedReader(new InputStreamReader(is, charset)); } /** * Runs the thread to continuously read lines from the input stream. * Each line is processed by the output callback (if provided) and added to the buffer. * The buffer is maintained as a circular buffer with the specified size. */ @Override public void run() { boolean running = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
* The stream is automatically closed after the function is applied. * * @param <R> The type of the result returned by the function. * @param stream A function that processes the stream and produces a result. * @return The result produced by applying the function to the stream. */ public <R> R get(final Function<Stream<T>, R> stream) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java
thread.start(); assertTrue("Should process all lines within timeout", latch.await(3, TimeUnit.SECONDS)); thread.join(1000); assertEquals("All lines should be processed", 5000, receivedLines.size()); assertEquals("First line", "Line number 0", receivedLines.get(0)); assertEquals("Last line", "Line number 4999", receivedLines.get(4999)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
List<String> capturedOutput = new ArrayList<>(); Consumer<String> testConsumer = capturedOutput::add; ThreadDumpUtil.processThreadDump(testConsumer); // Verify that thread dump was processed assertFalse("Should capture some thread dump output", capturedOutput.isEmpty()); // Verify format - should contain "Thread:" entries
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0)