Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 389 for recreate (0.04 seconds)

  1. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

        }
    
        @Test
        public void test_reindexConfigIndices_backupKeptOnRecreateFailure() {
            testClient.existsIndexResult = true;
            testClient.reindexResult = true;
            testClient.deleteIndexResult = true;
            testClient.documentCount = 10;
            // First createIndex (backup) succeeds, second (recreate) fails
            testClient.createIndexFailOnNth = 2;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        }
                    }
    
                    // 3. Delete old index and recreate with the same name (Bhv layer caches concrete index names)
                    deleteIndex(indexName);
                    if (!createIndex(configIndex, indexName)) {
                        logger.warn("[Rebuild] Failed to recreate index: {}. Keeping backup: {}", indexName, backupIndex);
                        success = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    enum class SpecificBuild {
        CompileAll {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
                flakyTestStrategy: FlakyTestStrategy,
            ): OsAwareBaseGradleBuildType = CompileAll(model, stage)
        },
        SanityCheck {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  4. .github/workflows/update-jdks.yml

              sed -n '/^version:/,$p' .teamcity/jdks.yaml >> .teamcity/jdks.yaml.tmp
              mv .teamcity/jdks.yaml.tmp .teamcity/jdks.yaml
          - name: Create Pull Request
            id: create-pull-request
            uses: peter-evans/create-pull-request@v8
            with:
              signoff: true
              sign-commits: true
              commit-message: "Update jdks.yaml"
              add-paths: .teamcity/jdks.yaml
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 09 22:14:16 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            final SearchResult result = SearchResult.create().allRecordCount(100).build();
    
            assertEquals(Relation.GREATER_THAN_OR_EQUAL_TO.toString(), result.getAllRecordCountRelation());
        }
    
        /**
         * Test SearchResult with zero record count.
         */
        @Test
        public void test_zeroRecordCount() {
            final SearchResult result = SearchResult.create().allRecordCount(0).build();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        /**
         * Creates a new group.
         *
         * @param form the create form
         * @return HTML response after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16K bytes
    - Click Count (0)
  7. build-logic-settings/version-catalogs/src/main/kotlin/gradlebuild.version-catalogs.settings.gradle.kts

        versionCatalogs {
            create("libs") {
                from(files(basePath.file("distribution.versions.toml")))
            }
            create("providedLibs") {
                from(files(basePath.file("provided.versions.toml")))
            }
            create("testLibs") {
                from(files(basePath.file("test.versions.toml")))
            }
            create("buildLibs") {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  8. .teamcity/README.md

    - Click the left sidebar "VCS Roots" here and create a VCS root [here](https://builds.gradle.org/admin/editProject.html?projectId=Gradle&cameFromUrl=%2Fproject.html%3FprojectId%3DGradle%26tab%3DprojectOverview%26branch_Gradle_Master_Check%3Dmaster)
      - Suppose the VCS root you just create is `MyNewVcsRoot`. Set "default branch" to `myTestBranch` where your code exists.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Create a very long exception message
            StringBuilder longMessage = new StringBuilder("Error: ");
            for (int i = 0; i < 100; i++) {
                longMessage.append("This is a very long error message part ").append(i).append(". ");
            }
            final String errorMessage = longMessage.toString();
    
            // Create mock SearchEngineClient that throws exception with long message
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Creates a new file configuration.
         *
         * @param form the create form
         * @return HTML response after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
            verifyToken(this::asEditHtml);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21.8K bytes
    - Click Count (0)
Back to Top