Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for wantOut (0.13 sec)

  1. src/strings/replace_test.go

    			args[i*2] = key
    		}
    
    		got := NewReplacer(args...).PrintTrie()
    		// Remove tabs from tc.out
    		wantbuf := make([]byte, 0, len(tc.out))
    		for i := 0; i < len(tc.out); i++ {
    			if tc.out[i] != '\t' {
    				wantbuf = append(wantbuf, tc.out[i])
    			}
    		}
    		want := string(wantbuf)
    
    		if got != want {
    			t.Errorf("PrintTrie(%q)\ngot\n%swant\n%s", tc.in, got, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/pgo_inl_test.go

    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	want := []string{
    		"(*BS).NS",
    	}
    
    	// The functions which are not expected to be inlined are as follows.
    	wantNot := []string{
    		// The calling edge main->A is hot and the cost of A is large
    		// than inlineHotCalleeMaxBudget.
    		"A",
    		// The calling edge BenchmarkA" -> benchmarkB is cold and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		clientCert, clientKey, clientCA []byte
    		serverCert, serverKey, serverCA []byte
    		wantAuth, wantErr               bool
    	}{
    		{
    			test:       "TLS setup between client and server",
    			clientCert: clientCert, clientKey: clientKey, clientCA: caCert,
    			serverCert: serverCert, serverKey: serverKey, serverCA: caCert,
    			wantAuth: true,
    		},
    		{
    			test:       "Server does not require client auth",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top