Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 177 for Download (0.03 sec)

  1. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_download.jsp

                                <div class="card-footer">
                                    <button type="submit" class="btn btn-primary" name="download"
                                            value="<la:message key="labels.elevate_word_button_download" />">
                                        <em class="fa fa-download">
                                        <la:message key="labels.elevate_word_button_download"/>
                                    </button>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for Kuromoji dictionary.
     * This form is used for downloading Kuromoji dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the Kuromoji 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)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

        }
    
        /**
         * Downloads stopwords dictionary file.
         *
         * @param dictId the dictionary ID
         * @param body the download request body
         * @return stream response containing the dictionary file data
         */
        // GET /api/admin/dict/stopwords/download/{dictId}
        @Execute
        public StreamResponse get$download(final String dictId, final DownloadBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. okhttp-urlconnection/README.md

    OkHttp URLConnection
    ====================
    
    This module integrates OkHttp with `Authenticator` and `CookieHandler` from `java.net`.
    
    This module is obsolete; prefer `okhttp-java-net-cookiejar`.
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-urlconnection:5.1.0")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 292 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                });
            });
        }
    
        /**
         * Download a char mapping file.
         * @param form The download form.
         * @return The action response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_message.properties

    errors.failed_to_download_synonym_file = Failed to download a synonym file.
    errors.failed_to_upload_synonym_file = Failed to upload a synonym file.
    errors.failed_to_download_stemmeroverride_file = Failed to download a stemmer override file.
    errors.failed_to_upload_stemmeroverride_file = Failed to upload a stemmer override file.
    errors.failed_to_download_kuromoji_file = Failed to download a Kuromoji file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    errors.failed_to_download_synonym_file = Failed to download a synonym file.
    errors.failed_to_upload_synonym_file = Failed to upload a synonym file.
    errors.failed_to_download_stemmeroverride_file = Failed to download a stemmer override file.
    errors.failed_to_upload_stemmeroverride_file = Failed to upload a stemmer override file.
    errors.failed_to_download_kuromoji_file = Failed to download a Kuromoji file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            }
    
            return null;
        }
    
        // GET /api/admin/storage/download/{id}/
        /**
         * Downloads a file from storage.
         * @param id The ID of the file to download.
         * @return A StreamResponse containing the file content.
         */
        @Execute
        public StreamResponse get$download(final String id) {
            final PathInfo pi = convertToItem(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/DownloadBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.mapping;
    
    import org.codelibs.fess.app.web.admin.dict.mapping.DownloadForm;
    
    /**
     * Download body for mapping dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading mapping dictionaries via REST API.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. gradle/wrapper/gradle-wrapper.jar

    public final boolean accept(java.io.File, String); } org/gradle/wrapper/Download$DefaultDownloadProgr.class package org.gradle.wrapper; public final class Download$DefaultDownloadProgr { public final Logger logger; public final Download$DefaultDownloadProgr delegate; public int previousDownloadPerc; public void Download$DefaultDownloadProgr(Logger); public final void downloadStatusChange(long, long); } org/gradle/wrapper/Download$ProxyAuthenticator.class package org.gradle.wrapper; public final class...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
Back to top