Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetWithResolutionResult (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

            assertUniqueKey(key);
    
            SetWithResolutionResult artifacts;
            if (projectArtifacts instanceof SetWithResolutionResult setWithResolutionResult) {
                artifacts = setWithResolutionResult;
            } else if (projectArtifacts instanceof ArtifactsSetWithResult artifactsSetWithResult) {
                artifacts = new SetWithResolutionResult(artifactsSetWithResult.getResult(), projectArtifacts);
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            }
            if (scopesToResolve == null) {
                scopesToResolve = Collections.emptySet();
            }
    
            if (scopesToCollect.isEmpty() && scopesToResolve.isEmpty()) {
                return new SetWithResolutionResult(null, new LinkedHashSet<>());
            }
    
            scopesToCollect = new HashSet<>(scopesToCollect);
            scopesToCollect.addAll(scopesToResolve);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top