Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 253 for FLOAT64 (0.16 sec)

  1. src/testing/benchmark.go

    	Extra map[string]float64
    }
    
    // NsPerOp returns the "ns/op" metric.
    func (r BenchmarkResult) NsPerOp() int64 {
    	if v, ok := r.Extra["ns/op"]; ok {
    		return int64(v)
    	}
    	if r.N <= 0 {
    		return 0
    	}
    	return r.T.Nanoseconds() / int64(r.N)
    }
    
    // mbPerSec returns the "MB/s" metric.
    func (r BenchmarkResult) mbPerSec() float64 {
    	if v, ok := r.Extra["MB/s"]; ok {
    		return v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    }
    
    func (s *Structural) Minimum() *float64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.Minimum
    }
    
    func (s *Structural) IsExclusiveMinimum() bool {
    	if s.Structural.ValueValidation == nil {
    		return false
    	}
    	return s.Structural.ValueValidation.ExclusiveMinimum
    }
    
    func (s *Structural) Maximum() *float64 {
    	if s.Structural.ValueValidation == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	pod1MemoryHigh := int64(math.Floor(
    		float64(podRequestMemory.Value())+
    			(float64(pod1LimitMemory.Value())-float64(podRequestMemory.Value()))*float64(m.memoryThrottlingFactor))/float64(pageSize)) * pageSize
    	pod2MemoryHigh := int64(math.Floor(
    		float64(podRequestMemory.Value())+
    			(float64(memoryNodeAllocatable.Value())-float64(podRequestMemory.Value()))*float64(m.memoryThrottlingFactor))/float64(pageSize)) * pageSize
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. src/math/big/floatexample_test.go

    	// 0.015625
    	// 0.03125
    	// 0.0625
    	// 0.125
    	// 0.25
    	// 0.5
    	// 1
    	// 2
    	// 4
    	// 8
    	// 16
    }
    
    func ExampleFloat_Cmp() {
    	inf := math.Inf(1)
    	zero := 0.0
    
    	operands := []float64{-inf, -1.2, -zero, 0, +1.2, +inf}
    
    	fmt.Println("   x     y  cmp")
    	fmt.Println("---------------")
    	for _, x64 := range operands {
    		x := big.NewFloat(x64)
    		for _, y64 := range operands {
    			y := big.NewFloat(y64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // It is similar to the standard flag.FlagSet.
    type FlagSet interface {
    	// Bool, Int, Float64, and String define new flags,
    	// like the functions of the same name in package flag.
    	Bool(name string, def bool, usage string) *bool
    	Int(name string, def int, usage string) *int
    	Float64(name string, def float64, usage string) *float64
    	String(name string, def string, usage string) *string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    type ValueValidation struct {
    	Format           string
    	Maximum          *float64
    	ExclusiveMaximum bool
    	Minimum          *float64
    	ExclusiveMinimum bool
    	MaxLength        *int64
    	MinLength        *int64
    	Pattern          string
    	MaxItems         *int64
    	MinItems         *int64
    	UniqueItems      bool
    	MultipleOf       *float64
    	Enum             []JSON
    	MaxProperties    *int64
    	MinProperties    *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/go/types/resolver_test.go

    	return pkg, nil
    }
    
    func TestResolveIdents(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	sources := []string{
    		`
    		package p
    		import "fmt"
    		import "math"
    		const pi = math.Pi
    		func sin(x float64) float64 {
    			return math.Sin(x)
    		}
    		var Println = fmt.Println
    		`,
    		`
    		package p
    		import "fmt"
    		type errorStringer struct { fmt.Stringer; error }
    		func f() string {
    			_ = "foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/runtime/map_test.go

    func TestNegativeZero(t *testing.T) {
    	m := make(map[float64]bool, 0)
    
    	m[+0.0] = true
    	m[math.Copysign(0.0, -1.0)] = true // should overwrite +0 entry
    
    	if len(m) != 1 {
    		t.Error("length wrong")
    	}
    
    	for k := range m {
    		if math.Copysign(1.0, k) > 0 {
    			t.Error("wrong sign")
    		}
    	}
    
    	m = make(map[float64]bool, 0)
    	m[math.Copysign(0.0, -1.0)] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/internal/fmtsort/sort_test.go

    	ct(reflect.TypeOf(uintptr(0)), 0, 1, 5),
    	ct(reflect.TypeOf(string("")), "", "a", "ab"),
    	ct(reflect.TypeOf(float32(0)), math.NaN(), math.Inf(-1), -1e10, 0, 1e10, math.Inf(1)),
    	ct(reflect.TypeOf(float64(0)), math.NaN(), math.Inf(-1), -1e10, 0, 1e10, math.Inf(1)),
    	ct(reflect.TypeOf(complex64(0+1i)), -1-1i, -1+0i, -1+1i, 0-1i, 0+0i, 0+1i, 1-1i, 1+0i, 1+1i),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/encoding/json/encode_test.go

    					f, err := strconv.ParseFloat(s, bits)
    					if err != nil {
    						log.Fatal(err)
    					}
    					next := math.Nextafter
    					if bits == 32 {
    						next = func(g, h float64) float64 {
    							return float64(math.Nextafter32(float32(g), float32(h)))
    						}
    					}
    					test(f, bits)
    					test(next(f, bigger), bits)
    					test(next(f, smaller), bits)
    					if nfail > 50 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top