- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 258 for processes (0.68 sec)
-
docs/en/docs/deployment/concepts.md
If you check out the "task manager" or "system monitor" (or similar tools) in your operating system, you will be able to see many of those processes running. And, for example, you will probably see that there are multiple processes running the same browser program (Firefox, Chrome, Edge, etc). They normally run one process per tab, plus some other extra processes.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 18.6K bytes - Viewed (0) -
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) -
docs/en/docs/deployment/docker.md
A container is running as long as the **main process** (command or program) is running. A container normally has a **single process**, but it's also possible to start subprocesses from the main process, and that way you will have **multiple processes** in the same container. But it's not possible to have a running container without **at least one running process**. If the main process stops, the container stops.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1) -
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) -
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/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/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)