Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for float64Ptr (0.25 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. 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)
Back to top