Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 321 for Reload (0.04 sec)

  1. src/main/resources/fess_label_pt_BR.properties

    labels.key_match_title_details=Correspondência de chave
    labels.design_configuration=Design da página
    labels.design_title_file_upload=Arquivo para upload
    labels.design_title_file=Gerenciador de arquivos
    labels.design_file=Fazer upload de arquivo
    labels.design_file_name=Nome do arquivo (opcional)
    labels.design_button_upload=Fazer upload
    labels.design_file_title_edit=Visualizar arquivo da página
    labels.design_edit_button=Editar
    labels.design_download_button=Baixar
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

                });
            });
        }
    
        /**
         * Upload the protected words.
         * @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
    - 20.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

         * Uploads Kuromoji 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/kuromoji/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
            form.dictId = dictId;
            validateApi(form, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

         * Uploads stopwords 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/stopwords/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
            form.dictId = dictId;
            validateApi(form, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

        // PUT /api/admin/storage/upload/{pathId}/
        /**
         * Uploads a file to storage.
         * @param form The form containing the file to upload and the target path.
         * @return A JSON response indicating the success or failure of the operation.
         */
        @Execute
        public JsonResponse<ApiResult> put$upload(final UploadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

        }
    
        // PUT /api/admin/badword/upload
        /**
         * Uploads bad words from a CSV file.
         *
         * @param body the upload form containing the CSV file
         * @return JSON response with result status
         */
        @Execute
        public JsonResponse<ApiResult> put$upload(final UploadForm body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

        }
    
        /**
         * Upload character mapping file for the specified dictionary.
         *
         * @param dictId identifier of the dictionary to upload mapping for
         * @param form upload form containing the file and metadata
         * @return JSON response indicating the API result status
         */
        // PUT /api/admin/dict/mapping/upload/{dictId}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        //                                                Upload
        //                                               -------
        /**
         * Display the upload page for stemmer override dictionary file.
         * Shows the current file path and provides upload interface.
         *
         * @param dictId The dictionary ID to upload to
         * @return HTML response for the upload page
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - Service load balancers no longer exclude nodes marked unschedulable from the candidate nodes. The service load balancer exclusion label should be used instead.
      
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top