Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Float64Var (0.26 sec)

  1. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.Float64Var(&o.HorizontalPodAutoscalerTolerance, "horizontal-pod-autoscaler-tolerance", o.HorizontalPodAutoscalerTolerance, "The minimum change (from 1.0) in the desired-to-actual metrics ratio for the horizontal pod autoscaler to consider scaling.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/flag/flag.go

    	return CommandLine.String(name, value, usage)
    }
    
    // Float64Var defines a float64 flag with specified name, default value, and usage string.
    // The argument p points to a float64 variable in which to store the value of the flag.
    func (f *FlagSet) Float64Var(p *float64, name string, value float64, usage string) {
    	f.Var(newFloat64Value(value, p), name, usage)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"it out. This is the default request timeout for requests but may be overridden by flags such as "+
    		"--min-request-timeout for specific types of requests.")
    
    	fs.Float64Var(&s.GoawayChance, "goaway-chance", s.GoawayChance, ""+
    		"To prevent HTTP/2 clients from getting stuck on a single apiserver, randomly close a connection (GOAWAY). "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*FlagSet).BoolVar", Method, 0},
    		{"(*FlagSet).Duration", Method, 0},
    		{"(*FlagSet).DurationVar", Method, 0},
    		{"(*FlagSet).ErrorHandling", Method, 10},
    		{"(*FlagSet).Float64", Method, 0},
    		{"(*FlagSet).Float64Var", Method, 0},
    		{"(*FlagSet).Func", Method, 16},
    		{"(*FlagSet).Init", Method, 0},
    		{"(*FlagSet).Int", Method, 0},
    		{"(*FlagSet).Int64", Method, 0},
    		{"(*FlagSet).Int64Var", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg flag, func Duration(string, time.Duration, string) *time.Duration
    pkg flag, func DurationVar(*time.Duration, string, time.Duration, string)
    pkg flag, func Float64(string, float64, string) *float64
    pkg flag, func Float64Var(*float64, string, float64, string)
    pkg flag, func Int(string, int, string) *int
    pkg flag, func Int64(string, int64, string) *int64
    pkg flag, func Int64Var(*int64, string, int64, string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top