Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for 228 (0.02 sec)

  1. src/math/asinh.go

    		x = -x
    		sign = true
    	}
    	var temp float64
    	switch {
    	case x > Large:
    		temp = Log(x) + Ln2 // |x| > 2**28
    	case x > 2:
    		temp = Log(2*x + 1/(Sqrt(x*x+1)+x)) // 2**28 > |x| > 2.0
    	case x < NearZero:
    		temp = x // |x| < 2**-28
    	default:
    		temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28
    	}
    	if sign {
    		temp = -temp
    	}
    	return temp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:02:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_loong64.s

    	MOVV	R7, (3*8)(R3) // ctxt uintptr
    
    	SAVE_R22_TO_R31((4*8))
    	SAVE_F24_TO_F31((14*8))
    	MOVV	R1, (22*8)(R3)
    
    	// Initialize Go ABI environment
    	JAL	runtime·load_g(SB)
    
    	JAL	runtime·cgocallback(SB)
    
    	RESTORE_R22_TO_R31((4*8))
    	RESTORE_F24_TO_F31((14*8))
    	MOVV	(22*8)(R3), R1
    
    	ADDV	$(23*8), R3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/cgo/abi_amd64.h

    	MOVQ	R15, (7*8)(SP)	\
    	MOVUPS	X6, (8*8)(SP)	\
    	MOVUPS	X7, (10*8)(SP)	\
    	MOVUPS	X8, (12*8)(SP)	\
    	MOVUPS	X9, (14*8)(SP)	\
    	MOVUPS	X10, (16*8)(SP)	\
    	MOVUPS	X11, (18*8)(SP)	\
    	MOVUPS	X12, (20*8)(SP)	\
    	MOVUPS	X13, (22*8)(SP)	\
    	MOVUPS	X14, (24*8)(SP)	\
    	MOVUPS	X15, (26*8)(SP)
    
    #define POP_REGS_HOST_TO_ABI0()	\
    	MOVQ	(0*0)(SP), DI	\
    	MOVQ	(1*8)(SP), SI	\
    	MOVQ	(2*8)(SP), BP	\
    	MOVQ	(3*8)(SP), BX	\
    	MOVQ	(4*8)(SP), R12	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 12:38:13 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. pkg/monitoring/example_gauge_test.go

    	monitoring.WithUnit(monitoring.Seconds),
    )
    
    func ExampleNewGauge() {
    	// only the last recorded value (99.2) will be exported for this gauge
    	pushLatency.Record(77.3)
    	pushLatency.Record(22.8)
    	pushLatency.Record(99.2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 994 bytes
    - Viewed (0)
  5. src/runtime/preempt_mipsx.s

    	MOVF F23, 208(R29)
    	MOVF F24, 212(R29)
    	MOVF F25, 216(R29)
    	MOVF F26, 220(R29)
    	MOVF F27, 224(R29)
    	MOVF F28, 228(R29)
    	MOVF F29, 232(R29)
    	MOVF F30, 236(R29)
    	MOVF F31, 240(R29)
    	#endif
    	CALL ·asyncPreempt2(SB)
    	#ifndef GOMIPS_softfloat
    	MOVF 240(R29), F31
    	MOVF 236(R29), F30
    	MOVF 232(R29), F29
    	MOVF 228(R29), F28
    	MOVF 224(R29), F27
    	MOVF 220(R29), F26
    	MOVF 216(R29), F25
    	MOVF 212(R29), F24
    	MOVF 208(R29), F23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. src/math/acosh.go

    	const Large = 1 << 28 // 2**28
    	// first case is special case
    	switch {
    	case x < 1 || IsNaN(x):
    		return NaN()
    	case x == 1:
    		return 0
    	case x >= Large:
    		return Log(x) + Ln2 // x > 2**28
    	case x > 2:
    		return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2
    	}
    	t := x - 1
    	return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/testing/helper_test.go

        --- FAIL: TestTBHelper/sub2 \([^)]+\)
            helperfuncs_test.go:80: 11
        helperfuncs_test.go:84: recover 12
        helperfuncs_test.go:86: GenericFloat64
        helperfuncs_test.go:87: GenericInt
        helper_test.go:22: 8
        helperfuncs_test.go:73: 9
        helperfuncs_test.go:69: 10
    `
    	if !regexp.MustCompile(want).Match(out) {
    		t.Errorf("got output:\n\n%s\nwant matching:\n\n%s", out, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. test/interface/fake.go

    func assert(b bool) {
    	if !b {
    		panic("assert")
    	}
    }
    
    func main() {
    	var x T
    	x.F = 1.0
    	x.G = x.F
    	x.S = add("abc", "def")
    	x.T = add("abc", "def")
    	x.U = 1
    	x.V = 2
    	x.W = 1 << 28
    	x.X = 2 << 28
    	x.Y = 0x12345678
    	x.Z = x.Y
    
    	// check mem and string
    	v := reflect.ValueOf(x)
    	i := v.Field(0)
    	j := v.Field(1)
    	assert(i.Interface() == j.Interface())
    
    	s := v.Field(2)
    	t := v.Field(3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  9. android-test/src/androidTest/java/okhttp/android/test/letsencrypt/LetsEncryptClientTest.kt

    class LetsEncryptClientTest {
      @Test fun get() {
        // These tests wont actually run before Android 8.0 as per
        // https://github.com/mannodermaus/android-junit5
        // Raised https://github.com/mannodermaus/android-junit5/issues/228 to reevaluate
        val androidMorEarlier = Build.VERSION.SDK_INT <= 23
    
        val clientBuilder = OkHttpClient.Builder()
    
        if (androidMorEarlier) {
          val cert: X509Certificate =
            """
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/runtime/time_linux_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !faketime
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_clock_gettime	228
    
    // func time.now() (sec int64, nsec int32, mono int64)
    TEXT time·now<ABIInternal>(SB),NOSPLIT,$16-24
    	MOVQ	SP, R12 // Save old SP; R12 unchanged by C code.
    
    	MOVQ	g_m(R14), BX // BX unchanged by C code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top