Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for unminit (0.07 sec)

  1. src/runtime/stubs.go

    //
    // When fn is nil (frame is saved g), call dropm instead,
    // this is used when the C thread is exiting.
    func cgocallback(fn, frame, ctxt uintptr)
    
    func gogo(buf *gobuf)
    
    func asminit()
    func setg(gg *g)
    func breakpoint()
    
    // reflectcall calls fn with arguments described by stackArgs, stackArgsSize,
    // frameSize, and regArgs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    		test := &atoftests[i]
    		if test.err != nil {
    			continue
    		}
    		// Adding characters that do not extend a number should not invalidate it.
    		// Test a few. The "i" and "init" cases test that we accept "infi", "infinit"
    		// correctly as "inf" with suffix.
    		for _, suffix := range []string{" ", "q", "+", "-", "<", "=", ">", "(", ")", "i", "init"} {
    			in := test.in + suffix
    			_, n, err := ParseFloatPrefix(in, 64)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	case w.BinaryMarshalerT != nil:
    		return w.BinaryMarshalerT.Name
    	case w.TextMarshalerT != nil:
    		return w.TextMarshalerT.Name
    	}
    	return unknown
    }
    
    type typeInfo struct {
    	id      typeId
    	encInit sync.Mutex // protects creation of encoder
    	encoder atomic.Pointer[encEngine]
    	wire    wireType
    }
    
    // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/runtime/asm_riscv64.s

    	MOV	0(X2), g
    	CALL	runtime·save_g(SB)
    	MOV	(g_stack+stack_hi)(g), X5
    	MOV	8(X2), X6
    	SUB	X6, X5, X6
    	MOV	X6, X2
    
    	MOVW	X10, ret+16(FP)
    	RET
    
    // func asminit()
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    // reflectcall: call a function with the given argument list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/fmt.go

    	// but we may have an arbitrary number added, eg by typecheck
    	// and inlining. If it doesn't fit the syntax, emit an enclosing
    	// block starting with the init statements.
    
    	// if we can just say "for" n->ninit; ... then do so
    	simpleinit := len(n.Init()) == 1 && len(n.Init()[0].Init()) == 0 && StmtWithInit(n.Op())
    
    	// otherwise, print the inits as separate statements
    	complexinit := len(n.Init()) != 0 && !simpleinit && exportFormat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    	// thread.
    	//
    	// For other threads, the runtime explicitly asks the kernel
    	// to use the default stack size so that all stacks are
    	// consistent.
    	//
    	// At thread start, in minit, the runtime queries the OS for
    	// the actual stack bounds so that the stack size doesn't need
    	// to be hard-coded into the runtime.
    	oh64.SizeOfStackReserve = 0x00200000
    	if !iscgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	locks         int32
    	dying         int32
    	profilehz     int32
    	spinning      bool // m is out of work and is actively looking for work
    	blocked       bool // m is blocked on a note
    	newSigstack   bool // minit on C thread called sigaltstack
    	printlock     int8
    	incgo         bool          // m is executing a cgo call
    	isextra       bool          // m is an extra m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top