Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,558 for Seal (0.05 sec)

  1. src/reflect/asm_386.s

    // for more details.
    // No argsize here, gc generates argsize info at call site.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$20
    	NO_LOCAL_POINTERS
    	MOVL	DX, 0(SP)
    	LEAL	argframe+0(FP), CX
    	MOVL	CX, 4(SP)
    	MOVB	$0, 16(SP)
    	LEAL	16(SP), AX
    	MOVL	AX, 8(SP)
    	MOVL	$0, 12(SP)
    	CALL	·callReflect(SB)
    	RET
    
    // methodValueCall is the code half of the function returned by makeMethodValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 16:53:18 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/math/cmplx/tan.go

    func Tan(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case math.IsInf(im, 0):
    		switch {
    		case math.IsInf(re, 0) || math.IsNaN(re):
    			return complex(math.Copysign(0, re), math.Copysign(1, im))
    		}
    		return complex(math.Copysign(0, math.Sin(2*re)), math.Copysign(1, im))
    	case re == 0 && math.IsNaN(im):
    		return x
    	}
    	d := math.Cos(2*real(x)) + math.Cosh(2*imag(x))
    	if math.Abs(d) < 0.25 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  3. test/devirt.go

    package main
    
    // Trivial interface call devirtualization test.
    
    type real struct {
    	value int
    }
    
    func (r *real) Value() int { return r.value }
    
    type Valuer interface {
    	Value() int
    }
    
    type indirectiface struct {
    	a, b, c int
    }
    
    func (i indirectiface) Value() int {
    	return i.a + i.b + i.c
    }
    
    func main() {
    	var r Valuer
    	rptr := &real{value: 3}
    	r = rptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 16:10:20 UTC 2021
    - 574 bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_386.s

    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT,$0
    	LEAL	140(SP), AX		// Load address of ucontext
    	MOVL	AX, 4(SP)
    	MOVL	$SYS_setcontext, AX
    	INT	$0x80
    	MOVL	$-1, 4(SP)		// Something failed...
    	MOVL	$SYS_exit, AX
    	INT	$0x80
    
    TEXT runtime·sigaction(SB),NOSPLIT,$24
    	LEAL	sig+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - sig
    	MOVSL				// arg 2 - act
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/math/cmplx/pow.go

    // For generalized compatibility with [math.Pow]:
    //
    //	Pow(0, ±0) returns 1+0i
    //	Pow(0, c) for real(c)<0 returns Inf+0i if imag(c) is zero, otherwise Inf+Inf i.
    func Pow(x, y complex128) complex128 {
    	if x == 0 { // Guaranteed also true for x == -0.
    		if IsNaN(y) {
    			return NaN()
    		}
    		r, i := real(y), imag(y)
    		switch {
    		case r == 0:
    			return 1
    		case r < 0:
    			if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplierTest.groovy

            given:
            def real = candidates.createDir("installs/java/11.0.6.hs-adpt")
            def symlink = candidates.file("installs/java/symlink").createLink(real)
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 2
            directories*.location.containsAll(real, symlink)
            directories*.source.unique() == ["asdf-vm"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. test/fixedbugs/bug275.go

    // license that can be found in the LICENSE file.
    
    // This is a test case for issue 788.
    
    package main
    
    func main() {
    	var a [1]complex64
    
    	t := a[0]
    	_ = real(t) // this works
    
    	_ = real(a[0]) // this doesn't
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 396 bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt

    ) : DelegatingSocketFactory(getDefault()) {
      private val hostMapping = mutableMapOf<InetAddress, InetSocketAddress>()
    
      /** Sets the [real] address for [requested].  */
      operator fun set(
        requested: InetAddress,
        real: InetSocketAddress,
      ) {
        hostMapping[requested] = real
      }
    
      override fun createSocket(): Socket {
        return object : Socket() {
          override fun connect(
            endpoint: SocketAddress?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_386.s

    	ADDL	$7, AX
    	MOVW	AX, GS
    	RET
    
    TEXT i386_set_ldt<>(SB),NOSPLIT,$16
    	LEAL	args+0(FP), AX	// 0(FP) == 4(SP) before SP got moved
    	MOVL	$0, 0(SP)	// syscall gap
    	MOVL	$1, 4(SP)
    	MOVL	AX, 8(SP)
    	MOVL	$SYS_sysarch, AX
    	INT	$0x80
    	JAE	2(PC)
    	INT	$3
    	RET
    
    TEXT runtime·sysctl(SB),NOSPLIT,$28
    	LEAL	mib+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - name
    	MOVSL				// arg 2 - namelen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            Did you *actually* encounter the need for this enhancement in a real-world scenario, or does
            it just seem like a sensible behavior for the feature to have?
    
    
            Before we make significant changes to existing features in Guava, we really want to be sure
            that it's for a use case that actually comes up in the real world. We want to hear the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top