Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,328 for FLOAT64 (0.13 sec)

  1. pilot/pkg/xds/monitoring.go

    		"Delay in seconds between the first config enters debouncing and the merged push request is pushed into the push queue.",
    		[]float64{.01, .1, 1, 3, 5, 10, 20, 30},
    	)
    
    	pushContextInitTime = monitoring.NewDistribution(
    		"pilot_pushcontext_init_seconds",
    		"Total time in seconds Pilot takes to init pushContext.",
    		[]float64{.01, .1, 0.5, 1, 3, 5},
    	)
    
    	pushTime = monitoring.NewDistribution(
    		"pilot_xds_push_time",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. test/abi/result_regalloc.go

    // Bug: in (*bb).d, the value to be returned was not allocated to
    // a register that satisfies its register mask.
    
    package main
    
    type bb struct {
    	r float64
    	x []float64
    }
    
    //go:noinline
    func B(r float64, x []float64) I {
    	return bb{r, x}
    }
    
    func (b bb) d() (int, int) {
    	if b.r == 0 {
    		return 0, len(b.x)
    	}
    	return len(b.x), len(b.x)
    }
    
    type I interface { d() (int, int) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 28 16:13:40 UTC 2021
    - 765 bytes
    - Viewed (0)
  3. src/internal/trace/mud_test.go

    	// Insert random uniforms and check histogram mass and
    	// cumulative sum approximations.
    	rnd := rand.New(rand.NewSource(42))
    	mass := 0.0
    	var mud mud
    	for i := 0; i < 100; i++ {
    		area, l, r := rnd.Float64(), rnd.Float64(), rnd.Float64()
    		if rnd.Intn(10) == 0 {
    			r = l
    		}
    		t.Log(l, r, area)
    		mud.add(l, r, area)
    		mass += area
    
    		// Check total histogram weight.
    		hmass := 0.0
    		for _, val := range mud.hist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue56220.go

    }
    
    func g() int64 {
    	return int64((float64(0.03) - float64(0.02)) * 1_000_000) // ERROR "cannot convert \(float64\(0\.03\) - float64\(0\.02\)\) \* 1_000_000 \(constant 9999\.999999999998 of type float64\) to type int64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 21:52:09 UTC 2022
    - 539 bytes
    - Viewed (0)
  5. test/const1.go

    	b17  byte = byte(0) * byte(1000)  // ERROR "overflow|cannot convert"
    	b18  byte = Uint8 / 0             // ERROR "division by zero"
    
    	c1 float64 = Big
    	c2 float64 = Big * Big          // ERROR "overflow|cannot convert"
    	c3 float64 = float64(Big) * Big // ERROR "overflow|cannot convert"
    	c4         = Big * Big          // ERROR "overflow|cannot convert"
    	c5         = Big / 0            // ERROR "division by zero"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  6. test/codegen/condmove.go

    	// wasm:"Select"
    	return a
    }
    
    //go:noinline
    func frexp(f float64) (frac float64, exp int) {
    	return 1.0, 4
    }
    
    //go:noinline
    func ldexp(frac float64, exp int) float64 {
    	return 1.0
    }
    
    // Generate a CMOV with a floating comparison and integer move.
    func cmovfloatint2(x, y float64) float64 {
    	yfr, yexp := 4.0, 5
    
    	r := x
    	for r >= y {
    		rfr, rexp := frexp(r)
    		if rfr < yfr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    				Name:      "testhist",
    				Help:      "Me",
    				Buckets:   []float64{1, 2, 4, 8, 16, 32},
    			},
    			1})
    	registry := compbasemetrics.NewKubeRegistry()
    	registry.MustRegister(th)
    	var x int
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		delta := (i % 6) + 1
    		now = now.Add(time.Duration(delta) * time.Millisecond)
    		clk.SetTime(now)
    		th.Set(float64(x))
    		x = (x + i) % 60
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  8. src/math/modf_ppc64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // func archModf(f float64) (int float64, frac float64)
    TEXT ·archModf(SB),NOSPLIT,$0
    	FMOVD	f+0(FP), F0
    	FRIZ	F0, F1
    	FMOVD	F1, int+8(FP)
    	FSUB	F1, F0, F2
    	FCPSGN	F2, F0, F2
    	FMOVD	F2, frac+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 416 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item.json

            },
            "float32": {
              "description": "Float32 field.",
              "type": "number",
              "format": "float32"
            },
            "float64": {
              "description": "Float64 field.",
              "type": "number",
              "format": "float64"
            }
          },
          "x-kubernetes-group-version-kind": [
            {
              "group": "fake-group",
              "kind": "precisionItem",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/testdata/fma.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    //go:noinline
    func f(x float64) float64 {
    	return x
    }
    
    func inlineFma(x, y, z float64) float64 {
    	return x + y*z
    }
    
    func main() {
    	w, x, y := 1.0, 1.0, 1.0
    	x = f(x + x/(1<<52))
    	w = f(w / (1 << 27))
    	y = f(y + y/(1<<52))
    	w0 := f(2 * w * (1 - w))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 17:02:09 UTC 2022
    - 602 bytes
    - Viewed (0)
Back to top