Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for environmentVariables (0.36 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests-common/environmentVariables.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 114 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactory.java

            final List<File> path;
            private final Map<String, ?> environmentVariables;
    
            private Key(File gccBinary, List<String> args, List<File> path, Map<String, ?> environmentVariables) {
                this.gccBinary = gccBinary;
                this.args = args;
                this.path = path;
                this.environmentVariables = environmentVariables;
            }
    
            @Override
            public boolean equals(Object obj) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingBaseExecSpec.java

        }
    
        @Override
        default void setEnvironment(Map<String, ?> environmentVariables) {
            getDelegate().setEnvironment(environmentVariables);
        }
    
        @Override
        default ProcessForkOptions environment(Map<String, ?> environmentVariables) {
            getDelegate().environment(environmentVariables);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpec.java

        }
    
        @Override
        public ProcessForkOptions environment(Map<String, ?> environmentVariables) {
            getMapForAppends().putAll(environmentVariables);
            // Keep the delegate's view of environment consistent to make sure getEnvironment and
            // copyTo work properly.
            DelegatingBaseExecSpec.super.environment(environmentVariables);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/DefaultProcessForkOptions.java

        public void setEnvironment(Map<String, ?> environmentVariables) {
            environment = Maps.newHashMap(environmentVariables);
        }
    
        @Override
        public ProcessForkOptions environment(String name, Object value) {
            getEnvironment().put(name, value);
            return this;
        }
    
        @Override
        public ProcessForkOptions environment(Map<String, ?> environmentVariables) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

    abstract class EnvVariableInjection extends BuildInputInjection {
        static EnvVariableInjection environmentVariable(String key, String value) {
            return environmentVariables((key): Objects.requireNonNull(value))
        }
    
        static EnvVariableInjection environmentVariables(Map<String, String> variables) {
            return new EnvVariableInjection() {
                @Override
                String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/proxy_config_test.go

    							"test": "selector",
    						}),
    						EnvironmentVariables: map[string]string{
    							"A": "1",
    						},
    					}), now),
    				setCreationTimestamp(newProxyConfig("workload-b", "test-ns",
    					&v1beta1.ProxyConfig{
    						Selector: selector(map[string]string{
    							"test": "selector",
    						}),
    						EnvironmentVariables: map[string]string{
    							"B": "2",
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin_test.go

    										Cluster: "_",
    									},
    									Timeout: &durationpb.Duration{
    										Seconds: 30,
    									},
    								},
    							},
    						},
    					},
    					EnvironmentVariables: &wasmextension.EnvironmentVariables{
    						KeyValues: map[string]string{
    							"ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION": "",
    						},
    					},
    				},
    			},
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Sets the environment variable to use for the process.
         *
         * @param environmentVariables The environment variables. Must not be null.
         */
        void setEnvironment(Map<String, ?> environmentVariables);
    
        /**
         * Adds some environment variables to the environment for this process.
         *
         * @param environmentVariables The environment variables. Must not be null.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                                    }
                                },
                                "environmentVariables": {
                                    "keyValues": {
                                        "ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION": "1605"
                                    }
                                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top