Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for quote (0.02 sec)

  1. GsaConfigParser.java

    if (s.startsWith("^") && s.endsWith("$")) { L288: return "^" + Pattern.quote(s.substring(1, s.length() - 1)) + "$"; L289: } L290: if (s.startsWith("^")) { L291: return "^" + Pattern.quote(s.substring(1)); L292: } L293: if (s.endsWith("$")) { L294: return Pattern.quote(s.substring(0, s.length() - 1)) + "$"; L295: } L296: return Pattern.quote(s); L297: } L298: L299: protected String unescape(final String s) { L300: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.1K bytes
  2. ViewHelper.java

    if (!fessConfig.isResponseHighlightContentTitleEnabled()) { L233: return value; L234: } L235: return getQuerySet().map(querySet -> { L236: final String pattern = querySet.stream().map(LaFunctions::h).map(Pattern::quote).collect(Collectors.joining("|")); L237: if (StringUtil.isBlank(pattern)) { L238: return null; L239: } L240: final Matcher matcher = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE | Pattern.UNICOD...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      40.2K bytes
  3. WebFsIndexHelper.java

    nfig.getConfigId()); L208: if (excludedUrlList != null) { L209: excludedUrlList.stream().filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(u -> { L210: final String urlValue = Pattern.quote(u); L211: crawler.addExcludeFilter(urlValue); L212: if (logger.isInfoEnabled()) { L213: logger.info("Excluded URL from failures: {}", urlValue); L214: } L215: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
  4. SystemHelper.java

    L264: L265: final String p = path.trim(); L266: if (p.startsWith("#")) { L267: return StringUtils.EMPTY; L268: } L269: L270: if (p.startsWith(GsaConfigParser.CONTAINS)) { L271: return ".*" + Pattern.quote(p.substring(GsaConfigParser.CONTAINS.length())) + ".*"; L272: } L273: L274: if (p.startsWith(GsaConfigParser.REGEXP)) { L275: return p.substring(GsaConfigParser.REGEXP.length()); L276: } L277: L278: if (p.sta...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
Back to top