Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for float64Ptr (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/dec.rules

    (Load <t> ptr mem) && t.IsComplex() && t.Size() == 16 =>
      (ComplexMake
        (Load <typ.Float64> ptr mem)
        (Load <typ.Float64>
          (OffPtr <typ.Float64Ptr> [8] ptr)
          mem)
        )
    (Store {t} dst (ComplexMake real imag) mem) && t.Size() == 16 =>
      (Store {typ.Float64}
        (OffPtr <typ.Float64Ptr> [8] dst)
        imag
        (Store {typ.Float64} dst real mem))
    
    // string ops
    (StringPtr (StringMake ptr _)) => ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritedec.go

    	// result: @x.Block (Load <typ.Float64> (OffPtr <typ.Float64Ptr> [8] ptr) mem)
    	for {
    		x := v_0
    		if x.Op != OpLoad {
    			break
    		}
    		t := x.Type
    		mem := x.Args[1]
    		ptr := x.Args[0]
    		if !(t.IsComplex() && t.Size() == 16) {
    			break
    		}
    		b = x.Block
    		v0 := b.NewValue0(v.Pos, OpLoad, typ.Float64)
    		v.copyOf(v0)
    		v1 := b.NewValue0(v.Pos, OpOffPtr, typ.Float64Ptr)
    		v1.AuxInt = int64ToAuxInt(8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    				Type:        "string",
    				Pattern:     "^[a-zA-Z0-9_]*$",
    			},
    			"beta": {
    				Description: "Minimum value of beta is 10",
    				Type:        "number",
    				Minimum:     float64Ptr(10),
    			},
    			"gamma": {
    				Description: "Gamma is restricted to foo, bar and baz",
    				Type:        "string",
    				Enum: []apiextensionsv1.JSON{
    					{
    						Raw: []byte(`"foo"`),
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top