- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for existingKey (0.15 sec)
-
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
} // Test getAsString with default value public void test_getAsStringWithDefaultValue() { dataStoreParams.put("existingKey", "existingValue"); assertEquals("existingValue", dataStoreParams.getAsString("existingKey", "defaultValue")); assertNull(dataStoreParams.getAsString("nonExistentKey"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
ArrayReference<? extends L> existingRef = locks.get(index); L existing = existingRef == null ? null : existingRef.get(); if (existing != null) { return existing; } L created = supplier.get(); ArrayReference<L> newRef = new ArrayReference<>(created, index, queue); while (!locks.compareAndSet(index, existingRef, newRef)) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0)