- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 208 for initiatives (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
/** * Default constructor for DocumentHelper. * Creates a new document helper instance. */ public DocumentHelper() { // Default constructor } /** * Initializes the document helper after construction. * Sets up the TikaExtractor with configuration parameters for text processing. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
int distinct; @SuppressWarnings("unchecked") SetBuilderImpl(int expectedCapacity) { this.dedupedElements = (E[]) new Object[expectedCapacity]; this.distinct = 0; } /** Initializes this SetBuilderImpl with a copy of the deduped elements array from toCopy. */ SetBuilderImpl(SetBuilderImpl<E> toCopy) { this.dedupedElements = Arrays.copyOf(toCopy.dedupedElements, toCopy.dedupedElements.length);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
/** Roles that are allowed to access the search engine API */ protected String[] acceptedRoles = { "admin" }; /** * Default constructor. * Initializes the API manager with the admin server path prefix. */ public SearchEngineApiManager() { super(); setPathPrefix(ADMIN_SERVER); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
protected volatile List<LabelTypePattern> labelTypePatternList; /** * Default constructor. */ public LabelTypeHelper() { super(); } /** * Initializes the helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } load(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
// Verify delegate.next() was only called once verify(mockDelegate, times(1)).next(); } /** * Test constructor initializes correctly. */ @Test void testConstructorInitialization() { // Given when(mockDelegate.hasNext()).thenReturn(false); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
fileBothDirectoryInfo = new FileBothDirectoryInfo(mockConfig, true); fileBothDirectoryInfoNonUnicode = new FileBothDirectoryInfo(mockConfig, false); } @Test @DisplayName("Test constructor initializes fields correctly") void testConstructor() { assertNotNull(fileBothDirectoryInfo); assertNotNull(fileBothDirectoryInfoNonUnicode); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
cmd/tier.go
return nil, decErr } default: return nil, fmt.Errorf("tierConfigInit: unknown version: %d", version) } return cfg, nil } // Init initializes tier configuration reading from objAPI func (config *TierConfigMgr) Init(ctx context.Context, objAPI ObjectLayer) error { err := config.Reload(ctx, objAPI) if globalIsDistErasure {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
/** * Constructs a new SPNEGO authenticator. */ public SpnegoAuthenticator() { // do nothing } /** * Initializes the SPNEGO authenticator and registers it with the SSO manager. * This method is called automatically after dependency injection is complete. */ @PostConstruct public void init() {
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/main/java/org/codelibs/fess/indexer/IndexUpdater.java
private IngestFactory ingestFactory = null; /** * Default constructor for IndexUpdater. * Initializes a new instance with default settings. */ public IndexUpdater() { super(); } /** * Initializes the IndexUpdater after dependency injection. * Sets up the ingest factory if available in the component container. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
*/ protected int count = 1; /** * Cache for storing crawling configurations to improve performance. */ protected Cache<String, CrawlingConfig> crawlingConfigCache; /** * Initializes the CrawlingConfigHelper by setting up the crawling configuration cache. * This method is called automatically after the bean construction is complete.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0)