Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wantInbound (0.13 sec)

  1. pilot/pkg/networking/grpcgen/lds_test.go

    			if diff := cmp.Diff(got, tt.want); diff != "" {
    				t.Fatal(diff)
    			}
    			gotInbound := got.inboundNames()
    			sort.Strings(gotInbound)
    			sort.Strings(tt.wantInbound)
    			if diff := cmp.Diff(gotInbound, tt.wantInbound); diff != "" {
    				t.Fatalf(diff)
    			}
    		})
    	}
    }
    
    func TestTryFindFQDN(t *testing.T) {
    	cases := []struct {
    		in   string
    		want string
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    			// Checking default binding.
    			if wantBound := test.wantBinderID == -1; defaultBound != wantBound {
    				t.Errorf("got bound with default binding: %v, want %v", defaultBound, wantBound)
    			}
    
    			// Checking extenders binding.
    			for i, ext := range test.extenders {
    				wantBound := i == test.wantBinderID
    				if gotBound := ext.(*fakeExtender).gotBind; gotBound != wantBound {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top