Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,188 for rulesv4 (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultCompatibilityRuleChain.java

            rules.add(rule);
        }
    
        @Override
        public void reverseOrdered(Comparator<? super T> comparator) {
            Action<? super CompatibilityCheckDetails<T>> rule = AttributeMatchingRules.orderedCompatibility(comparator, true);
            rules.add(rule);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/UserConfiguredCapabilityResolver.java

        private final CapabilitiesResolutionInternal rules;
    
        public UserConfiguredCapabilityResolver(CapabilitiesResolutionInternal capabilitiesResolutionRules) {
            this.rules = capabilitiesResolutionRules;
        }
    
        @Override
        public void resolve(CapabilitiesConflictHandler.ResolutionDetails details) {
            rules.apply(details);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. docs/features/r8_proguard.md

    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/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: Tue Oct 17 16:35:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ExtractedRuleSource.java

        /**
         * Applies the rules of this rule source to the given element.
         */
        void apply(ModelRegistry modelRegistry, MutableModelNode target);
    
        /**
         * Returns the set of plugins required by the rules of this rule source.
         */
        List<? extends Class<?>> getRequiredPlugins();
    
        /**
         * Asserts that no additional plugins are required by the rules of this rule source.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/registry/rbac/validation/internal_version_adapter.go

    	rules := []rbacv1.PolicyRule{}
    	for i := range inRules {
    		v1Rule := rbacv1.PolicyRule{}
    		err := rbacv1helpers.Convert_rbac_PolicyRule_To_v1_PolicyRule(&inRules[i], &v1Rule, nil)
    		if err != nil {
    			return err
    		}
    		rules = append(rules, v1Rule)
    	}
    
    	return ConfirmNoEscalation(ctx, ruleResolver, rules)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation_test.go

    	for _, rule := range invalidRules {
    		errorCases = append(errorCases, audit.Policy{Rules: []audit.PolicyRule{rule}})
    	}
    
    	// Multiple rules.
    	errorCases = append(errorCases, audit.Policy{Rules: append(validRules, audit.PolicyRule{})})
    
    	// invalid omitStages in policy
    	policy := audit.Policy{OmitStages: []audit.Stage{
    		audit.Stage("foo"),
    	},
    		Rules: []audit.PolicyRule{{
    			Level: audit.LevelMetadata,
    		}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. pkg/registry/authorization/selfsubjectrulesreview/rest.go

    	rules := make([]authorizationapi.ResourceRule, len(infos))
    	for i, info := range infos {
    		rules[i] = authorizationapi.ResourceRule{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    			Resources:     info.GetResources(),
    			ResourceNames: info.GetResourceNames(),
    		}
    	}
    	return rules
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/README.md

    If, for instance, the host has `iptables-legacy` and `iptables-nft` in $PATH, which should we use? We should see if rules are defined in `nft` at all and prefer that, but if no rules are in `nft` tables, and the `legacy` binary is available and rules are defined in `legacy`, we should use the `legacy` binary. If no rules are defined in either, we should use the system-default.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top