Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 140 for downloadTo (0.06 seconds)

  1. .github/workflows/maven.yml

            ref: ${{ env.PARENT_BRANCH }}
            path: fess-parent
        - name: Install fess-parent
          run: |
            cd fess-parent
            mvn install -Dgpg.skip=true
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml -Dparallel=classes -DthreadCount=4 -DforkCount=1C -DreuseForks=true
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_edit.jsp

                                            <la:link href="../downloadpage/${f:u(dictId)}"
                                                     styleClass="btn btn-primary btn-xs">
                                                <i class="fa fa-download" aria-hidden="true"></i>
                                                <la:message key="labels.dict_stemmeroverride_link_download"/>
                                            </la:link>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

        "-PtestJavaVendor=$testJavaVendor",
        "-PautoDownloadAndroidStudio=true",
        "-PrunAndroidStudioInHeadlessMode=true",
        "-Dorg.gradle.java.installations.auto-download=false",
        "-Porg.gradle.java.installations.auto-download=false",
    ) + os.javaInstallationLocations(arch) +
        listOf(
            "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/admin/StorageTests.java

        }
    
        @Test
        void testDownload_notFound() {
            // Try to download a non-existent file
            Response response =
                    given().header("Authorization", getTestToken()).when().get(getApiPath() + "/download/nonexistent_file_12345.txt");
    
            int statusCode = response.getStatusCode();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  5. KEYS.md

    Alternatively, you can fetch the key directly from a key server:
    
    ```bash
    gpg --keyserver hkps://keys.openpgp.org --recv-keys 1BD97A6A154E7810EE0BC832E2F38302C8075E3D
    ```
    
    ### Verifying signatures
    
    Once you've downloaded a Gradle JAR file or a distribution and its corresponding signature file (with a `.asc` extension), you can verify its authenticity against the public key.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 04 14:29:13 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/BadWordTests.java

                checkPostMethod(requestBody, getItemEndpointSuffix());
            }
            refresh();
    
            // Download CSV
            Response response =
                    given().contentType("application/json").header("Authorization", getTestToken()).when().get(getApiPath() + "/download");
    
            assertEquals(200, response.getStatusCode());
            String body = response.getBody().asString();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/admin/ElevateWordTests.java

                checkPostMethod(requestBody, getItemEndpointSuffix());
            }
            refresh();
    
            // Download CSV
            Response response =
                    given().contentType("application/json").header("Authorization", getTestToken()).when().get(getApiPath() + "/download");
    
            assertEquals(200, response.getStatusCode());
            String body = response.getBody().asString();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.badword;
    
    /**
     * The download form for Bad Word.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 864 bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                });
            });
        }
    
        /**
         * Download a kuromoji dictionary 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));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 21.5K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

                                        <la:link href="downloadpage/${f:u(dictId)}"
                                                 styleClass="btn btn-primary btn-xs">
                                            <i class="fa fa-download" aria-hidden="true"></i>
                                            <la:message key="labels.dict_stemmeroverride_link_download"/>
                                        </la:link>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.3K bytes
    - Click Count (0)
Back to Top