- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 151 for Initialization (0.13 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * This method implements lazy initialization with synchronization to ensure * the authenticator is only created once. It configures the authenticator * with the appropriate SPNEGO settings and marks initialization as complete. * * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} dir.delete(); } // Test initialization public void test_init() { assertNotNull(thumbnailManager.baseDir); assertTrue(thumbnailManager.baseDir.exists()); assertTrue(thumbnailManager.baseDir.isDirectory()); assertNotNull(thumbnailManager.thumbnailTaskQueue); } // Test initialization with system property public void test_init_withSystemProperty() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
return get().startInstant(); } /** * Returns the elapsed time since clock initialization. * This is a convenience method equivalent to {@code get().elapsedTime()}. * * @return the duration since clock initialization */ public static Duration elapsed() { return get().elapsedTime(); } /** * Returns a monotonically increasing instant.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/server-main_test.go
obj, err := newObjectLayer(ctx, mustGetPoolEndpoints(0, disks...)) if err != nil { t.Fatal("Unexpected object layer initialization error", err) } _, ok := obj.(*erasureServerPools) if !ok { t.Fatal("Unexpected object layer detected", reflect.TypeOf(obj)) } // Tests for Erasure object layer initialization. // Create temporary backend for the test server. nDisks = 16 disks, err = getRandomDisks(nDisks)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
} public void test_constructor_withCause() { // Test constructor with cause only Throwable cause = new IllegalStateException("Container initialization failed"); ContainerNotAvailableException exception = new ContainerNotAvailableException(cause); assertEquals("Container is not available.", exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
schema/schema.go
namer: namer, initialized: make(chan struct{}), } // When the schema initialization is completed, the channel will be closed defer close(schema.initialized) // Load exist schema cache, return if exists if v, ok := cacheStore.Load(schemaCacheKey); ok { s := v.(*Schema) // Wait for the initialization of other goroutines to complete <-s.initialized return s, s.err }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 19 06:35:49 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertNotNull(client); } } // Test instance fields initialization public void test_instanceFieldsInitialization() { // Test that instance fields are properly initialized assertNotNull(crawlerEngineClient); // The actual client initialization happens lazily when needed } // Test that close method exists (inherited)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* time for AbstractFutureState to potentially use them during class initialization. * (AbstractFutureState class initialization can log, and that logging could in theory call into * AbstractFuture, which wouldn't yet have had the chance to perform any class initialization of * its own.) */ /** A special value to represent {@code null}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
// Create instance trans2SetFileInfo = new Trans2SetFileInformation(config, TEST_FID, mockFileInfo); // Verify initialization assertNotNull(trans2SetFileInfo); assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, trans2SetFileInfo.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* Initialize singleton context using custom properties * * This method can only be called once. * * @param props the properties to use for initialization * @throws CIFSException if the singleton context is already initialized or there is an error during initialization */ public static synchronized final void init(final Properties props) throws CIFSException { if (INSTANCE != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0)