- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for EncodedLen (0.07 seconds)
-
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(); } /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 4K bytes - Click Count (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
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.5K bytes - Click Count (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
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)