Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 733 for rulesv6 (0.24 sec)

  1. pkg/apis/rbac/validation/validation.go

    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, validation.ValidateObjectMeta(&role.ObjectMeta, true, ValidateRBACName, field.NewPath("metadata"))...)
    
    	for i, rule := range role.Rules {
    		if err := ValidatePolicyRule(rule, true, field.NewPath("rules").Index(i)); err != nil {
    			allErrs = append(allErrs, err...)
    		}
    	}
    	if len(allErrs) != 0 {
    		return allErrs
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/README.md

        - [Local UP Cluster](#local-up-cluster)
        - [GCE Cluster](#gce-cluster)
        - [Cluster Created by Kubeadm](#cluster-created-by-kubeadm)
      - [Debug](#debug)
        - [Check IPVS proxy rules](#check-ipvs-proxy-rules)
        - [Why kube-proxy can't start IPVS mode](#why-kube-proxy-cant-start-ipvs-mode)
    
    # IPVS
    
    This document intends to show users
    - what is IPVS
    - difference between IPVS and IPTABLES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

    import org.gradle.internal.resolve.ModuleVersionResolveException
    import org.gradle.internal.resolve.caching.ComponentMetadataRuleExecutor
    import org.gradle.internal.rules.DefaultRuleActionAdapter
    import org.gradle.internal.rules.DefaultRuleActionValidator
    import org.gradle.internal.rules.SpecRuleAction
    import org.gradle.internal.serialize.Serializer
    import org.gradle.internal.snapshot.ValueSnapshotter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/parse.go

    					return nil, fmt.Errorf("error parsing rule %q: %v", line, err)
    				}
    				if c.Deleted {
    					return nil, fmt.Errorf("cannot add rules to deleted chain %q", chain)
    				}
    
    				rule, err := ParseRule(line, false)
    				if err != nil {
    					return nil, err
    				}
    				c.Rules = append(c.Rules, rule)
    			} else if match := deleteChainRegex.FindStringSubmatch(line); match != nil {
    				chain := iptables.Chain(match[1])
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. pkg/apis/rbac/validation/validation_test.go

    				Namespace: "default",
    				Name:      "default",
    			},
    			Rules: []rbac.PolicyRule{{
    				// non-resource URLs are invalid for namespaced rules
    				Verbs:           []string{"get"},
    				NonResourceURLs: []string{"/*"},
    			}},
    		},
    		wantErr: true,
    		errType: field.ErrorTypeInvalid,
    		field:   "rules[0].nonResourceURLs",
    	}.test(t)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

        }
    
        def "further rules are not fired when any rule rejects candidate"() {
            buildFile << """
                dependencies {
                    conf "org.utils:api:1.+"
                }
    
                def extraRuleCandidates = []
                configurations.all {
                    resolutionStrategy {
                        componentSelection {
                            all ${rules['select 1.1']}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    		require.Contains(t, rules, rule)
    		policy.Rules = append(policy.Rules, rules[rule])
    	}
    	require.Contains(t, attrs, req)
    	auditConfig := NewPolicyRuleEvaluator(&policy).EvaluatePolicyRule(attrs[req])
    	assert.Equal(t, expLevel, auditConfig.Level, "request:%s rules:%s", req, strings.Join(ruleNames, ","))
    	assert.True(t, stageEqual(expOmitStages, auditConfig.OmitStages), "request:%s rules:%s, expected stages: %v, actual stages: %v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
Back to top