Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 153 for rrun (0.01 seconds)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.collect-failed-tasks.gradle.kts

        gradleRootProject.extensions.findByType<BuildScanConfiguration>()?.run {
            buildScanPublished {
                ((failedTasksInBuildLogic as List<*>) + (failedTasksInMainBuild as List<*>)).forEach {
                    println("##teamcity[buildProblem description='${buildScanUri}/console-log?task=$it']")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Apr 11 20:57:49 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

    import org.jsoup.Jsoup
    import org.jsoup.nodes.Document
    import java.io.File
    
    
    internal
    fun scrapeRichReport(richReportFile: File): RichReport =
    
        Jsoup.parse(richReportFile, "UTF-8").run {
            RichReport(
                scrapeMessagesForSeverity("error"),
                scrapeMessagesForSeverity("warning"),
                scrapeMessagesForSeverity("info"),
                scrapeMessagesForSeverity("accepted")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 28 08:29:28 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

            gradleRootProject.extensions.findByType<BuildScanConfiguration>()?.run {
                buildFinished {
                    if ((cacheMissInBuildLogic as AtomicBoolean).get() || (cacheMissInMainBuild as AtomicBoolean).get()) {
                        tag("CACHE_MISS")
                    }
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Apr 11 20:57:49 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

    tasks.codeQuality.configure {
        dependsOn(testing.suites.named("archTest"))
    }
    
    fun notForAccessorGeneration(runnable: Runnable) {
        if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test") {
            runnable.run()
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/configurations/LightweightChecks.kt

                    param("JdkProviderEnabled", "false")
                    // should be the same version we run TeamCity with
                    param("env.JAVA_HOME", javaHome(DefaultJvm(JvmVersion.JAVA_21, JvmVendor.OPENJDK), os))
                }
    
                steps {
                    script {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 23 03:29:32 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.private-javadoc.gradle.kts

            }
        }
    }
    
    tasks.withType<Javadoc>().configureEach {
        assert(name != "javadocAll") // This plugin should not be applied to the :docs project.
    
        onlyIf("Do not run the task if there are no java sources") {
            // Javadoc task will complain if we only have package-info.java files and no
            // other java files (as is with some Kotlin projects)
            !source.matching {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 20 14:11:17 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  7. build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    import org.gradle.api.internal.plugins.DslObject
    
    run {
    
        fun String.startsWithAnyOf(vararg prefixes: String): Boolean =
            prefixes.any { prefix -> startsWith(prefix) }
    
        fun Task.typeSimpleName(): String =
            DslObject(this).declaredType.simpleName
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 15:18:40 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                    ) + os.javaInstallationLocations(),
                )
            }
    
            id("${model.projectId}_TestPerformanceTest")
            name = "Test performance test tasks - Java8 Linux"
            description = "Tries to run an adhoc performance test without a database connection to verify this is still working"
    
            applyPerformanceTestSettings()
            setArtifactRules(INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES)
    
            steps {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 08 01:31:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  9. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

        this.onlyIf { !noUpload.map { it == "true" }.orElse(false).get() }
        if (name.endsWith("ToRemoteRepository")) {
            failEarlyIfUrlOrCredentialsAreNotSet(this)
            // packageBuild task executes tests, so we must run after it
            mustRunAfter(":packageBuild")
        }
    }
    
    @Suppress("ThrowsCount")
    fun Project.failEarlyIfUrlOrCredentialsAreNotSet(publish: Task) {
        gradle.taskGraph.whenReady {
            if (hasTask(publish)) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Feb 06 07:41:19 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            }
    
            /**
             * Runs the monitor thread, sleeping for the timeout duration and terminating the process if needed.
             */
            @Override
            public void run() {
                ThreadUtil.sleepQuietly(timeout);
    
                if (!finished) {
                    try {
                        process.destroy();
                        teminated = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
Back to Top