Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BY_ANCESTOR (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

        public static final ComponentSelectionDescriptorInternal BY_ANCESTOR = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.BY_ANCESTOR);
    
        public static ComponentSelectionReason requested() {
            return new DefaultComponentSelectionReason(REQUESTED);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            this.id = id;
            this.resolver = resolver;
            this.targetModule = resolveState.getModule(targetModuleId);
            if (versionByAncestor) {
                dependencyReasons.add(ComponentSelectionReasons.BY_ANCESTOR);
            }
            update(dependencyState);
            this.dependencyState = dependencyState;
            this.versionConstraint = versionByAncestor ?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                }
                this
            }
    
            NodeBuilder byAncestor() {
                byReason(ComponentSelectionCause.BY_ANCESTOR.defaultReason)
            }
    
            NodeBuilder byConsistentResolution(String source) {
                byConstraint("version resolved in configuration ':$source' by consistent resolution")
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top