Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isContinue (0.25 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: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                        os,
                        arch,
                        "%testJavaVersion%",
                        "%testJavaVendor%",
                    ) + buildToolGradleParameters(isContinue = false)
                    ).joinToString(separator = " ")
            }
            removeSubstDirOnWindows(os)
            checkCleanM2AndAndroidUserHome(os)
        }
    })
    
    private
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 03 06:45:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. .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 Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 10 03:25:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top