Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for subprojectName (0.09 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        fun canSplitLargeProjects() {
            fun assertAllSplitsArePresent(
                subProjectName: String,
                functionalTests: List<BaseGradleBuildType>,
            ) {
                val splitSubProjectNames = functionalTests.map { it.getSubProjectSplitName() }.toSet()
                val expectedProjectNames = (1..functionalTests.size).map { "${subProjectName}_$it" }.toSet()
                assertEquals(expectedProjectNames, splitSubProjectNames)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    fun onlyNativeSubprojectsForIntelMacs(
        testCoverage: TestCoverage,
        subprojectName: String,
    ): Boolean =
        if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  3. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withTarget(settings.target.file("../tests/build.out").asFile)
                .withBinding("language", languageName)
                .withBinding("subprojectName", subprojectName)
                .withBinding("extraCompileJava", extraCompileJava)
                .withBinding("extraCompileTestJava", extraCompileTestJava)
                .withBinding("extraKotlinCheckTask", extraKotlinCheckTask)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Sun Dec 15 07:49:41 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        }
    
        private fun shortenSubprojectName(
            prefix: String,
            subProjectName: String,
        ): String {
            val shortenedSubprojectName = subProjectName.replace("internal", "i").replace("Testing", "T")
            if (shortenedSubprojectName.length + prefix.length <= 80) {
                return shortenedSubprojectName
            }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
Back to top