Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LC_ALL (0.22 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "IGNORE_MIRROR",
    
        "LANG",
        "LANGUAGE",
        // It is possible to have many LC_xxx variables for different aspects of the locale. However, LC_ALL overrides all of them, and it is what CI uses.
        "LC_ALL",
        "LC_CTYPE",
    
        "JDK8",
        "JDK11",
        "JDK17",
    
        "JDK_HOME",
        "JRE_HOME",
        "CommonProgramFiles",
        "CommonProgramFiles(x86)",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Oct 15 18:27:39 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/CommonExtensions.kt

                // Use fewer parallel forks only on Intel macOS builds, since they are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    }
    
    fun BuildSteps.checkCleanM2AndAndroidUserHome(
        os: Os = Os.LINUX,
        buildType: BuildType? = null,
    ) {
        script {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top