Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for intVar (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.StringVar(&s.ExternalHost, "external-hostname", s.ExternalHost,
    		"The hostname to use when generating externalized URLs for this master (e.g. Swagger API Docs or OpenID Discovery).")
    
    	fs.IntVar(&s.MaxRequestsInFlight, "max-requests-inflight", s.MaxRequestsInFlight, ""+
    		"This and --max-mutating-requests-inflight are summed to determine the server's total concurrency limit "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/flags.go

    	flag.Var(&settingsFromCommandLine.OnlyWorkloadClasses, "istio.test.onlyWorkloads",
    		"Skips deploying and using workloads not included in the given comma-separated classes (e.g. vm, proxyless, etc.)")
    
    	flag.IntVar(&settingsFromCommandLine.Retries, "istio.test.retries", settingsFromCommandLine.Retries,
    		"Number of times to retry tests")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/flag/flag.go

    	return CommandLine.Bool(name, value, usage)
    }
    
    // IntVar defines an int flag with specified name, default value, and usage string.
    // The argument p points to an int variable in which to store the value of the flag.
    func (f *FlagSet) IntVar(p *int, name string, value int, usage string) {
    	f.Var(newIntValue(value, p), name, usage)
    }
    
    // IntVar defines an int 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)
  4. operator/cmd/operator/server.go

    	monitoring monitoringArgs
    }
    
    func addServerFlags(cmd *cobra.Command, args *serverArgs) {
    	cmd.PersistentFlags().BoolVar(&args.force, "force", false, root.ForceFlagHelpStr)
    	cmd.PersistentFlags().IntVar(&args.maxConcurrentReconciles, "max-concurrent-reconciles", 1, root.MaxConcurrentReconcilesFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	desc := "The port on which to serve HTTPS with authentication and authorization."
    	if s.Required {
    		desc += " It cannot be switched off with 0."
    	} else {
    		desc += " If 0, don't serve HTTPS at all."
    	}
    	fs.IntVar(&s.BindPort, "secure-port", s.BindPort, desc)
    
    	fs.BoolVar(&s.DisableHTTP2Serving, "disable-http2-serving", s.DisableHTTP2Serving,
    		"If true, HTTP2 serving will be disabled [default=false]")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/flags.go

    	cmd.PersistentFlags().StringVar(&outputDir, "output-dir", "",
    		"Set a specific directory for output archive file.")
    
    	// in-flight request limit
    	cmd.PersistentFlags().IntVar(&args.RequestConcurrency, "rq-concurrency", 0,
    		"Set the concurrency limit of requests to the Kubernetes API server, defaults to 32.")
    }
    
    func parseConfig() (*config2.BugReportConfig, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. istioctl/pkg/proxystatus/proxystatus.go

    		"Envoy config dump JSON file")
    	statusCmd.PersistentFlags().BoolVar(&multiXdsOpts.XdsViaAgents, "xds-via-agents", false,
    		"Access Istiod via the tap service of each agent")
    	statusCmd.PersistentFlags().IntVar(&multiXdsOpts.XdsViaAgentsLimit, "xds-via-agents-limit", 100,
    		"Maximum number of pods being visited by istioctl when `xds-via-agent` flag is true."+
    			"To iterate all the agent pods without limit, set to 0")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().Float32Var(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIQPS, "kubernetesApiQPS", 80.0,
    		"Maximum QPS when communicating with the kubernetes API")
    
    	c.PersistentFlags().IntVar(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIBurst, "kubernetesApiBurst", 160,
    		"Maximum burst for throttle when communicating with the kubernetes API")
    
    	// Attach the Istio logging options to the command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Some resources or storage backends may only support a specific media type and will ignore this setting. "+
    		"Supported media types: [application/json, application/yaml, application/vnd.kubernetes.protobuf]")
    	fs.IntVar(&s.DeleteCollectionWorkers, "delete-collection-workers", s.DeleteCollectionWorkers,
    		"Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	// standard flags: -flags, -V.
    	printflags := flag.Bool("flags", false, "print analyzer flags in JSON")
    	addVersionFlag()
    
    	// flags common to all checkers
    	flag.BoolVar(&JSON, "json", JSON, "emit JSON output")
    	flag.IntVar(&Context, "c", Context, `display offending line with this many lines of context`)
    
    	// Add shims for legacy vet flags to enable existing
    	// scripts that run vet to continue to work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top