Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for envvars (0.3 sec)

  1. 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)
  2. 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)
  3. pkg/credentialprovider/plugin/plugin_test.go

    			testcase.execPlugin.environ = func() []string {
    				return testcase.systemEnvVars
    			}
    
    			var configVars []string
    			for _, envVar := range testcase.execPlugin.envVars {
    				configVars = append(configVars, fmt.Sprintf("%s=%s", envVar.Name, envVar.Value))
    			}
    			merged := mergeEnvVars(testcase.systemEnvVars, configVars)
    
    			err := validate(testcase.expectedEnvVars, merged)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kube/inject/inject.go

    		updateClusterEnvs(c, params.proxyEnvs)
    	}
    }
    
    func updateClusterEnvs(container *corev1.Container, newKVs map[string]string) {
    	envVars := make([]corev1.EnvVar, 0)
    
    	for _, env := range container.Env {
    		if _, found := newKVs[env.Name]; !found {
    			envVars = append(envVars, env)
    		}
    	}
    
    	keys := make([]string, 0, len(newKVs))
    	for key := range newKVs {
    		keys = append(keys, key)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. src/net/http/fcgi/child.go

    		return nil
    	}
    }
    
    // filterOutUsedEnvVars returns a new map of env vars without the
    // variables in the given envVars map that are read for creating each http.Request
    func filterOutUsedEnvVars(envVars map[string]string) map[string]string {
    	withoutUsedEnvVars := make(map[string]string)
    	for k, v := range envVars {
    		if addFastCGIEnvToContext(k) {
    			withoutUsedEnvVars[k] = v
    		}
    	}
    	return withoutUsedEnvVars
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

                }
            }
    
            return Optional.absent();
        }
    
        public static Map<String, ?> getInheritableEnvironmentVariables(Map<String, ?> envVars) {
            Map<String, Object> vars = new HashMap<String, Object>();
            for (Map.Entry<String, ?> entry : envVars.entrySet()) {
                // The following are known variables that can change between builds and should not be inherited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/plugin.go

    			name:         provider.Name,
    			apiVersion:   provider.APIVersion,
    			encoder:      codecs.EncoderForVersion(info.Serializer, gv),
    			pluginBinDir: pluginBinDir,
    			args:         provider.Args,
    			envVars:      provider.Env,
    			environ:      os.Environ,
    		},
    	}, nil
    }
    
    // pluginProvider is the plugin-based implementation of the DockerConfigProvider interface.
    type pluginProvider struct {
    	clock clock.Clock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/proxy_config_test.go

    				Concurrency: nil,
    			},
    			second: &meshconfig.ProxyConfig{
    				Concurrency: nil,
    			},
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: nil,
    			},
    		},
    		{
    			name: "envvars",
    			first: &meshconfig.ProxyConfig{
    				ProxyMetadata: map[string]string{
    					"a": "x",
    					"b": "y",
    				},
    			},
    			second: &meshconfig.ProxyConfig{
    				ProxyMetadata: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    	if err != nil {
    		log.Warnf("Env variable with value %q failed json unmarshal: %v", jsonStr, err)
    	}
    	return
    }
    
    func extractAttributesMetadata(envVars []string, plat platform.Environment, meta *model.BootstrapNodeMetadata) {
    	for _, varStr := range envVars {
    		name, val := parseEnvVar(varStr)
    		switch name {
    		case "ISTIO_METAJSON_LABELS":
    			m := jsonStringToMap(val)
    			if len(m) > 0 {
    				meta.Labels = m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top