- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Butcher (0.08 sec)
-
ViewHelper.java
rn)) { L238: return null; L239: } L240: final Matcher matcher = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE).matcher(value); L241: final StringBuffer buf = new StringBuffer(value.length() + 100); L242: while (matcher.find()) { L243: matcher.appendReplacement(buf, Matcher.quoteReplacement(highlightTagPre + matcher.group(0) + highlightTagPost)); L244: } L245: matcher.appendTail(buf);...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
StemmerOverrideFile.java
(replacedLine.length() == 0) { L143: if (updater != null) { L144: updater.write(line); L145: } L146: continue; L147: } L148: L149: final Matcher m = parsePattern.matcher(replacedLine); L150: L151: if (!m.find()) { L152: logger.warn("Failed to parse {} in {}", line, path); L153: if (updater != null) { L154: updater.write("# " +...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
FessFunctions.java
; L393: int lineNum = 0; L394: for (final String line : values) { L395: final Matcher matcher = pattern.matcher(line); L396: if (matcher.matches()) { L397: if (lineNum == 0) { L398: lineNum = Integer.parseInt(matcher.group(1)); L399: list.clear(); L400: } L401: list.add(matcher.group(2)); L402: } else { L403: list.add(line); L404: } L405: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 16.9K bytes -
FileConfig.java
return Constants.TRUE; L70: } L71: L72: for (final Pattern pattern : includedDocPathPatterns) { L73: if (pattern.matcher(input).matches()) { L74: return Constants.TRUE; L75: } L76: } L77: L78: for (final Pattern pattern : excludedDocPathPatterns) { L79: if (pattern.matcher(input).matches()) { L80: return Constants.FALSE; L81: } L82: } L83: L84: return Constants.TRUE; L85: L86:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.8K bytes -
LabelTypeHelper.java
does not match the exclude path expression {} on {} of label.", path, excludedPaths, value); L296: } L297: return true; L298: } L299: if (includedPaths.matcher(path).matches()) { L300: if (excludedPaths != null && excludedPaths.matcher(path).matches()) { L301: if (logger.isDebugEnabled()) { L302: logger.debug("Path {} matches the include/exclude path expression {} on {} of label.", path, excludedPaths,...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 11.7K bytes -
CharMappingFile.java
updater.write(line); L145: } L146: continue; L147: } L148: L149: String[] inputs; L150: String output; L151: L152: final Matcher m = parsePattern.matcher(replacedLine); L153: L154: if (!m.find()) { L155: logger.warn("Failed to parse {} in {}", line, path); L156: if (updater != null) { L157: updater.write("# " +...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
PluginHelper.java
{ L118: final List<Artifact> list = new ArrayList<>(); L119: final String repoContent = getRepositoryContent(url); L120: final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent); L121: while (matcher.find()) { L122: final String name = matcher.group(1); L123: if (isExcludedName(artifactType, name)) { L124: continue; L125: } L126: final String...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
WebConfig.java
return Constants.TRUE; L74: } L75: L76: for (final Pattern pattern : includedDocUrlPatterns) { L77: if (pattern.matcher(input).matches()) { L78: return Constants.TRUE; L79: } L80: } L81: L82: for (final Pattern pattern : excludedDocUrlPatterns) { L83: if (pattern.matcher(input).matches()) { L84: return Constants.FALSE; L85: } L86: } L87: L88: return Constants.TRUE; L89: }...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.8K bytes -
FessCrawlerThread.java
crawlingConfig.getConfigParameterMap(ConfigName.CLIENT); L279: final String value = clientConfigMap.get(CRAWLER_CLIENTS); L280: final CrawlerClient client = getClientRuleList(value).stream().map(e -> { L281: if (e.getSecond().matcher(url).matches()) { L282: return e.getFirst(); L283: } L284: return null; L285: }).filter(StringUtil::isNotBlank).findFirst()// L286: .map(s -> clientFactory.getClient(s + ":" + url))// L287:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 14.6K bytes -
CrawlingConfigHelper.java
pattern = Pattern.compile(ignoreFailureType); L265: } L266: final List<String> urlList = new ArrayList<>(); L267: for (final FailureUrl failureUrl : list) { L268: if (pattern != null) { L269: if (!pattern.matcher(failureUrl.getErrorName()).matches()) { L270: urlList.add(failureUrl.getUrl()); L271: } L272: } else { L273: urlList.add(failureUrl.getUrl()); L274: } L275: } L276: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 11.7K bytes