Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for float64Ptr (0.39 sec)

  1. src/cmd/compile/internal/ssa/config.go

    	String     *types.Type
    	BytePtr    *types.Type // TODO: use unsafe.Pointer instead?
    	Int32Ptr   *types.Type
    	UInt32Ptr  *types.Type
    	IntPtr     *types.Type
    	UintptrPtr *types.Type
    	Float32Ptr *types.Type
    	Float64Ptr *types.Type
    	BytePtrPtr *types.Type
    }
    
    // NewTypes creates and populates a Types.
    func NewTypes() *Types {
    	t := new(Types)
    	t.SetTypPtrs()
    	return t
    }
    
    // SetTypPtrs populates t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    					"num": {
    						Type:    "integer",
    						Maximum: float64Ptr(10),
    					},
    				},
    			},
    			"status": {
    				Type: "object",
    				Properties: map[string]apiextensionsv1.JSONSchemaProps{
    					"num": {
    						Type:    "integer",
    						Maximum: float64Ptr(10),
    					},
    				},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				EnableProfilingHandler:        utilpointer.Bool(true),
    				EnableDebugFlagsHandler:       utilpointer.Bool(true),
    				SeccompDefault:                utilpointer.Bool(false),
    				MemoryThrottlingFactor:        utilpointer.Float64Ptr(DefaultMemoryThrottlingFactor),
    				RegisterNode:                  utilpointer.Bool(true),
    				LocalStorageCapacityIsolation: utilpointer.Bool(true),
    				PodLogsDir:                    DefaultPodLogsDir,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	Title:            "This is a title",
    	Maximum:          float64Ptr(10),
    	ExclusiveMaximum: true,
    	Minimum:          float64Ptr(5),
    	ExclusiveMinimum: true,
    	MaxLength:        int64Ptr(10),
    	MinLength:        int64Ptr(5),
    	Pattern:          "^[a-z]$",
    	MaxItems:         int64Ptr(10),
    	MinItems:         int64Ptr(5),
    	MultipleOf:       float64Ptr(3),
    	Required:         []string{"spec", "status"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
Back to top