Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 221 for expectGet (0.37 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    					return true, nil
    				}
    				t.Logf(
    					"Warning: Wrong attacher[%v].GetAttachCallCount(). Expected: <%v> Actual: <%v>. Will try next attacher.",
    					i,
    					expectedAttachCallCount,
    					actualCallCount)
    			}
    
    			t.Logf(
    				"Warning: No attachers have expected AttachCallCount. Expected: <%v>. Will retry.",
    				expectedAttachCallCount)
    			return false, nil
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker_test.go

    						"(IsLocal expected %v, got %v) (Ready expected %v, got %v) (Serving expected %v, got %v) (Terminating expected %v got %v)",
    						x, i, expected[x][i], newEp, expected[x][i].isLocal, newEp.isLocal, expected[x][i].ready, newEp.ready,
    						expected[x][i].serving, newEp.serving, expected[x][i].terminating, newEp.terminating)
    				}
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy_test.go

    	checkLinkHeaders := func(t *testing.T, expected, got []string) {
    		t.Helper()
    
    		if len(expected) != len(got) {
    			t.Errorf("Expected %d link headers; got %d", len(expected), len(got))
    		}
    
    		for i := range expected {
    			if i >= len(got) {
    				t.Errorf("Expected %q link header; got nothing", expected[i])
    
    				continue
    			}
    
    			if expected[i] != got[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	matchReturnedCookies(t, expectedCookies, resp.Cookies())
    }
    
    func matchReturnedCookies(t *testing.T, expected, given []*Cookie) {
    	if len(given) != len(expected) {
    		t.Logf("Received cookies: %v", given)
    		t.Errorf("Expected %d cookies, got %d", len(expected), len(given))
    	}
    	for _, ec := range expected {
    		foundC := false
    		for _, c := range given {
    			if ec.Name == c.Name && ec.Value == c.Value {
    				foundC = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    		ReclaimPolicy:     &retainReclaimPolicy,
    		VolumeBindingMode: &immediateMode1,
    	}}
    
    	// Success cases are expected to pass validation.
    	for k, v := range successCases {
    		if errs := ValidateStorageClass(&v); len(errs) != 0 {
    			t.Errorf("Expected success for %d, got %v", k, errs)
    		}
    	}
    
    	// generate a map longer than maxProvisionerParameterSize
    	longParameters := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			pl := DefaultPreemption{fh: f, fts: test.fts}
    			if got, _ := pl.PodEligibleToPreemptOthers(test.pod, test.nominatedNodeStatus); got != test.expected {
    				t.Errorf("expected %t, got %t for pod: %s", test.expected, got, test.pod.Name)
    			}
    		})
    	}
    }
    func TestPreempt(t *testing.T) {
    	tests := []struct {
    		name           string
    		pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    		_, err = io.ReadAll(srv)
    		if err == nil {
    			return errors.New("unexpected lack of error from server")
    		}
    		const expected = "too many ignored"
    		if str := err.Error(); !strings.Contains(str, expected) {
    			return fmt.Errorf("expected error containing %q, but saw: %s", expected, str)
    		}
    
    		return nil
    	}
    
    	errChan := make(chan error, 1)
    	go func() { errChan <- server() }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    		assert.Equal(t, verb, actions[relativePos].GetVerb(), "Expected action -%d verb to be %s", i, verb)
    		assert.Equal(t, resource, actions[relativePos].GetResource().Resource, "Expected action -%d resource to be %s", i, resource)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(expected.GarbageCollectorController.GCIgnoredResources))
    
    	if !reflect.DeepEqual(expected, s) {
    		t.Errorf("Got different run options than expected.\nDifference detected on:\n%s", cmp.Diff(expected, s))
    	}
    }
    
    func TestApplyTo(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    func TestContains(t *testing.T) {
    	for _, ct := range ContainsTests {
    		if Contains(ct.str, ct.substr) != ct.expected {
    			t.Errorf("Contains(%s, %s) = %v, want %v",
    				ct.str, ct.substr, !ct.expected, ct.expected)
    		}
    	}
    }
    
    var ContainsAnyTests = []struct {
    	str, substr string
    	expected    bool
    }{
    	{"", "", false},
    	{"", "a", false},
    	{"", "abc", false},
    	{"a", "", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top