Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for getReason (0.09 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                return artifacts.empty && implicitArtifact ? [new ExpectedArtifact(componentId: id, group: this.group, module: this.module, moduleVersion: this.version)] : artifacts
            }
    
            String getReason() {
                allReasons.join('!!')
            }
    
            Set<String> getAllReasons() {
                if (this == graph.root) {
                    reasons.remove('requested')
                    reasons.add('root')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                return new LocalComponentDependencyMetadata(
                    selector, null, Collections.emptyList(), Collections.emptyList(),
                    false, false, false, true, false, true, dc.getReason()
                );
            });
    
            return Stream.concat(dependencyLockingConstraintMetadata, consistentResolutionConstraintMetadata)
                .collect(ImmutableList.toImmutableList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/resources/org/gradle/scala/compile/ScalaCompileWithJavaLibraryIntegrationTest/javaLibraryCanDependOnScalaLibraryProject/src/main/java/com/acme/consumer/Consumer.java

    package com.acme.consumer;
    
    import com.acme.lib.Person;
    
    public class Consumer {
        private final Person person;
    
        public Consumer(Person person) {
            this.person = person;
        }
    
        public Person getPerson() {
            return person;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 252 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

            then:
            def e = thrown RuleActionValidationException
            e.message.startsWith("Type ${fullyQualifiedNameOf(ruleSource.class)} is not a valid rule source:")
            def messageReasons = getReasons(e.message)
            messageReasons.size() == reasons.size()
            messageReasons.sort() == reasons.sort()
    
            where:
            ruleSource                                | reasons
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top