Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for aquests (0.04 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/resources/fess_message_it.properties

    errors.design_file_name_is_invalid = Il nome del file non è valido.
    errors.design_file_is_unsupported_type = Questo tipo di file non è supportato.
    errors.failed_to_create_crawling_config_at_wizard = Impossibile creare la configurazione di scansione nella procedura guidata.
    errors.design_editor_disabled = Questa funzione è disabilitata.
    errors.not_found_on_file_system = Non trovato. Causa: {0}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  3. src/main/resources/fess_label_it.properties

    labels.search_list_button_delete=Elimina
    labels.search_list_delete_confirmation=Sei sicuro di voler eliminare?
    labels.search_list_button_delete_all=Elimina tutto con questa query
    labels.search_list_delete_all_confirmation=Sei sicuro di voler eliminare tutto con questa query?
    labels.search_list_button_cancel=Annulla
    labels.failure_url_configuration=URL di errore
    labels.failure_url_search_url=URL
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'rate.limit.requests.per.window'. <br>
         * The value is, e.g. 100 <br>
         * comment: Maximum number of requests allowed per window.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitRequestsPerWindow();
    
        /**
         * Get the value for the key 'rate.limit.requests.per.window' as {@link Integer}. <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  7. 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)
Back to Top