Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BindEnv (0.09 sec)

  1. tools/istio-iptables/pkg/cmd/root.go

    		&cfg.KubeVirtInterfaces)
    
    	flag.BindEnv(fs, constants.InboundTProxyMark, "t", "", &cfg.InboundTProxyMark)
    
    	flag.BindEnv(fs, constants.InboundTProxyRouteTable, "r", "", &cfg.InboundTProxyRouteTable)
    
    	flag.BindEnv(fs, constants.DryRun, "n", "Do not call any external dependencies like iptables.",
    		&cfg.DryRun)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/root.go

    	fs := cmd.Flags()
    	flag.BindEnv(fs, constants.DryRun, "n", "Do not call any external dependencies like iptables.",
    		&cfg.DryRun)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    			if *envJson {
    				var es []cfg.EnvVar
    				for _, name := range args {
    					e := cfg.EnvVar{Name: name, Value: findEnv(env, name)}
    					es = append(es, e)
    				}
    				env = es
    			} else {
    				// Print just the values, without names.
    				for _, name := range args {
    					fmt.Printf("%s\n", findEnv(env, name))
    				}
    				return
    			}
    		} else {
    			// Show only the changed, named vars.
    			var es []cfg.EnvVar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top