Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 313 for nmap (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

            Map<String, String> phases = new LinkedHashMap<>();
            for (Map.Entry<String, LifecyclePhase> e : lphases.entrySet()) {
                phases.put(e.getKey(), e.getValue().toString());
            }
            return phases;
        }
    
        @Deprecated
        public void setPhases(Map<String, String> phases) {
            Map<String, LifecyclePhase> lphases = new LinkedHashMap<>();
            for (Map.Entry<String, String> e : phases.entrySet()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

             * Initialize mapping from lifecycle phase to bound mojos. The key set of this map denotes the phases the caller
             * is interested in, i.e. all phases up to and including the specified phase.
             */
    
            Map<String, Map<Integer, List<MojoExecution>>> mappings = new LinkedHashMap<>();
    
            for (String phase : lifecycle.getPhases()) {
                Map<Integer, List<MojoExecution>> phaseBindings = new TreeMap<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java

        @Override
        public String toString() {
            return Optional.ofNullable(getMojos()).orElse(Collections.emptyList()).stream()
                    .map(LifecycleMojo::getGoal)
                    .collect(Collectors.joining(","));
        }
    
        @Deprecated
        public static Map<String, String> toLegacyMap(Map<String, LifecyclePhase> lifecyclePhases) {
            if (lifecyclePhases == null) {
                return null;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         */
        @Nonnull
        List<String> getInactiveProfileIds();
    
        /**
         * Provides a map of system properties.
         */
        @Nonnull
        Map<String, String> getSystemProperties();
    
        /**
         * Provides a map of user properties.
         * User properties
         */
        @Nonnull
        Map<String, String> getUserProperties();
    
        ModelResolver getModelResolver();
    
        @Nullable
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

        private final int rank;
    
        private final String key;
    
        private static Map<String, ArtifactStatus> map;
    
        private ArtifactStatus(String key, int rank) {
            this.rank = rank;
            this.key = key;
    
            if (map == null) {
                map = new HashMap<>();
            }
            map.put(key, this);
        }
    
        public static ArtifactStatus valueOf(String status) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    java.util.Map, java.io.File, classworlds.ClassWorld) throws PlexusContainerExcep; public void DefaultPlexusContain(String, java.util.Map, String) throws PlexusContainerExcep; public void DefaultPlexusContain(String, java.util.Map, String, classworlds.ClassWorld) throws PlexusContainerExcep; public void DefaultPlexusContain(String, java.util.Map, java.net.URL) throws PlexusContainerExcep; public void DefaultPlexusContain(String, java.util.Map, java.net.URL, classworlds.ClassWorld) throws PlexusContainerExcep;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java

     *
     * @since 3.0
     */
    // TODO Kristian wonders if this class really is necessary and if it overlaps other concepts.
    public final class ProjectIndex {
    
        private final Map<String, MavenProject> projects;
    
        private final Map<String, Integer> indices;
    
        public ProjectIndex(List<MavenProject> projects) {
            this.projects = new HashMap<>(projects.size() * 2);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                    .proxies(request.getProxies().stream().map(Proxy::getDelegate).collect(Collectors.toList()))
                    .servers(request.getServers().stream().map(Server::getDelegate).collect(Collectors.toList()))
                    .mirrors(request.getMirrors().stream().map(Mirror::getDelegate).collect(Collectors.toList()))
                    .profiles(request.getProfiles().stream()
                            .map(Profile::getDelegate)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java

     */
    package org.apache.maven.classrealm;
    
    import java.util.List;
    import java.util.Map;
    
    /**
     */
    class DefaultClassRealmRequest implements ClassRealmRequest {
    
        private final RealmType type;
    
        private final ClassLoader parent;
    
        private final List<String> parentImports;
    
        private final Map<String, ClassLoader> foreignImports;
    
        private final List<ClassRealmConstituent> constituents;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            throw (T) t; // rely on vacuous cast
        }
    
        static class LazyMap<K, V> extends AbstractMap<K, V> {
            private final Supplier<Map<K, V>> supplier;
            private volatile Map<K, V> delegate;
    
            LazyMap(Supplier<Map<K, V>> supplier) {
                this.supplier = supplier;
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
Back to top