Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,756 for valid (0.05 sec)

  1. istioctl/pkg/validate/validate_test.go

    			valid: false,
    		},
    		{
    			name:  "port name missing service",
    			in:    portNameMissingSvc,
    			valid: false,
    		},
    		{
    			name:  "version label missing deployment",
    			in:    versionLabelMissingDeployment,
    			valid: true,
    		},
    		{
    			name:  "valid port naming service",
    			in:    validPortNamingSvc,
    			valid: true,
    		},
    		{
    			name:  "valid port naming with suffix service",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            ex.message == """Type ${fullyQualifiedNameOf(WithInstanceScopedField)} is not a valid managed type:
    - Field name is not valid: Fields must be static final.
    - Field age is not valid: Fields must be static final."""
        }
    
        @Managed
        static abstract class WithInstanceScopedFieldInSuperclass extends WithInstanceScopedField {
        }
    
        def "instance scoped fields are not allowed in super-class"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser_test.go

    		{"//line foo :123:1\n", valid, "foo ", 123, 1},
    		{"//line ::123\n", valid, ":", 123, 0},
    
    		// effect of valid //line directives on columns
    		{"//line :x:1:10\n", valid, ":x", 1, 10},
    		{"//line foo ::1:2\n", valid, "foo :", 1, 2},
    		{"//line foo:123abc:1:1000\n", valid, "foo:123abc", 1, 1000},
    		{"//line foo :123:1000\n\n", valid, "foo ", 124, 1},
    		{"//line ::123:1234\n", valid, ":", 123, 1234},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/events_test.go

    			newEvent := oldEvent.DeepCopy()
    			newEvent.EventTime = tc.New
    
    			updateErrs := ValidateEventUpdate(newEvent, oldEvent, eventsv1.SchemeGroupVersion)
    			if e, a := tc.Valid, len(updateErrs) == 0; e != a {
    				t.Errorf("%v: expected valid=%v, got %v: %v", tc.Valid, e, a, updateErrs)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    - Method notOk() is not a valid rule method: Cannot have type variables (i.e. cannot be a generic method)
    - Method notOk() is not a valid rule method: A method annotated with @Mutate must have at least one parameter
    - Method notARule() is not a valid rule method: A method that is not annotated as a rule must be private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top