Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,863 for rulesv4 (0.21 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

                <ruleset xmlns="http://codenarc.org/ruleset/1.0"
                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xsi:schemaLocation="http://codenarc.org/ruleset/1.0 http://codenarc.org/ruleset-schema.xsd"
                        xsi:noNamespaceSchemaLocation="http://codenarc.org/ruleset-schema.xsd">
                    <ruleset-ref path="rulesets/naming.xml"/>
                </ruleset>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/customModel/internalViews/tests/softwareModelExtend-iv-model.out

          | Rules:
             ⤷ components { ... } @ build.gradle line 37, column 5
             ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>)
        + my
              | Type:   	MyComponent
              | Creator: 	components { ... } @ build.gradle line 37, column 5 > create(my)
              | Rules:
                 ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>) > all()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/AbstractPmdPluginVersionIntegrationTest.groovy

            }
        }
    
        static String customRuleSet() {
            """
                <ruleset name="custom"
                    xmlns="http://pmd.sf.net/ruleset/1.0.0"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                    xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

    - Method rules($SomeRuleSource.name, java.lang.String, java.lang.Integer) is not a valid rule method: Rule parameter #1 should not be annotated with @Each."""
        }
    
        static class InvalidEachAndPathAnnotation extends RuleSource {
            @Rules
            void valid(SomeRuleSource rules, @Path("value") String value, Integer input) {}
    
            @Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/types/testdata/fixedbugs/issue60460.go

    }
    
    type Set[T any] struct {
    	rules Rules[T]
    }
    
    func NewSet[T any](rules Rules[T]) Set[T] {
    	return Set[T]{
    		rules: rules,
    	}
    }
    
    func (s Set[T]) Copy() Set[T] {
    	return NewSet(s.rules)
    }
    
    type Rules[T any] interface {
    	Hash(T) int
    	Equivalent(T, T) bool
    	SameRules(Rules[T]) bool
    }
    
    type testRules struct{}
    
    func newTestRules() Rules[int] {
    	return testRules{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/test/groovy/org/gradle/internal/jacoco/rules/JacocoViolationRulesContainerImplTest.groovy

            1 * instantiator.newInstance(JacocoViolationRuleImpl.class) >> new JacocoViolationRuleImpl()
            violationRulesContainer.rules.size() == 2
            violationRulesContainer.rules[1] == rule
        }
    
        def "returned rules are unmodifiable"() {
            when:
            violationRulesContainer.rules << new JacocoViolationRuleImpl()
    
            then:
            thrown(UnsupportedOperationException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top