Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 767 for tc (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher_test.go

    		},
    	}
    
    	for _, tc := range tcs {
    		actual, err := mutationAnnotationValue(tc.config, tc.webhook, tc.mutated)
    		assert.NoError(t, err, "unexpected error")
    		if actual != tc.expected {
    			t.Errorf("composed mutation annotation value doesn't match, want: %s, got: %s", tc.expected, actual)
    		}
    	}
    }
    
    func TestJSONPatchAnnotationValue(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/errors/wrap_test.go

    		{multiErr{poser}, err1, true},
    		{multiErr{poser}, err3, true},
    		{multiErr{nil}, nil, false},
    	}
    	for _, tc := range testCases {
    		t.Run("", func(t *testing.T) {
    			if got := errors.Is(tc.err, tc.target); got != tc.match {
    				t.Errorf("Is(%v, %v) = %v, want %v", tc.err, tc.target, got, tc.match)
    			}
    		})
    	}
    }
    
    type poser struct {
    	msg string
    	f   func(error) bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/volume/csi/expander_test.go

    				t.Errorf("For %s: expected staging path %s got %s", tc.name, tc.deviceStagePath, stagingTargetPath)
    			}
    
    			if ok != tc.success {
    				if err != nil {
    					t.Errorf("For %s : expected %v got %v with %v", tc.name, tc.success, ok, err)
    				} else {
    					t.Errorf("For %s : expected %v got %v", tc.name, tc.success, ok)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.in, func(t *testing.T) {
    			pkg, sym := splitPkg(tc.in)
    			if pkg != tc.pkg {
    				t.Errorf("splitPkg(%q) got pkg %q want %q", tc.in, pkg, tc.pkg)
    			}
    			if sym != tc.sym {
    				t.Errorf("splitPkg(%q) got sym %q want %q", tc.in, sym, tc.sym)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta2/defaults_test.go

    			expectedSelectPolicy:  string(autoscalingv2.MaxPolicySelect),
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.annotation, func(t *testing.T) {
    			scaleDownRules := &autoscalingv2.HPAScalingRules{
    				StabilizationWindowSeconds: tc.stabilizationSeconds,
    				SelectPolicy:               tc.selectPolicy,
    			}
    			if tc.rateDownPods != 0 || tc.rateDownPodsPeriodSeconds != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    	tc.Lock()
    
    	tc.scaleUpdated = false
    	tc.statusUpdated = false
    	tc.eventCreated = false
    	tc.processed = make(chan string, 100)
    	if tc.CPUCurrent == 0 {
    		tc.computeCPUCurrent()
    	}
    
    	if tc.resource == nil {
    		tc.resource = &fakeResource{
    			name:       "test-rc",
    			apiVersion: "v1",
    			kind:       "ReplicationController",
    		}
    	}
    	tc.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    			expectError: true,
    			contents:    &TracingOptions{ConfigFile: "/path/doesnt/exist"},
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			errs := tc.contents.Validate()
    			if !tc.expectError && len(errs) != 0 {
    				t.Errorf("Calling Validate expected no error, got %v", errs)
    			} else if tc.expectError && len(errs) == 0 {
    				t.Errorf("Calling Validate expected error, got no error")
    			}
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/version_test.go

    			IstioVersion(""),
    			0,
    		},
    		{
    			IstioVersion(""),
    			IstioVersion("1.9"),
    			1,
    		},
    	}
    
    	for _, tc := range tcs {
    		t.Run(fmt.Sprintf("compare version %s->%s", tc.a, tc.b), func(t *testing.T) {
    			r := tc.a.Compare(tc.b)
    			if r != tc.result {
    				t.Errorf("expected %d, got %d", tc.result, r)
    			}
    		})
    	}
    }
    
    func TestMinimumIstioVersion(t *testing.T) {
    	tcs := []struct {
    		name     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	tc.startingPod.ResourceVersion = "2"
    	tc.startingPod.APIVersion = examplev1.SchemeGroupVersion.String()
    
    	// pod with rv=3 is found when attempting to persist the update
    	tc.updatePod.Name = name
    	tc.updatePod.Namespace = namespace
    	tc.updatePod.UID = uid
    	tc.updatePod.ResourceVersion = "3"
    	tc.updatePod.APIVersion = examplev1.SchemeGroupVersion.String()
    
    	// patches are submitted with a rv=2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		},
    	}...)
    
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			result, err := takeByTopologyNUMAPacked(tc.topo, tc.availableCPUs, tc.numCPUs)
    			if tc.expErr != "" && err != nil && err.Error() != tc.expErr {
    				t.Errorf("expected error to be [%v] but it was [%v]", tc.expErr, err)
    			}
    			if !result.Equals(tc.expResult) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top