Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for RULE (0.04 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    Russ Cox <******@****.***> 1715215293 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-rule-source.properties

    Adam Murdoch <******@****.***> 1715297124 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 70 bytes
    - Viewed (0)
  3. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,RBDVolumeSource,CephMonitors
    API rule violation: names_match,k8s.io/api/core/v1,RBDVolumeSource,RBDImage
    API rule violation: names_match,k8s.io/api/core/v1,RBDVolumeSource,RBDPool
    API rule violation: names_match,k8s.io/api/core/v1,RBDVolumeSource,RadosUser
    API rule violation: names_match,k8s.io/api/core/v1,VolumeSource,CephFS
    API rule violation: names_match,k8s.io/api/core/v1,VolumeSource,StorageOS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle.go

    			// we can skip this rule if it doesn't match the tested
    			// prefix.
    			if !strings.HasPrefix(prefix, rule.GetPrefix()) && !strings.HasPrefix(rule.GetPrefix(), prefix) {
    				continue
    			}
    		}
    
    		if rule.NoncurrentVersionExpiration.NoncurrentDays > 0 {
    			return true
    		}
    		if rule.NoncurrentVersionExpiration.NewerNoncurrentVersions > 0 {
    			return true
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/destination_rule.go

    			// If there is no top level policy and the incoming rule has top level
    			// traffic policy, use the one from the incoming rule.
    			if mergedRule.TrafficPolicy == nil && rule.TrafficPolicy != nil {
    				mergedRule.TrafficPolicy = rule.TrafficPolicy
    			}
    			// If there is no exportTo in the existing rule and
    			// the incoming rule has an explicit exportTo, use the
    			// one from the incoming rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        def "rule class cannot have abstract rule methods"() {
            when:
            extract(AbstractMethodsRules)
    
            then:
            def e = thrown(InvalidModelRuleDeclarationException)
            e.message == """Type ${fullyQualifiedNameOf(AbstractMethodsRules)} is not a valid rule source:
    - Method thing(java.lang.String) is not a valid rule method: A rule method cannot be abstract"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		// Lifecycle with empty Filter tag
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/RuleSourceApplicationTest.groovy

        }
    
        def "can apply a rule source by id"() {
            when:
            def project = buildProject()
            project.apply plugin: 'custom-rule-source'
    
            then:
            project.modelRegistry.realize("foo", String) == "bar"
        }
    
        def "can apply a rule source by type"() {
            when:
            def project = buildProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					XValidations: apiextensions.ValidationRules{
    						{Rule: "self.i >= oldSelf.i.value()", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self.s == oldSelf.s.value()", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self.b == oldSelf.b.value()", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self.o == oldSelf.o.value()", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self.o.i >= oldSelf.o.i.value()", OptionalOldSelf: ptr.To(true)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/controller/job/success_policy.go

    		return "", false
    	}
    
    	rulesMatchedMsg := "Matched rules at index"
    	for index, rule := range successPolicy.Rules {
    		if rule.SucceededIndexes != nil {
    			requiredIndexes := parseIndexesFromString(logger, *rule.SucceededIndexes, int(completions))
    			// Failed to parse succeededIndexes of the rule due to some errors like invalid format.
    			if len(requiredIndexes) == 0 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top