- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 62 for processAces (0.11 sec)
-
docs/en/docs/deployment/concepts.md
* Others... ## Replication - Processes and Memory { #replication-processes-and-memory } With a FastAPI application, using a server program like the `fastapi` command that runs Uvicorn, running it once in **one process** can serve multiple clients concurrently. But in many cases, you will want to run several worker processes at the same time. ### Multiple Processes - Workers { #multiple-processes-workers }
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/main/java/org/codelibs/fess/helper/ProcessHelper.java
import org.codelibs.fess.util.JobProcess; import jakarta.annotation.PreDestroy; /** * Helper class for managing system processes in Fess. * This class provides functionality to start, stop, and manage external processes * such as crawler processes, with proper resource cleanup and lifecycle management. */ public class ProcessHelper { /** Logger instance for this class */
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/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) -
docs/en/docs/deployment/docker.md
### Containers with Multiple Processes and Special Cases { #containers-with-multiple-processes-and-special-cases } Of course, there are **special cases** where you could want to have **a container** with several **Uvicorn worker processes** inside. In those cases, you can use the `--workers` command line option to set the number of workers that you want to run:
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/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/test/java/org/codelibs/fess/job/CrawlJobTest.java
fail("Should throw JobProcessingException"); } 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
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/helper/PermissionHelper.java
*/ public PermissionHelper() { // Default constructor } /** * Encodes a permission string into a search role format. * Processes user, group, and role prefixes along with allow/deny prefixes. * * @param value the permission string to encode * @return the encoded permission string, or null if the input is blank or invalid */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} if (url.equals(originalUrl)) { return getFessConfig().getCrawlerDocumentUnknownHostname(); } 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
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/helper/SearchLogHelper.java
logger.debug("Failed to access UserInfo cache.", e); } } } return OptionalEntity.empty(); } /** * Processes the search log queue. * * @param queue The search log queue. */ protected void processSearchLogQueue(final Queue<SearchLog> queue) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
docs/es/docs/deployment/concepts.md
### Múltiples Procesos - Un Ejemplo En este ejemplo, hay un **Proceso Administrador** que inicia y controla dos **Worker Processes**. Este Proceso Administrador probablemente sería el que escuche en el **puerto** en la IP. Y transmitirá toda la comunicación a los worker processes.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K bytes - Viewed (0)