Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for za (0.01 sec)

  1. SearchApiManager.java

    buf.append(')'); L1200: } L1201: write(buf.toString(), mimeType, Constants.UTF_8); L1202: } L1203: L1204: protected String escapeCallbackName(final String callbackName) { L1205: return "/**/" + callbackName.replaceAll("[^0-9a-zA-Z_\\$\\.]", StringUtil.EMPTY); L1206: } L1207: L1208: protected String escapeJson(final Object obj) { L1209: if (obj == null) { L1210: return "null"; L1211: } L1212: L1213: final StringBuilder buf = new StringBuilder(255);...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  2. FessProp.java

    if (v1.length == 2) { L1806: final String[] v2 = v1[0].split(":", 2); L1807: if (v2.length == 2) { L1808: return new Tuple3<>(v2[0].trim(), v2[1].trim(), v1[1].replaceAll("[^a-zA-Z0-9_]", StringUtil.EMPTY).trim()); L1809: } L1810: } L1811: return null; L1812: }).filter(v -> { L1813: if (v == null) { L1814: return false; L1815: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      87.2K bytes
Back to top