Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,723 for float2 (0.14 sec)

  1. schema/field_test.go

    		{Name: "FLOAT32", DBName: "ffloat32", BindNames: []string{"FLOAT32"}, DataType: schema.Float, Creatable: true, Updatable: true, Readable: true, Size: 32, Tag: `gorm:"column:ffloat32"`},
    		{Name: "FLOAT64", DBName: "ffloat64", BindNames: []string{"FLOAT64"}, DataType: schema.Float, Creatable: true, Updatable: true, Readable: true, Size: 64, Tag: `gorm:"column:ffloat64"`},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test_util.h

    }
    
    // Return a tensor handle containing a 100x100 matrix of floats
    TFE_TensorHandle* TestMatrixTensorHandle100x100(TFE_Context* ctx);
    
    // Return a tensor handle containing a 3x2 matrix of doubles
    TFE_TensorHandle* DoubleTestMatrixTensorHandle3X2(TFE_Context* ctx);
    
    // Return a tensor handle containing a 3x2 matrix of floats
    TFE_TensorHandle* TestMatrixTensorHandle3X2(TFE_Context* ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. src/slices/sort_benchmark_test.go

    		b.Run(fmt.Sprintf("Size%d", size), func(b *testing.B) {
    			floats := make([]float64, size)
    			for i := range floats {
    				floats[i] = float64(i)
    			}
    			midpoint := len(floats) / 2
    			needle := (floats[midpoint] + floats[midpoint+1]) / 2
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				slices.BinarySearch(floats, needle)
    			}
    		})
    	}
    }
    
    type myStruct struct {
    	a, b, c, d string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "FCVTSD", argLength: 1, reg: fp11, asm: "FCVTSD", typ: "Float32"},                                                            // float32(arg0)
    		{name: "FMOVDload", argLength: 2, reg: fpload, asm: "MOVD", aux: "SymOff", typ: "Float64", faultOnNilArg0: true, symEffect: "Read"}, // load float64 from arg0+auxint+aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/text/scanner/scanner_test.go

    	{Int, "0X" + f100},
    
    	{Comment, "// floats"},
    	{Float, "0."},
    	{Float, "1."},
    	{Float, "42."},
    	{Float, "01234567890."},
    	{Float, ".0"},
    	{Float, ".1"},
    	{Float, ".42"},
    	{Float, ".0123456789"},
    	{Float, "0.0"},
    	{Float, "1.0"},
    	{Float, "42.0"},
    	{Float, "01234567890.0"},
    	{Float, "0e0"},
    	{Float, "1e0"},
    	{Float, "42e0"},
    	{Float, "01234567890e0"},
    	{Float, "0E0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  6. src/math/rand/normal.go

    		x := float64(j) * float64(wn[i])
    		if absInt32(j) < kn[i] {
    			// This case should be hit better than 99% of the time.
    			return x
    		}
    
    		if i == 0 {
    			// This extra work is only required for the base strip.
    			for {
    				x = -math.Log(r.Float64()) * (1.0 / rn)
    				y := -math.Log(r.Float64())
    				if y+y >= x*x {
    					break
    				}
    			}
    			if j > 0 {
    				return rn + x
    			}
    			return -rn - x
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/abiutils_test.go

    `)
    
    	abitest(t, ft, exp)
    }
    
    func TestABIUtilsBasic2(t *testing.T) {
    	// func(p1 int8, p2 int16, p3 int32, p4 int64,
    	//      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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/typeinst1.go

    // term lists.
    
    type E0 interface {
    	~int | ~bool | ~string
    }
    
    type E1 interface {
    	~int | ~float64 | ~string
    }
    
    type E2 interface {
    	~float64
    }
    
    type I0 interface {
    	E0
    }
    
    func f0[T I0]() {}
    var _ = f0[int]
    var _ = f0[bool]
    var _ = f0[string]
    var _ = f0[float64 /* ERROR "does not satisfy I0" */ ]
    
    type I01 interface {
    	E0
    	E1
    }
    
    func f01[T I01]() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/math/big/floatmarsh.go

    // to the decoded value.
    func (z *Float) GobDecode(buf []byte) error {
    	if len(buf) == 0 {
    		// Other side sent a nil or default value.
    		*z = Float{}
    		return nil
    	}
    	if len(buf) < 6 {
    		return errors.New("Float.GobDecode: buffer too small")
    	}
    
    	if buf[0] != floatGobVersion {
    		return fmt.Errorf("Float.GobDecode: encoding version %d not supported", buf[0])
    	}
    
    	oldPrec := z.prec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/testdata/exports.go

    	T12 any
    	T13 interface {
    		m1()
    		m2(int) float32
    	}
    	T14 interface {
    		T12
    		T13
    		m3(x ...struct{}) []T9
    	}
    	T15 func()
    	T16 func(int)
    	T17 func(x int)
    	T18 func() float32
    	T19 func() (x float32)
    	T20 func(...any)
    	T21 struct{ next *T21 }
    	T22 struct{ link *T23 }
    	T23 struct{ link *T22 }
    	T24 *T24
    	T25 *T26
    	T26 *T27
    	T27 *T25
    	T28 func(T28) T28
    )
    
    var (
    	V0 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top