Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 133 for newD (0.04 sec)

  1. src/runtime/asm_wasm.s

    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    // record an argument size. For that purpose, it has no arguments.
    TEXT runtime·morestack(SB), NOSPLIT, $0-0
    	// R1 = g.m
    	MOVD g_m(g), R1
    
    	// R2 = g0
    	MOVD m_g0(R1), R2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/sys_netbsd_arm.s

    	MOVW miblen+4(FP), R1	// arg 2 - namelen
    	MOVW out+8(FP), R2	// arg 3 - oldp
    	MOVW size+12(FP), R3	// arg 4 - oldlenp
    	MOVW dst+16(FP), R4	// arg 5 - newp
    	MOVW R4, 4(R13)
    	MOVW ndst+20(FP), R4	// arg 6 - newlen
    	MOVW R4, 8(R13)
    	ADD $4, R13	// pass arg 5 and 6 on stack
    	SWI $SYS___sysctl
    	SUB $4, R13
    	MOVW	R0, ret+24(FP)
    	RET
    
    // int32 runtime·kqueue(void)
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. api/go1.7.txt

    pkg testing, type InternalExample struct, Unordered bool
    pkg unicode, const Version = "9.0.0"
    pkg unicode, var Adlam *RangeTable
    pkg unicode, var Bhaiksuki *RangeTable
    pkg unicode, var Marchen *RangeTable
    pkg unicode, var Newa *RangeTable
    pkg unicode, var Osage *RangeTable
    pkg unicode, var Prepended_Concatenation_Mark *RangeTable
    pkg unicode, var Sentence_Terminal *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    	winmmdll            = [...]uint16{'w', 'i', 'n', 'm', 'm', '.', 'd', 'l', 'l', 0}
    )
    
    // Function to be called by windows CreateThread
    // to start new os thread.
    func tstart_stdcall(newm *m)
    
    // Init-time helper
    func wintls()
    
    type mOS struct {
    	threadLock mutex   // protects "thread" and prevents closing
    	thread     uintptr // thread handle
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AtomicExchange(32|64) ...) => (LoweredAtomicExchange(32|64) ...)
    
    (AtomicAdd(32|64) ...) => (LoweredAtomicAdd(32|64) ...)
    
    (AtomicCompareAndSwap(32|64) ptr old new_ mem) => (LoweredAtomicCas(32|64) [1] ptr old new_ mem)
    (AtomicCompareAndSwapRel32   ptr old new_ mem) => (LoweredAtomicCas32 [0] ptr old new_ mem)
    
    (AtomicAnd(8|32)  ...) => (LoweredAtomicAnd(8|32)  ...)
    (AtomicOr(8|32)   ...) => (LoweredAtomicOr(8|32)   ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicExchange64 ptr val mem) => (LoweredAtomicExchange64 ptr val mem)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (LoweredAtomicCas32 ptr old new_ mem)
    (AtomicCompareAndSwap64 ptr old new_ mem) => (LoweredAtomicCas64 ptr old new_ mem)
    
    // Atomic and: *(*uint8)(ptr) &= val
    //
    // Round pointer down to nearest word boundary and pad value with ones before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/runtime/sys_freebsd_amd64.s

    TEXT runtime·asmSigaction(SB),NOSPLIT,$0
    	MOVQ	sig+0(FP), DI		// arg 1 sig
    	MOVQ	new+8(FP), SI		// arg 2 act
    	MOVQ	old+16(FP), DX		// arg 3 oact
    	MOVL	$SYS_sigaction, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$-1, AX
    	MOVL	AX, ret+24(FP)
    	RET
    
    TEXT runtime·callCgoSigaction(SB),NOSPLIT,$16
    	MOVQ	sig+0(FP), DI		// arg 1 sig
    	MOVQ	new+8(FP), SI		// arg 2 act
    	MOVQ	old+16(FP), DX		// arg 3 oact
    	MOVQ	_cgo_sigaction(SB), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. docs/ru/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="https://www.hug.rest/" target="_blank">Hug</a> creator</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. docs/en/docs/index.md

    * The alternative documentation will also reflect the new query parameter and body:
    
    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Recap
    
    In summary, you declare **once** the types of parameters, body, etc. as function parameters.
    
    You do that with standard modern Python types.
    
    You don't have to learn a new syntax, the methods or classes of a specific library, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. docs/tr/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="http://www.hug.rest/" target="_blank">Hug</a>'ın Yaratıcısı</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top