Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 475 for utf8 (0.02 sec)

  1. android/guava/src/com/google/common/base/Utf8.java

    /**
     * Low-level, high-performance utility methods related to the {@linkplain Charsets#UTF_8 UTF-8}
     * character encoding. UTF-8 is defined in section D92 of <a
     * href="http://www.unicode.org/versions/Unicode6.2.0/ch03.pdf">The Unicode Standard Core
     * Specification, Chapter 3</a>.
     *
     * <p>The variant of UTF-8 implemented by this class is the restricted definition of UTF-8
     * introduced in Unicode 3.1. One implication of this is that it rejects <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/archive/zip/testdata/utf8-winrar.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 146 bytes
    - Viewed (0)
  3. src/archive/tar/testdata/gnu-utf8.tar

    Joe Tsai <******@****.***> 1503528984 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Aug 24 01:35:39 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. src/archive/zip/testdata/utf8-winzip.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 146 bytes
    - Viewed (0)
  5. src/archive/zip/testdata/utf8-7zip.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 146 bytes
    - Viewed (0)
  6. src/archive/zip/testdata/utf8-infozip.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 162 bytes
    - Viewed (0)
  7. src/archive/zip/testdata/utf8-osx.zip

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Nov 06 21:35:59 UTC 2017
    - 138 bytes
    - Viewed (0)
  8. src/archive/tar/testdata/gnu-not-utf8.tar

    Joe Tsai <******@****.***> 1503528984 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Aug 24 01:35:39 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. 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 Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/bytes/iter.go

    func FieldsSeq(s []byte) iter.Seq[[]byte] {
    	return func(yield func([]byte) bool) {
    		start := -1
    		for i := 0; i < len(s); {
    			size := 1
    			r := rune(s[i])
    			isSpace := asciiSpace[s[i]] != 0
    			if r >= utf8.RuneSelf {
    				r, size = utf8.DecodeRune(s[i:])
    				isSpace = unicode.IsSpace(r)
    			}
    			if isSpace {
    				if start >= 0 {
    					if !yield(s[start:i:i]) {
    						return
    					}
    					start = -1
    				}
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Sep 03 14:04:47 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top