- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 394 for processes (0.34 sec)
-
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
try { // Start multiple processes processHelper.startProcess(sessionId1, cmdList, pbCall); processHelper.startProcess(sessionId2, cmdList, pbCall); assertTrue(processHelper.isProcessRunning()); // Wait a bit for the processes to start Thread.sleep(50); // Destroy all processes processHelper.destroy();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @param cmdList list of command and arguments to execute * @param pbCall callback to configure the ProcessBuilder * @param bufferSize size of the buffer for process output * @param outputCallback callback to handle process output lines * @return JobProcess representing the started process * @throws JobProcessingException if the process cannot be started */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
} /** * Processes a document map for datastore operations. * Default implementation delegates to the basic process method. * * @param target the document data to process * @param params the data store parameters * @return the processed document data */ public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
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/thumbnail/impl/HtmlTagBasedGenerator.java
* referenced in HTML documents. This generator extracts images from HTML content * and processes them to create thumbnail images based on configured dimensions * and format settings. * * <p>The generator validates image MIME types, processes image data through * ImageIO operations, and applies scaling and cropping to generate thumbnails * that meet the specified size requirements.</p> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
return url; } /** * Extracts and processes the site path from a URL with proper encoding handling. * Removes protocol, query parameters, and applies URL decoding based on encoding settings. * * @param u the URL string to process * @param encoding the character encoding to use for URL decoding * @return the processed site path, abbreviated if necessary */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
} catch (JobProcessingException e) { assertTrue(e.getMessage().contains("10 crawler processes are running")); assertTrue(e.getMessage().contains("Max processes are 5")); } } // Test execute method with no max process limit public void test_execute_noMaxProcessLimit() { // Setup test crawlJob = new CrawlJob() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
* @param resultData the result data to be processed * @return the access result containing the processed data */ @Override protected AccessResult<?> createAccessResult(final ResponseData responseData, final ResultData resultData) { return super.createAccessResult(responseData, ingest(responseData, resultData)); } /** * Processes the result data through all available ingesters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/UpdateLabelJob.java
/** * Job class for updating label information in the search index. * This job processes documents and updates their label fields based on URL pattern matching. */ public class UpdateLabelJob { private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class); /** * Query builder for filtering documents to be processed. */ protected QueryBuilder queryBuilder = null; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to process a ping request.", e); } writeJsonResponse(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); } } /** * Processes a search request. * @param request The HTTP request. * @param response The HTTP response.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
import org.opensearch.search.aggregations.bucket.terms.Terms; import com.google.common.io.BaseEncoding; /** * Response object for faceted search results containing query counts and field facets. * This class processes OpenSearch aggregations to provide structured facet information * for search result filtering and navigation. */ public class FacetResponse { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0)