Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateConfiguration (0.17 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertFalse(helper2.isEoled());
        }
    
        public void test_updateConfiguration() {
            assertNotNull(systemHelper.updateConfiguration());
            systemHelper.addUpdateConfigListener("XXX", () -> "OK");
            assertTrue(systemHelper.updateConfiguration().contains("XXX: OK"));
        }
    
        public void test_isChangedClusterState() {
            systemHelper.isChangedClusterState(0);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                    }
                    System.setProperty(e.getKey(), e.getValue());
                });
            }
        }
    
        public String updateConfiguration() {
            final StringBuilder buf = new StringBuilder();
            updateConfigListenerMap.entrySet().stream().forEach(e -> {
                buf.append(e.getKey()).append(": ");
                try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top