Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 831 for valid (0.05 sec)

  1. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    Justin Van Dort <******@****.***> 1717185987 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/externalcontrolplane-valid-urls.yaml

    Michael Weiner <******@****.***> 1697542898 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/externalcontrolplane-valid-urls-custom-ns.yaml

    Nicole LiHui <******@****.***> 1704680429 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 02:20:29 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/crypto/x509/platform_test.go

    				NotBefore:    now.Add(-time.Hour),
    				NotAfter:     now.Add(time.Hour),
    				ExtKeyUsage:  []ExtKeyUsage{ExtKeyUsageServerAuth},
    			},
    			dnsName: "valid.testing.golang.invalid",
    		},
    		{
    			name: "valid (with time)",
    			cert: &Certificate{
    				SerialNumber: big.NewInt(1),
    				DNSNames:     []string{"valid.testing.golang.invalid"},
    				NotBefore:    now.Add(-time.Hour),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

            expect:
            collector.format() == """Type ${fullyQualifiedNameOf(WithConstructor)} is not a valid <thing>:
    - Field value is not valid: should have an initializer
    - Field value is not valid: should accept an int
    - Field FormattingValidationProblemCollectorTest.SuperClass.value is not valid: cannot have fields"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/sync/oncefunc.go

    	var (
    		once   Once
    		valid  bool
    		p      any
    		result T
    	)
    	g := func() {
    		defer func() {
    			p = recover()
    			if !valid {
    				panic(p)
    			}
    		}()
    		result = f()
    		f = nil
    		valid = true
    	}
    	return func() T {
    		once.Do(g)
    		if !valid {
    			panic(p)
    		}
    		return result
    	}
    }
    
    // OnceValues returns a function that invokes f only once and returns the values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/registry/storage/csinode/strategy_test.go

    			emptyAllocatable,
    			emptyAllocatable,
    			emptyAllocatable,
    		},
    		{
    			"allow valid allocatable when it's already set",
    			valid,
    			differentAllocatable,
    			differentAllocatable,
    		},
    		{
    			"allow valid allocatable when it's not set",
    			emptyAllocatable,
    			valid,
    			valid,
    		},
    	}
    
    	for _, test := range volumeLimitsCases {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

    - Method broken3(java.lang.String) is not a valid rule method: A method annotated with @Rules must have void return type.
    - Method broken3(java.lang.String) is not a valid rule method: A method annotated with @Rules must have at least two parameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset_test.go

    		{"9.3.4.0 is valid since >= 6.0", "9.3.4.0", true},
    		{"not a valid semantic version", "total junk", false},
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			valid := checkMinVersion(testCase.vstring)
    			if testCase.valid != valid {
    				t.Errorf("Expected result: %v, Got result: %v", testCase.valid, valid)
    			}
    		})
    	}
    }
    
    const testIPSetVersion = "v6.19"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    		cfgPath         string
    		expectedError   bool
    	}{
    		{
    			name:            "valid: run diff with empty config path on valid manifest path",
    			cfgPath:         "",
    			setManifestPath: true,
    			manifestPath:    testUpgradeDiffManifest,
    			expectedError:   false,
    		},
    		{
    			name:            "valid: run diff on valid manifest path",
    			cfgPath:         testUpgradeDiffConfig,
    			setManifestPath: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top