- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 485 for initializer (0.05 sec)
-
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
private IngestFactory ingestFactory; @Override public void setUp() throws Exception { super.setUp(); // Initialize IndexUpdater indexUpdater = new IndexUpdater(); // Initialize mocks/test doubles systemHelper = new TestSystemHelper(); indexingHelper = new TestIndexingHelper(); intervalControlHelper = new TestIntervalControlHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
} catch (JobProcessingException e) { assertTrue(e.getMessage().contains("Thumbnail Process terminated.")); } catch (NullPointerException e) { // May occur if ServletContext is not fully initialized // This is acceptable in test environment } } // Test executeThumbnailGenerator with timeout public void test_executeThumbnailGenerator_withTimeout() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/NullnessCasts.java
* its runtime check. * * <p>An example use case for this method is in implementing an {@code Iterator<T>} whose {@code * next} field is lazily initialized. The type of that field would be {@code @Nullable T}, and the * code would be responsible for populating a "real" {@code T} (which might still be the value
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
/** Cache for storing statistics objects keyed by crawler object identifiers. */ protected LoadingCache<String, StatsObject> statsCache; /** * Initializes the crawler statistics helper. * Sets up the statistics logger and creates the cache for storing * statistics objects with the configured size and expiration settings. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
*/ protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>()); /** * Creates a new instance of DataIndexHelper. * This constructor initializes the helper for managing data crawling operations, * including thread pool management and session-based crawling coordination. */ public DataIndexHelper() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
concreteImplementation = createInitializedDfsReferralDataImpl(); } private DfsReferralDataImpl createInitializedDfsReferralDataImpl() { // Create a properly initialized instance using combine method DfsReferralDataImpl base = new DfsReferralDataImpl(); DfsReferralData mockData = mock(DfsReferralData.class); when(mockData.getServer()).thenReturn("SERVER");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
break; } } ri += len; } return null; } /** * Initializes the security context with the given token. * @param token the input token bytes * @param offset offset into the token array * @param len length of token data * @return the output token bytes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
public HtmlResponse createnew() { saveToken(); return asHtml(path_AdminDuplicatehost_AdminDuplicatehostEditJsp).useForm(CreateForm.class, op -> { op.setup(form -> { form.initialize(); form.crudMode = CrudMode.CREATE; }); }); } /** * Displays the form for editing an existing duplicate host configuration. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
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/test/java/jcifs/http/NetworkExplorerTest.java
} /** * Test Basic authentication when enabled */ @Test void testDoGet_BasicAuth() throws Exception { // Initialize with Basic auth enabled initializeNetworkExplorer(true, "TestRealm"); // Test with no auth - should request Basic when(request.getHeader("Authorization")).thenReturn(null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0)