- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 64 for elseif (0.11 sec)
-
.teamcity/src/main/kotlin/model/bucket-extensions.kt
return if (largestElementSize >= expectedBucketSize) { val bucketNumberOfFirstElement = if (largestElementSize % expectedBucketSize == 0) largestElementSize / expectedBucketSize else // Leave at least one bucket for the remaining elements min(largestElementSize / expectedBucketSize + 1, expectedBucketNumber - 1)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Nov 17 05:17:44 UTC 2022 - 4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JApiCmpExtensions.kt
internal val JApiCompatibility.jApiClass: JApiClass get() = when (this) { is JApiClass -> this is JApiField -> this.getjApiClass() is JApiBehavior -> this.getjApiClass() else -> error("Unsupported japicmp member type '${this::class}'") } internal val JApiClass.isKotlin: Boolean get() = newClass.orNull()?.isKotlin ?: false internal val JApiClass.simpleName: String
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 1.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/BuildScanUtils.kt
} fun Stage.getBuildScanCustomValueParam(testCoverage: TestCoverage? = null): String { val customValues = if (testCoverage != null) { listOf(testCoverage.asBuildScanCustomValue()) + getBuildScanCustomValues() } else { getBuildScanCustomValues() } return "-DbuildScan.PartOf=${customValues.joinToString(",")}"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.8K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt
includes.map { if (it.endsWith("/**")) { Pattern.compile(it.substring(0, it.length - 3).replace("/", "\\.") + "(\\..+)?") } else { Pattern.compile(it.substring(0, it.length - 2).replace("/", "\\.") + "\\.[^.]+") } } } private val excludePackagePatterns = listOf(Pattern.compile(".+\\.internal(\\..+)?"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 23:20:08 UTC 2024 - 2.4K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
while (queue.isNotEmpty()) { val dependency = when (val result = queue.removeFirst()) { is ResolvedDependencyResult -> result is UnresolvedDependencyResult -> throw result.failure else -> throw AssertionError("Unknown dependency type: $result") } if (dependency.isConstraint) { continue } val to = dependency.resolvedVariant
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 01 08:59:48 UTC 2024 - 4.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
MASTER_BRANCH -> 0 RELEASE_BRANCH -> 1 else -> { val matchResult = OLD_RELEASE_PATTERN.find(branchName) if (matchResult == null) { null } else { (matchResult.groupValues[1].toInt() - 4).apply { require(this in 2..23) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 26 12:59:03 UTC 2024 - 3.2K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED") } else { emptyList() } }) jvmArgumentProviders.add(CommandLineArgumentProvider { val testVersion = testVersionProvider.get() if (testVersion.canCompileOrRun(9) && !testVersion.canCompileOrRun(17)) { listOf("--illegal-access=deny") } else { emptyList() } }) useJUnitPlatform()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 15:18:07 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt
) { val gradleRootProject = when { project.name == "gradle" -> project.rootProject project.rootProject.name == "build-logic" -> rootProject.gradle.parent?.rootProject else -> project.gradle.parent?.rootProject } if (gradleRootProject != null && System.getenv("TEAMCITY_VERSION") != null) { val rootProjectName = rootProject.name
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 24 03:34:53 UTC 2024 - 3.2K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jun 10 06:17:20 UTC 2024 - 3.3K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
val javaParserVersion = "3.18.0" val groovyVersion = GroovySystem.getVersion() val isGroovy4 = VersionNumber.parse(groovyVersion).major >= 4 val codenarcVersion = if (isGroovy4) "3.1.0-groovy-4.0" else "3.1.0" val spockVersion = if (isGroovy4) "2.2-groovy-4.0" else "2.2-groovy-3.0" val asmVersion = "9.7" // To try out better kotlin compilation avoidance and incremental compilation // with -Pkotlin.incremental.useClasspathSnapshot=true
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0)