Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for stringVar (0.3 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    	logCmd.PersistentFlags().StringVar(&outputLogLevel, "level", outputLogLevel,
    		"Comma-separated list of output logging level for scopes in the format of <scope>:<level>[,<scope>:<level>,...]. "+
    			"Possible values for <level>: none, error, warn, info, debug")
    	logCmd.PersistentFlags().StringVar(&stackTraceLevel, "stack-trace-level", stackTraceLevel,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	fs.StringSliceVar(&s.ExtraHeaderPrefixes, "requestheader-extra-headers-prefix", s.ExtraHeaderPrefixes, ""+
    		"List of request header prefixes to inspect. X-Remote-Extra- is suggested.")
    
    	fs.StringVar(&s.ClientCAFile, "requestheader-client-ca-file", s.ClientCAFile, ""+
    		"Root certificate bundle to use to verify client certificates on incoming requests "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    			return nil
    		},
    	}
    
    	waypointApplyCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    	waypointApplyCmd.PersistentFlags().BoolVarP(&waitReady, "wait", "w", false, "Wait for the waypoint to be ready")
    	waypointCmd.AddCommand(waypointApplyCmd)
    	waypointGenerateCmd.PersistentFlags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options.go

    	s.Metrics.AddFlags(fss.FlagSet("metrics"))
    	logsapi.AddFlags(s.Logs, fss.FlagSet("logs"))
    
    	fs := fss.FlagSet("misc")
    	fs.StringVar(&s.Master, "master", s.Master, "The address of the Kubernetes API server (overrides any value in kubeconfig).")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/config.go

    				}
    			}
    			return nil
    		},
    		Args: cobra.NoArgs,
    	}
    	cmd.Flags().StringVar(&oldCfgPath, "old-config", "", "Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/generate/generate.go

    	generateSkipRE   *regexp.Regexp // compiled expression for -skip
    )
    
    func init() {
    	work.AddBuildFlags(CmdGenerate, work.DefaultBuildFlags)
    	CmdGenerate.Flag.StringVar(&generateRunFlag, "run", "", "")
    	CmdGenerate.Flag.StringVar(&generateSkipFlag, "skip", "", "")
    }
    
    func runGenerate(ctx context.Context, cmd *base.Command, args []string) {
    	modload.InitWorkfile()
    
    	if generateRunFlag != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/flag/flag.go

    	return CommandLine.Uint64(name, value, usage)
    }
    
    // StringVar defines a string flag with specified name, default value, and usage string.
    // The argument p points to a string variable in which to store the value of the flag.
    func (f *FlagSet) StringVar(p *string, name string, value string, usage string) {
    	f.Var(newStringValue(value, p), name, usage)
    }
    
    // StringVar defines a string flag with specified name, default value, and usage string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/reset.go

    	}, nil
    }
    
    // AddResetFlags adds reset flags
    func AddResetFlags(flagSet *flag.FlagSet, resetOptions *resetOptions) {
    	flagSet.StringVar(
    		&resetOptions.externalcfg.CertificatesDir, options.CertificatesDir, kubeadmapiv1.DefaultCertificatesDir,
    		`The path to the directory where the certificates are stored. If specified, clean this directory.`,
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. src/net/http/httptest/server.go

    // isn't really part of our API. Don't depend on this.
    var serveFlag string
    
    func init() {
    	if strSliceContainsPrefix(os.Args, "-httptest.serve=") || strSliceContainsPrefix(os.Args, "--httptest.serve=") {
    		flag.StringVar(&serveFlag, "httptest.serve", "", "if non-empty, httptest.NewServer serves on this address and blocks.")
    	}
    }
    
    func strSliceContainsPrefix(v []string, pre string) bool {
    	for _, s := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. istioctl/pkg/analyze/analyze.go

    	analysisCmd.PersistentFlags().StringVarP(&msgOutputFormat, "output", "o", formatting.LogFormat,
    		fmt.Sprintf("Output format: one of %v", formatting.MsgOutputFormatKeys))
    	analysisCmd.PersistentFlags().StringVar(&meshCfgFile, "meshConfigFile", "",
    		"Overrides the mesh config values to use for analysis.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top