- Sort Score
- Result 10 results
- Languages All
Results 1431 - 1440 of 2,155 for minval (0.04 sec)
-
android/guava/src/com/google/common/cache/ForwardingLoadingCache.java
public abstract static class SimpleForwardingLoadingCache<K, V> extends ForwardingLoadingCache<K, V> { private final LoadingCache<K, V> delegate; protected SimpleForwardingLoadingCache(LoadingCache<K, V> delegate) { this.delegate = Preconditions.checkNotNull(delegate); } @Override protected final LoadingCache<K, V> delegate() { return delegate; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Aug 06 17:12:03 UTC 2022 - 2.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredMultimapValues.java
/** * Implementation for {@link FilteredMultimap#values()}. * * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault final class FilteredMultimapValues<K extends @Nullable Object, V extends @Nullable Object> extends AbstractCollection<V> { @Weak private final FilteredMultimap<K, V> multimap; FilteredMultimapValues(FilteredMultimap<K, V> multimap) { this.multimap = checkNotNull(multimap); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java
* SettableFuture}). * * <p>Useful for testing the behavior of Future utilities against odd futures. * * @author Anthony Zana */ @GwtCompatible final class UncheckedThrowingFuture<V> extends AbstractFuture<V> { public static <V> ListenableFuture<V> throwingError(Error error) { UncheckedThrowingFuture<V> future = new UncheckedThrowingFuture<V>();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 12 20:02:10 UTC 2018 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/graph/UndirectedGraphConnections.java
* * @author James Sexton * @param <N> Node parameter type * @param <V> Value parameter type */ @ElementTypesAreNonnullByDefault final class UndirectedGraphConnections<N, V> implements GraphConnections<N, V> { private final Map<N, V> adjacentNodeValues; private UndirectedGraphConnections(Map<N, V> adjacentNodeValues) { this.adjacentNodeValues = checkNotNull(adjacentNodeValues); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 06 00:47:57 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java
public synchronized static void setDefault( NtlmAuthenticator a ) { if( auth != null ) { return; } auth = a; } protected final String getRequestingURL() { return url; } protected final SmbAuthException getRequestingException() { return sae; } /** Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
/** {@link BeanDesc}のキャッシュ */ private static final ConcurrentMap<Class<?>, BeanDesc> beanDescCache = newConcurrentHashMap(1024); static { initialize(); } /** * {@link BeanDesc}を返します。 * * @param clazz * Beanクラス。{@literal null}であってはいけません * @return {@link BeanDesc} */ public static BeanDesc getBeanDesc(final Class<?> clazz) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
/** * @author mbechler * */ public class Smb2QueryDirectoryResponse extends ServerMessageBlock2Response { /** * */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8; private final byte expectInfoClass; private FileEntry[] results; /** * @param config * @param expectInfoClass */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java
* * @since 4.0.0 */ @Experimental public class ModelBuilderException extends MavenException { @Serial private static final long serialVersionUID = -1865447022070650896L; private final ModelBuilderResult result; /** * Creates a new exception from the specified interim result and its associated problems. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java
import java.nio.file.Files; import java.nio.file.Path; import java.util.Objects; /** * Wraps an ordinary {@link File} as a source. * */ public class FileSource implements Source { private final Path path; private final int hashCode; /** * Creates a new source backed by the specified file. * * @param file The file, must not be {@code null}. * @deprecated Use {@link #FileSource(Path)} instead.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java
import org.apache.maven.model.Exclusion; /** * Filter to exclude from a list of artifact patterns. */ public class ExclusionArtifactFilter implements ArtifactFilter { private final List<Exclusion> exclusions; private final List<Predicate<Artifact>> predicates; public ExclusionArtifactFilter(List<Exclusion> exclusions) { this.exclusions = exclusions; this.predicates =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0)