Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

                } else {
                    excludedDocPathPatterns = new Pattern[0];
                }
            }
        }
    
        public String getBoostValue() {
            if (boost != null) {
                return boost.toString();
            }
            return null;
        }
    
        public void setBoostValue(final String value) {
            if (value != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                } else {
                    excludedDocUrlPatterns = new Pattern[0];
                }
            }
        }
    
        public String getBoostValue() {
            if (boost != null) {
                return boost.toString();
            }
            return null;
        }
    
        public void setBoostValue(final String value) {
            if (value != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        public DataConfig() {
            setBoost(1.0f);
        }
    
        @Override
        public String getDocumentBoost() {
            return getBoost().toString();
        }
    
        public String getBoostValue() {
            if (boost != null) {
                return boost.toString();
            }
            return null;
        }
    
        public void setBoostValue(final String value) {
            if (value != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top