- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for originalValue (0.05 sec)
-
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); } } } public void test_getSearchEngineHttpAddress_withValue() { String testAddress = "http://localhost:9200"; String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertTrue(asString.contains("nested")); } // Test overwriting existing values 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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
// Test that modifying the original values array doesn't affect the parameter String name = "immutableParam"; String[] originalValues = { "original1", "original2" }; RequestParameter param = new RequestParameter(name, originalValues); // Get values and verify they match String[] retrievedValues = param.getValues(); assertEquals("original1", retrievedValues[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)