Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for input (0.03 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. advance.jsp

    class="form-group row"> L106: <label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message L107: key="labels.advance_search_must_queries" L108: /></label> L109: <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6"> L110: <input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}"> L111: </div> L112: <div class="col-lg-4 d-none d-lg-flex align-items-center"> L113: </div> L114: </div> L115: <div class="form-group row"> L116: <label...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      14.9K bytes
  4. advance.jsp

    class="form-group row"> L106: <label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message L107: key="labels.advance_search_must_queries" L108: /></label> L109: <div class="col-lg-5 col-md-8 col-sm-7 col-xs-6"> L110: <input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}"> L111: </div> L112: <div class="col-lg-4 d-none d-lg-flex align-items-center"> L113: </div> L114: </div> L115: <div class="form-group row"> L116: <label...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      14.9K bytes
  5. 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
  6. fess_config.properties

    =================================== L640:# Web L641:# ===== L642:form.admin.max.input.size=10000 L643:form.admin.label.in.config.enabled=false L644:form.admin.default.template.name=__TEMPLATE__ L645:osdd.link.enabled=auto L646:clipboard.copy.icon.enabled=true L647: L648:# ---------------------------------------------------------- L649:#...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  7. 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
  8. 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
Back to top