- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 360 for instantiable (1.04 sec)
-
src/main/java/org/codelibs/core/lang/ClassUtil.java
import org.codelibs.core.exception.NoSuchMethodRuntimeException; /** * Utility class for {@link Class} operations. * * @author higa */ public abstract class ClassUtil { /** * Do not instantiate. */ protected ClassUtil() { } /** Map from wrapper types to primitive types */ protected static final Map<Class<?>, Class<?>> wrapperToPrimitiveMap = newHashMap();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
import org.codelibs.core.collection.CollectionsUtil; /** * Utility class for handling generics in Java. * * @author koichik */ public abstract class GenericsUtil { /** * Do not instantiate. */ protected GenericsUtil() { } /** * Returns <code>true</code> if the raw type of <code>type</code> can be assigned to <code>clazz</code>, * <code>false</code> otherwise. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
import java.util.List; import org.codelibs.core.message.MessageFormatter; /** * Utility class for array operations. * * @author higa */ public abstract class ArrayUtil { /** * Do not instantiate. */ protected ArrayUtil() { } /** * Returns an array of {@literal boolean}. * * @param elements the elements of the array * @return the array */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* Any {@link IOException} thrown by these methods is wrapped and thrown as an {@link IORuntimeException}. * </p> * * @author koichik */ public abstract class CopyUtil { /** * Do not instantiate. */ protected CopyUtil() { } /** Buffer size used for copying. */ protected static final int DEFAULT_BUF_SIZE = 4096;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
/** * A helper to create a new {@code ListenableFuture} whose result is generated from a combination * of input futures. * * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class. * * <p>Example: * * {@snippet : * final ListenableFuture<Instant> loginDateFuture = * loginService.findLastLoginDate(username);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
import java.util.concurrent.SynchronousQueue; /** * Utility class for collections. * * @author koichik */ public abstract class CollectionsUtil { /** * Do not instantiate. */ protected CollectionsUtil() { } /** * Creates and returns a new instance of {@link ArrayBlockingQueue}. * * @param <E> the element type of {@link ArrayBlockingQueue}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
/** * A builder of a {@link ClosingFuture} step that is derived from more than one input step. * * <p>See {@link #whenAllComplete(Iterable)} and {@link #whenAllSucceed(Iterable)} for how to * instantiate this class. * * <p>Example: * * {@snippet : * final ClosingFuture<BufferedReader> file1ReaderFuture = ...; * final ClosingFuture<BufferedReader> file2ReaderFuture = ...;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 97.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ClosingFuture.java
/** * A builder of a {@link ClosingFuture} step that is derived from more than one input step. * * <p>See {@link #whenAllComplete(Iterable)} and {@link #whenAllSucceed(Iterable)} for how to * instantiate this class. * * <p>Example: * * {@snippet : * final ClosingFuture<BufferedReader> file1ReaderFuture = ...; * final ClosingFuture<BufferedReader> file2ReaderFuture = ...;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 98.1K bytes - Viewed (0) -
docs/en/docs/release-notes.md
### Refactors * ♻ Remove `media_type` from `ORJSONResponse` as it's inherited from the parent class. PR [#5805](https://github.com/tiangolo/fastapi/pull/5805) by [@Kludex](https://github.com/Kludex). * ♻ Instantiate `HTTPException` only when needed, optimization refactor. PR [#5356](https://github.com/tiangolo/fastapi/pull/5356) by [@pawamoy](https://github.com/pawamoy). ### Docs
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
BSD-style // license that can be found in the LICENSE file. package drbg import ( "bytes" "crypto/internal/fips140" _ "crypto/internal/fips140/check" "errors" ) func init() { // Per IG 10.3.A, Resolution 7: "A KAT of a DRBG may be performed by: // Instantiate with known data, Reseed with other known data, Generate and // then compare the result to a pre-computed value." fips140.CAST("CTR_DRBG", func() error { entropy := &[SeedSize]byte{ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)