Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for hi (0.17 sec)

  1. src/archive/tar/reader_test.go

    		// to the Go version except the Go version sets a negative Devminor
    		// just to force the GNU format.
    		file: "testdata/gnu-not-utf8.tar",
    		headers: []*Header{{
    			Name:     "hi\x80\x81\x82\x83bye",
    			Mode:     0644,
    			Uid:      1000,
    			Gid:      1000,
    			ModTime:  time.Unix(0, 0),
    			Typeflag: '0',
    			Uname:    "rawr",
    			Gname:    "dsnet",
    			Format:   FormatGNU,
    		}},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    			continue
    		}
    	}
    	pred := func(c rune) bool { return c == 'X' }
    	var fieldsFuncTests = []FieldsTest{
    		{"", []string{}},
    		{"XX", []string{}},
    		{"XXhiXXX", []string{"hi"}},
    		{"aXXbXXXcX", []string{"a", "b", "c"}},
    	}
    	for _, tt := range fieldsFuncTests {
    		b := []byte(tt.s)
    		a := FieldsFunc(b, pred)
    
    		// Appending to the results should not change future results.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top