- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 147 for Processing (0.07 sec)
-
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
*/ public long getDelayMillisAfterProcessing() { return delayMillisAfterProcessing; } /** * Sets the delay time in milliseconds after processing a URL. * * @param delayMillisAfterProcessing the delay time in milliseconds after processing */ public void setDelayMillisAfterProcessing(final long delayMillisAfterProcessing) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
} /** * Gets the total processing time for all documents in this list. * * @return the total processing time in milliseconds */ public long getProcessingTime() { return processingTime; } /** * Adds to the total processing time of this document list. * * @param processingTime the processing time to add in milliseconds */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
Exception cause = new RuntimeException("Image processing error"); ThumbnailGenerationException exception = new ThumbnailGenerationException(message, cause); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertEquals("Image processing error", exception.getCause().getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* This callback processes file events (create, modify, delete) and manages document indexing and deletion * operations in the search engine. It supports recursive crawling with configurable depth and access count limits. * * <p>The implementation uses an executor service for concurrent processing of file operations and maintains
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* This class provides a pipeline for processing Lucene queries by applying * a chain of filters and executing registered query commands. * * <p>The processor maintains a map of query commands indexed by query class names * and a list of filters that are applied in order during query processing.</p> */ public class QueryProcessor { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
return process(target); } /** * Basic processing method that other process methods delegate to. * Default implementation returns the target unchanged. * Subclasses should override this method to implement specific processing logic. * * @param target the document data to process * @return the processed document data */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when an error occurs during job processing. * This exception is used to indicate problems that arise during * the execution or processing of jobs in the system. */ public class JobProcessingException extends FessSystemException { private static final long serialVersionUID = 1L; /**
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/app/web/base/FessBaseAction.java
} /** * Hook method called during action execution. * This method delegates to the view helper's action hook for processing. * * @param runtime the action runtime context * @return the action response, or null to continue with normal processing */ @Override public final ActionResponse godHandMonologue(final ActionRuntime runtime) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
assertNotNull(result); assertTrue(result.contains("3 docs")); // Verify the job executes } // Test handling of processing exception public void test_execute_withProcessingException() { // Create a mock that returns 0 to simulate processing error SearchEngineClient errorClient = new SearchEngineClient() { @Override public long updateByQuery(String index,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
import java.util.Map; import org.codelibs.fess.entity.DataStoreParams; /** * Callback interface for handling index update operations during data store processing. * This interface provides methods for storing documents, tracking processing metrics, * and committing changes to the search index. */ public interface IndexUpdateCallback { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)