Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 273 for 05 (0.02 sec)

  1. hack/testdata/ca/ca.key

    Rf1J4SVwzh3QqNAv8TOAFxECgYAimhVkponxRetnGYmP2guNMzRmcFcQm7v3Idc3
    ojX5AxftsMydfiB1iTfbUETw8mD5hlwi1sU+eljzty7PzQjBUGH9ep6uj0uUcIUM
    Y3O6bmg6X3eLeFploMErhe+sN1GcY1nlss2ovUxb/+Cg1P8F/KkeKCG73VZePWgK
    05+ywwKBgQDbVh4uufob8ia/1xQxTgao90YeerihmwkdpUEIIU5a22GBOeIUr4jF
    ciT4Nm8Rb3noFVzLj36N1LfzrZzmsLmdXzYLx3q2eXlGi3zay0n6mmS7yaRjGmQX
    XNc/BzOWHfjPQakxzTsJJaCAPTlQ7+JXNlrLblYrSI5EjBWD1OUG6A==
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 21:54:32 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    		},
    		{
    			In:   `-0.0`,
    			Data: float64(-0.0), //nolint:staticcheck // SA4026: in Go, the floating-point literal '-0.0' is the same as '0.0'
    			Out:  `-0`,
    		},
    		{
    			In:   `0.5`,
    			Data: float64(0.5),
    			Out:  `0.5`,
    		},
    		{
    			In:   `1e3`,
    			Data: float64(1e3),
    			Out:  `1000`,
    		},
    		{
    			In:   `1.5`,
    			Data: float64(1.5),
    			Out:  `1.5`,
    		},
    		{
    			In:   `-0.3`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/math/log_amd64.s

    	MULSD   X5, X6
    	ADDSD   $L4, X6
    	MULSD   X5, X6
    	ADDSD   $L2, X6
    	MULSD   X6, X5 // x1= k, x2= f, x3= s, x4= t1, x5= t2
    	// R := t1 + t2
    	ADDSD   X5, X4 // x1= k, x2= f, x3= s, x4= R
    	// hfsq := 0.5 * f * f
    	MOVSD   $0.5, X0
    	MULSD   X2, X0
    	MULSD   X2, X0 // x0= hfsq, x1= k, x2= f, x3= s, x4= R
    	// return k*Ln2Hi - ((hfsq - (s*(hfsq+R) + k*Ln2Lo)) - f)
    	ADDSD   X0, X4 // x0= hfsq, x1= k, x2= f, x3= s, x4= hfsq+R
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

    
    // Tests single TensorFlow op is hoisted out and has the correct device assigned
    // by parent `tf_device.launch`.
    // CHECK-LABEL: func @single_op_launch
    func.func @single_op_launch() {
      tf_executor.graph {
        %0:5 = tf_executor.island {
          %a = "tf.opA"() : () -> tensor<i1>
          %launch:2 = "tf_device.launch"() ({
            %b:2 = "tf.opB"(%a) : (tensor<i1>) -> (tensor<i32>, tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/math/cmplx/sin.go

    	sh, ch := sinhcosh(real(x))
    	return complex(c*ch, s*sh)
    }
    
    // calculate sinh and cosh.
    func sinhcosh(x float64) (sh, ch float64) {
    	if math.Abs(x) <= 0.5 {
    		return math.Sinh(x), math.Cosh(x)
    	}
    	e := math.Exp(x)
    	ei := 0.5 / e
    	e *= 0.5
    	return e - ei, e + ei
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES-GCM

    00000050  4c ef 26 a4 ba 46 2f 75  9a 05 0c f2 91           |L.&..F/u.....|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 28 d5 c2 de 26 c1  |..........(...&.|
    00000010  ed 28 f1 d8 81 b3 9a 4f  3d 82 ad 22 d0 2c 41 61  |.(.....O=..".,Aa|
    00000020  8b 15 a3 72 01 94 44 ff  8f 01 c1 05 e6 84 56 0a  |...r..D.......V.|
    00000030  8b 1d c4                                          |...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. docs/debugging/xattr/go.mod

    module github.com/minio/minio/docs/debugging/xattr
    
    go 1.21
    
    require (
    	github.com/olekukonko/tablewriter v0.0.5
    	github.com/pkg/xattr v0.4.9
    )
    
    require (
    	github.com/mattn/go-runewidth v0.0.15 // indirect
    	github.com/rivo/uniseg v0.4.4 // indirect
    	golang.org/x/sys v0.15.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 289 bytes
    - Viewed (0)
  8. src/math/pow.go

    		}
    	case IsInf(x, 0):
    		if IsInf(x, -1) {
    			return Pow(1/x, -y) // Pow(-0, -y)
    		}
    		switch {
    		case y < 0:
    			return 0
    		case y > 0:
    			return Inf(1)
    		}
    	case y == 0.5:
    		return Sqrt(x)
    	case y == -0.5:
    		return 1 / Sqrt(x)
    	}
    
    	yi, yf := Modf(Abs(y))
    	if yf != 0 && x < 0 {
    		return NaN()
    	}
    	if yi >= 1<<63 {
    		// yi is a large even int that will lead to overflow (or underflow to 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. test/fixedbugs/bug402.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    var a = []int64{
    	0.0005 * 1e9,
    	0.001 * 1e9,
    	0.005 * 1e9,
    	0.01 * 1e9,
    	0.05 * 1e9,
    	0.1 * 1e9,
    	0.5 * 1e9,
    	1 * 1e9,
    	5 * 1e9,
    }
    
    func main() {
    	s := ""
    	for _, v := range a {
    		s += fmt.Sprint(v) + " "
    	}
    	if s != "500000 1000000 5000000 10000000 50000000 100000000 500000000 1000000000 5000000000 " {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 518 bytes
    - Viewed (0)
  10. src/math/gamma.go

    	)
    	w := 1 / x
    	w = 1 + w*((((_gamS[0]*w+_gamS[1])*w+_gamS[2])*w+_gamS[3])*w+_gamS[4])
    	y1 := Exp(x)
    	y2 := 1.0
    	if x > MaxStirling { // avoid Pow() overflow
    		v := Pow(x, 0.5*x-0.25)
    		y1, y2 = v, v/y1
    	} else {
    		y1 = Pow(x, x-0.5) / y1
    	}
    	return y1, SqrtTwoPi * w * y2
    }
    
    // Gamma returns the Gamma function of x.
    //
    // Special cases are:
    //
    //	Gamma(+Inf) = +Inf
    //	Gamma(+0) = +Inf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top