Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for truncateName (0.04 sec)

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

        constructor(
            subproject: GradleSubproject,
            parallelizationMethod: ParallelizationMethod,
        ) : this(listOf(subproject), parallelizationMethod)
    
        val name = truncateName(subprojects.joinToString(","))
    
        private fun truncateName(str: String) =
            // Can't exceed Linux file name limit 255 char on TeamCity
            if (str.length > 200) {
                str.substring(0, 200) + "..."
            } else {
                str
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top