Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xfdf (0.01 sec)

  1. src/archive/tar/strconv_test.go

    		{"\xf7\x76\xa2\x22\xeb\x8a\x72\x61", -615126028225187231, true},
    		{"\xff\xff\xff\xff\xf7\x76\xa2\x22\xeb\x8a\x72\x61", -615126028225187231, true},
    		{"\x80\x7f\xff\xff\xff\xff\xff\xff\xff", math.MaxInt64, true},
    		{"\x80\x80\x00\x00\x00\x00\x00\x00\x00", 0, false},
    		{"\xff\x80\x00\x00\x00\x00\x00\x00\x00", math.MinInt64, true},
    		{"\xff\x7f\xff\xff\xff\xff\xff\xff\xff", 0, false},
    		{"\xf5\xec\xd1\xc7\x7e\x5f\x26\x48\x81\x9f\x8f\x9b", 0, false},
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  2. src/bytes/example_test.go

    	// ToTitle : AHOJ VÝVOJÁRİ GOLANG
    }
    
    func ExampleToValidUTF8() {
    	fmt.Printf("%s\n", bytes.ToValidUTF8([]byte("abc"), []byte("\uFFFD")))
    	fmt.Printf("%s\n", bytes.ToValidUTF8([]byte("a\xffb\xC0\xAFc\xff"), []byte("")))
    	fmt.Printf("%s\n", bytes.ToValidUTF8([]byte("\xed\xa0\x80"), []byte("abc")))
    	// Output:
    	// abc
    	// abc
    	// abc
    }
    
    func ExampleTrim() {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 07 17:22:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top