Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for puts (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionResult.java

        }
    
        public BuildSummary getBuildSummary(MavenProject project) {
            return buildSummaries.get(project);
        }
    
        public void addBuildSummary(BuildSummary summary) {
            buildSummaries.put(summary.getProject(), summary);
        }
    
        @Override
        public boolean canResume() {
            return canResume;
        }
    
        @Override
        public void setCanResume(boolean canResume) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java

                this.extensionArtifactFilter = extensionArtifactFilter;
            }
        }
    
        Key createKey(List<? extends ClassRealm> extensionRealms);
    
        CacheRecord get(Key key);
    
        CacheRecord put(Key key, ClassRealm projectRealm, DependencyFilter extensionArtifactFilter);
    
        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

                        if (ret != null) {
                            return ret;
                        }
                        cycle.removeLast();
                        stateMap.put(v, DfsState.VISITED);
                    } else if (state == DfsState.VISITING) {
                        // we are already visiting this vertex, this mean we have a cycle
                        int pos = cycle.lastIndexOf(v);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

            Map<String, Expression> bySyntax = new HashMap<>();
    
            if (expressions != null && !expressions.isEmpty()) {
                for (Expression expression : expressions) {
                    bySyntax.put(expression.getSyntax(), expression);
                }
            }
    
            return bySyntax;
        }
    
        private static ClassLoader initializeDocLoader() throws ExpressionDocumentationException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

                    if (index < 0) {
                        location = sourceLocations.get(~index);
                    } else {
                        location = targetLocations.get(index);
                    }
                    locations.put(locations.size(), location);
                }
            }
    
            return new InputLocation(-1, -1, InputSource.merge(source.getSource(), target.getSource()), locations);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Sep 05 16:06:44 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                    allProjects.forEach(project -> map.computeIfAbsent(project.getGroupId(), k -> new HashMap<>())
                            .computeIfAbsent(project.getArtifactId(), k -> new HashMap<>())
                            .put(project.getVersion(), project));
                    this.allProjects = map;
                } else {
                    return Collections.emptyMap();
                }
            }
            return allProjects;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return activeProfiles;
        }
    
        public void setInjectedProfileIds(String source, List<String> injectedProfileIds) {
            if (injectedProfileIds != null) {
                this.injectedProfileIds.put(source, new ArrayList<>(injectedProfileIds));
            } else {
                this.injectedProfileIds.remove(source);
            }
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        //        proxyInfo.setNonProxyHosts( nonProxyHosts );
        //        proxyInfo.setUserName( username );
        //        proxyInfo.setPassword( password );
        //
        //        proxies.put( protocol, proxyInfo );
        //
        //        wagonManager.addProxy( protocol, host, port, username, password, nonProxyHosts );
        //    }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

                    (layout != null) ? layout.getClass().getSimpleName() : "legacy");
    
            /*
             * NOTE: "invoker:install" vs "appassembler:assemble": Both mojos use the artifact installer to put an artifact
             * into a repository. In the first case, the result needs to be a proper local repository that one can use for
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    for (Plugin plugin : build.getPlugins()) {
                        String key = plugin.getKey();
                        if (versions.get(key) == null) {
                            versions.put(key, plugin.getVersion());
                            plugins.put(key, plugin);
                        }
                    }
                    PluginManagement mgmt = build.getPluginManagement();
                    if (mgmt != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
Back to top