- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 389 for fessConfig (0.41 sec)
-
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.helper.ActivityHelper; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.action.FessUserBean; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalThing; public class LdapUserTest extends UnitFessTestCase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
protected KeyMatchBhv keyMatchBhv; /** * Default constructor. */ public KeyMatchService() { super(); } /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Get a list of key matches. * * @param keyMatchPager Pager for key matches. * @return A list of key matches. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
cron.register(cronExpression, fessConfig.getSchedulerJobClassAsClass(), fessConfig.getSchedulerConcurrentExecModeAsEnum(), op -> op.uniqueBy(id).changeNoticeLogToDebug().params(paramsOp)); } else { logger.info("Inactive Job {}:{}", id, scheduledJob.getName()); cron.registerNonCron(fessConfig.getSchedulerJobClassAsClass(), fessConfig.getSchedulerConcurrentExecModeAsEnum(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
*/ // GET /api/admin/backup/file/{id} @Execute public StreamResponse get$file(final String id) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (stream(fessConfig.getIndexBackupAllTargets()).get(stream -> stream.anyMatch(s -> s.equals(id)))) { if ("system.properties".equals(id)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
private FessCookieResourceProvider cookieResourceProvider; private FessConfig originalFessConfig; @Override public void setUp() throws Exception { super.setUp(); originalFessConfig = ComponentUtil.getFessConfig(); // Set up test FessConfig ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration. * * @return the maximum symbol term size */ protected int getMaxSymbolTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} /** Dictionary manager for handling dictionary files */ @Resource protected DictionaryManager dictionaryManager; /** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary ID * @param protwordsPager the pager for pagination * @return the list of protected words items
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
* * @param infoMap map containing crawling session information and statistics */ protected void sendMail(final Map<String, String> infoMap) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (fessConfig.hasNotification()) { final Map<String, String> dataMap = new HashMap<>(); for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
final AtomicInteger counter = new AtomicInteger(0); final FessConfig fessConfig = ComponentUtil.getFessConfig(); ComponentUtil.getComponent(ScheduledJobBhv.class).selectCursor(cb -> { cb.query().setAvailable_Equal(Constants.T); cb.query().setCrawler_Equal(Constants.T); }, scheduledJob -> { if (fessConfig.isSchedulerTarget(scheduledJob.getTarget())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
super(); } /** Path mapping behavior. */ @Resource protected PathMappingBhv pathMappingBhv; /** Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets the path mapping list with paging. * * @param pathMappingPager the path mapping pager * @return the path mapping list */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0)