Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for favorite (0.16 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            final long count = searchLogHelper.getFavoriteCount(url);
            doc.put(favoriteCountField, count);
            if (logger.isDebugEnabled()) {
                logger.debug("Favorite Count: {}, url: {}", count, url);
            }
        }
    
        @Override
        public long getDocumentSize() {
            return documentSize.get();
        }
    
        @Override
        public long getExecuteTime() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  3. src/main/java/org/codelibs/fess/Constants.java

        // fess properties
        public static final String USER_INFO_PROPERTY = "user.info";
    
        public static final String USER_FAVORITE_PROPERTY = "user.favorite";
    
        public static final String SEARCH_LOG_PROPERTY = "search.log";
    
        public static final String APPEND_QUERY_PARAMETER_PROPERTY = "append.query.parameter";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  4. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        params.getStartPosition(), params.getPageSize(), queryResponseList);
            }
    
            // favorite
            if (fessConfig.isUserFavorite()) {
                ComponentUtil.getUserInfoHelper().storeQueryId(queryId, documentItems);
            }
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "favorite_log";
        }
    
        @Override
        public String xgetAliasName() {
            return "favorite_log";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 42.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    }
                    if ("click_log".equals(name)) {
                        return writeNdjsonResponse(id, getClickLogNdjsonWriteCall());
                    }
                    if ("favorite_log".equals(name)) {
                        return writeNdjsonResponse(id, getFavoriteLogNdjsonWriteCall());
                    }
                } else if ("fess.json".equals(id)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/first-steps.md

    You can also return Pydantic models (you'll see more about that later).
    
    There are many other objects and models that will be automatically converted to JSON (including ORMs, etc). Try using your favorite ones, it's highly probable that they are already supported.
    
    ## Recap
    
    * Import `FastAPI`.
    * Create an `app` instance.
    * Write a **path operation decorator** (like `@app.get("/")`).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 12K bytes
    - Viewed (0)
  9. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  10. docs/en/docs/alternatives.md

    This solved having to write YAML (another syntax) inside of Python docstrings.
    
    This combination of Flask, Flask-apispec with Marshmallow and Webargs was my favorite backend stack until building **FastAPI**.
    
    Using it led to the creation of several Flask full-stack generators. These are the main stacks I (and several external teams) have been using up to now:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
Back to top