Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for unloaded (0.04 sec)

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

     */
    public class UploadForm {
    
        /**
         * The storage path where the file should be uploaded.
         * If not specified, the file will be stored in the default location.
         */
        public String path;
    
        /**
         * The multipart file to be uploaded to the storage system.
         * This file will be stored in the specified path or default location.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java

     * that define search behaviors and request handling.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the search request configurations to be uploaded.
         * This file should contain search request definitions and configurations.
         */
        @Required
        public MultipartFormFile requestFile;
    
        /**
         * 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)
  3. 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)
  4. src/main/resources/fess_message_nl.properties

    errors.failed_to_upload_synonym_file = Kan synoniembestand niet uploaden.
    errors.failed_to_download_stemmeroverride_file = Kan stemmer-overschrijvingsbestand niet downloaden.
    errors.failed_to_upload_stemmeroverride_file = Kan stemmer-overschrijvingsbestand niet uploaden.
    errors.failed_to_download_kuromoji_file = Kan Kuromoji-bestand niet downloaden.
    errors.failed_to_upload_kuromoji_file = Kan Kuromoji-bestand niet uploaden.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/resources/fess_label_nl.properties

    labels.key_match_title_details=Sleutelovereenkomst
    labels.design_configuration=Paginaontwerp
    labels.design_title_file_upload=Te uploaden bestand
    labels.design_title_file=Bestandsbeheer
    labels.design_file=Bestand uploaden
    labels.design_file_name=Bestandsnaam (optioneel)
    labels.design_button_upload=Uploaden
    labels.design_file_title_edit=Paginabestand bekijken
    labels.design_edit_button=Bewerken
    labels.design_download_button=Downloaden
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
Back to top