Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for createSpy (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException {
            PluginDescriptorCache.Key cacheKey = pluginDescriptorCache.createKey(plugin, repositories, session);
    
            PluginDescriptor pluginDescriptor = pluginDescriptorCache.get(cacheKey, () -> {
                org.eclipse.aether.artifact.Artifact artifact =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

            }
        }
    
        protected final Map<Key, CacheRecord> cache = new ConcurrentHashMap<>();
        protected final Map<Key, Key> keys = new ConcurrentHashMap<>();
    
        @Override
        public Key createKey(
                MavenProject project,
                Collection<String> scopesToCollect,
                Collection<String> scopesToResolve,
                boolean aggregating,
                RepositorySystemSession session) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

        private Map<Key, Key> keys = new ConcurrentHashMap<>();
    
        public void flush() {
            descriptors.clear();
        }
    
        public Key createKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session) {
            return keys.computeIfAbsent(new CacheKey(plugin, repositories, session), k -> k);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                boolean aggregating,
                Set<Artifact> projectArtifacts)
                throws LifecycleExecutionException {
            ProjectArtifactsCache.Key cacheKey = projectArtifactsCache.createKey(
                    project, scopesToCollect, scopesToResolve, aggregating, session.getRepositorySession());
    
            ProjectArtifactsCache.CacheRecord recordArtifacts;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top