- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for controlling (0.58 sec)
-
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
import java.util.List; import org.codelibs.core.lang.ThreadUtil; import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.util.ComponentUtil; /** * Helper class for controlling crawler execution intervals and timing. * This class manages crawler execution timing based on configurable rules * that can specify different delays for different time periods and days. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AbstractConfigHelper.java
/** * The abstract helper for configuration. * * This class provides a basic framework for managing configurations that can be reloaded. * It includes functionality for updating configurations in a separate thread and controlling the reloading interval. */ public abstract class AbstractConfigHelper { /** * Default constructor. */ public AbstractConfigHelper() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java
*/ public String requestedTimeRange; /** * The access type field for filtering logs by access method. */ public String accessType; /** * The size field for controlling page size. */ public String size; /** * Sets the page size for search log results. * * @param size the page size to set */ public void setPageSize(final int size) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java
import jcifs.internal.util.SMBUtil; /** * File System Control Code (FSCC) structure for File End-of-File Information. * Used in SMB2/SMB3 operations to set or query the end-of-file position for a file, * effectively controlling file size truncation or extension. * * @author mbechler */ public class FileEndOfFileInformation implements FileInformation, Encodable { private long endOfFile; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* This message is shown to users on the main search page. */ @Size(max = 3000) public String notificationSearchTop; /** * System log level for controlling log verbosity. * Controls the level of detail in system log messages. */ @Size(max = 10) public String logLevel; /** * Storage service endpoint URL for cloud storage integration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java
testReconnector.testCreateReconnectionRequest(testHandle); }); } /** * Test implementation of HandleReconnector that allows controlling success/failure */ private static class TestHandleReconnector extends HandleReconnector { private final boolean shouldSucceed;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(DataIndexHelper.class); /** Parameter key for controlling deletion of old documents */ private static final String DELETE_OLD_DOCS = "delete_old_docs"; /** Parameter key for controlling retention of expired documents */ private static final String KEEP_EXPIRES_DOCS = "keep_expires_docs"; /**
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/main/java/org/codelibs/fess/app/service/StopwordsService.java
// do nothing } /** * Retrieves a list of stopwords for a given dictionary and pager. * * @param dictId The ID of the dictionary. * @param stopwordsPager The pager for controlling pagination. * @return A list of stopwords. */ public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) { return getStopwordsFile(dictId).map(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
// do nothing } /** * Retrieves a list of synonyms for a given dictionary and pager. * * @param dictId The ID of the dictionary. * @param synonymPager The pager for controlling pagination. * @return A list of synonyms. */ public List<SynonymItem> getSynonymList(final String dictId, final SynonymPager synonymPager) { return getSynonymFile(dictId).map(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* * @since 4.0.0 */ @Config(type = "java.lang.Boolean", defaultValue = "true") public static final String MAVEN_CONSUMER_POM = "maven.consumer.pom"; /** * User property for controlling "maven personality". If activated Maven will behave * like the previous major version, Maven 3. * * @since 4.0.0 */ @Config(type = "java.lang.Boolean", defaultValue = "false")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 25 11:08:20 UTC 2025 - 25.4K bytes - Viewed (0)