Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for testpass (0.25 sec)

  1. cmd/sts-handlers_test.go

    		// Init and run test on ErasureSet backend.
    		{serverType: "ErasureSet", signer: signerV4},
    	}
    	testCases := []*TestSuiteIAM{}
    	for _, bt := range baseTestCases {
    		testCases = append(testCases,
    			newTestSuiteIAM(bt, false),
    			newTestSuiteIAM(bt, true),
    		)
    	}
    	for i, testCase := range testCases {
    		etcdStr := ""
    		if testCase.withEtcdBackend {
    			etcdStr = " (with etcd backend)"
    		}
    		t.Run(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  2. cmd/erasure-healing_test.go

    		// Add new cases as seen
    	}
    	for _, testCase := range testCases {
    		testCase := testCase
    		t.Run(testCase.name, func(t *testing.T) {
    			gotMeta, dangling := isObjectDangling(testCase.metaArr, testCase.errs, testCase.dataErrs)
    			if !gotMeta.Equals(testCase.expectedMeta) {
    				t.Errorf("Expected %#v, got %#v", testCase.expectedMeta, gotMeta)
    			}
    			if dangling != testCase.expectedDangling {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    					return true
    				}
    				if from.Config().HasSidecar() && opts.To.Config().HasSidecar() {
    					return true
    				}
    				return false
    			}
    			_ = Never
    			_ = SameNetwork
    			testCases := []reachability.TestCase{
    				{
    					ConfigFile:    "beta-mtls-on.yaml",
    					Namespace:     systemNM,
    					Include:       Always,
    					ExpectSuccess: SupportsHBone,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ConsistentListFromCache, false)
    		testCases := append(commonTestCases,
    			testCase{opts: storage.ListOptions{ResourceVersion: ""}, expectBypass: true},
    		)
    		for _, tc := range testCases {
    			testGetListCacheBypass(t, tc.opts, tc.expectBypass)
    		}
    
    	})
    	t.Run("ConsistentListFromCache", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    				},
    				InitContainers: []v1.Container{
    					{
    						Name:          "restartable-init",
    						RestartPolicy: &restartPolicyAlways,
    					},
    				},
    			},
    		}
    	}
    
    	testCases := []struct {
    		name                    string
    		pod                     *v1.Pod
    		enableSidecarContainers bool
    		wantPreFilterStatus     *framework.Status
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   15001,
    						Protocol: "HTTP",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	testcases := []struct {
    		name             string
    		services         []*model.Service
    		sidecar          *config.Config
    		expectedListener []int
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// TODO(#108003): As of now, watchcache is deliberately ignoring
    			// limit if RV=0 is specified, returning whole list of objects.
    			// While this should eventually get fixed, for now we're explicitly
    			// ignoring this testcase for watchcache.
    			ignoreForWatchCache:        true,
    			expectedOut:                []example.Pod{*preset[1]},
    			expectContinue:             true,
    			expectedRemainingItemCount: utilpointer.Int64(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top