Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,521 for environmental (0.29 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/settings.gradle

    // Using the Java API
    println System.getenv('ENVIRONMENTAL')
    
    // Using the Gradle API, provides a lazy Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/kotlin/settings.gradle.kts

    // Using the Java API
    println(System.getenv("ENVIRONMENTAL"))
    
    // Using the Gradle API, provides a lazy Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/build.gradle

    // tag::configuration[]
    // Using the Java API
    println System.getenv('ENVIRONMENTAL')
    
    // Using the Gradle API, provides a lazy Provider<String>
    println providers.environmentVariable('ENVIRONMENTAL').get()
    // end::configuration[]
    
    abstract class PrintValue extends DefaultTask {
        @Input abstract Property<String> getInputValue()
        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::execution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/kotlin/build.gradle.kts

    // tag::configuration[]
    // Using the Java API
    println(System.getenv("ENVIRONMENTAL"))
    
    // Using the Gradle API, provides a lazy Provider<String>
    println(providers.environmentVariable("ENVIRONMENTAL").get())
    
    // end::configuration[]
    
    abstract class PrintValue : DefaultTask() {
        @get:Input abstract val inputValue: Property<String>
        @TaskAction fun action() { println(inputValue.get()) }
    }
    
    // tag::execution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 629 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests-groovy/environmentVariablesGroovy.sample.conf

    executable: gradle
    args: printValue
    flags: "--quiet --stacktrace -I init.gradle -Dorg.gradle.sampletest.env.ENVIRONMENTAL=environmentalValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests-kotlin/environmentVariablesKotlin.sample.conf

    executable: gradle
    args: printValue
    flags: "--quiet --stacktrace -I init.gradle.kts -Dorg.gradle.sampletest.env.ENVIRONMENTAL=environmentalValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 193 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/kotlin/init.gradle.kts

    // Using the Java API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/groovy/init.gradle

    // Using the Java API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests/sanityCheck.sample.conf

    executable: gradle
    args: "help"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 102 bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/package-info.java

     * limitations under the License.
     */
    
    /**
     * Configuration input tracking implementation.
     * <p>
     * The build configuration may be influenced by various "environmental" inputs.
     * For example, build logic may read files or access environment variables.
     * Knowing these inputs is important for configuration caching to understand if the cache has to be invalidated when the value of the system property changes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top