- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for stringFalse (0.09 seconds)
-
src/test/java/org/codelibs/fess/suggest/util/MapValueExtractorTest.java
map.put("stringTrue", "true"); map.put("stringFalse", "false"); assertEquals(Boolean.TRUE, MapValueExtractor.getBoolean(map, "true")); assertEquals(Boolean.FALSE, MapValueExtractor.getBoolean(map, "false")); assertEquals(Boolean.TRUE, MapValueExtractor.getBoolean(map, "stringTrue")); assertEquals(Boolean.FALSE, MapValueExtractor.getBoolean(map, "stringFalse"));
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 6.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
} // Test getAsString with String value @Test public void test_getAsStringWithStringValue() { dataStoreParams.put("stringKey", "stringValue"); assertEquals("stringValue", dataStoreParams.getAsString("stringKey")); } // Test getAsString with non-String value @Test public void test_getAsStringWithNonStringValue() {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) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
*/ @CanIgnoreReturnValue public static int decode(String stringValue) { ParseRequest request = ParseRequest.fromString(stringValue); try { return parseUnsignedInt(request.rawValue, request.radix); } catch (NumberFormatException e) { NumberFormatException decodeException = new NumberFormatException("Error parsing value: " + stringValue); decodeException.initCause(e);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 13.9K bytes - Click Count (0)