Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for favourite (0.2 sec)

  1. src/main/webapp/WEB-INF/orig/view/advance.jsp

    							</la:option>
    						</c:if>
    						<c:if test="${favoriteSupport}">
    							<la:option value="favorite_count.asc">
    								<la:message key="labels.search_result_sort_favorite_count_asc" />
    							</la:option>
    							<la:option value="favorite_count.desc">
    								<la:message key="labels.search_result_sort_favorite_count_desc" />
    							</la:option>
    						</c:if>
    					</la:select>
    				</div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  2. 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)
  3. dbflute_fess/dfprop/esfluteMap.dfprop

                ; mappingMap = map:{
                    ; type = map:{
                        ; date@dateOptionalTime = LocalDateTime
                    }
                }
            }
            ; fess_log.favorite_log = map:{
                ; package = log
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_log.xml
                ; mappingMap = map:{
                    ; type = map:{
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 6.3K bytes
    - Viewed (0)
  4. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  5. docs/sts/casdoor.md

        - Add your redirect url (callback url) to `Redirect URLs`
        - Save
    
    - Go to Users
      - Edit the user
        - Add your MinIO policy (ex: `readwrite`) in `Tag`
        - Save
    
    - Open your favorite browser and visit: **http://`CASDOOR_ENDPOINT`/.well-known/openid-configuration**, you will see the OIDC configure of Casdoor.
    
    ### Configure MinIO
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. docs/pt/docs/help-fastapi.md

    * Truques e dicas ✅
    
    ## Siga o FastAPI no twitter
    
    <a href="https://twitter.com/fastapi" class="external-link" target="_blank">Siga @fastapi no **Twitter**</a> para receber as últimas notícias sobre o **FastAPI**. 🐦
    
    ## Favorite o **FastAPI** no GitHub
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  8. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  9. 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)
  10. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top