Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 39 for rebuilt (0.06 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                            result.getMessage().getContent() != null ? result.getMessage().getContent().length() : 0);
                }
    
                writeJsonResponse(response, HttpServletResponse.SC_OK,
                        createSuccessResponse(result.getSessionId(), result.getMessage().getContent(), result.getMessage().getSources()));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            source.put("NestedMap", nested);
    
            Map<String, Object> result = searchLogHelper.toLowerHyphen(source);
    
            assertEquals("value1", result.get("test_key"));
            assertEquals("value2", result.get("another_test_key"));
    
            @SuppressWarnings("unchecked")
            Map<String, Object> nestedResult = (Map<String, Object>) result.get("nested_map");
            assertEquals("nestedValue", nestedResult.get("nested_key"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

            response.jobLogId("log-id-xyz").status(Status.OK);
            final ApiResult result = response.result();
            assertNotNull(result);
            assertNotNull(result.response);
            assertTrue(result.response instanceof ApiStartJobResponse);
            final ApiStartJobResponse resultResponse = (ApiStartJobResponse) result.response;
            assertEquals("log-id-xyz", resultResponse.jobLogId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                return this;
            }
    
            /**
             * Returns a new ApiResult instance with this ApiResponse.
             * @return A new ApiResult instance.
             */
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    
        /**
         * Represents an API response for an update operation.
         */
        public static class ApiUpdateResponse extends ApiResponse {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
Back to Top