Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for hugger (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

    /**
     * @author shinsuke
     * @author jflute
     */
    public class AdminKeymatchAction extends FessAdminAction {
    
        public static final String ROLE = "admin-keymatch";
    
        private static final Logger logger = LogManager.getLogger(AdminKeymatchAction.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

    /**
     * @author shinsuke
     * @author Keiichi Watanabe
     */
    public class AdminRoleAction extends FessAdminAction {
    
        public static final String ROLE = "admin-role";
    
        private static final Logger logger = LogManager.getLogger(AdminRoleAction.class);
    
        // ===================================================================================
        //                                                                           Attribute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

    /**
     * @author shinsuke
     */
    public class AdminRelatedqueryAction extends FessAdminAction {
    
        public static final String ROLE = "admin-relatedquery";
    
        private static final Logger logger = LogManager.getLogger(AdminRelatedqueryAction.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    public class TermQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(TermQueryCommand.class);
    
        private static final String SORT_FIELD = "sort";
    
        @Override
        protected String getQueryClassName() {
            return TermQuery.class.getSimpleName();
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

    /**
     * @author shinsuke
     * @author Keiichi Watanabe
     */
    public class AdminFileconfigAction extends FessAdminAction {
    
        public static final String ROLE = "admin-fileconfig";
    
        private static final Logger logger = LogManager.getLogger(AdminFileconfigAction.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

    import org.opensearch.search.aggregations.bucket.terms.Terms.Bucket;
    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    
    public class CrawlingInfoHelper {
        private static final Logger logger = LogManager.getLogger(CrawlingInfoHelper.class);
    
        public static final String FACET_COUNT_KEY = "count";
    
        protected Map<String, String> infoMap;
    
        protected Long documentExpires;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class QueryFieldConfig {
    
        private static final Logger logger = LogManager.getLogger(QueryFieldConfig.class);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.popular_word_word_enabled	=	Réponse de mot populaire
    labels.supported_search_web	=	Web
    labels.supported_search_none	=	Indisponible
    labels.purge_search_log_day	=	Purger le journal de recherche avant
    labels.purge_job_log_day	=	Purger le journal des tâches avant
    labels.purge_user_info_day	=	Purger le journal utilisateur avant
    labels.purge_by_bots	=	Nom des robots pour la purge
    labels.log_level	=	Niveau de journalisation
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        crawler.addExcludeFilter(urlValue);
                        if (logger.isInfoEnabled()) {
                            logger.info("Excluded URL from failures: {}", urlValue);
                        }
                    });
                }
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Crawling {}", urlsStr);
                }
    
                crawler.setBackground(true);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    logger.info("Copying from {} to {}", oldIndex, index);
                    if (!client.reindex(oldIndex, index, false)) {
                        logger.warn("Failed to copy from {} to {}", oldIndex, index);
                    }
                } else if (logger.isDebugEnabled()) {
                    if (!client.existsIndex(oldIndex)) {
                        logger.debug("{} does not exist.", oldIndex);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
Back to top