Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for environmentVariable (0.53 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>
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

            tasks.withType(AbstractCheckOrUpdateContributorsInReleaseNotes.class).configureEach(task -> {
                task.getGithubToken().set(project.getProviders().environmentVariable("GITHUB_TOKEN"));
                task.getReleaseNotes().set(extension.getReleaseNotes().getMarkdownFile());
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 10 11:32:18 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    val Project.isBuildCommitDistribution: Boolean
        get() = providers.gradleProperty("buildCommitDistribution").map { it.toBoolean() }.orElse(false).get()
    
    
    fun Project.isInBuild(vararg buildTypeIds: String) = providers.environmentVariable("BUILD_TYPE_ID").orNull?.let { currentBuildTypeId ->
        buildTypeIds.any { currentBuildTypeId.endsWith(it) }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 07 05:49:29 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

              code:
                local:
                  filename: /var/lib/istio/data/fe482be5ac123d3d387b0c68b9ed7f8ed65824e7d0bbc88a9a9a71dd8391d96c/d8ef3957b4cf09da9ed25e88bc75ac397ea875d88c5cbed356872f936a86d928.wasm
              environmentVariables:
                keyValues:
                  ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION: "1605"
              runtime: envoy.wasm.runtime.v8
      lastUpdated: "2022-12-08T11:03:53.361Z"
      versionInfo: 2022-12-08T09:07:09Z/10
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                                    }
                                },
                                "environmentVariables": {
                                    "keyValues": {
                                        "ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION": "1605"
                                    }
                                }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.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:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                  concurrency:
                    description: The number of worker threads to run.
                    format: int32
                    nullable: true
                    type: integer
                  environmentVariables:
                    additionalProperties:
                      type: string
                    description: Additional environment variables for the proxy.
                    type: object
                  image:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  8. 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:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top