Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for value (0.16 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'search_engine.password'. <br>
         * The value is, e.g.  <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEnginePassword();
    
        /**
         * Get the value for the key 'search_engine.password' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        public String normalizeHtmlLang(final String value) {
            final String defaultLang = ComponentUtil.getFessConfig().getCrawlerDocumentHtmlDefaultLang();
            if (StringUtil.isNotBlank(defaultLang)) {
                return defaultLang;
            }
    
            return normalizeLang(value);
        }
    
        public String normalizeLang(final String value) {
            if (StringUtil.isBlank(value)) {
                return null;
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_app_value = "{labels.app_value}";
    
        /** The key of the message: Default Label Value */
        public static final String LABELS_default_label_value = "{labels.default_label_value}";
    
        /** The key of the message: Default Sort Value */
        public static final String LABELS_default_sort_value = "{labels.default_sort_value}";
    
        /** The key of the message: Virtual Hosts */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top