- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 165 for processed_ (0.06 sec)
-
src/main/java/org/codelibs/fess/job/CrawlJob.java
throw new JobProcessingException( runningJobCount + " crawler processes are running. Max processes are " + maxCrawlerProcesses + "."); } } final StringBuilder resultBuf = new StringBuilder(100); final boolean runAll = webConfigIds == null && fileConfigIds == null && dataConfigIds == null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManager.java
* @param request The HTTP servlet request. * @return True if the request matches, false otherwise. */ boolean matches(HttpServletRequest request); /** * Processes the request through this API manager. * @param request The HTTP servlet request. * @param response The HTTP servlet response. * @param chain The filter chain.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
import org.apache.logging.log4j.Logger; import org.codelibs.fess.helper.SearchLogHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for aggregating and storing search logs. * This job processes search logs and stores them in the search log repository. */ public class AggregateLogJob { private static final Logger logger = LogManager.getLogger(AggregateLogJob.class); /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/PushObserver.kt
* limitations under the License. */ package okhttp3.internal.http2 import java.io.IOException import okhttp3.Protocol import okio.BufferedSource /** * [HTTP/2][Protocol.HTTP_2] only. Processes server-initiated HTTP requests on the client. * Implementations must quickly dispatch callbacks to avoid creating a bottleneck. * * While [onReset] may occur at any time, the following callbacks are expected in order,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BoostQueryCommand.java
import org.codelibs.fess.exception.InvalidQueryException; import org.lastaflute.core.message.UserMessages; import org.opensearch.index.query.QueryBuilder; /** * Query command implementation for handling Boost queries. * Processes Lucene BoostQuery objects and applies boost factors. */ public class BoostQueryCommand extends QueryCommand { /** * Default constructor for BoostQueryCommand. */ public BoostQueryCommand() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K 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/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/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/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) -
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)