Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,295 for GOT (0.02 sec)

  1. test/method7.go

    	interface{ m1(string) }.m1(x, "d")
    	want += " m1(d)"
    
    	g := struct{ T }.m2
    	g(struct{ T }{})
    	want += " m2()"
    
    	if got != want {
    		panic("got" + got + ", want" + want)
    	}
    
    	h := (*Outer).M
    	got := h(&Outer{&Inner{"hello"}})
    	want := "hello"
    	if got != want {
    		panic("got " + got + ", want " + want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 26 17:05:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. misc/go_android_exec/exitcode_test.go

    	if want, got := pre, out.String(); want != got {
    		t.Errorf("filter should have already flushed %q, but flushed %q", want, got)
    	}
    
    	code, err := f.Finish()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Nothing more should have been written to out.
    	if want, got := pre, out.String(); want != got {
    		t.Errorf("want output %q, got %q", want, got)
    	}
    	if want := 1; want != code {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 14:54:58 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/registry/core/componentstatus/rest_test.go

    	r := NewTestREST(testResponse{result: probe.Success, data: "ok"})
    	got, err := r.List(genericapirequest.NewContext(), nil)
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	expect := &api.ComponentStatusList{
    		Items: []api.ComponentStatus{*(createTestStatus("test1", api.ConditionTrue, "ok", ""))},
    	}
    	if e, a := expect, got; !reflect.DeepEqual(e, a) {
    		t.Errorf("Got unexpected object. Diff: %s", cmp.Diff(e, a))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue16616.dir/issue16616.go

    var V struct{ i int }
    
    func main() {
    	if got := reflect.ValueOf(b.V).Type().Field(0).PkgPath; got != "b" {
    		panic(`PkgPath=` + got + ` for first field of b.V, want "b"`)
    	}
    	if got := reflect.ValueOf(V).Type().Field(0).PkgPath; got != "main" {
    		panic(`PkgPath=` + got + ` for first field of V, want "main"`)
    	}
    	if got := reflect.ValueOf(b.U).Type().Field(0).PkgPath; got != "b" {
    		panic(`PkgPath=` + got + ` for first field of b.U, want "b"`)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 11:46:15 UTC 2016
    - 666 bytes
    - Viewed (0)
  5. pkg/util/strcase/camelcase_test.go

    				n:   "foobar",
    				sep: "",
    			},
    			want: "FOOBAR",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := CamelCaseWithSeparator(tt.args.n, tt.args.sep); got != tt.want {
    				t.Errorf("CamelCaseWithSeparator() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_isWordSeparator(t *testing.T) {
    	tests := []struct {
    		name string
    		c    byte
    		want bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/net/http/httptrace/trace_test.go

    		ConnectStart: connectStart('N'),
    	}
    	ctx = WithClientTrace(ctx, newtrace)
    	trace := ContextClientTrace(ctx)
    
    	buf.Reset()
    	trace.ConnectStart("net", "addr")
    	if got, want := buf.String(), "NO"; got != want {
    		t.Errorf("got %q; want %q", got, want)
    	}
    }
    
    func TestCompose(t *testing.T) {
    	var buf strings.Builder
    	var testNum int
    
    	connectStart := func(b byte) func(network, addr string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. src/context/x_test.go

    	causeFunc(cause)
    	if got := ctx.Err(); got != Canceled {
    		t.Errorf("after CancelCauseFunc ctx.Err() = %v, want %v", got, Canceled)
    	}
    	if got := Cause(ctx); got != cause {
    		t.Errorf("after CancelCauseFunc Cause(ctx) = %v, want %v", got, cause)
    	}
    	if got := ccc.Err(); got != nil {
    		t.Errorf("after CancelCauseFunc ccc.Err() = %v, want %v", got, nil)
    	}
    	if got := Cause(ccc); got != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/errors/join_test.go

    		want: []error{err1, err2},
    	}} {
    		got := errors.Join(test.errs...).(interface{ Unwrap() []error }).Unwrap()
    		if !reflect.DeepEqual(got, test.want) {
    			t.Errorf("Join(%v) = %v; want %v", test.errs, got, test.want)
    		}
    		if len(got) != cap(got) {
    			t.Errorf("Join(%v) returns errors with len=%v, cap=%v; want len==cap", test.errs, len(got), cap(got))
    		}
    	}
    }
    
    func TestJoinErrorMethod(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 17 21:48:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/sqrtConst_test.go

    		if math.IsNaN(test.got) != true {
    			t.Errorf("%s: math.Sqrt(%f): got %f, want NaN\n", test.name, test.in, test.got)
    		}
    	}
    	if got := math.Sqrt(math.Inf(1)); !math.IsInf(got, 1) {
    		t.Errorf("math.Sqrt(+Inf), got %f, want +Inf\n", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/envoyfilter_test.go

    				t.Errorf("unexpected prefix: got %v wanted %v", filter.ProxyPrefixMatch, tt.expectedVersionPrefix)
    			}
    			for ver, match := range tt.matches {
    				got := proxyMatch(&Proxy{Metadata: &NodeMetadata{IstioVersion: ver}}, filter)
    				if got != match {
    					t.Errorf("expected %v to match %v, got %v", ver, match, got)
    				}
    			}
    		})
    	}
    }
    
    func TestConvertEnvoyFilter(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top