Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Hosts (0.02 sec)

  1. FessProp.java

    (); L1797: } L1798: L1799: @SuppressWarnings("unchecked") L1800: default Tuple3<String, String, String>[] getVirtualHosts() { L1801: Tuple3<String, String, String>[] hosts = (Tuple3<String, String, String>[]) propMap.get(VIRTUAL_HOST_HEADERS); L1802: if (hosts == null) { L1803: hosts = split(getVirtualHostHeaderValue(), "\n").get(stream -> stream.map(s -> { L1804: final String[] v1 = s.split("="); L1805: if (v1.length == 2) { L1806:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      87.2K bytes
  2. SearchEngineClient.java

    L385: } L386: L387: protected Client createHttpClient(final FessConfig fessConfig, final String host) { L388: final String[] hosts = L389: split(host, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n])); L390: final Builder builder = Settings.builder().putList("http.hosts", hosts).put("processors", fessConfig.availableProcessors()) L391: .put("http.heartbeat_interval", fessConfig.getFesenHeartbeatInterval());...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
Back to top