Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for input (0.01 sec)

  1. StemmerOverrideFile.java

    null) { L154: updater.write("# " + line); L155: } L156: continue; L157: } L158: L159: final String input = m.group(1).trim(); L160: final String output = m.group(2).trim(); L161: L162: if (input == null || output == null) { L163: logger.warn("Failed to parse {} to {}", line, path); L164: if (updater != null) { L165: updater.write("#...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.6K bytes
  2. 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: } L90: L91:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.8K bytes
  3. CharMappingFile.java

    L157: updater.write("# " + line); L158: } L159: continue; L160: } L161: L162: inputs = m.group(1).trim().split(","); L163: output = m.group(2).trim(); L164: L165: if (inputs == null || output == null || inputs.length == 0) { L166: logger.warn("Failed to parse {} in {}", line, path); L167: if (updater != null) { L168: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.2K bytes
  4. DataConfig.java

    (value != null) { L107: try { L108: boost = Float.parseFloat(value); L109: } catch (final Exception e) {} L110: } L111: } L112: L113: @Override L114: public String getIndexingTarget(final String input) { L115: // always return true L116: return Constants.TRUE; L117: } L118: L119: @Override L120: public String getConfigId() { L121: return ConfigType.DATA.getConfigId(getId()); L122: } L123: L124: public Map<String,...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      18.5K bytes
  5. SynonymFile.java

    inputStrings = split(line, ","); L174: inputs = new String[inputStrings.size()]; L175: for (int i = 0; i < inputs.length; i++) { L176: inputs[i] = unescape(inputStrings.get(i)).trim(); L177: } L178: L179: if (inputs.length > 0) { L180: id++; L181: final SynonymItem item = new SynonymItem(id, inputs, inputs); L182: if (updater != null) {...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      12.5K bytes
Back to top