Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 733 for rulesv4 (0.49 sec)

  1. cni/pkg/iptables/iptables.go

    	// Append our rules here
    	builder := cfg.appendHostRules(hostSNATIP, hostSNATIPV6)
    
    	log.Info("Adding host netnamespace iptables rules")
    
    	if err := cfg.executeCommands(builder); err != nil {
    		log.Errorf("failed to add host netnamespace iptables rules: %v", err)
    		return err
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

                sourceSets = [project.sourceSets.main]
                ruleSets = ["java-braces", "java-unusedcode"]
                ruleSetConfig = project.resources.text.fromString("ruleset contents")
                ruleSetFiles = project.getLayout().files("my-ruleset.xml")
                reportsDir = project.file("pmd-reports")
                ignoreFailures = true
                maxFailures = 17
                rulesMinimumPriority = 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Instead of declaring rules for each subproject individually, it is possible to declare rules in the `settings.gradle(.kts)` file for the whole build.
    Rules declared in settings are the _conventional_ rules applied to each project: if the project doesn't declare any rules, the rules from the settings script will be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pkg/controller/job/success_policy_test.go

    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To(""),
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
                - notRule:
                    orRules:
                      rules:
                      - destinationPort: 8000
                - orRules:
                    rules:
                    - destinationIp:
                        addressPrefix: 10.10.10.10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

    import org.gradle.internal.rules.ClosureBackedRuleAction
    import org.gradle.internal.rules.NoInputsRuleAction
    import org.gradle.internal.rules.SpecRuleAction
    import org.gradle.util.AttributeTestUtil
    import spock.lang.Specification
    
    class ComponentSelectionRulesProcessorTest extends Specification {
        def processor = new ComponentSelectionRulesProcessor()
        def rules = []
        ComponentSelectionInternal componentSelection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                    @Model
                    void p1(Thing t) {
                    }
    
                    @Rules
                    void rules(CalculateName rules, Thing t) {
                    }
                }
    
                class CalculateName extends RuleSource {
                    @Rules
                    void rules(SpecializeName rules, Thing t) {
                    }
                }
    
                class SpecializeName extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	for i, h := range webhooks {
    		mutating[i] = registrationv1.MutatingWebhook{
    			Name:                    h.Name,
    			ClientConfig:            h.ClientConfig,
    			Rules:                   h.Rules,
    			FailurePolicy:           h.FailurePolicy,
    			MatchPolicy:             h.MatchPolicy,
    			NamespaceSelector:       h.NamespaceSelector,
    			ObjectSelector:          h.ObjectSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                }
            }
            apply plugin: Rules
            """
    
            expect:
            succeeds "validate"
        }
    
    
        def "can create a ModelMap of List<String>"() {
            buildFile << """
                class Rules extends RuleSource {
                    @Model void things(ModelMap<List<String>> things) { }
                }
                apply plugin: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedAsProjectPluginIntegrationTest.groovy

        }
    
        def "informative error message when two plugins declare model at the same path and model is already created"() {
            when:
            buildScript '''
                class MyPlugin {
                    static class Rules extends RuleSource {
                        @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top