- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 52 for initialisation (0.08 seconds)
-
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 */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} dir.delete(); } // Test initialization @Test public void test_init() { assertNotNull(thumbnailManager.baseDir); assertTrue(thumbnailManager.baseDir.exists()); assertTrue(thumbnailManager.baseDir.isDirectory()); assertNotNull(thumbnailManager.thumbnailTaskQueue); } // Test initialization with system property @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (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 }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 13.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertNotNull(client); } } // Test instance fields initialization @Test 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) @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
} @Test 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());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.1K bytes - Click Count (0) -
internal/stmt_store/stmt_store.go
// connPool: A connection pool that provides database connections. // locker: A synchronization lock that is unlocked after initialization to avoid deadlocks. // Returns: // *Stmt: A newly created statement object for executing SQL operations. // error: An error if the statement preparation fails.
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
super.setUp(testInfo); namingConvention = new MockNamingConvention(); pagerCreator = new PagerCreator(namingConvention); } // Test constructor initialization @Test public void test_constructor() { // Verify suffix is set correctly assertEquals(PagerCreator.SUFFIX, "Pager"); // Verify name suffix is set
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.7K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GradleArchitecture.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild import org.gradle.api.initialization.Settings /** * Defines a top-level architecture module. */ fun Settings.module(moduleName: String, moduleConfiguration: ArchitectureModuleBuilder.() -> Unit) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
private static FessConfig fessConfig; /** List of initialization processes to run after container initialization. */ private static List<Runnable> initProcesses = new ArrayList<>(); /** * Private constructor to prevent instantiation. */ private ComponentUtil() { } /** * Processes a runnable after container initialization. * @param process The process to run after container init.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild import org.gradle.api.initialization.Settings import java.io.Serializable class ProjectScope( private val basePath: String, private val settings: Settings, ) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3K bytes - Click Count (0)