Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 352 for suntem (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/systeminfo/ApiAdminSysteminfoAction.java

        //                                                                      ==============
    
        /**
         * Retrieves system information including bug report, environment, Fess properties, and system properties.
         *
         * @return JSON response containing system information
         */
        // GET /api/admin/systeminfo
        @Execute
        public JsonResponse<ApiResult> get$index() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  2. MIGRATION.md

    ### 1. Admin UI Import
    
    **Path**: System > Backup > Upload
    
    **Supported Formats**:
    - **GSA XML** (`gsa*.xml`) - GSA configuration files
    - **Bulk NDJSON** (`*.bulk`) - Newline-delimited JSON documents
    - **Fess JSON** (`fess*.json`) - Fess configuration export
    - **Doc JSON** (`doc*.json`) - Document data export
    - **System Properties** (`system.properties`) - System configuration
    
    **Usage**:
    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)
  3. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

        }
    
        // Test system property setting
        @Test
        public void test_systemPropertySetting() {
            // Test system property configuration
            String originalValue = System.getProperty(FesenClient.HTTP_ADDRESS);
            try {
                System.setProperty(FesenClient.HTTP_ADDRESS, "http://localhost:9200");
                assertEquals("http://localhost:9200", System.getProperty(FesenClient.HTTP_ADDRESS));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  4. docs/de/README.md

    ## Übersicht
    
    Fess ist ein sehr leistungsstarker und einfach zu implementierender Enterprise-Suchserver. Sie können Fess schnell auf jeder Plattform installieren und ausführen, auf der die Java-Laufzeitumgebung (JRE) läuft. Fess wird unter der [Apache-Lizenz 2.0](LICENSE) bereitgestellt.
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper class for system-level operations and utilities.
     * This class provides methods for managing system properties, handling JSP files,
     * normalizing configurations, and other system-related tasks.
     */
    public class SystemHelper {
    
        /**
         * Constructs a new system helper.
         */
        public SystemHelper() {
            // do nothing
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            confDir = Files.createDirectories(tempDir.resolve("conf"));
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            System.clearProperty("fess.var.path");
            System.clearProperty("fess.webapp.path");
            System.clearProperty("fess.conf.path");
            if (tempDir != null) {
                deleteRecursively(tempDir.toFile());
            }
            super.tearDown(testInfo);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/chat/ChatClient.java

                            System.currentTimeMillis() - phaseStartTime);
                }
    
                if (intentResult.getIntent() == ChatIntent.UNCLEAR) {
                    // Intent is unclear - ask user for clarification
                    phaseStartTime = System.currentTimeMillis();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java

        }
    
        @Test
        public void test_waitForNext_withPositiveInterval() throws InterruptedException {
            configHelper.setReloadInterval(20L);
    
            long startTime = System.currentTimeMillis();
            configHelper.waitForNext();
            long endTime = System.currentTimeMillis();
    
            long elapsed = endTime - startTime;
            assertTrue("Expected at least 15ms sleep, got " + elapsed + "ms", elapsed >= 15);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/SystemUtil.java

         */
        public static String getSearchEngineHttpAddress() {
            return System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    
        /**
         * Gets the compiled pattern for matching sensitive property/environment variable keys.
         * The pattern is read from the system property 'app.log.sensitive.property.pattern'.
         * If not set, a default pattern matching common sensitive key names is used.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:32:50 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/error/ErrorSystemerrorAction.java

        //                                                                      ==============
        /**
         * Displays the system error page.
         *
         * @param form the error form containing error information
         * @return HTML response for the system error page
         */
        @Execute
        public HtmlResponse index(final ErrorForm form) {
            return asHtml(virtualHost(path_Error_SystemJsp));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.1K bytes
    - Click Count (0)
Back to Top