Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for environmentVariables (0.35 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         *
         * @param variableName The name of the environment variable.
         * @return The provider. Never returns null.
         * @since 6.1
         */
        Provider<String> environmentVariable(String variableName);
    
        /**
         * Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

        }
    
        @Issue("GRADLE-1762")
        def "build uses environment variables from where the build was launched"() {
            file('build.gradle') << "println providers.environmentVariable('foo').orNull"
    
            when:
            def out = executer.withEnvironmentVars(foo: "gradle rocks!").run().output
    
            then:
            out.contains("gradle rocks!")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                properties:
                  concurrency:
                    description: The number of worker threads to run.
                    nullable: true
                    type: integer
                  environmentVariables:
                    additionalProperties:
                      type: string
                    description: Additional environment variables for the proxy.
                    type: object
                  image:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    description: The number of worker threads to run.
                    format: int32
                    minimum: 0
                    nullable: true
                    type: integer
                  environmentVariables:
                    additionalProperties:
                      maxLength: 2048
                      type: string
                    description: Additional environment variables for the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. doc/godebug.md

    for compatibility reasons.
    Packages or programs may define additional settings for internal debugging purposes;
    for example,
    see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)
    and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).
    
    ### Go 1.23
    
    Go 1.23 changed the channels created by package time to be unbuffered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                    description: The number of worker threads to run.
                    format: int32
                    minimum: 0
                    nullable: true
                    type: integer
                  environmentVariables:
                    additionalProperties:
                      maxLength: 2048
                      type: string
                    description: Additional environment variables for the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    'Provides configuration for individual workloads. See more details at: https://istio.io/docs/reference/config/networking/proxy-config.html' properties: concurrency: description: The number of worker threads to run. nullable: true type: integer environmentVariables: additionalProperties: type: string description: Additional environment variables for the proxy. type: object image: description: Specifies the details of the proxy image. properties: imageType: description: The image type of the image. type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:environmentVariable(java.lang.String)[providers.environmentVariable()] to task properties.
    
    Some access patterns that potentially enumerate all environment variables or system properties (for example, calling `System.getenv().forEach()` or using the iterator of its `keySet()`) are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top