Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 908123 (0.08 sec)

  1. internal/s3select/select_test.go

    			}
    		})
    	}
    }
    
    func TestCSVQueries2(t *testing.T) {
    	testInput := []byte(`id,time,num,num2,text
    1,2010-01-01T,7867786,4565.908123,"a text, with comma"
    2,2017-01-02T03:04Z,-5, 0.765111,
    `)
    	testTable := []struct {
    		name       string
    		query      string
    		input      []byte
    		requestXML []byte // override request XML
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. src/strings/strings_test.go

    	{"xxxx012", "012", true},
    	{"012xxxxx"[1:], "012", false},
    	{"xxxxx012"[:7], "012", false},
    	// 4-byte needle
    	{"xxxxxxxx", "0123", false},
    	{"0123xxxx", "0123", true},
    	{"xx0123xx", "0123", true},
    	{"xxxx0123", "0123", true},
    	{"0123xxxxx"[1:], "0123", false},
    	{"xxxxx0123"[:8], "0123", false},
    	// 5-7-byte needle
    	{"xxxxxxxxx", "01234", false},
    	{"01234xxxx", "01234", true},
    	{"xx01234xx", "01234", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	testCases := []struct {
    		s          string
    		start, end int
    		num        int
    		isnum      bool
    		newi       int
    	}{
    		{"a123", 0, 4, 0, false, 0},
    		{"1234", 1, 1, 0, false, 1},
    		{"123a", 0, 4, 123, true, 3},
    		{"12a3", 0, 4, 12, true, 2},
    		{"1234", 0, 4, 1234, true, 4},
    		{"1a234", 1, 3, 0, false, 1},
    	}
    	for _, tt := range testCases {
    		num, isnum, newi := Parsenum(tt.s, tt.start, tt.end)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top