Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 167 for processLine (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java

         */
        public CreateForm() {
        }
    
        /** The dictionary ID to which this stopword entry belongs */
        @Required
        public String dictId;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The stopword to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String input;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java

         */
        public CreateForm() {
        }
    
        /** The dictionary ID to which this stemmer override entry belongs */
        @Required
        public String dictId;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input word that should be stemmed differently */
        @Required
        @Size(max = 1000)
        public String input;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

        /**
         * Processes thumbnail generation with a consumer function.
         * @param id The document ID.
         * @param consumer The consumer function to process thumbnail and config ID.
         * @return True if processing was successful, false otherwise.
         */
        protected boolean process(final String id, final BiPredicate<String, String> consumer) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpStatusCodes.kt

    /** `100 Continue` (HTTP/1.1 - RFC 7231)  */
    const val HTTP_CONTINUE = 100
    
    /** `101 Switching Protocols` (HTTP/1.1 - RFC 9110)  */
    const val HTTP_SWITCHING_PROTOCOLS = 101
    
    /** `102 Processing` (WebDAV - RFC 2518)  */
    const val HTTP_PROCESSING = 102
    
    /** `103 Early Hints (Early Hints - RFC 8297)` */
    const val HTTP_EARLY_HINTS = 103
    
    /** `307 Temporary Redirect` (HTTP/1.1 - RFC 7231)  */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 14:39:28 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top