Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCache (0.03 sec)

  1. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

            if (session.getCache() == null) {
                return null;
            } else {
                return new DefaultModelCache(session);
            }
        }
    
        private DefaultModelCache(RepositorySystemSession session) {
            this.session = session;
            this.cache = session.getCache();
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

            SessionScope scope = container.lookup(SessionScope.class);
            scope.enter();
            scope.seed(Session.class, s);
            scope.seed(InternalMavenSession.class, s);
    
            repoSession.setCache(new DefaultRepositoryCache());
            repoSession.setLocalRepositoryManager(new LegacyLocalRepositoryManager(localRepo));
            request.setRepositorySession(repoSession);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        }
    
        //
        // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
        // this here, possibly indefinitely.
        //
        public ArtifactResolutionRequest setCache(RepositoryCache cache) {
            return this;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top