- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for rawValues (0.16 sec)
-
android/guava/src/com/google/common/primitives/ParseRequest.java
/** A string to be parsed as a number and the radix to interpret it in. */ @GwtCompatible @ElementTypesAreNonnullByDefault final class ParseRequest { final String rawValue; final int radix; private ParseRequest(String rawValue, int radix) { this.rawValue = rawValue; this.radix = radix; } static ParseRequest fromString(String stringValue) { if (stringValue.length() == 0) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:09:25 UTC 2021 - 1.7K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java
String msg = sw.toString(); assertTrue(sw.toString().endsWith(RESULT3), msg); List<String> rawValue = properties.getRaw(KEY1); assertEquals(2, (Object) rawValue.size()); assertEquals(KEY1A + " = " + VALUE1, rawValue.get(0)); assertEquals(VALUE1, rawValue.get(1)); } @Test public void testEntrySetValue() throws Exception { properties.put(KEY1, VALUE1);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.4K bytes - Viewed (0) -
api/go1.9.txt
pkg database/sql/driver, var ErrRemoveArgument error pkg encoding/asn1, const TagNull = 5 pkg encoding/asn1, const TagNull ideal-int pkg encoding/asn1, var NullBytes []uint8 pkg encoding/asn1, var NullRawValue RawValue pkg encoding/base32, const NoPadding = -1 pkg encoding/base32, const NoPadding int32 pkg encoding/base32, const StdPadding = 61 pkg encoding/base32, const StdPadding int32
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 04 20:20:20 UTC 2021 - 10.7K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 12 21:04:48 UTC 2024 - 17.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
* @since 13.0 */ @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);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedInts.java
* @since 13.0 */ @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);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 21:17:54 UTC 2024 - 13.7K bytes - Viewed (0) -
api/go1.txt
pkg encoding/asn1, type RawContent []uint8 pkg encoding/asn1, type RawValue struct pkg encoding/asn1, type RawValue struct, Bytes []uint8 pkg encoding/asn1, type RawValue struct, Class int pkg encoding/asn1, type RawValue struct, FullBytes []uint8 pkg encoding/asn1, type RawValue struct, IsCompound bool pkg encoding/asn1, type RawValue struct, Tag int pkg encoding/asn1, type StructuralError struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)