Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 159 for Processing (0.05 sec)

  1. src/main/java/org/codelibs/core/io/Traverser.java

         * </p>
         *
         * @param handler the handler to process resources
         */
        void forEach(ResourceHandler handler);
    
        /**
         * Performs post-processing of resources.
         */
        void close();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        /** List of boost functions to be applied to search queries for custom scoring */
        protected List<FilterFunctionBuilder> boostFunctionList = new ArrayList<>();
    
        /** List of query rescorers for post-processing search results */
        protected List<QueryRescorer> queryRescorerList = new ArrayList<>();
    
        /**
         * Builds a complete QueryContext for search operations, applying all necessary filters,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/cors/CorsHandler.java

    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    
    /**
     * Abstract base class for handling CORS (Cross-Origin Resource Sharing) requests.
     * Provides common CORS header constants and defines the processing interface.
     */
    public abstract class CorsHandler {
    
        /**
         * Creates a new instance of CorsHandler.
         */
        public CorsHandler() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
        }
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The regular canonical hostname that should be used */
        @Required
        @Size(max = 1000)
        public String regularName;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

        @Required
        @Size(max = 1000)
        public String regex;
    
        /**
         * The replacement pattern for matched paths.
         */
        @Size(max = 1000)
        public String replacement;
    
        /**
         * The processing type for path mapping.
         */
        @Required
        public String processType;
    
        /**
         * The sort order for this path mapping (0-2147483647).
         */
        @Required
        @Min(value = 0)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        }
    
        // Test appendException method with IOException during processing
        public void test_appendException_ioExceptionDuringProcessing() {
            StringBuilder buf = new StringBuilder();
            // Create an exception that might cause issues during processing
            Exception exception = new Exception() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

         * @param user The user to delete.
         */
        public void delete(final User user) {
            chains().of(stream -> stream.forEach(c -> c.delete(user)));
        }
    
        /**
         * Loads user information by processing through all authentication chains.
         * @param user The user template containing search criteria.
         * @return The loaded and enriched user information.
         */
        public User load(final User user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

        public CreateForm() {
            // Default constructor
        }
    
        /** The label type IDs associated with this elevate word entry */
        public String[] labelTypeIds;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The word that should trigger document elevation in search results */
        @Required
        public String suggestWord;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * Exception thrown during SSO (Single Sign-On) processing with message code support.
     *
     * This exception is used to indicate errors that occur during SSO authentication
     * and authorization processes. It carries both a message code for internationalization
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    crawler.document.file.default.lang=
    # Patterns to include for file index processing.
    crawler.document.file.default.include.index.patterns=
    # Patterns to exclude for file index processing.
    crawler.document.file.default.exclude.index.patterns=
    # Patterns to include for file search processing.
    crawler.document.file.default.include.search.patterns=
    # Patterns to exclude for file search processing.
    crawler.document.file.default.exclude.search.patterns=
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top