Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 733 for rulesv6 (0.14 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// if binary seems to exist, check the dump of rules in our netns, and see if any rules exist there
    	// Note that this is highly dependent on context.
    	// new pod netns? probably no rules. Hostnetns? probably rules
    	// So this is mostly just a "hint"/heuristic as to which version we should be using, if more than one binary is present.
    	// `xx-save` should return _no_ output (0 lines) if no rules are defined in this netns for that binary variant.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessor.java

            if (rules.isEmpty()) {
                return Actions.doNothing();
            }
            ArrayList<ConfigurableRule<ComponentMetadataContext>> collectedRules = new ArrayList<>();
            for (SpecConfigurableRule classBasedRule : rules) {
                if (classBasedRule.getSpec().isSatisfiedBy(id)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        def "extracted stateless rules are cached"() {
            when:
            def fromFirstExtraction = extractor.extract(MutationRules)
            def fromSecondExtraction = extractor.extract(MutationRules)
    
            then:
            fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "extracted stateless abstract rules are cached"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. cmd/batch-expire.go

    			}
    		}
    		return err
    	}
    
    	if len(r.Rules) > maxBatchRules {
    		return batchExpireJobError{
    			Code:           "InvalidArgument",
    			Description:    "Too many rules. Batch expire job can't have more than 100 rules",
    			HTTPStatusCode: http.StatusBadRequest,
    		}
    	}
    
    	for _, rule := range r.Rules {
    		if err := rule.Validate(); err != nil {
    			return batchExpireJobError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller_test.go

    func TestIngressController(t *testing.T) {
    	ingress1 := net.Ingress{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "mock", // goes into backend full name
    			Name:      "test",
    		},
    		Spec: net.IngressSpec{
    			Rules: []net.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: net.IngressRuleValue{
    						HTTP: &net.HTTPIngressRuleValue{
    							Paths: []net.HTTPIngressPath{
    								{
    									Path: "/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    func (in *ClusterRole) DeepCopyInto(out *ClusterRole) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Rules != nil {
    		in, out := &in.Rules, &out.Rules
    		*out = make([]PolicyRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.AggregationRule != nil {
    		in, out := &in.AggregationRule, &out.AggregationRule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  7. internal/bucket/replication/replication_test.go

    					DeleteReplication:       DeleteReplication{Status: Disabled},
    					Filter:                  Filter{Prefix: "xyz"},
    				},
    			},
    		},
    		{ // Config3 - Replication config has filters and no overlapping rules
    			Rules: []Rule{
    				{
    					Status:                  Enabled,
    					Priority:                2,
    					DeleteMarkerReplication: DeleteMarkerReplication{Status: Disabled},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

            realizeChild("c").other == "changed"
            realizeChild("d").other == "changed"
            specialItemClass.isInstance realizeChild("d")
        }
    
        def "can define config rules for named item using transformed DSL rule closure"() {
            // DSL rules are represented using DeferredModelAction
            def action = mockDeferredModelAction()
    
            given:
            action.execute(_, _) >> { MutableModelNode node, ModelActionRole role ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    In contrast to <<#sub:terminology_resolution_rule,resolution rules>>, component metadata rules are applied *before* resolution starts.
    Component metadata rules are defined as part of the build logic and can be shared through plugins.
    For more information, see the section on <<component_metadata_rules.adoc#sec:component_metadata_rules,fixing metadata with component metadata rules>>.
    
    [[sub:terminology_module_version]]
    == Module version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	return nil
    }
    
    // TotalCost tracks the total cost of evaluating all the x-kubernetes-validations rules of a CustomResourceDefinition.
    type TotalCost struct {
    	// Total accumulates the x-kubernetes-validations estimated rule cost total.
    	Total uint64
    	// MostExpensive accumulates the top 4 most expensive rules contributing to the Total. Only rules
    	// that accumulate at least 1% of total cost limit are included.
    	MostExpensive []RuleCost
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top