- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for substringBefore (1.82 sec)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt
select("tr.severity-$severity").map { tr -> val entry = tr.select("td")[1] ReportMessage( entry.select("span") .text().substringBefore(" If you did this intentionally"), entry.select("ul li") .map { it.text() } ) } internal data class ReportMessage( val message: String,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/testing/services/BuildBucketProvider.kt
// -PonlyTestGradleVersion=4.0-5.0 // 4.0 <= gradle < 5.0 class CrossVersionBucketProvider(onlyTestGradleVersion: String) : BuildBucketProvider { val startVersionInclusive = onlyTestGradleVersion.substringBefore("-") val endVersionExclusive = onlyTestGradleVersion.substringAfter("-") override fun configureTest(testTask: Test, sourceSetName: String) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.9K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val functionalTestsWithSplit: Map<String, List<BaseGradleBuildType>> = functionalTests.filter { largeSubProjectRegex.containsMatchIn(it.name) }.groupBy { it.getSubProjectSplitName().substringBefore('_') } functionalTestsWithSplit.forEach { assertAllSplitsArePresent(it.key, it.value) assertCorrectParameters(it.key, it.value) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
fun toMergeQueueBaseBranch(actualBranch: String): String = when { actualBranch.startsWith("pre-test/") || actualBranch.startsWith("gh-readonly-queue/") -> actualBranch.substringAfter("/").substringBefore("/") else -> actualBranch } /** * The build environment. * * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 4.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
return name.startsWith("kotlin.jvm.functions.Function") } val ktTypeRawName = ktTypeAsText .trimEnd('?') // nullability is not part of JVM types .substringBefore('<') // generics are not part of parameter types in JVM method signatures val thisTypeAsKt = primitiveTypeStrings[name] ?: name return thisTypeAsKt.endsWith(ktTypeRawName) } private
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 04 08:05:22 UTC 2024 - 11.2K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
readEmptyLine(source) } } else -> Unit // No request body. } } val method = request.substringBefore(' ') require(!hasBody || HttpMethod.permitsRequestBody(method)) { "Request must not have a body: $request" } } catch (e: IOException) { failure = e }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 37.4K bytes - Viewed (0)