Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ConcurrentMap (0.22 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

                }
                return new DefaultModelCache(cache);
            }
        }
    
        private final ConcurrentMap<Object, Supplier<?>> cache;
    
        public DefaultModelCache() {
            this(new ConcurrentHashMap<>());
        }
    
        private DefaultModelCache(ConcurrentMap<Object, Supplier<?>> cache) {
            this.cache = requireNonNull(cache);
        }
    
        @Override
        @SuppressWarnings({"unchecked"})
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * <strong>Implementation note:</strong> while this method return type is {@link Map}, the
         * returned map instance implements {@link java.util.concurrent.ConcurrentMap} as well.
         *
         * @throws org.apache.maven.api.services.MavenException if not called from the within a mojo execution
         */
        @Nonnull
        Map<String, Object> getPluginContext(@Nonnull Project project);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final RepositorySystemSession session;
            private final List<RemoteRepository> repositories;
            private final ReactorModelPool modelPool;
            private final ConcurrentMap<String, Object> parentCache;
            private final ModelTransformerContextBuilder transformerContextBuilder;
            private final ExecutorService executor;
            private final ModelCache modelCache;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

    import java.util.Properties;
    import java.util.Set;
    import java.util.SortedMap;
    import java.util.SortedSet;
    import java.util.TreeMap;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    import java.util.function.BinaryOperator;
    import java.util.stream.Collector;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top