Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for expectGet (0.24 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected: %v after Pop, but got: %v", highPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != medPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", medPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != unschedulablePodInfo.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	expected := []bool{true, true, true}
    	for i, pod := range pods {
    		if result := manager.Admit(&lifecycle.PodAdmitAttributes{Pod: pod}); expected[i] != result.Admit {
    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	manager.nodeConditions = []v1.NodeConditionType{v1.NodeMemoryPressure}
    	expected = []bool{true, true, false}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    		// ServeHTTP to execute the logic of the handler.
    		apiRouter.ServeHTTP(rec, req)
    
    		isEnc := false
    		expected := 200
    		if strings.HasPrefix(input.objectName, "enc-") {
    			isEnc = true
    			expected = 400
    		}
    		if rec.Code != expected {
    			t.Errorf("Test %d: expected code %d but got %d for object %s", i+1, expected, rec.Code, input.objectName)
    		}
    
    		contentLength := rec.Header().Get("Content-Length")
    		if isEnc {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			continue
    		}
    		body := ""
    		if test.expected != nil {
    			itemOut, d, err := extractBodyObject(resp, metainternalversionscheme.Codecs.LegacyCodec(metav1beta1.SchemeGroupVersion))
    			if err != nil {
    				t.Fatal(err)
    			}
    			if !reflect.DeepEqual(test.expected, itemOut) {
    				t.Errorf("%d: did not match: %s", i, cmp.Diff(test.expected, itemOut))
    			}
    			body = d
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    						To(Equal(uint32(expected.Tcp.TcpKeepalive.Time.Seconds)))
    					g.Expect(cluster.UpstreamConnectionOptions.TcpKeepalive.KeepaliveInterval.Value).
    						To(Equal(uint32(expected.Tcp.TcpKeepalive.Interval.Seconds)))
    					g.Expect(cluster.ConnectTimeout).NotTo(BeNil())
    					g.Expect(cluster.ConnectTimeout.Seconds).To(Equal(expected.Tcp.ConnectTimeout.Seconds))
    
    					g.Expect(thresholds.MaxConnections).NotTo(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				t.Fatalf("The actual error: %v is different from the expected one: %v", err, testCase.expectedError)
    			}
    
    			if err != nil {
    				return
    			}
    
    			assignments := s.GetMemoryAssignments()
    			if !areContainerMemoryAssignmentsEqual(t, assignments, testCase.expectedAssignments) {
    				t.Fatalf("Actual assignments: %v is different from the expected one: %v", assignments, testCase.expectedAssignments)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				}
    				matched := false
    				for expected := range unmatched {
    					if strings.Contains(err.Error(), expected) {
    						delete(unmatched, expected)
    						matched = true
    						break
    					}
    				}
    				if !matched {
    					t.Errorf("expected error to contain one of %v, but got: %v", unmatched, err)
    				}
    			}
    			if len(unmatched) > 0 {
    				t.Errorf("expected errors %v", unmatched)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	type Str string
    	var scanned Str
    
    	err := db.QueryRow("SELECT|people|name|name=?", "Alice").Scan(&scanned)
    	if err != nil {
    		t.Fatal(err)
    	}
    	expected := Str("Alice")
    	if scanned != expected {
    		t.Errorf("expected %+v, got %+v", expected, scanned)
    	}
    }
    
    func BenchmarkConcurrentDBExec(b *testing.B) {
    	b.ReportAllocs()
    	ct := new(concurrentDBExecTest)
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/garbagecollector_test.go

    		},
    	}
    	err := gc.orphanDependents(logger, objectReference{}, dependents)
    	expected := `the server reported a conflict`
    	if err == nil || !strings.Contains(err.Error(), expected) {
    		if err != nil {
    			t.Errorf("expected error contains text %q, got %q", expected, err.Error())
    		} else {
    			t.Errorf("expected error contains text %q, got nil", expected)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    		if !extension.Id.Equal(expected[i].Id) {
    			t.Fatalf("extension #%d has unexpected type %v (expected %v)", i, extension.Id, expected[i].Id)
    		}
    
    		if !bytes.Equal(extension.Value, expected[i].Value) {
    			t.Fatalf("extension #%d has unexpected contents %x (expected %x)", i, extension.Value, expected[i].Value)
    		}
    	}
    }
    
    // serialiseAndParse generates a self-signed certificate from template and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top