- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for asConfigurationId (0.09 sec)
-
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
override val failsStage: Boolean = true ) : PerformanceTestBuildSpec, PerformanceTestProjectSpec { override fun asConfigurationId(model: CIBuildModel, bucket: String) = "${asConfigurationId(model)}$bucket" override fun asConfigurationId(model: CIBuildModel) = "${model.projectId}_${oldUuid ?: "PerformanceTest$uuid"}" override fun asName(): String =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 3.9K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val shortenedId = testCoverage.asConfigurationId(model, "veryLongSubprojectNameLongerThanEverythingWeHave") assertTrue(shortenedId.length < 80) assertEquals("Check_QckFdbckCrssVrsn_1_vryLngSbprjctNmLngrThnEvrythngWHv", shortenedId) assertEquals("Check_QuickFeedbackCrossVersion_1_iIntegT", testCoverage.asConfigurationId(model, "internalIntegTesting"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/PerformanceTestProject.kt
import model.PerformanceTestProjectSpec import model.Stage abstract class PerformanceTestProject(model: CIBuildModel, val spec: PerformanceTestProjectSpec, val performanceTests: List<PerformanceTest>) : Project({ this.id(spec.asConfigurationId(model)) this.name = spec.asName() }) { init { performanceTests.forEach(this::buildType) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
val (topLevelCoverage, allCoverage) = stage.functionalTests.partition { it.testType == TestType.soak } val topLevelFunctionalTests = topLevelCoverage .map { FunctionalTest(model, it.asConfigurationId(model), it.asName(), it.asName(), it, stage = stage) } topLevelFunctionalTests.forEach(this::buildType)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 07 09:17:14 UTC 2024 - 9.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt
os = performanceTestProject.spec.os, failStage = performanceTestProject.spec.failsStage, init = { id("${performanceTestProject.spec.asConfigurationId(model)}_Trigger") val performanceTestSpec = performanceTestProject.spec name = performanceTestProject.name + " (Trigger)" val os = Os.LINUX val type = performanceTestSpec.type
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 10 13:15:00 UTC 2024 - 5.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTest.kt
performanceTestTaskSuffix: String = "PerformanceTest", preBuildSteps: BuildSteps.() -> Unit = {} ) : BaseGradleBuildType( stage = stage, init = { this.id(performanceTestBuildSpec.asConfigurationId(model, "bucket${bucketIndex + 1}")) this.name = "$description${if (performanceTestBuildSpec.withoutDependencies) " (without dependencies)" else ""}" val type = performanceTestBuildSpec.type
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 5.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
) ) ), val subprojects: GradleSubprojectProvider ) fun TestCoverage.getBucketUuid(model: CIBuildModel, bucketIndex: Int) = asConfigurationId(model, "bucket${bucketIndex + 1}") interface BuildTypeBucket { fun createFunctionalTestsFor(model: CIBuildModel, stage: Stage, testCoverage: TestCoverage, bucketIndex: Int): FunctionalTest
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0)