- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 237 for recreate (0.22 seconds)
-
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) -
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) -
.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) -
.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) -
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) -
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) -
build-logic-settings/version-catalogs/src/main/kotlin/gradlebuild.version-catalogs.settings.gradle.kts
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) -
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 messageCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
} catch (Exception e) { assertTrue(true); // Expected exception } } @Test public void test_getJarFile_exists() throws IOException { // Create a mock jar file Path jarPath = tempDir.resolve("test-theme.jar"); Files.createFile(jarPath); ThemeHelper mockThemeHelper = new ThemeHelper() { @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.7K bytes - Click Count (0)