Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for popularWord (0.11 sec)

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

                return FormatType.SEARCH;
            }
            if (FormatType.LABEL.name().equals(type)) {
                return FormatType.LABEL;
            }
            if (FormatType.POPULARWORD.name().equals(type)) {
                return FormatType.POPULARWORD;
            }
            if (FormatType.FAVORITE.name().equals(type)) {
                return FormatType.FAVORITE;
            }
            if (FormatType.FAVORITES.name().equals(type)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="popularWord"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="popularWord" styleClass="form-check-input" property="popularWord"/>
                                                <label for="popularWord" class="form-check-label">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to process a popularWord request.", e);
                }
                writeJsonResponse(e.getStatusCode(), e);
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to process a popularWord request.", e);
                }
                writeJsonResponse(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setIgnoreFailureType(form.ignoreFailureType);
            fessConfig.setFailureCountThreshold(form.failureCountThreshold);
            fessConfig.setWebApiPopularWord(isCheckboxEnabled(form.popularWord));
            fessConfig.setCsvFileEncoding(form.csvFileEncoding);
            fessConfig.setPurgeSearchLogDay(form.purgeSearchLogDay);
            fessConfig.setPurgeJobLogDay(form.purgeJobLogDay);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        public String ignoreFailureType;
    
        /** The failure count threshold setting. */
        public String failureCountThreshold;
    
        /** The popular word setting. */
        public String popularWord;
    
        /** The CSV file encoding setting. */
        public String csvFileEncoding;
    
        /** The purge search log day setting. */
        public String purgeSearchLogDay;
    
        /** The purge job log day setting. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * Enable or disable popular word tracking and display.
         * When enabled, frequently searched terms are tracked and displayed.
         */
        @Size(max = 10)
        public String popularWord;
    
        /**
         * Character encoding to use for CSV file exports.
         * This setting affects the encoding of downloaded CSV files.
         */
        @Required
        @Size(max = 20)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. src/main/config/openapi/openapi-user.yaml

    externalDocs:
      description: API Documentation
      url: https://fess.codelibs.org/14.8/api/
    servers:
      - url: http://localhost:8080/api/v1
    tags:
      - name: search
        description: Search operations
      - name: popularword
        description: Popular word operations
      - name: monitor
        description: Monitoring operations
      - name: suggest
        description: Suggest operations
      - name: favorite
        description: Favorite operations
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.failureCountThreshold=Failure Count
    labels.fileConfigName=File Crawl Config Name
    labels.fileName=File Name
    labels.handlerName=Handler Name
    labels.handlerParameter=Parameter
    labels.handlerScript=Script
    labels.popularWord=Popular Word
    labels.ignoreFailureType=Ignored Failure Type
    labels.lastAccessTime=Last Access Time
    labels.notificationTo=Notification To
    labels.num=Num
    labels.pn=Page Number
    labels.protocolScheme=Scheme
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_zh_TW.properties

    labels.expiredTime=有效期
    labels.expires=過期
    labels.failureCountThreshold=失敗次數
    labels.fileConfigName=檔案爬網配置名稱
    labels.fileName=檔案名稱
    labels.handlerName=處理程式名稱
    labels.handlerParameter=參數
    labels.handlerScript=腳本
    labels.popularWord=熱門詞
    labels.ignoreFailureType=忽略的失敗類型
    labels.lastAccessTime=上次訪問時間
    labels.notificationTo=通知對象
    labels.num=數量
    labels.pn=頁碼
    labels.protocolScheme=方案
    labels.purgeByBots=按機器人清除
    labels.logLevel=日誌級別
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final String WEB_API_GSA_PROPERTY = "web.api.gsa";
    
        /** Property key for popular word web API configuration. */
        public static final String WEB_API_POPULAR_WORD_PROPERTY = "web.api.popularword";
    
        /** Property key for system properties configuration. */
        public static final String APP_VALUE_PROPERTY = "system.properties";
    
        /** Property key for default label value configuration. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top