- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for EncodedLen (0.25 sec)
-
android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java
static ImmutableMap<String, PublicSuffixType> parseFullString(String encoded) { ImmutableMap.Builder<String, PublicSuffixType> builder = ImmutableMap.builder(); int encodedLen = encoded.length(); int idx = 0; while (idx < encodedLen) { idx += doParseTrieToBuilder(new ArrayDeque<>(), encoded, idx, builder); } return builder.buildOrThrow(); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/util/ByteEncodableTest.java
byte[] data = { 0x01, 0x02, 0x03, 0x04, 0x05 }; ByteEncodable encodable = new ByteEncodable(data, 1, 3); byte[] dest = new byte[5]; int encodedLen = encodable.encode(dest, 0); // Verify encoded length assertEquals(3, encodedLen, "Encoded length should be equal to the specified length"); // Verify content
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
api/go1.txt
pkg encoding/base32, method (*Encoding) Encode([]uint8, []uint8) pkg encoding/base32, method (*Encoding) EncodeToString([]uint8) string pkg encoding/base32, method (*Encoding) EncodedLen(int) int pkg encoding/base32, method (CorruptInputError) Error() string pkg encoding/base32, type CorruptInputError int64 pkg encoding/base32, type Encoding struct pkg encoding/base32, var HexEncoding *Encoding
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)