Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 215 for StringUtil (0.19 sec)

  1. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                final String includedPaths = labelType.getIncludedPaths();
                final String excludedPaths = labelType.getExcludedPaths();
                if (StringUtil.isNotBlank(includedPaths) || StringUtil.isNotBlank(excludedPaths)) {
                    try {
                        list.add(new LabelTypePattern(labelType.getValue(), includedPaths, excludedPaths));
                    } catch (final Exception e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            // search
            if (StringUtil.isNotBlank(failureUrlPager.url)) {
                cb.query().setUrl_Wildcard(failureUrlPager.url);
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) {
                cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax));
            }
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMin)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            final List<String> pagingQueryList = new ArrayList<>();
            if (form.ex_q != null) {
                stream(form.ex_q).of(stream -> stream.filter(StringUtil::isNotBlank).distinct()
                        .forEach(q -> pagingQueryList.add("ex_q=" + LaFunctions.u(q))));
            }
            if (StringUtil.isNotBlank(form.sort)) {
                pagingQueryList.add("sort=" + LaFunctions.u(form.sort));
            }
            if (form.lang != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    import org.apache.commons.codec.DecoderException;
    import org.apache.commons.codec.net.URLCodec;
    import org.codelibs.core.lang.StringUtil;
    import org.lastaflute.web.servlet.filter.LastaPrepareFilter;
    
    public class EncodingFilter implements Filter {
        public static final String ENCODING_MAP = "encodingRules";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/BadWordService.java

        }
    
        private static String getValue(final List<String> list, final int index) {
            if (index >= list.size()) {
                return StringUtil.EMPTY;
            }
            String item = list.get(index).trim();
            if (StringUtil.isBlank(item)) {
                return StringUtil.EMPTY;
            }
            if (item.length() > 1 && item.charAt(0) == '"' && item.charAt(item.length() - 1) == '"') {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            return relatedQueryMap.size();
        }
    
        protected String getHostKey(final RelatedQuery entity) {
            final String key = entity.getVirtualHost();
            return StringUtil.isBlank(key) ? StringUtil.EMPTY : key;
        }
    
        public String[] getRelatedQueries(final String query) {
            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                }
    
                userCode = getUserCodeFromCookie(request);
                if (StringUtil.isBlank(userCode)) {
                    userCode = getUserCodeFromUserBean(request);
                    if (StringUtil.isBlank(userCode)) {
                        userCode = getId();
                    }
                }
    
                if (StringUtil.isNotBlank(userCode)) {
                    updateUserSessionId(userCode);
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            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)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                final String s = file.toUri().toString();
                final String b = basePath.toUri().toString();
                final String id = s.replace(b, StringUtil.EMPTY).replace("." + imageExtention, StringUtil.EMPTY).replace("/", StringUtil.EMPTY);
                if (logger.isDebugEnabled()) {
                    logger.debug("Base: {} File: {} DocId: {}", b, s, id);
                }
                return id;
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/CrawlJob.java

                final String httpAddress = SystemUtil.getSearchEngineHttpAddress();
                if (StringUtil.isNotBlank(httpAddress)) {
                    cmdList.add("-D" + Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS + "=" + httpAddress);
                }
            }
    
            final String systemLastaEnv = System.getProperty("lasta.env");
            if (StringUtil.isNotBlank(systemLastaEnv)) {
                if ("web".equals(systemLastaEnv)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
Back to top