Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for envvars (0.33 sec)

  1. pkg/kubelet/envvars/envvars.go

    // which tell the container where to find the services it may need, which are
    // provided as an argument.
    func FromServices(services []*v1.Service) []v1.EnvVar {
    	var result []v1.EnvVar
    	for i := range services {
    		service := services[i]
    
    		// ignore services where ClusterIP is "None" or empty
    		// the services passed to this method should be pre-filtered
    		// only services that have the cluster IP set should be included here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/fixtures/IdeCommandLineUtil.groovy

                    if (lastIndex > 0) {
                        envvars.put(entry.key.toString(), value.substring(0, lastIndex - 1))
                        continue
                    }
                }
                envvars.put(entry.key.toString(), entry.value.toString())
            }
    
            return envvars.entrySet().collect { "${it.key}=${it.value}".toString() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/kubelet/envvars/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package envvars is the package that build the environment variables that kubernetes provides
    // to the containers run by it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 765 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

                        tmp.setProperty(key, entry.getValue());
                    }
                    envVars = tmp;
                }
    
                props.putAll(envVars);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/environment/JreJavaHomeScalaIntegrationTest.groovy

                        }
                        """
            def envVars = System.getenv().findAll { !(it.key in ['GRADLE_OPTS', 'JAVA_HOME', 'Path']) }
            envVars.put("Path", "C:\\Windows\\System32")
            when:
            executer.withEnvironmentVars(envVars).withTasks("compileScala").run()
            then:
            scalaClassFile("org/test/ScalaClazz.class").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/environment/JreJavaHomeJavaIntegrationTest.groovy

            apply plugin:'java'
            compileJava {
                options.fork = ${forkMode}
            }
            """
            def envVars = System.getenv().findAll { !(it.key in ['GRADLE_OPTS', 'JAVA_HOME', 'Path']) }
            envVars.put("Path", "C:\\Windows\\System32")
            when:
            executer.withEnvironmentVars(envVars).withTasks("compileJava").run()
            then:
            javaClassFile("org/test/JavaClazz.class").exists()
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/environment/JreJavaHomeGroovyIntegrationTest.groovy

                compileGroovy {
                    options.fork = ${forkMode}
                }
                """
            when:
            def envVars = System.getenv().findAll { !(it.key in ['GRADLE_OPTS', 'JAVA_HOME', 'Path']) }
            envVars.put("Path", "C:\\Windows\\System32")
            executer.withEnvironmentVars(envVars).withTasks("compileGroovy").run()
    
            then:
            groovyClassFile("org/test/JavaClazz.class").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kubelet/envvars/envvars_test.go

    				Selector:  map[string]string{"bar": "sctp-sel"},
    				ClusterIP: "1.2.3.4",
    				Ports: []v1.ServicePort{
    					{Port: 777, Protocol: "SCTP"},
    				},
    			},
    		},
    	}
    	vars := envvars.FromServices(sl)
    	expected := []v1.EnvVar{
    		{Name: "FOO_BAR_SERVICE_HOST", Value: "1.2.3.4"},
    		{Name: "FOO_BAR_SERVICE_PORT", Value: "8080"},
    		{Name: "FOO_BAR_PORT", Value: "tcp://1.2.3.4:8080"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            List<String> additionalArgs = [],
            Map<String, String> envVars = [:],
            Closure<Void> runner = this::configurationCacheRun
        ) {
            def allArgs = tasks + getEncryptionOptions(kind) + additionalArgs + ["-s"]
            // envVars overrides encryption env vars
            def allVars = getEncryptionEnvVars(kind) + envVars
            executer.withEnvironmentVars(allVars)
            runner(*allArgs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/bootstrap/instance_test.go

    // If the template is updated, refresh golden files using:
    // REFRESH_GOLDEN=true go test ./pkg/bootstrap/...
    func TestGolden(t *testing.T) {
    	cases := []struct {
    		base                          string
    		envVars                       map[string]string
    		annotations                   map[string]string
    		sdsUDSPath                    string
    		sdsTokenPath                  string
    		expectLightstepAccessToken    bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top