Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 508 for rulesv6 (0.21 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    			},
    			false,
    		},
    	}
    	builderConfig := &config.Config{
    		EnableIPv6: true,
    	}
    	checkFunc := func(goldenName string, rules [][]string, rulesRestore string, expected bool) {
    		// check that rules are set
    		if expected {
    			var actual strings.Builder
    			for _, rule := range rules {
    				fmt.Fprintln(&actual, strings.Join(rule, " "))
    			}
    			compareToGolden(t, goldenName, actual.String())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pkg/workloadapi/security/authorization.pb.go

    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Rules are OR-ed (e.g. ANY rule can match)
    	// This is a generic form of the authz policy's to, from and when
    	Rules []*Rules `protobuf:"bytes,1,rep,name=rules,proto3" json:"rules,omitempty"`
    }
    
    func (x *Group) Reset() {
    	*x = Group{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables_linux.go

    		inpodMarkRule.Family = family
    		inpodMarkRule.Table = RouteTableInbound
    		inpodMarkRule.Mark = InpodTProxyMark
    		inpodMarkRule.Mask = InpodTProxyMask
    		inpodMarkRule.Priority = 32764
    		rules = append(rules, inpodMarkRule)
    	}
    
    	for _, rule := range rules {
    		log.Debugf("Iterating netlink rule : %+v", rule)
    		if err := f(rule); err != nil {
    			return fmt.Errorf("failed to configure netlink rule: %w", err)
    		}
    	}
    
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. testing/architecture-test/build.gradle.kts

                "-Darchunit.freeze.refreeze=${refreezeBoolean}",
                "-Darchunit.freeze.store.default.allowStoreUpdate=${refreezeBoolean}"
            )
        }
    }
    
    /**
     * Sorts the stored rules, so we keep a deterministic order when we add new rules.
     */
    abstract class ReorderArchUnitRulesTask : DefaultTask() {
        @get:OutputFile
        abstract var ruleFile: File
    
        @TaskAction
        fun resortStoredRules() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/number_generated_rules_test.go

    	"k8s.io/utils/ptr"
    )
    
    // kube-proxy generates iptables rules to forward traffic from Services to Endpoints
    // kube-proxy uses iptables-restore to configure the rules atomically, however,
    // this has the downside that large number of rules take a long time to be processed,
    // causing disruption.
    // There are different parameters than influence the number of rules generated:
    // - ServiceType
    // - Number of Services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/RuleBasedPluginTarget.java

            for (Class<? extends RuleSource> ruleSource : declaredSources) {
                ExtractedRuleSource<?> rules = ruleInspector.extract(ruleSource);
                for (Class<?> dependency : rules.getRequiredPlugins()) {
                    target.getPluginManager().apply(dependency);
                }
                modelRegistry.getRoot().applyToSelf(rules);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    	restrictionFiles := make([]*FileFormat, 0)
    
    	for {
    		if _, err := os.Stat(path); err == nil {
    			rules, err := readFile(path)
    			if err != nil {
    				return nil, err
    			}
    
    			restrictionFiles = append(restrictionFiles, rules)
    		}
    
    		nextPath, removedDir := removeLastDir(path)
    		if nextPath == path || isGoModRoot(path) || removedDir == "src" {
    			break
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

        }
    
        @Override
        public void applyToSelf(ExtractedRuleSource<?> rules) {
            rules.apply(modelRegistry, this);
        }
    
        @Override
        public void applyToSelf(Class<? extends RuleSource> rulesClass) {
            ExtractedRuleSource<?> rules = modelRegistry.newRuleSource(rulesClass);
            rules.assertNoPlugins();
            rules.apply(modelRegistry, this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    	chain, _ = dump.GetChain(utiliptables.TableNAT, kubeNodePortsChain)
    	if chain != nil {
    		sort.SliceStable(chain.Rules, func(i, j int) bool {
    			return orderByCommentServiceName(chain.Rules[i], chain.Rules[j])
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

     * These test cases document the current behavior when dependency constraints are combined
     * with other dependency management mechanisms. They do not represent recommended use cases.
     * If dependency constraints and component metadata rules are used, using other mechanisms
     * should not be required.
     */
    class DependencyConstraintsAndResolutionStrategiesIntegrationTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top