Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 185 for download (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java

            return asJson(new ApiResult.ApiLogFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Downloads a specific log file by ID.
         *
         * @param id the base64-encoded filename of the log file to download
         * @return stream response containing the log file content
         */
        // GET /api/admin/log/file/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        }
    
        /**
         * Downloads stemmer override 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/stemmerOverride/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.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.synonym;
    
    import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm;
    
    /**
     * Download body for synonym dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading synonym 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        }
    
        // -----------------------------------------------------
        //                                              Download
        //                                               -------
        /**
         * Shows the download page for exporting elevate words.
         *
         * @return HTML response for the download page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse downloadpage() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords_upload.jsp

                                            <la:link href="../downloadpage/${f:u(dictId)}"
                                                     styleClass="btn btn-primary btn-xs">
                                                <em class="fa fa-download">
                                                <la:message key="labels.dict_protwords_link_download"/>
                                            </la:link>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_upload.jsp

                                            <la:link href="../downloadpage/${f:u(dictId)}"
                                                     styleClass="btn btn-primary btn-xs">
                                                <em class="fa fa-download">
                                                <la:message key="labels.dict_synonym_link_download"/>
                                            </la:link>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. okhttp-logging-interceptor/README.md

    a non-production environment.
    
    You can redact headers that may contain sensitive information by calling `redactHeader()`.
    ```java
    logging.redactHeader("Authorization");
    logging.redactHeader("Cookie");
    ```
    
    Download
    --------
    
    ```kotlin
    implementation("com.squareup.okhttp3:logging-interceptor:5.1.0")
    ```
    
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_edit.jsp

                                            <la:link href="../downloadpage/${f:u(dictId)}"
                                                     styleClass="btn btn-primary btn-xs">
                                                <em class="fa fa-download">
                                                <la:message key="labels.dict_stopwords_link_download"/>
                                            </la:link>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp

                                            <la:link href="../downloadpage"
                                                     styleClass="btn btn-primary btn-xs">
                                                <em class="fa fa-download">
                                                <la:message key="labels.elevate_word_link_download"/>
                                            </la:link>
                                            <la:link href="../uploadpage"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  10. okhttp-java-net-cookiejar/README.md

    OkHttp java.net.CookieHandler
    =============================
    
    This module integrates OkHttp with `CookieHandler` from `java.net`.
    This used to be part of `okhttp-urlconnection`
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-java-net-cookiehandler:5.1.0")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 284 bytes
    - Viewed (0)
Back to top