Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCrawlerDefaultScript (0.29 sec)

  1. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

        }
    
        public DocBoostMatcher(final BoostDocumentRule rule) {
            matchExpression = rule.getUrlExpr();
            boostExpression = rule.getBoostExpr();
            scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript();
        }
    
        public boolean match(final Map<String, Object> map) {
    
            if (map == null || map.isEmpty() || matchExpression == null) {
                return false;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. groovy <br>
         * comment: common
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDefaultScript();
    
        /**
         * Get the value for the key 'crawler.http.thread_pool.size'. <br>
         * The value is, e.g. 0 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top