Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEndorsedStrictVersions (0.25 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            when:
            def endorseFrom = edge(root, false, null, nextNode(0), true)
            root.collectEndorsedStrictVersions([endorseFrom])
            def endorsedStrictVersions = root.getEndorsedStrictVersions(edge(root))
    
            then:
            endorsedStrictVersions == StrictVersionConstraints.EMPTY
            endorseFrom.targetComponent.nodes[0].ownStrictVersionConstraints == StrictVersionConstraints.EMPTY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                StrictVersionConstraints parentAncestorsStrictVersionConstraints = notNull(dependencyEdge.getFrom().ancestorsStrictVersionConstraints);
                StrictVersionConstraints parentEndorsedStrictVersionConstraints = getEndorsedStrictVersions(dependencyEdge);
                if (constraints == null) {
                    constraints = parentStrictVersionConstraints
                        .union(parentAncestorsStrictVersionConstraints)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top