Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 180 for helper (0.14 seconds)

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            final CoordinatorHelper helper = createCapturingHelper("node1@host1", null, null, createMockResponse(200, searchResponse));
            setLastEventCheckTime(helper, 4000L);
    
            helper.fetchNewEvents();
    
            // lastEventCheckTime should be max(createdTime) + 1 = 7001
            assertEquals(7001L, getLastEventCheckTime(helper));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

            LogNotificationHelper helper = new LogNotificationHelper();
            // destroy() without init() should not throw NPE because of null checks
            helper.destroy();
        }
    
        @Test
        public void test_init_destroy_multipleRounds() {
            LogNotificationHelper helper = new LogNotificationHelper();
            helper.init();
            helper.destroy();
            // Second round
            helper.init();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.codelibs.fess.helper.PathMappingHelper;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.helper.PluginHelper;
    import org.codelibs.fess.helper.PopularWordHelper;
    import org.codelibs.fess.helper.ProcessHelper;
    import org.codelibs.fess.helper.ProtocolHelper;
    import org.codelibs.fess.helper.QueryHelper;
    import org.codelibs.fess.helper.RateLimitHelper;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  4. CLAUDE.md

    ### Service
    - Inject behaviors (Bhv) for data access
    - Use `OptionalEntity<T>` for nullable returns
    - Plain classes (no extends/implements)
    
    ### Helper
    - Stateless utility classes
    - Access via `ComponentUtil.getXyzHelper()`
    - Named with "Helper" suffix
    
    ### DBFlute Generated Code
    ```
    opensearch/{index}/
    ├── bsentity/, bsbhv/    # Base classes (DO NOT EDIT)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

            } catch (final Exception e) {
                return;
            }
    
            final LogNotificationHelper helper;
            try {
                helper = ComponentUtil.getLogNotificationHelper();
            } catch (final Exception e) {
                return;
            }
    
            final List<LogNotificationEvent> events = helper.drainAll();
            if (events.isEmpty()) {
                return;
            }
    
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

    import org.apache.logging.log4j.core.config.plugins.PluginElement;
    import org.apache.logging.log4j.core.config.plugins.PluginFactory;
    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    
    /**
     * Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.exception.UserRoleLoginException;
    import org.codelibs.fess.helper.CrawlingConfigHelper;
    import org.codelibs.fess.helper.PermissionHelper;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.di.util.LdiFileUtil;
    import org.lastaflute.web.login.LoginManager;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

    import java.util.concurrent.atomic.AtomicInteger;
    
    import org.codelibs.core.misc.DynamicProperties;
    import org.codelibs.fess.exception.ContainerNotAvailableException;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.thumbnail.ThumbnailManager;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

    import org.codelibs.fess.app.service.PathMappingService;
    import org.codelibs.fess.helper.CrawlingInfoHelper;
    import org.codelibs.fess.helper.DataIndexHelper;
    import org.codelibs.fess.helper.DuplicateHostHelper;
    import org.codelibs.fess.helper.NotificationHelper;
    import org.codelibs.fess.helper.PathMappingHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.helper.WebFsIndexHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

            assertProvideThrowsException("тестклассификация");
            assertProvideThrowsException("🔥TestClassification");
            assertProvideThrowsException("Test😀Classification");
        }
    
        // Helper method to assert that provide() throws ProvidedClassificationNotFoundException
        private void assertProvideThrowsException(String classificationName) {
            try {
                provider.provide(classificationName);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
Back to Top