Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,188 for rulesv6 (0.28 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            private final List<ExtractedRuleDetails> rules;
    
            public DefaultExtractedRuleSource(List<ExtractedRuleDetails> rules) {
                this.rules = rules;
            }
    
            @VisibleForTesting // used in tests only
            public List<ExtractedModelRule> getRules() {
                return CollectionUtils.collect(rules, new InternalTransformer<ExtractedModelRule, ExtractedRuleDetails>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/http.yaml

    kind: HTTPRoute
    metadata:
      name: http
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
          headers:
          - name: my-header
            value: some-value
            type: Exact
        filters:
        - type: RequestHeaderModifier
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/dag/parse.go

    	return string(e)
    }
    
    // parseRules parses the rules of a DAG.
    func parseRules(rules string) (out []rule, err error) {
    	defer func() {
    		e := recover()
    		switch e := e.(type) {
    		case nil:
    			return
    		case syntaxError:
    			err = e
    		default:
    			panic(e)
    		}
    	}()
    	p := &rulesParser{lineno: 1, text: rules}
    
    	var prev []string
    	var op string
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ScalarCollectionIntegrationTest.groovy

            given:
            buildFile << """
    class Rules extends RuleSource {
        @Model
        void strings(${type.name}<String> s) {
        }
    
        @Mutate
        void tasks(ModelMap<Task> tasks, @Path("strings") def strings) {
            tasks.create("show") {
                doLast {
                    println "strings: \$strings"
                }
            }
        }
    }
    
    apply plugin: Rules
    """
    
            when:
            run("show")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/action/InstantiatingActionTest.groovy

                TestUtil.instantiatorFactory().decorateLenient(),
                shouldNotFail
            )
    
            then:
            action.rules.configurableRules[0].ruleParams.isolate() == [123, "test string"] as Object[]
            action.rules.configurableRules[0].ruleClass == RuleWithParams
    
            when:
            action.execute(details)
    
            then:
            1 * details.see(123, "test string")
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 14 07:19:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/subject_locator.go

    				rules, err := r.roleToRuleMapper.GetRoleReferenceRules(roleBinding.RoleRef, namespace)
    				if err != nil {
    					// if we have an error, just keep track of it and keep processing.  Since rules are additive,
    					// missing a reference is bad, but we can continue with other rolebindings and still have a list
    					// that does not contain any invalid values
    					errorlist = append(errorlist, err)
    				}
    				if RulesAllow(requestAttributes, rules...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/custom-grpc-provider-out1.yaml

            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin1
            principals:
            - andIds:
                ids:
                - any: true
          istio-ext-authz-ns[foo]-policy[httpbin-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 15 22:42:30 UTC 2021
    - 873 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-custom-grpc-provider-out1.yaml

            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin1
            principals:
            - andIds:
                ids:
                - any: true
          istio-ext-authz-ns[foo]-policy[httpbin-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 873 bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemSupportTest.groovy

    class JavaEcosystemSupportTest extends Specification {
        def "check usage compatibility rules (consumer value=#consumer, producer value=#producer, compatible=#compatible)"() {
            given:
            JavaEcosystemSupport.UsageCompatibilityRules rules = new JavaEcosystemSupport.UsageCompatibilityRules()
            def details = Mock(CompatibilityCheckDetails)
            when:
            rules.execute(details)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    		}
    		for _, currRules := range rules {
    			ret.Rules = append(ret.Rules, currRules...)
    		}
    		return ret
    	}
    
    	combinedApplyRole := func(selectors []map[string]string, rules ...[]rbacv1.PolicyRule) *rbacv1ac.ClusterRoleApplyConfiguration {
    		ret := rbacv1ac.ClusterRole("combined")
    
    		var r []*rbacv1ac.PolicyRuleApplyConfiguration
    		for _, currRules := range rules {
    			r = append(r, toApplyPolicyRules(currRules)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top