Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 901 for rulesv4 (0.25 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-td-aliases-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:
                - orRules:
                    rules:
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// SyncProxyRulesLastTimestamp is the timestamp proxy rules were last
    	// successfully synced.
    	SyncProxyRulesLastTimestamp = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_last_timestamp_seconds",
    			Help:           "The last time proxy rules were successfully synced",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K 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. pilot/pkg/security/authz/builder/testdata/http/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: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

        name: egress
      rules:
      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: google.com
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
        group: networking.istio.io
        name: egress
      rules:
      - backendRefs:
        - kind: Hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

         *
         * @param key the primary key
         * @param rules the rules to be snapshotted
         * @return a snapshot of the inputs
         */
        private HashCode computeExplicitInputsSnapshot(KEY key, ConfigurableRules<DETAILS> rules) {
            List<Object> toBeSnapshotted = Lists.newArrayListWithExpectedSize(2 + 2 * rules.getConfigurableRules().size());
            toBeSnapshotted.add(keyToSnapshottable.transform(key));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/allow-path-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:
                    - urlPath:
                        path:
                          exact: /exact
                    - urlPath:
                        path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top