Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for environmentVariable (0.06 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName)
    
    
    fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName)
        .orElse(systemProperty(propertyName))
        .orElse(environmentVariable(propertyName))
    
    
    val Project.buildBranch: Provider<String>
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 22:01:30 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupTask.kt

        abstract val execOperations: ExecOperations
    
        @get:Optional
        @get:Input
        val androidHome: Provider<String> = project.providers.environmentVariable("ANDROID_HOME")
    
        @get:Optional
        @get:Input
        val androidSdkRoot: Provider<String> = project.providers.environmentVariable("ANDROID_SDK_ROOT")
    
        @TaskAction
        fun warmup() {
            if (!androidHome.isPresent && !androidSdkRoot.isPresent) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 09 09:24:29 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. docs/es/docs/environment-variables.md

    Con esto deberías tener una comprensión básica de qué son las **variables de entorno** y cómo usarlas en Python.
    
    También puedes leer más sobre ellas en la <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">Wikipedia para Variable de Entorno</a>.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top