Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for favourite (0.18 sec)

  1. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            if (FormatType.POPULARWORD.name().equals(type)) {
                return FormatType.POPULARWORD;
            }
            if (FormatType.FAVORITE.name().equals(type)) {
                return FormatType.FAVORITE;
            }
            if (FormatType.FAVORITES.name().equals(type)) {
                return FormatType.FAVORITES;
            }
            if (FormatType.PING.name().equals(type)) {
                return FormatType.PING;
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                });
            } else if (SearchLogPager.LOG_TYPE_FAVORITE_COUNT.equalsIgnoreCase(pager.logType)) {
                list = (EsPagingResultBean<?>) favoriteLogBhv.selectPage(cb -> {
                    cb.fetchFirst(0);
                    createFavoriteLogCondition(pager, cb);
                    cb.aggregation().setUrl_Terms(SearchLogPager.LOG_TYPE_FAVORITE_COUNT, op -> {
                        op.size(pager.getPageSize());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

                }
                if ("click_log".equals(name)) {
                    return writeNdjsonResponse(id, getClickLogNdjsonWriteCall());
                }
                if ("favorite_log".equals(name)) {
                    return writeNdjsonResponse(id, getFavoriteLogNdjsonWriteCall());
                }
            }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. admin */
        String INDEX_USER_initial_password = "index.user.initial_password";
    
        /** The key of the configuration. e.g. favorite_count */
        String INDEX_FIELD_favorite_count = "index.field.favorite_count";
    
        /** The key of the configuration. e.g. click_count */
        String INDEX_FIELD_click_count = "index.field.click_count";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                final long count = searchLogHelper.getFavoriteCount(url);
                map.put(fessConfig.getIndexFieldFavoriteCount(), count);
                if (logger.isDebugEnabled()) {
                    logger.debug("Favorite Count: {}, url: {}", count, url);
                }
            }
        }
    
        private long cleanupAccessResults(final List<EsAccessResult> accessResultList) {
            if (!accessResultList.isEmpty()) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        public static final String LOG_TYPE_CLICK = "click";
    
        public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg";
    
        public static final String LOG_TYPE_FAVORITE = "favorite";
    
        public static final String LOG_TYPE_FAVORITE_COUNT = "favorite_count_agg";
    
        public static final String LOG_TYPE_USERINFO = "user_info";
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "favorite_log";
        protected final String _tableDispName = "favorite_log";
        protected final String _tablePropertyName = "FavoriteLog";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setUserFavorite(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, value);
        }
    
        default boolean isUserFavorite() {
            return getSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, false);
        }
    
        default void setWebApiJson(final boolean value) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java

                    + userInfoId + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
            return "favorite";
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java

        @Override
        public FavoriteLogDbm asDBMeta() {
            return FavoriteLogDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "favorite_log";
        }
    
        // ===================================================================================
        //                                                                              Source
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top