Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBucketUuid (2.57 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt

            model: CIBuildModel,
            stage: Stage,
            testCoverage: TestCoverage,
            bucketIndex: Int,
        ): FunctionalTest =
            FunctionalTest(
                model,
                testCoverage.getBucketUuid(model, bucketIndex),
                getName(testCoverage),
                getDescription(testCoverage),
                testCoverage,
                stage,
                parallelizationMethod,
                subprojects.map { it.name },
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    Os.LINUX -> ParallelizationMethod.TestDistribution
                    else -> ParallelizationMethod.None
                }
    
            return FunctionalTest(
                model,
                testCoverage.getBucketUuid(model, bucketIndex),
                "${testCoverage.asName()} ($startInclusive <= gradle <$endExclusive)",
                "${testCoverage.asName()} for gradle ($startInclusive <= gradle <$endExclusive)",
                testCoverage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 05:08:24 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                numberOfBuckets = 10,
                            ),
                        ),
                ),
            ),
        val subprojects: GradleSubprojectProvider,
    )
    
    fun TestCoverage.getBucketUuid(
        model: CIBuildModel,
        bucketIndex: Int,
    ) = asConfigurationId(model, "bucket${bucketIndex + 1}")
    
    interface BuildTypeBucket {
        fun createFunctionalTestsFor(
            model: CIBuildModel,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top