Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Ling (0.04 sec)

  1. PingSearchEngineJob.java

    hread(); L78: } L79: } L80: resultBuf.append("Status of ").append(ping.getClusterName()).append(" is changed to ").append(ping.getClusterStatus()) L81: .append('.'); L82: } else if (status == 0) { L83: resultBuf.append(ping.getClusterName()).append(" is alive."); L84: } else { L85: resultBuf.append(ping.getClusterName()).append(" is not available."); L86: } L87: L88: return resultBuf.toString();...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.1K bytes
  2. BaseApiManager.java

    als(type)) { L83: return FormatType.FAVORITE; L84: } L85: if (FormatType.FAVORITES.name().equals(type)) { L86: return FormatType.FAVORITES; L87: } L88: if (FormatType.PING.name().equals(type)) { L89: return FormatType.PING; L90: } L91: if (FormatType.SCROLL.name().equals(type)) { L92: return FormatType.SCROLL; L93: } L94: if (FormatType.SUGGEST.name().equals(type)) { L95: return FormatType.SUGGEST;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.3K bytes
  3. SearchApiManager.java

    L282: final PingResponse pingResponse = searchEngineClient.ping(); L283: writeJsonResponse(pingResponse.getStatus() == 0 ? HttpServletResponse.SC_OK : HttpServletResponse.SC_SERVICE_UNAVAILABLE, L284: "\"data\":" + pingResponse.getMessage()); L285: } catch (final Exception e) { L286: if (logger.isDebugEnabled()) { L287: logger.debug("Failed to process a ping request.", e); L288: } L289: writeJsonRespons...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  4. SearchEngineClient.java

    Exception e) { L1216: logger.error(() -> "Failed to flush " + stream(indices).get(stream -> stream.collect(Collectors.joining(", "))), e); L1217: } L1218: }); L1219: L1220: } L1221: L1222: public PingResponse ping() { L1223: try { L1224: final ClusterHealthResponse response = L1225: client.admin().cluster().prepareHealth().execute().actionGet(ComponentUtil.getFessConfig().getIndexHealthTimeout()); L1226: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
  5. FessConfig.java

    L285: L286: /** The key of the configuration. e.g. false */ L287: String API_JSONP_ENABLED = "api.jsonp.enabled"; L288: L289: /** The key of the configuration. e.g. status,timed_out */ L290: String API_PING_search_engine_FIELDS = "api.ping.search_engine.fields"; L291: L292: /** The key of the configuration. e.g. */ L293: String VIRTUAL_HOST_HEADERS = "virtual.host.headers"; L294: L295: /** The key of the configuration. e.g. */ L296: String HTTP_PROXY_HOST = "http.proxy.host";...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
Back to top