Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startTime (0.04 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         */
        protected void waitForYellowStatus(final FessConfig fessConfig) {
            Exception cause = null;
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final long startTime = systemHelper.getCurrentTimeAsLong();
            for (int i = 0; i < maxEsStatusRetry; i++) {
                try {
                    final ClusterHealthResponse response = client.admin()
                            .cluster()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return true;
            }
            final long startTime = getCurrentTimeAsLong();
            final String threadName = Thread.currentThread().getName();
            try {
                waitingThreadNames.add(threadName);
                while (current >= percent) {
                    if (timeoutInMillis > 0 && getCurrentTimeAsLong() - startTime > timeoutInMillis) {
                        if (logger.isInfoEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top