Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 558 for rulesv6 (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            then:
            executer.expectDocumentedDeprecationWarning("Declaring client module dependencies has been deprecated. This is scheduled to be removed in Gradle 9.0. Please use component metadata rules instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#declaring_client_module_dependencies")
            succeeds('listJars')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-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-1]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

     */
    
    package org.gradle.testing.jacoco.plugins.rules
    
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.jacoco.plugins.JacocoMultiVersionIntegrationTest
    import org.gradle.testing.jacoco.plugins.fixtures.JacocoCoverage
    
    import static org.gradle.testing.jacoco.plugins.rules.JacocoViolationRulesLimit.Insufficient
    import static org.gradle.testing.jacoco.plugins.rules.JacocoViolationRulesLimit.Sufficient
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top