Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 471 for hugger (0.21 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

        private static final Logger logger = LogManager.getLogger(SearchEngineApiManager.class);
    
        protected String[] acceptedRoles = { "admin" };
    
        public SearchEngineApiManager() {
            setPathPrefix(ADMIN_SERVER);
        }
    
        @PostConstruct
        public void register() {
            if (logger.isInfoEnabled()) {
                logger.info("Load {}", this.getClass().getSimpleName());
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

        private static final Logger logger = LogManager.getLogger(KeyMatchHelper.class);
    
        protected volatile Map<String, Map<String, List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>>>> keyMatchQueryMap =
                Collections.emptyMap();
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.validation.VaErrorHook;
    
    public class LoginAction extends FessLoginAction {
    
        private static final Logger logger = LogManager.getLogger(LoginAction.class);
    
        private static final String INVALID_OLD_PASSWORD = "LoginAction.invalidOldPassword";
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java

    import org.codelibs.fess.es.user.exentity.Role;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    public class ApiAdminRoleAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminRoleAction.class);
    
        @Resource
        private RoleService roleService;
    
        // GET /api/admin/role/settings
        // POST /api/admin/role/settings
        @Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.es.config.exbhv.RelatedQueryBhv;
    import org.codelibs.fess.es.config.exentity.RelatedQuery;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class RelatedQueryHelper extends AbstractConfigHelper {
        private static final Logger logger = LogManager.getLogger(RelatedQueryHelper.class);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            logger.debug(s);
        }
    
        public void info(String s) {
            logger.info(s);
        }
    
        public void debugReactorPlan(ProjectBuildList projectBuilds) {
            if (!logger.isDebugEnabled()) {
                return;
            }
    
            logger.debug("=== REACTOR BUILD PLAN ================================================");
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exbhv/ScheduledJobBhv.java

                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to select a job by {}", id, e);
                    }
                    lastException = e;
                    ThreadUtil.sleep(RandomUtils.nextLong(500, 5000));
                }
            }
            logger.warn("Failed to select a job by {}", id, lastException);
            return OptionalEntity.empty();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

                    if (response.getHttpStatusCode() == 200) {
                        if (logger.isDebugEnabled()) {
                            logger.debug("Sent {} to {}.", body, url);
                        }
                    } else {
                        logger.warn("Failed to send {} to {}. HTTP Status is {}. {}", body, url, response.getHttpStatusCode(),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.helper.CrawlerStatsHelper.StatsKeyObject;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class CrawlerStatsHelperTest extends UnitFessTestCase {
    
        private static final Logger logger = LogManager.getLogger(CrawlerStatsHelperTest.class);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    public class ApiAdminRelatedcontentAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminRelatedcontentAction.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
Back to top