Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 177 for Download (0.29 sec)

  1. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_download.jsp

                                <div class="card-footer">
                                    <button type="submit" class="btn btn-primary" name="download"
                                            value="<la:message key="labels.dict_mapping_button_download" />">
                                        <em class="fa fa-download">
                                        <la:message key="labels.dict_mapping_button_download"/>
                                    </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_download.jsp

                                <div class="card-footer">
                                    <button type="submit" class="btn btn-primary" name="download"
                                            value="<la:message key="labels.dict_synonym_button_download" />">
                                        <em class="fa fa-download">
                                        <la:message key="labels.dict_synonym_button_download"/>
                                    </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for protected words dictionary.
     * This form is used for downloading protected words dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the protected words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_label.properties

    labels.dict_synonym_link_edit=Edit
    labels.dict_synonym_link_delete=Delete
    labels.dict_synonym_link_details=Details
    labels.dict_synonym_link_download=Download
    labels.dict_synonym_link_upload=Upload
    labels.dict_synonym_source=Source
    labels.dict_synonym_target=Target
    labels.dict_synonym_button_download=Download
    labels.dict_synonym_button_upload=Upload
    labels.dict_synonym_file=Synonym File
    labels.dict_stemmeroverride_configuration=Stemmer Override List
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords_download.jsp

                                <div class="card-footer">
                                    <button type="submit" class="btn btn-primary" name="download"
                                            value="<la:message key="labels.dict_protwords_button_download" />">
                                        <em class="fa fa-download">
                                        <la:message key="labels.dict_protwords_button_download"/>
                                    </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_download.jsp

                                <div class="card-footer">
                                    <button type="submit" class="btn btn-primary" name="download"
                                            value="<la:message key="labels.dict_stopwords_button_download" />">
                                        <em class="fa fa-download">
                                        <la:message key="labels.dict_stopwords_button_download"/>
                                    </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for mapping dictionary.
     * This form is used for downloading mapping dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the mapping dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for synonym dictionary.
     * This form is used for downloading synonym dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the synonym dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. okhttp-sse/README.md

    OkHttp Server-Sent Events
    =========================
    
    Experimental support for server-sent events.
    API is not considered stable and may change at any time.
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-sse:5.1.0")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 244 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                });
            });
        }
    
        /**
         * Downloads the synonym dictionary file.
         *
         * @param form the download form containing download parameters
         * @return ActionResponse with the file download stream
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
Back to top