Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for baz (0.14 sec)

  1. src/bytes/example_test.go

    func ExampleEqualFold() {
    	fmt.Println(bytes.EqualFold([]byte("Go"), []byte("go")))
    	// Output: true
    }
    
    func ExampleFields() {
    	fmt.Printf("Fields are: %q", bytes.Fields([]byte("  foo bar  baz   ")))
    	// Output: Fields are: ["foo" "bar" "baz"]
    }
    
    func ExampleFieldsFunc() {
    	f := func(c rune) bool {
    		return !unicode.IsLetter(c) && !unicode.IsNumber(c)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  2. src/archive/tar/tar_test.go

    		header:  &Header{Xattrs: map[string]string{"用戶名": "\x00hello"}},
    		paxHdrs: map[string]string{paxSchilyXattr + "用戶名": "\x00hello"},
    		formats: FormatPAX,
    	}, {
    		header:  &Header{Xattrs: map[string]string{"foo=bar": "baz"}},
    		formats: FormatUnknown,
    	}, {
    		header:  &Header{Xattrs: map[string]string{"foo": ""}},
    		paxHdrs: map[string]string{paxSchilyXattr + "foo": ""},
    		formats: FormatPAX,
    	}, {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
Back to top