- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 208 for initiatives (0.32 sec)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
/** * Default constructor for ProtocolHelper. * Initializes the helper with empty protocol arrays that will be populated during init(). */ public ProtocolHelper() { // Default constructor } /** * Initializes the protocol helper by loading configured protocols from FessConfig
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
protected final Map<String, List<PathMapping>> pathMappingMap = new HashMap<>(); /** Cached list of path mappings. */ protected volatile List<PathMapping> cachedPathMappingList = null; /** * Initializes the path mapping helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
cmd/event-notification.go
} // Targets returns all the registered targets func (evnot *EventNotifier) Targets() []event.Target { return evnot.targetList.Targets() } // InitBucketTargets - initializes event notification system from notification.xml of all buckets. func (evnot *EventNotifier) InitBucketTargets(ctx context.Context, objAPI ObjectLayer) error { if objAPI == nil { return errServerNotInitialized }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 7.7K 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/test/java/jcifs/internal/smb1/com/ServerDataTest.java
@BeforeEach public void setUp() { serverData = new ServerData(); } /** * Test default constructor initializes all fields with default values */ @Test @DisplayName("Test default constructor initializes fields with default values") public void testDefaultConstructor() { // Then - verify all fields have default values
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
* The timestamp when this crawling session was created. * Stored as a long value representing milliseconds since epoch. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default null values. * This method resets all fields to their default state for creating a new entry. */ public void initialize() { id = null; sessionId = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
public String missing; /** * Default constructor for FacetInfo. */ public FacetInfo() { // Default constructor } /** * Initializes the facet configuration from Fess configuration properties. * This method is called after dependency injection to load default facet settings. */ @PostConstruct public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
import jcifs.Configuration; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB1 Trans2 Find First 2 transaction request implementation. * Initiates directory enumeration operations in SMB1 protocol, allowing clients * to search for files and directories matching specified patterns and criteria. * * @author mbechler */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
import org.jspecify.annotations.Nullable; /** * A helper which does some thread-safe operations for aggregate futures, which must be implemented * differently in GWT. Namely: * * <ul> * <li>Lazily initializes a set of seen exceptions * <li>Decrements a counter atomically * </ul> */ @GwtCompatible @ReflectionSupport(value = ReflectionSupport.Level.FULL)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.5K bytes - Viewed (0) -
docs/features/caching.md
Pruning the entire Cache to clear space temporarily can be done using evictAll. ```kotlin cache.evictAll() ``` Removing individual items can be done using the urls iterator. This would be typical after a user initiates a force refresh by a pull to refresh type action. ```java val urlIterator = cache.urls() while (urlIterator.hasNext()) { if (urlIterator.next().startsWith("https://www.google.com/")) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.1K bytes - Viewed (0)