Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 733 for rulesv4 (0.22 sec)

  1. staging/src/k8s.io/api/rbac/v1/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 May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                DefaultMultipleCandidateResult<Object> result = null;
    
                DisambiguationRule<Object> rules = consumerSchema.disambiguationRules(attribute);
                if (rules.doesSomething()) {
                    result = new DefaultMultipleCandidateResult<>(requested, candidates);
                    rules.execute(result);
                    if (result.hasResult()) {
                        return result.getMatches();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			ObjectMeta: metav1.ObjectMeta{Name: "system:basic-user"},
    			Rules:      basicUserRules,
    		},
    		{
    			// a role which provides just enough power read insensitive cluster information
    			ObjectMeta: metav1.ObjectMeta{Name: "system:public-info-viewer"},
    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("get").URLs(
    					"/livez", "/readyz", "/healthz", "/version", "/version/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. build/root/Makefile

    cross:
    	hack/make-rules/cross.sh
    cross-in-a-container: KUBE_OUTPUT_SUBPATH = $(OUT_DIR)/dockerized
    cross-in-a-container:
    ifeq (,$(wildcard /.dockerenv))
    	echo -e "\nThe 'cross-in-a-container' target can only be used from within a docker container.\n"
    else
    	hack/make-rules/cross.sh
    endif
    endif
    
    define CMD_HELP_INFO
    # Add rules for all directories in cmd/
    #
    # Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1alpha1/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
    - 11.2K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/fake_test.go

    	rules = dedent.Dedent(strings.Trim(`
    		*nat
    		:KUBE-MISC-TWO - [0:0]
    		-X KUBE-MISC-TWO
    		COMMIT
    		`, "\n"))
    	err = fake.Restore(iptables.TableNAT, []byte(rules), iptables.NoFlushTables, iptables.RestoreCounters)
    	if err == nil || !strings.Contains(err.Error(), "referenced by existing rules") {
    		t.Fatalf("Expected 'referenced by existing rules' error from Restore, got %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/model/model.go

    		extended:  g,
    	}
    
    	p.rules = append([]*rule{r}, p.rules...)
    }
    
    func (p *ruleList) appendLast(g generator, key string, values, notValues []string) {
    	if len(values) == 0 && len(notValues) == 0 {
    		return
    	}
    	r := &rule{
    		key:       key,
    		values:    values,
    		notValues: notValues,
    		g:         g,
    	}
    
    	p.rules = append(p.rules, r)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

        /**
         * Returns the currently configured version selection rules object.
         *
         * @return the version selection rules
         * @since 2.2
         */
        ComponentSelectionRules getComponentSelection();
    
        /**
         * The componentSelection block provides rules to filter or prevent certain components from appearing in the resolution result.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. pkg/util/iptables/testing/parse_test.go

    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-FORWARD"),
    						Rules: []*Rule{
    							mustParseRule(`-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP`),
    							mustParseRule(`-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. 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)
Back to top