Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for Reloaded (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java

     * This form is used in the admin interface to upload elevate word configuration files.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the elevate word configurations to be uploaded.
         * This file should contain definitions for words or documents that should be elevated in search results.
         */
        @Required
        public MultipartFormFile elevateWordFile;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java

         * This ID corresponds to a specific character mapping dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the character mapping rules to be uploaded.
         * This file should contain character mapping definitions for text normalization.
         */
        @Required
        public MultipartFormFile charMappingFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java

         * This ID corresponds to a specific synonym dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the synonym mappings to be uploaded.
         * This file should contain synonym definitions in the appropriate format.
         */
        @Required
        public MultipartFormFile synonymFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java

        }
    
        /**
         * The multipart file containing the design content to upload.
         */
        public MultipartFormFile designFile;
    
        /**
         * The name of the design file being uploaded.
         */
        public String designFileName;
    
        /**
         * The target file name for the design file.
         */
        public String fileName;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java

         */
        public ItemForm() {
            // Default constructor
        }
    
        /** The name of the storage item, limited to 100 characters */
        @Size(max = 100)
        public String name;
    
        /** The file to be uploaded for the storage item */
        public MultipartFormFile uploadFile;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java

         * This ID corresponds to a specific stemmer override dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the stemmer override rules to be uploaded.
         * This file should contain mappings that override default stemming for specific words.
         */
        @Required
        public MultipartFormFile stemmerOverrideFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing bad words to be uploaded.
         * This file should contain a list of words that will be filtered from search results.
         */
        @Required
        public MultipartFormFile badWordFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheLoader.java

      /** Constructor for use by subclasses. */
      protected CacheLoader() {}
    
      /**
       * Computes or retrieves the value corresponding to {@code key}.
       *
       * @param key the non-null key whose value should be loaded
       * @return the value associated with {@code key}; <b>must not be null</b>
       * @throws Exception if unable to load the result
       * @throws InterruptedException if this method is interrupted. {@code InterruptedException} is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java

         * This ID corresponds to a specific protected words dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the protected words to be uploaded.
         * This file should contain a list of words that should be protected from stemming.
         */
        @Required
        public MultipartFormFile protwordsFile;
    
        /**
         * Default constructor for UploadForm.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Uploaded a synonym file. */
        public static final String SUCCESS_upload_synonym_file = "{success.upload_synonym_file}";
    
        /** The key of the message: Uploaded a protwords file. */
        public static final String SUCCESS_upload_protwords_file = "{success.upload_protwords_file}";
    
        /** The key of the message: Uploaded a stopwords file. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
Back to top