- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 79 for UTF8 (0.04 sec)
-
guava/src/com/google/common/base/Utf8.java
* even though the JDK decoder may accept them. * * @author Martin Buchholz * @author Clément Roux * @since 16.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Utf8 { /** * Returns the number of bytes in the UTF-8-encoded form of {@code sequence}. For a string, this * method is equivalent to {@code string.getBytes(UTF_8).length}, but is more efficient in both * time and space.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7K bytes - Viewed (0) -
src/archive/zip/testdata/utf8-winzip.zip
Joe Tsai <******@****.***> 1509655996 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 06 21:35:59 UTC 2017 - 146 bytes - Viewed (0) -
src/archive/tar/testdata/gnu-utf8.tar
Joe Tsai <******@****.***> 1503528984 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 24 01:35:39 UTC 2017 - 2.5K bytes - Viewed (0) -
src/archive/zip/testdata/utf8-winrar.zip
Joe Tsai <******@****.***> 1509655996 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 06 21:35:59 UTC 2017 - 146 bytes - Viewed (0) -
src/archive/zip/testdata/utf8-7zip.zip
Joe Tsai <******@****.***> 1509655996 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 06 21:35:59 UTC 2017 - 146 bytes - Viewed (0) -
src/archive/zip/testdata/utf8-infozip.zip
Joe Tsai <******@****.***> 1509655996 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 06 21:35:59 UTC 2017 - 162 bytes - Viewed (0) -
src/archive/zip/testdata/utf8-osx.zip
Joe Tsai <******@****.***> 1509655996 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Nov 06 21:35:59 UTC 2017 - 138 bytes - Viewed (0) -
src/archive/tar/testdata/gnu-not-utf8.tar
Joe Tsai <******@****.***> 1503528984 -0700
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 24 01:35:39 UTC 2017 - 1.5K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt
} fun writeObjectIdentifier(s: String) { val utf8 = Buffer().writeUtf8(s) val v1 = utf8.readDecimalLong() require(utf8.readByte() == '.'.code.toByte()) val v2 = utf8.readDecimalLong() writeVariableLengthLong(v1 * 40 + v2) while (!utf8.exhausted()) { require(utf8.readByte() == '.'.code.toByte()) val vN = utf8.readDecimalLong() writeVariableLengthLong(vN) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.7K bytes - Viewed (0) -
src/bytes/bytes.go
r := rune(s[0]) if r >= utf8.RuneSelf { // search utf8.RuneError. for _, r = range chars { if r == utf8.RuneError { return 0 } } return -1 } if bytealg.IndexByteString(chars, s[0]) >= 0 { return 0 } return -1 } if len(chars) == 1 { r := rune(chars[0]) if r >= utf8.RuneSelf { r = utf8.RuneError } return IndexRune(s, r)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 35.6K bytes - Viewed (0)