Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for envvars (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/collateral/control.go

    	id = strings.Replace(id, " ", "-", -1)
    	return strings.Replace(id, ".", "-", -1)
    }
    
    func (g *generator) genVars(root *cobra.Command, selectFn SelectEnvFn) {
    	if selectFn == nil {
    		selectFn = DefaultSelectEnvFn
    	}
    
    	envVars := env.VarDescriptions()
    
    	count := 0
    	for _, v := range envVars {
    		if v.Hidden {
    			continue
    		}
    		if !selectFn(v) {
    			continue
    		}
    		count++
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook.go

    // then probers should be merged.
    func mergeOrAppendProbers(previouslyInjected bool, envVars []corev1.EnvVar, newProbers string) []corev1.EnvVar {
    	if !previouslyInjected {
    		return append(envVars, corev1.EnvVar{Name: status.KubeAppProberEnvName, Value: newProbers})
    	}
    	for idx, env := range envVars {
    		if env.Name == status.KubeAppProberEnvName {
    			var existingKubeAppProber KubeAppProbers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/Workarounds.kt

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top