- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 153 for rrun (0.01 seconds)
-
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) -
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) -
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) -
build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts
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) -
.teamcity/src/main/kotlin/configurations/LightweightChecks.kt
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) -
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) -
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.simpleNameCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 26 15:18:40 GMT 2026 - 3.8K bytes - Click Count (0) -
.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) -
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) -
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)