- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for originalValue (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
// Restore original value if it existed if (originalValue != null) { System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, originalValue); } } } @Test public void test_getSearchEngineHttpAddress_withValue() { String testAddress = "http://localhost:9200"; String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// 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)); } finally { if (originalValue != null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertTrue(asString.contains("nested")); } // Test overwriting existing values @Test public void test_overwriteValues() { dataStoreParams.put("key1", "originalValue"); assertEquals("originalValue", dataStoreParams.get("key1")); dataStoreParams.put("key1", "newValue"); assertEquals("newValue", dataStoreParams.get("key1")); dataStoreParams.put("key1", null);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0)