Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for requerits (0.17 seconds)

  1. 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 prefix
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:40 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/filter/LoadControlFilter.java

    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Filter for CPU load-based request control.
     * Returns HTTP 429 (Too Many Requests) when CPU usage exceeds configurable thresholds.
     * Web and API requests have independent threshold settings.
     */
    public class LoadControlFilter implements Filter {
    
        private static final Logger logger = LogManager.getLogger(LoadControlFilter.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/chat/ChatForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.chat;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for chat requests.
     *
     * @author FessProject
     */
    public class ChatForm {
    
        /**
         * Default constructor.
         */
        public ChatForm() {
            // Default constructor
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/error/ErrorBusyAction.java

    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    
    /**
     * Action class for handling HTTP 429 Too Many Requests error pages.
     * This action displays error pages when the server is under high load.
     */
    public class ErrorBusyAction extends FessSearchAction {
    
        /**
         * Default constructor for ErrorBusyAction.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java

    /**
     * Factory class for managing and retrieving web API managers.
     * This factory maintains a collection of web API managers and provides
     * functionality to find the appropriate manager for incoming requests.
     */
    public class WebApiManagerFactory {
    
        private static final Logger logger = LogManager.getLogger(WebApiManagerFactory.class);
    
        /**
         * Default constructor.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. README.md

    We welcome pull requests for your language.
    
    ### Translations
    
    - [日本語 (Japanese)](docs/ja/README.md)
    - [简体中文 (Simplified Chinese)](docs/zh-CN/README.md)
    - [Español (Spanish)](docs/es/README.md)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 14 03:19:23 GMT 2026
    - 7.8K bytes
    - Click Count (2)
  8. 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)
  9. 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)
  10. 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)
Back to Top