Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 311 for 1500 (0.03 sec)

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

        /** The name of the file configuration (required, maximum 200 characters). */
        @Required
        @Size(max = 200)
        public String name;
    
        /** The description of the file configuration (maximum 1000 characters). */
        @Size(max = 1000)
        public String description;
    
        /** The file paths to crawl (required, must be valid file URIs). */
        @Required
        @UriType(protocolType = ProtocolType.FILE)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

        public Integer crudMode;
    
        /** The regular canonical hostname that should be used */
        @Required
        @Size(max = 1000)
        public String regularName;
    
        /** The duplicate hostname that should be redirected to the regular name */
        @Required
        @Size(max = 1000)
        public String duplicateHostName;
    
        /** The sort order for displaying this duplicate host entry */
        @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)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

        public Integer crudMode;
    
        /** Input terms (comma-separated) that will be mapped to the output term */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** Output term that input terms will be mapped to */
        @Size(min = 1, max = 1000)
        public String output;
    
        /**
         * Initializes the form with default values for creating a new mapping dictionary entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input terms that should be considered synonymous */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** The output synonyms that should be matched for the input terms */
        @Required
        @Size(max = 1000)
        public String outputs;
    
        /**
         * Initializes the form with default values for creating a new synonym entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

        @Size(max = 10000)
        public String queries;
    
        /**
         * The virtual host for which these related queries apply.
         */
        @Size(max = 1000)
        public String virtualHost;
    
        /**
         * The username who created these related queries.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when these related queries were created.
         */
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java

         * This is a required field for identifying which data config to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this data configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this data configuration was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java

         * This is a required field for identifying which group to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this group.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this group was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

         * This is a required field for identifying which path map to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this path mapping configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this related content configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/convert/ShortConversionUtilTest.java

        /**
         * @throws Exception
         */
        public void testToShort() throws Exception {
            assertEquals(Short.valueOf("1000"), ShortConversionUtil.toShort("1,000"));
        }
    
        /**
         * @throws Exception
         */
        public void testToPrimitiveShort() throws Exception {
            assertEquals(1000, ShortConversionUtil.toPrimitiveShort("1,000"));
        }
    
        /**
         * @throws Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top