Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 639 for rulesv4 (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            private final ModelType<? extends RuleSource> rules;
    
            public ApplyRuleSource(Class<? extends RuleSource> rules) {
                this.rules = ModelType.of(rules);
            }
    
            @Override
            public void execute(MutableModelNode node) {
                node.applyToSelf(rules.getConcreteClass());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                }
    
                apply type: Rules
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasDescription('A problem occurred configuring root project')
            failure.assertHasCause('Exception thrown while executing model rule: Rules#people(ModelMap<Person>) > create(foo)')
            failure.assertHasCause('broken')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                }
    
                class Rules extends RuleSource {
                  @Model
                  void group(Group group, @Path("people") ModelSet<Person> people) {
                  }
                }
    
                apply type: Rules
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasCause "Exception thrown while executing model rule: Rules#group"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-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:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            private final List<ExtractedRuleDetails> rules;
    
            public DefaultExtractedRuleSource(List<ExtractedRuleDetails> rules) {
                this.rules = rules;
            }
    
            @VisibleForTesting // used in tests only
            public List<ExtractedModelRule> getRules() {
                return CollectionUtils.collect(rules, new InternalTransformer<ExtractedModelRule, ExtractedRuleDetails>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

         *
         * @param key the primary key
         * @param rules the rules to be snapshotted
         * @return a snapshot of the inputs
         */
        private HashCode computeExplicitInputsSnapshot(KEY key, ConfigurableRules<DETAILS> rules) {
            List<Object> toBeSnapshotted = Lists.newArrayListWithExpectedSize(2 + 2 * rules.getConfigurableRules().size());
            toBeSnapshotted.add(keyToSnapshottable.transform(key));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-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:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            then:
            executer.expectDocumentedDeprecationWarning("Declaring client module dependencies has been deprecated. This is scheduled to be removed in Gradle 9.0. Please use component metadata rules instead. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#declaring_client_module_dependencies")
            succeeds('listJars')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

     */
    
    package org.gradle.testing.jacoco.plugins.rules
    
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.jacoco.plugins.JacocoMultiVersionIntegrationTest
    import org.gradle.testing.jacoco.plugins.fixtures.JacocoCoverage
    
    import static org.gradle.testing.jacoco.plugins.rules.JacocoViolationRulesLimit.Insufficient
    import static org.gradle.testing.jacoco.plugins.rules.JacocoViolationRulesLimit.Sufficient
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1/types.go

    	// Rules holds all the PolicyRules for this ClusterRole
    	// +optional
    	// +listType=atomic
    	Rules []PolicyRule `json:"rules" protobuf:"bytes,2,rep,name=rules"`
    
    	// AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top