Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for wantOut (0.12 sec)

  1. src/archive/tar/reader_test.go

    	type (
    		testRead struct { // Read(cnt) == (wantStr, wantErr)
    			cnt     int
    			wantStr string
    			wantErr error
    		}
    		testWriteTo struct { // WriteTo(testFile{ops}) == (wantCnt, wantErr)
    			ops     fileOps
    			wantCnt int64
    			wantErr error
    		}
    		testRemaining struct { // logicalRemaining() == wantLCnt, physicalRemaining() == wantPCnt
    			wantLCnt int64
    			wantPCnt int64
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	io.WriteString(f, data)
    
    	f.Seek(0, 0)
    	b := make([]byte, 5)
    
    	n, err := f.ReadAt(b, -10)
    
    	const wantsub = "negative offset"
    	if !strings.Contains(fmt.Sprint(err), wantsub) || n != 0 {
    		t.Errorf("ReadAt(-10) = %v, %v; want 0, ...%q...", n, err, wantsub)
    	}
    }
    
    func TestWriteAt(t *testing.T) {
    	t.Parallel()
    
    	f := newFile("TestWriteAt", t)
    	defer Remove(f.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    		F1 string `json:"F1,string"`
    	}
    	wantT := T{"aaa\tbbb"}
    
    	b, err := Marshal(wantT)
    	if err != nil {
    		t.Fatalf("Marshal error: %v", err)
    	}
    	var gotT T
    	if err := Unmarshal(b, &gotT); err != nil {
    		t.Fatalf("Unmarshal error: %v", err)
    	}
    	if gotT != wantT {
    		t.Errorf("Marshal/Unmarshal roundtrip:\n\tgot:  %q\n\twant: %q", gotT, wantT)
    	}
    
    	// See golang.org/issues/39555.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arith_test.go

    // testArithRshConst ensures that "const >> const" right shifts correctly perform
    // sign extension on the lhs constant
    func testArithRshConst(t *testing.T) {
    	wantu := uint64(0x4000000000000000)
    	if got := arithRshuConst_ssa(); got != wantu {
    		t.Errorf("arithRshuConst failed, wanted %d got %d", wantu, got)
    	}
    
    	wants := int64(-0x4000000000000000)
    	if got := arithRshConst_ssa(); got != wants {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	res, err := cst.c.Get(cst.ts.URL)
    	if res != nil {
    		defer res.Body.Close()
    	}
    	got := fmt.Sprint(err)
    	wantSub := "too many 1xx informational responses"
    	if !strings.Contains(got, wantSub) {
    		t.Errorf("Get error = %v; want substring %q", err, wantSub)
    	}
    }
    
    // Issue 26161: the HTTP client must treat 101 responses
    // as the final response.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			// Move just before the backoff end time
    			fakeClock.Sleep(delay - 1*time.Nanosecond)
    			if !manager.failedPodsBackoff.IsInBackOffSinceUpdate(backoffKey, fakeClock.Now()) {
    				t.Errorf("Backoff delay didn't last the whole waitout period.")
    			}
    
    			// Move to the backoff end time
    			fakeClock.Sleep(1 * time.Nanosecond)
    			if manager.failedPodsBackoff.IsInBackOffSinceUpdate(backoffKey, fakeClock.Now()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    func TestRedirectContentTypeAndBody(t *testing.T) {
    	type ctHeader struct {
    		Values []string
    	}
    
    	var tests = []struct {
    		method   string
    		ct       *ctHeader // Optional Content-Type header to set.
    		wantCT   string
    		wantBody string
    	}{
    		{MethodGet, nil, "text/html; charset=utf-8", "<a href=\"/foo\">Found</a>.\n\n"},
    		{MethodHead, nil, "text/html; charset=utf-8", ""},
    		{MethodPost, nil, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top