Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 912 for FLOAT64 (0.12 sec)

  1. cmd/metrics-v3-cluster-notification.go

    		return nil
    	}
    
    	nstats := globalEventNotifier.targetList.Stats()
    	m.Set(notificationCurrentSendInProgress, float64(nstats.CurrentSendCalls))
    	m.Set(notificationEventsErrorsTotal, float64(nstats.EventsErrorsTotal))
    	m.Set(notificationEventsSentTotal, float64(nstats.TotalEvents))
    	m.Set(notificationEventsSkippedTotal, float64(nstats.EventsSkipped))
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:10:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  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/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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/test/abiutils_test.go

    	//      p5 float32, p6 float32, p7 float64, p8 float64,
    	//      p9 int8, p10 int16, p11 int32, p12 int64,
    	//      p13 float32, p14 float32, p15 float64, p16 float64,
    	//      p17 complex128, p18 complex128, p19 complex12, p20 complex128,
    	//      p21 complex64, p22 int8, p23 in16, p24 int32, p25 int64,
    	//      p26 int8, p27 in16, p28 int32, p29 int64)
    	//        (r1 int32, r2 float64, r3 float64) {
    	i8 := types.Types[types.TINT8]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. src/encoding/json/stream_test.go

    		{CaseName: Name(""), json: `10`, expTokens: []any{float64(10)}},
    		{CaseName: Name(""), json: ` [10] `, expTokens: []any{
    			Delim('['), float64(10), Delim(']')}},
    		{CaseName: Name(""), json: ` [false,10,"b"] `, expTokens: []any{
    			Delim('['), false, float64(10), "b", Delim(']')}},
    		{CaseName: Name(""), json: `{ "a": 1 }`, expTokens: []any{
    			Delim('{'), "a", float64(1), Delim('}')}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/slices.go

    }
    
    var input = []int{-4, 68954, 7, 44, 0, -555, 6945}
    var limited1 = Map[int, byte](input, limiter)
    var limited2 = Map(input, limiter) // using type inference
    
    func reducer(x float64, y int) float64 {
    	return x + float64(y)
    }
    
    var reduced1 = Reduce[int, float64](input, 0, reducer)
    var reduced2 = Reduce(input, 1i /* ERROR "overflows" */, reducer) // using type inference
    var reduced3 = Reduce(input, 1, reducer) // using type inference
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top