- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 664 for Initialized (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
} /** * Returns the initialization time of this monotonic clock. * This is a convenience method equivalent to {@code get().start()}. * * @return the instant when this monotonic clock was initialized * @see #startInstant() */ public static Instant start() { return get().startInstant(); } /** * Returns the elapsed time since clock initialization.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
throw new CIFSUnsupportedCryptoException( "Provider can't be re-initialized. Provider has already been initialized with " + provider.getInfo()); } provider = customProvider; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcGetMembersInAliasTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test @DisplayName("Should correctly initialize MsrpcGetMembersInAlias with provided parameters") void testConstructorInitialization() { // Given // Mocks are already initialized by @BeforeEach // When MsrpcGetMembersInAlias msrpcGetMembersInAlias = new MsrpcGetMembersInAlias(mockAliasHandle, mockSids);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
* so. */ @SuppressWarnings("SunApi") // b/345822163 @GwtIncompatible abstract class Striped64 extends Number { /* * This class maintains a lazily-initialized table of atomically * updated variables, plus an extra "base" field. The table size * is a power of two. Indexing uses masked per-thread hash codes. * Nearly all declarations in this class are package-private,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
/** * Tests for the MsrpcDfsRootEnum class. * This class uses JUnit 5 for testing. */ class MsrpcDfsRootEnumTest { /** * Test the constructor of MsrpcDfsRootEnum. * Verifies that the object is initialized with the correct default values. */ @Test void testConstructor() { // Given String serverName = "test-server"; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionTest.java
} @Test void testConstructor() { // Test if the offsets are initialized correctly by the constructor. assertEquals(69, smbComNtTransaction.primarySetupOffset, "primarySetupOffset should be initialized to 69"); assertEquals(51, smbComNtTransaction.secondaryParameterOffset, "secondaryParameterOffset should be initialized to 51"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
} } /** * Initializes the {@link Logger}. */ protected static synchronized void initialize() { DisposableUtil.addFirst(() -> { initialized = false; loggers.clear(); factory.releaseAll(); }); initialized = true; } /** * Returns the logger adapter factory.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
tensorflow/c/c_api_macros_internal.h
#ifndef TENSORFLOW_C_C_API_MACROS_INTERNAL_H_ #define TENSORFLOW_C_C_API_MACROS_INTERNAL_H_ #ifdef __cplusplus #include "tensorflow/core/platform/status.h" // Macro to verify that the field `struct_size` of STRUCT_OBJ is initialized. // `struct_size` is used for struct member compatibility check between core TF // and plug-ins with the same C API minor version. More info here:
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Mar 13 17:40:56 UTC 2023 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
// Verify response fields are initialized assertNotNull(queryFieldConfig.getResponseFields()); assertTrue(queryFieldConfig.getResponseFields().length > 0); assertEquals(QueryFieldConfig.SCORE_FIELD, queryFieldConfig.getResponseFields()[0]); assertEquals("id", queryFieldConfig.getResponseFields()[1]); // Verify scroll response fields are initialized
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
void destroy(); /** * Initializes the CrawlerContainer by setting the system property * "java.protocol.handler.pkgs" to include the package "org.codelibs.fess.net.protocol". * If the property is not already set, it will be initialized with this package. * If the property is set but does not contain this package, the package will be appended. */ default void initialize() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K bytes - Viewed (0)