Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBoostExpr (0.2 sec)

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

        public DocBoostMatcher() {
            scriptType = Constants.DEFAULT_SCRIPT;
        }
    
        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) {
    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/es/config/bsentity/BsBoostDocumentRule.java

        //                                                                            Accessor
        //                                                                            ========
        public String getBoostExpr() {
            checkSpecifiedProperty("boostExpr");
            return convertEmptyToNull(boostExpr);
        }
    
        public void setBoostExpr(String value) {
            registerModifiedProperty("boostExpr");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/BoostDocumentRuleDbm.java

        //                                       ---------------
        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((BoostDocumentRule) et).getBoostExpr(),
                    (et, vl) -> ((BoostDocumentRule) et).setBoostExpr(DfTypeUtil.toString(vl)), "boostExpr");
            setupEpg(_epgMap, et -> ((BoostDocumentRule) et).getCreatedBy(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top