Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,910 for nvalid (0.13 sec)

  1. maven-model-builder/src/test/resources/poms/validation/invalid-aggregator-packaging-pom.xml

    Michael Osipov <******@****.***> 1416744059 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 997 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/endpoint.go

    		return host, port, nil
    	}
    
    	return "", "", errors.Errorf("hostport %s: host '%s' must be a valid IP address or a valid RFC-1123 DNS subdomain", hostport, host)
    }
    
    // ParsePort parses a string representing a TCP port.
    // If the string is not a valid representation of a TCP port, ParsePort returns an error.
    func ParsePort(port string) (int, error) {
    	portInt, err := netutils.ParsePort(port, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. internal/arn/arn_test.go

    			wantErr: false,
    		},
    		{
    			name: "invalid ARN length must fail",
    			args: args{
    				arnStr: "arn:minio:",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN partition must fail",
    			args: args{
    				arnStr: "arn:invalid:iam:us-east-1::role/my-role",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN service must fail",
    			args: args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/apiserverinternal/validation/validation.go

    // isValidAPIVersion tests whether the value passed is a valid apiVersion. A
    // valid apiVersion contains a version string that matches DNS_LABEL format,
    // with an optional group/ prefix, where the group string matches DNS_SUBDOMAIN
    // format. If the value is not valid, a list of error strings is returned.
    // Otherwise an empty list (or nil) is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/cgo/handle.go

    	}
    
    	handles.Store(h, v)
    	return Handle(h)
    }
    
    // Value returns the associated Go value for a valid handle.
    //
    // The method panics if the handle is invalid.
    func (h Handle) Value() any {
    	v, ok := handles.Load(uintptr(h))
    	if !ok {
    		panic("runtime/cgo: misuse of an invalid Handle")
    	}
    	return v
    }
    
    // Delete invalidates a handle. This method should only be called once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue49439.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    type T0 /* ERROR "invalid recursive type" */ [P T0[P]] struct{}
    
    type T1 /* ERROR "invalid recursive type" */ [P T2[P]] struct{}
    type T2[P T1[P]] struct{}
    
    type T3 /* ERROR "invalid recursive type" */ [P interface{ ~struct{ f T3[int] } }] struct{}
    
    // valid cycle in M
    type N[P M[P]] struct{}
    type M[Q any] struct { F *M[Q] }
    
    // "crazy" case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 739 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/DefaultRuleActionValidatorTest.groovy

        }
    
        def "accepts valid type"() {
            def ruleValidator = new DefaultRuleActionValidator(String)
            def ruleAction = Stub(RuleAction) {
                getInputTypes() >> { [String] }
            }
    
            expect:
            ruleValidator.validate(ruleAction) == ruleAction
        }
    
        def "accepts valid type with multiple valid types"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

            nonHeapStats.maxSizeInBytes == 1000
            nonHeapStats.usedPercent == 70
        }
    
        def "reports invalid when maximum memory cannot be determined"() {
            expect:
            !stats.valid
            stats.maxSizeInBytes == -1
    
            where:
            stats << [
                    GarbageCollectionStats.forHeap(withoutMaxMemory(heapEvents)),
                    GarbageCollectionStats.forNonHeap(withoutMaxMemory(nonHeapEvents))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top