Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isContinue (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                    return false;
                }
                isContinue = true;
            }
    
            if (!isContinue && crawlerContext.activeThreadCount > 0) {
                // still running..
                return true;
            }
    
            return isContinue;
        }
    
        protected void log(final LogHelper logHelper, final LogType key, final Object... objs) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

        if (buildType !is CompileAll) {
            conditions {
                doesNotEqual("skip.build", "true")
            }
        }
    }
    
    fun buildToolGradleParameters(daemon: Boolean = true, isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%"): List<String> =
        listOf(
            // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
Back to top