Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 535 for testCases (0.14 sec)

  1. cmd/object-handlers_test.go

    				getPutObjectURL("", testCase.bucketName, testCase.objectName),
    				int64(testCase.dataLen), testCase.chunkSize, bytes.NewReader(testCase.data),
    				testCase.accessKey, testCase.secretKey)
    		case testCase.contentEncoding == "":
    			req, err = newTestStreamingSignedRequest(http.MethodPut,
    				getPutObjectURL("", testCase.bucketName, testCase.objectName),
    				int64(testCase.dataLen), testCase.chunkSize, bytes.NewReader(testCase.data),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. pkg/util/sets/set_test.go

    		}
    		// s1c should be updated
    		if !want.Equals(s1c) {
    			t.Errorf("want %+v, but got %+v", want, s1c)
    		}
    	})
    }
    
    func TestSupersetOf(t *testing.T) {
    	testCases := []struct {
    		name   string
    		first  Set[string]
    		second Set[string]
    		want   bool
    	}{
    		{
    			name:   "both nil",
    			first:  nil,
    			second: nil,
    			want:   true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    				t.Errorf("Case [%d], unexpected add IPVS virtual server error: %v", i, err)
    			}
    		}
    		if err := proxier.syncService(testCases[i].svcName, testCases[i].newVirtualServer, testCases[i].bindAddr, testCases[i].alreadyBoundAddrs); err != nil {
    			t.Errorf("Case [%d], unexpected sync IPVS virtual server error: %v", i, err)
    		}
    		// check
    		list, err := proxier.ipvs.GetVirtualServers()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/dns/client/dns_test.go

    			}
    		}
    	})
    	for _, tc := range testCases {
    		matched := sets.New[string]()
    		for key := range nt.Table {
    			if strings.HasPrefix(key, tc.startsWith) {
    				matched.Insert(key)
    			}
    		}
    		if !matched.Equals(tc.expected) {
    			t.Errorf("expected records %v, got: %v", tc.expected, matched)
    		}
    	}
    }
    
    func testDNS(t *testing.T, d *LocalDNSServer) {
    	testCases := []struct {
    		name                     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

        @Override
        def indyModes() {
            return [true]
        }
    
        @Override
        def testCases() {
            // static import calls (are handled differently by the dynamic Groovy's codegen)
            return [
                // varInitializer | processCreator | expectedPwdSuffix | expectedEnvVar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if pod.Annotations == nil {
    			pod.Annotations = make(map[string]string)
    		}
    		pod.Annotations[key] = "true"
    	}
    	mile := func(s string) {
    		milestones = append(milestones, s)
    	}
    
    	testCases := []struct {
    		name        string
    		decorator   func(runtime.Object)
    		beginCreate BeginCreateFunc
    		afterCreate AfterCreateFunc
    		// the TTLFunc is an easy hook to force a failure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    func TestPIDPressure_VerifyPodStatus(t *testing.T) {
    	testCases := map[string]struct {
    		wantPodStatus v1.PodStatus
    	}{
    		"eviction due to pid pressure": {
    			wantPodStatus: v1.PodStatus{
    				Phase:   v1.PodFailed,
    				Reason:  "Evicted",
    				Message: "The node was low on resource: pids. Threshold quantity: 1200, available: 500. ",
    			},
    		},
    	}
    	for name, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    func TestDeviceRunContainerOptions(t *testing.T) {
    	const (
    		podUID        = "pod"
    		containerName = "container"
    		resource1     = "example1.com/resource1"
    		resource2     = "example2.com/resource2"
    	)
    	testCases := []struct {
    		description          string
    		gate                 bool
    		responsesPerResource map[string]*pluginapi.ContainerAllocateResponse
    		expected             *DeviceRunContainerOptions
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/registry/batch/cronjob/strategy_test.go

    	}
    }
    
    func TestCronJobStrategy_WarningsOnCreate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    
    	now := metav1.Now()
    
    	testcases := map[string]struct {
    		cronjob           *batch.CronJob
    		wantWarningsCount int32
    	}{
    		"happy path cronjob": {
    			wantWarningsCount: 0,
    			cronjob: &batch.CronJob{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    				},
    			},
    		},
    	}
    
    	for _, testcase := range testcases {
    		t.Run(testcase.name, func(t *testing.T) {
    			client, esController := newController(t, []string{"node-1"}, time.Duration(0))
    
    			for _, pod := range testcase.pods {
    				esController.podStore.Add(pod)
    			}
    			esController.serviceStore.Add(testcase.service)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top