Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for newD (0.08 sec)

  1. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go

    Michael Anthony Knyszek <******@****.***> 1716583527 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 999 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 556 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 529 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * Both scenarios are bad: The output Future might never complete, or, if it does complete, it
         * might not run some of its listeners. The likely result is that the app will hang. (And of
         * course stack overflows are bad news in general. For example, we may have overflowed in the
         * middle of defining a class. If so, that class will never be loadable in this process.) The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin_amd64.s

    	MOVQ	16(DI), DX		// arg 3 oldp
    	MOVQ	24(DI), CX		// arg 4 oldlenp
    	MOVQ	32(DI), R8		// arg 5 newp
    	MOVQ	40(DI), R9		// arg 6 newlen
    	MOVQ	0(DI), DI		// arg 1 mib
    	CALL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 oldp
    	MOVQ	16(DI), DX		// arg 3 oldlenp
    	MOVQ	24(DI), CX		// arg 4 newp
    	MOVQ	32(DI), R8		// arg 5 newlen
    	MOVQ	0(DI), DI		// arg 1 name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. src/runtime/os_plan9.go

    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    func sigblock(exiting bool) {
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    	if atomic.Load(&exiting) != 0 {
    		exits(&emptystatus[0])
    	}
    	// Mask all SSE floating-point exceptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Select1     (AddTupleFirst64   _ tuple)) => (Select1 tuple)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (CMPXCHGLlock ptr old new_ mem)
    (AtomicCompareAndSwap64 ptr old new_ mem) => (CMPXCHGQlock ptr old new_ mem)
    
    // Atomic memory updates.
    (AtomicAnd8  ptr val mem) => (ANDBlock ptr val mem)
    (AtomicAnd32 ptr val mem) => (ANDLlock ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin_arm64.s

    	MOVD	16(R0), R2	// arg 3 oldp
    	MOVD	24(R0), R3	// arg 4 oldlenp
    	MOVD	32(R0), R4	// arg 5 newp
    	MOVD	40(R0), R5	// arg 6 newlen
    	MOVD	0(R0), R0	// arg 1 mib
    	BL	libc_sysctl(SB)
    	RET
    
    TEXT runtime·sysctlbyname_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 oldp
    	MOVD	16(R0), R2	// arg 3 oldlenp
    	MOVD	24(R0), R3	// arg 4 newp
    	MOVD	32(R0), R4	// arg 5 newlen
    	MOVD	0(R0), R0	// arg 1 name
    	BL	libc_sysctlbyname(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_386.s

    TEXT runtime·sysctl(SB),NOSPLIT,$28
    	LEAL	mib+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - name
    	MOVSL				// arg 2 - namelen
    	MOVSL				// arg 3 - oldp
    	MOVSL				// arg 4 - oldlenp
    	MOVSL				// arg 5 - newp
    	MOVSL				// arg 6 - newlen
    	MOVL	$SYS___sysctl, AX
    	INT	$0x80
    	JAE	4(PC)
    	NEGL	AX
    	MOVL	AX, ret+24(FP)
    	RET
    	MOVL	$0, AX
    	MOVL	AX, ret+24(FP)
    	RET
    
    GLOBL runtime·tlsoffset(SB),NOPTR,$4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/runtime/sys_netbsd_arm64.s

    	MOVW	miblen+8(FP), R1	// arg 2 - namelen
    	MOVD	out+16(FP), R2		// arg 3 - oldp
    	MOVD	size+24(FP), R3		// arg 4 - oldlenp
    	MOVD	dst+32(FP), R4		// arg 5 - newp
    	MOVD	ndst+40(FP), R5		// arg 6 - newlen
    	SVC	$SYS___sysctl
    	BCC	ok
    	NEG	R0, R0
    ok:
    	MOVW	R0, ret+48(FP)
    	RET
    
    // int32 runtime·kqueue(void)
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    	MOVD	$0, R0
    	SVC	$SYS_kqueue
    	BCC	ok
    	NEG	R0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top