- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 406 for instantiated (0.81 sec)
-
lib/fips140/v1.0.0.zip
rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gcm import ( "crypto/internal/fips140" "crypto/internal/fips140/aes" ) // CounterKDF implements a KDF in Counter Mode instantiated with CMAC-AES, // according to NIST SP 800-108 Revision 1 Update 1, Section 4.1. // // It produces a 256-bit output, and accepts a 8-bit Label and a 96-bit Context. // It uses a counter of 16 bits placed before the fixed data. The fixed data is...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* </tr> * </table> * * @author koichik * @see DateConversionUtil * @see TimestampConversionUtil */ public abstract class TimeConversionUtil { /** * Do not instantiate. */ protected TimeConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* </tr> * </table> * * @author shinsuke * @see DateConversionUtil * @see TimeConversionUtil */ public abstract class TimestampConversionUtil { /** * Do not instantiate. */ protected TimestampConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java
import java.util.NoSuchElementException; import org.junit.Ignore; /** * Tester for navigation of SortedMultisets. * * @author Louis Wasserman */ @GwtCompatible @Ignore("test runners must not instantiate and run this directly, only via suites we build") // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 20:14:36 UTC 2024 - 26K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* </pre> * * @author Kimura Satoshi * @author higa * @author shinsuke * @see CopyOptionsUtil * @see CopyOptions */ public abstract class BeanUtil { /** * Do not instantiate. */ protected BeanUtil() { } /** Default options */ protected static final CopyOptions DEFAULT_OPTIONS = new CopyOptions(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
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) -
cmd/bucket-lifecycle.go
ctx: ctx, killCh: make(chan struct{}), lastDayStats: make(map[string]*lastDayTierStats), } } // Init initializes t with given objAPI and instantiates the configured number // of transition workers. func (t *transitionState) Init(objAPI ObjectLayer) { n := globalAPIConfig.getTransitionWorkers() // Prefer ilm.transition_workers over now deprecated api.transition_workers
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33.7K 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)