Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 967 for utf8 (0.76 sec)

  1. src/archive/zip/testdata/utf8-winrar.zip

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

    Joe Tsai <******@****.***> 1509655996 -0700
    Registered: Tue Dec 30 11:13:12 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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Aug 24 01:35:39 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. src/archive/zip/testdata/utf8-7zip.zip

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

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

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

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

    	case 0 <= r && r < utf8.RuneSelf:
    		return IndexByte(s, byte(r))
    	case r == utf8.RuneError:
    		for i := 0; i < len(s); {
    			r1, n := utf8.DecodeRune(s[i:])
    			if r1 == utf8.RuneError {
    				return i
    			}
    			i += n
    		}
    		return -1
    	case !utf8.ValidRune(r):
    		return -1
    	default:
    		// Search for rune r using the last byte of its UTF-8 encoded form.
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Sep 16 16:42:15 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  10. internal/s3select/jstream/scratch.go

    	if s.fill+1 >= cap(s.data) {
    		s.grow()
    	}
    
    	s.data[s.fill] = c
    	s.fill++
    }
    
    // append encoded rune to scratch buffer
    func (s *scratch) addRune(r rune) int {
    	if s.fill+utf8.UTFMax >= cap(s.data) {
    		s.grow()
    	}
    
    	n := utf8.EncodeRune(s.data[s.fill:], r)
    	s.fill += n
    	return n
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 758 bytes
    - Viewed (0)
Back to top