- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for requerits (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
} } response.sendError(statusCode, message); } } /** * Processes API requests to the search engine. * Handles both regular API calls and plugin requests. * * @param request the HTTP servlet request * @param response the HTTP servlet response * @param path the request path after removing the prefixCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:40 GMT 2026 - 13.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
/** * Gets the maximum number of concurrent requests to the LLM provider. * Default is 5. Override or configure via rag.llm.{provider}.max.concurrent.requests. * * @return the maximum concurrent requests */ protected int getMaxConcurrentRequests() { return Integer.parseInt(ComponentUtil.getFessConfig().getOrDefault(getConfigPrefix() + ".max.concurrent.requests", "5")); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java
requestBody.put("depth", 0); requestBody.put("max_access_count", 1L); // Already minimal requestBody.put("num_of_thread", 1); requestBody.put("interval_time", 0); // No delay between requests requestBody.put("boost", 100); requestBody.put("available", true); requestBody.put("sort_order", 0); createWebConfig(requestBody); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* This class provides utilities for processing document content, titles, and digests, * handling text normalization, content extraction, and similar document hash encoding/decoding. * It also manages document processing requests and integrates with the crawler system. * */ public class DocumentHelper { private static final Logger logger = LogManager.getLogger(DocumentHelper.class);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:27:04 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/resources/fess_config.properties
# ============== # Whether rate limiting is enabled. rate.limit.enabled=false # Maximum number of requests allowed per window. rate.limit.requests.per.window=100 # Window size in milliseconds. rate.limit.window.ms=60000 # Duration in milliseconds to block IP when limit exceeded. rate.limit.block.duration.ms=300000
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} return false; } /** * Calculates the requests per second setting for reindex operations. * * @param fessConfig the Fess configuration * @return the requests per second value, or null for no limit */ protected String getReindexRequestsPerSecound(final FessConfig fessConfig) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1)