- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for hasModification (0.08 seconds)
-
src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java
private boolean hasNotification = true; private String notificationTo = "******@****.***"; @Override public boolean isLogNotificationEnabled() { return logNotificationEnabled; } @Override public boolean hasNotification() { return hasNotification; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
return "test-hostname"; } }; FessConfig fessConfig = new TestFessConfig() { @Override public boolean hasNotification() { return true; } @Override public String getNotificationTo() { return ""; } };
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
@Override public int getDayForCleanup() { return 30; } @Override public boolean hasNotification() { return false; } @Override public String getMailHostname() { return "mail-host"; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (!fessConfig.isLogNotificationEnabled()) { return "Log notification disabled."; } if (!fessConfig.hasNotification()) { return "No notification targets configured."; } final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} default String getPurgeByBots() { return getSystemProperty(Constants.PURGE_BY_BOTS_PROPERTY, Constants.DEFAULT_PURGE_BY_BOTS); } default boolean hasNotification() { return StringUtil.isNotBlank(getNotificationTo()) || StringUtil.isNotBlank(getSlackWebhookUrls()) || StringUtil.isNotBlank(getGoogleChatWebhookUrls()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0)