- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for arrayKey (0.03 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
// Test getting array-like configuration values public void test_get_arrayValues() { String arrayKey = "array.values"; String arrayValue = "value1,value2,value3"; System.setProperty(Constants.FESS_CONFIG_PREFIX + arrayKey, arrayValue); try { String value = fessConfig.get(arrayKey); assertEquals(arrayValue, value); } finally {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
StringBuilder buf = new StringBuilder(); double[] values = { 1.5, 2.3, 3.7 }; Supplier<Object> supplier = () -> values; monitorTarget.append(buf, "arrayKey", supplier); assertEquals("\"arrayKey\":[1.5, 2.3, 3.7]", buf.toString()); } // Test append method with empty double array public void test_append_emptyDoubleArray() { StringBuilder buf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
ArrayReference<? extends L> arrayRef = (ArrayReference<? extends L>) ref; // Try to clear out the array slot, n.b. if we fail that is fine, in either case the // arrayRef will be out of the array after this step. locks.compareAndSet(arrayRef.index, arrayRef, null); } } @Override public int size() { return size;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0)