- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for stringValue (0.27 sec)
-
android/guava/src/com/google/common/primitives/UnsignedLongs.java
*/ @CanIgnoreReturnValue public static long decode(String stringValue) { ParseRequest request = ParseRequest.fromString(stringValue); try { return parseUnsignedLong(request.rawValue, request.radix); } catch (NumberFormatException e) { NumberFormatException decodeException = new NumberFormatException("Error parsing value: " + stringValue); decodeException.initCause(e);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertNull(dataStoreParams.get("nonexistent")); } // Test getAsString with String value public void test_getAsStringWithStringValue() { dataStoreParams.put("stringKey", "stringValue"); assertEquals("stringValue", dataStoreParams.getAsString("stringKey")); } // Test getAsString with non-String value public void test_getAsStringWithNonStringValue() { dataStoreParams.put("intKey", 123);
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/util/WebApiUtilTest.java
} public void test_setObject_withDifferentTypes() { // Test setObject with different object types try { WebApiUtil.setObject("stringValue", "test"); WebApiUtil.setObject("intValue", 123); WebApiUtil.setObject("booleanValue", true); WebApiUtil.setObject("objectValue", new Object()); // Test with collections
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 17.1K bytes - Viewed (0)