- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 258 for processes (0.14 sec)
-
docs/en/docs/deployment/server-workers.md
``` </div> //// The only new option here is `--workers` telling Uvicorn to start 4 worker processes. You can also see that it shows the **PID** of each process, `27365` for the parent process (this is the **process manager**) and one for each worker process: `27368`, `27369`, `27370`, and `27367`. ## Deployment Concepts { #deployment-concepts }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.3K 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) -
docs/es/docs/deployment/server-workers.md
``` </div> //// La única opción nueva aquí es `--workers` indicando a Uvicorn que inicie 4 worker processes. También puedes ver que muestra el **PID** de cada proceso, `27365` para el proceso padre (este es el **gestor de procesos**) y uno para cada worker process: `27368`, `27369`, `27370`, y `27367`. ## Conceptos de Despliegue
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.9K 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) -
docs/es/docs/deployment/concepts.md
Esos worker processes serían los que ejecutan tu aplicación, realizarían los cálculos principales para recibir un **request** y devolver un **response**, y cargarían cualquier cosa que pongas en variables en RAM. <img src="/img/deployment/concepts/process-ram.drawio.svg"> Y por supuesto, la misma máquina probablemente tendría **otros procesos** ejecutándose también, aparte de tu aplicación.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K 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/core/io/ClassHandler.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io; /** * Interface for handlers that process classes. * * @author koichik */ public interface ClassHandler { /** * Processes a class. * * @param packageName the package name * @param shortClassName the simple class name */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 975 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} return roleSet; } /** * Processes the access token. * @param request The HTTP request. * @param roleSet The set of roles. * @param isApiRequest Whether the request is an API request. * @return true if the access token is processed, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
} } /** * Processes and normalizes a document title. * Applies text normalization using configured space characters and returns * a clean title suitable for indexing. * * @param responseData the response data from crawling (not currently used) * @param title the raw title text to process * @param dataMap additional data map (not currently used)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K 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)