Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for escapeKeyValuePair (0.09 sec)

  1. .teamcity/src/main/kotlin/common/Os.kt

        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
            jprofilerHome = "/Applications/JProfiler11.1.4.app",
            defaultArch = Arch.AARCH64,
        ),
        ;
    
        fun escapeKeyValuePair(
            key: String,
            value: String,
        ) = if (this == WINDOWS) """$key="$value"""" else """"$key=$value""""
    
        fun asName() = name.lowercase().toCapitalized()
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                "-PperformanceBaselines" to dependencyBaselines,
                            ).joinToString(" ") { (key, value) -> os.escapeKeyValuePair(key, value) },
                    )
                }
    
                dependencies {
                    snapshotDependencies(performanceTestProject.performanceTests) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt

            "-Porg.gradle.performance.db.url" to "%performance.db.url%",
            "-Porg.gradle.performance.db.username" to "%performance.db.username%",
        ).map { (key, value) -> os.escapeKeyValuePair(key, value) }
    
    const val INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES = """
    testing/*/build/test-results-*.zip => results
    testing/*/build/tmp/**/log.txt => failure-logs
    testing/*/build/tmp/**/profile.log => failure-logs
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top