Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 872 for rulesv4 (0.24 sec)

  1. pkg/apis/batch/validation/validation_test.go

    					SuccessPolicy: &batch.SuccessPolicy{
    						Rules: func() []batch.SuccessPolicyRule {
    							var rules []batch.SuccessPolicyRule
    							for i := 0; i < 21; i++ {
    								rules = append(rules, batch.SuccessPolicyRule{
    									SucceededCount: ptr.To[int32](5),
    								})
    							}
    							return rules
    						}(),
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AdditionalVariantsMetadataRulesIntegrationTest.groovy

            resolve.prepare()
        }
    
        @Override
        boolean isJavaEcosystem() {
            false
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20145")
        def "component metadata rules can add variants even if no derivation rules are present"() {
            given: "a published module"
            repository {
                group("org") {
                    module("a") {
                        version("1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    Gradle provides link:{javadocPath}/org/gradle/api/attributes/AttributeCompatibilityRule.html[attribute compatibility rules] that can be defined for each attribute.
    The role of a compatibility rule is to explain which attribute values are _compatible_ based on what the consumer asked for.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/number_generated_rules_test.go

    	"k8s.io/utils/ptr"
    )
    
    // kube-proxy generates iptables rules to forward traffic from Services to Endpoints
    // kube-proxy uses iptables-restore to configure the rules atomically, however,
    // this has the downside that large number of rules take a long time to be processed,
    // causing disruption.
    // There are different parameters than influence the number of rules generated:
    // - ServiceType
    // - Number of Services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-td-aliases-source-principal-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	// Rules holds all the PolicyRules for this ClusterRole
    	// +optional
    	// +listType=atomic
    	Rules []PolicyRule `json:"rules" protobuf:"bytes,2,rep,name=rules"`
    	// AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-deny-and-allow-out2.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin-allow]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 524 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            given:
            def action = Mock(Action)
    
            when:
            strategy.eachDependency(action)
    
            then:
            1 * dependencySubstitutions.allWithDependencyResolveDetails(action, componentSelectorConverter)
        }
    
        def "provides dependency resolve rule with forced modules first and then user specified rules"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/plugins/RuleBasedPluginTarget.java

            for (Class<? extends RuleSource> ruleSource : declaredSources) {
                ExtractedRuleSource<?> rules = ruleInspector.extract(ruleSource);
                for (Class<?> dependency : rules.getRequiredPlugins()) {
                    target.getPluginManager().apply(dependency);
                }
                modelRegistry.getRoot().applyToSelf(rules);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/validation/validation.go

    func validateScalingRules(rules *autoscaling.HPAScalingRules, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if rules != nil {
    		if rules.StabilizationWindowSeconds != nil && *rules.StabilizationWindowSeconds < 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("stabilizationWindowSeconds"), rules.StabilizationWindowSeconds, "must be greater than or equal to zero"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top