- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 47 for instantiation (0.12 sec)
-
guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java
import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; import junit.framework.TestSuite; /** * Concrete instantiation of {@link AbstractCollectionTestSuiteBuilder} for testing collections that * do not have a more specific tester like {@link ListTestSuiteBuilder} or {@link * SetTestSuiteBuilder}. * * @author Chris Povirk
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
* utility class with only static methods. * */ public final class DocumentUtil { /** * Private constructor to prevent instantiation of this utility class. */ private DocumentUtil() { // Utility class - no instantiation } /** * Gets a typed value from a document map with a default value. * * @param <T> the type to convert the value to
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProviderFactory.java
* This factory attempts to select the best available RDMA provider * based on system capabilities and configuration preferences. */ public class RdmaProviderFactory { /** * Private constructor to prevent instantiation */ private RdmaProviderFactory() { // Factory class - not instantiable } private static final Logger log = LoggerFactory.getLogger(RdmaProviderFactory.class); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java
/** * Default maximum read/write size (1MB) */ public static final int DEFAULT_MAX_READ_WRITE_SIZE = 1048576; // 1MB /** * Private constructor to prevent instantiation */ private RdmaCapabilities() { // Utility class }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
*/ public final class SearchEngineUtil { private static final Logger logger = LogManager.getLogger(SearchEngineUtil.class); /** * Private constructor to prevent instantiation of this utility class. */ private SearchEngineUtil() { } /** * Creates an OutputStream from an XContentBuilder using the provided callback function. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
* use the {@code ArrayList} {@linkplain ArrayList#ArrayList() constructor} directly, taking * advantage of <a * href="https://docs.oracle.com/javase/tutorial/java/generics/genTypeInference.html#type-inference-instantiation">"diamond" * syntax</a>. */ @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call public static <E extends @Nullable Object> ArrayList<E> newArrayList() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
*/ public class ThreadDumpUtil { private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class); /** * Private constructor to prevent instantiation of this utility class. */ protected ThreadDumpUtil() { // noop } /** * Prints thread dump information to the logger at INFO level. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/BufferCache.java
* - Lock-free operations for better concurrency * - Proper buffer validation and limits */ public class BufferCache { /** * Private constructor to prevent instantiation of this utility class. */ private BufferCache() { // Utility class - not instantiable } private static final int MAX_BUFFERS = Config.getInt("jcifs.smb1.smb.maxBuffers", 16);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
* use the {@code HashSet} constructor directly, taking advantage of <a * href="https://docs.oracle.com/javase/tutorial/java/generics/genTypeInference.html#type-inference-instantiation">"diamond" * syntax</a>. */ @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call public static <E extends @Nullable Object> HashSet<E> newHashSet() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
/** * Utility class for Base64 encoding and decoding operations. * Provides methods to convert between binary data and Base64 encoded strings. */ public class Base64 { /** * Private constructor to prevent instantiation of this utility class. */ private Base64() { // Utility class - not instantiable } private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0)