Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 326 for upload (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                });
            });
        }
    
        /**
         * Upload a kuromoji dictionary file.
         * @param form The upload form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final UploadForm form) {
            validate(form, messages -> {}, () -> uploadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

                                        <la:link href="uploadpage/${f:u(dictId)}"
                                                 styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                            <em class="fa fa-upload">
                                            <la:message key="labels.dict_stemmeroverride_link_upload"/>
                                        </la:link>
                                    </div>
                                </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        }
    
        /**
         * Uploads stemmer override dictionary file.
         *
         * @param dictId the dictionary ID
         * @param form the upload form containing the dictionary file
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/stemmerOverride/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/curl/CurlTest.java

            assertNotNull(Curl.get("https://secure.example.com/path?param=value"));
            assertNotNull(Curl.post("http://api.example.com/v1/resource"));
            assertNotNull(Curl.put("ftp://files.example.com/upload"));
            assertNotNull(Curl.delete("http://localhost:8080/delete"));
            assertNotNull(Curl.head("https://cdn.example.com/assets/file.js"));
            assertNotNull(Curl.options("http://cors.example.com/api"));
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_failed_to_upload_protwords_file = "{errors.failed_to_upload_protwords_file}";
    
        /** The key of the message: Failed to download a stopwords file. */
        public static final String ERRORS_failed_to_download_stopwords_file = "{errors.failed_to_download_stopwords_file}";
    
        /** The key of the message: Failed to upload 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)
  6. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

        }
    
        /**
         * Uploads a file to the storage system.
         *
         * @param form the item form containing file and path information
         * @return HTML response redirecting to the storage list after upload
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final ItemForm form) {
            validate(form, messages -> {}, () -> asListHtml(form.path));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        }
    
        // -----------------------------------------------------
        //                                                Upload
        //                                               -------
        /**
         * Shows the upload page for importing elevate words.
         *
         * @return HTML response for the upload page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse uploadpage() {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_download.jsp

                                                     styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                                <em class="fa fa-upload">
                                                <la:message key="labels.dict_mapping_link_upload"/>
                                            </la:link>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_download.jsp

                                                     styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                                <em class="fa fa-upload">
                                                <la:message key="labels.dict_synonym_link_upload"/>
                                            </la:link>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_download.jsp

                                            <la:link href="../uploadpage"
                                                     styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                                <em class="fa fa-upload">
                                                <la:message key="labels.elevate_word_link_upload"/>
                                            </la:link>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top