- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 409 for rebuilt (0.04 seconds)
-
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java
final boolean result = testClient.reindexConfigIndices(false, configOnly); assertTrue(result); // Only fess_config indices should be rebuilt (2 config indices: scheduled_job, access_token) // Each creates 2 indices (backup + rebuild) = 4 creates assertEquals("Only fess_config indices should be rebuilt", 4, testClient.createdIndices.size());
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
// 6. Recreate aliases on the rebuilt index createAlias(configIndex, indexName); // 7. Delete backup deleteIndex(backupIndex); logger.info("[Rebuild] Completed rebuild for {}", indexName); } catch (final Exception e) { logger.warn("[Rebuild] Failed to rebuild index: {}", indexName, e);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) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
/** * Logs script execution to the audit log. * * @param script the script content that was executed * @param result the execution result (e.g., "success" or "failure:ExceptionType") */ protected void logScriptExecution(final String script, final String result) { if (!scriptAuditLogEnabled) { return; } try { String source = "unknown";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
logger.warn("Failed to rebuild config indices"); } } catch (final Exception e) { logger.warn("Failed to rebuild config indices", e); } finally { coordinator.completeOperation("reindex_config"); } }, "rebuild-config-indices").start();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 23K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
/** * The flag to load bulk data during config index rebuild. */ @Size(max = 10) public String loadBulkData; /** * The flag to rebuild fess_config indices. */ @Size(max = 10) public String rebuildConfigIndex = Constants.ON; /** * The flag to rebuild fess_user indices. */ @Size(max = 10) public String rebuildUserIndex;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 2K bytes - Click Count (0) -
MIGRATION.md
**Step 3: Customize Search UI** Fess Site Search provides extensive customization options via the [FSS Generator](https://fss-generator.codelibs.org/docs/manual): - Result layout and styling - Facet configuration - Search box placement - Suggestion behavior **Example Result**:  **Additional Resources**:
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.reload_doc_index=Reload Document Index labels.reload_doc_index_button=Reload labels.rebuild_config_index=Rebuild Config Index labels.rebuild_config_index_button=Rebuild labels.load_bulk_data=Load Default Data labels.rebuild_target_indices=Target Indices labels.rebuild_config_index_confirmation=Are you sure you want to rebuild the selected configuration indices? This operation will run in the background. labels.plugin_title=Plugin
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
result.getIntent(), result.getQuery(), result.getReasoning(), System.currentTimeMillis() - startTime); } return result; } catch (final Exception e) { logger.warn("[RAG:INTENT] Failed to detect intent, falling back to search. error={}, elapsedTime={}ms", e.getMessage(),
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java
RelevanceEvaluationResult result = RelevanceEvaluationResult.withRelevantDocs(docIds, indexes); assertTrue(result.isHasRelevantResults()); assertEquals(1, result.getRelevantDocIds().size()); assertEquals("doc1", result.getRelevantDocIds().get(0)); assertEquals(1, result.getRelevantIndexes().size()); assertEquals(Integer.valueOf(1), result.getRelevantIndexes().get(0)); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 7.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertNotNull(result); assertTrue(result.isPresent()); assertEquals(Integer.valueOf(42), result.get()); } @Test public void test_ofNullable_withNullInteger() { Integer testValue = null; OptionalEntity<Integer> result = OptionalUtil.ofNullable(testValue); assertNotNull(result); assertFalse(result.isPresent());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.3K bytes - Click Count (0)