Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for switches$ (0.2 sec)

  1. src/runtime/sys_windows_amd64.s

    	ADJSP	$-16
    
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    // Trampoline to resume execution from exception handler.
    // This is part of the control flow guard workaround.
    // It switches stacks and jumps to the continuation address.
    // R8 and R9 are set above at the end of sigtrampgo
    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	MOVQ	R8, SP
    	JMP	R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. docs/distributed/README.md

    ## Get started
    
    If you're aware of stand-alone MinIO set up, the process remains largely the same. MinIO server automatically switches to stand-alone or distributed mode, depending on the command line parameters.
    
    ### 1. Prerequisites
    
    Install MinIO either on Kubernetes or Distributed Linux.
    
    Install MinIO on Kubernetes:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    var counterSelectExec = telemetry.NewCounter("go/toolchain/select-exec")
    
    // TestVersionSwitch is set in the test go binary to the value in $TESTGO_VERSION_SWITCH.
    // Valid settings are:
    //
    //	"switch" - simulate version switches by reinvoking the test go binary with a different TESTGO_VERSION.
    //	"mismatch" - like "switch" but forget to set TESTGO_VERSION, so it looks like we invoked a mismatched toolchain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/runtime/race_s390x.s

    // are no arguments.
    TEXT	runtime·racecall(SB), NOSPLIT, $0-0
    	MOVD	fn+0(FP), R1
    	MOVD	arg0+8(FP), R2
    	MOVD	arg1+16(FP), R3
    	MOVD	arg2+24(FP), R4
    	MOVD	arg3+32(FP), R5
    	JMP	racecall<>(SB)
    
    // Switches SP to g0 stack and calls R1. Arguments are already set.
    TEXT	racecall<>(SB), NOSPLIT, $0-0
    	BL	runtime·save_g(SB)		// Save g for callbacks.
    	MOVD	R15, R7				// Save SP.
    	MOVD	g_m(g), R8			// R8 = thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func panicdottypeE(have, want, iface *byte)
    func panicdottypeI(have, want, iface *byte)
    func panicnildottype(want *byte)
    func typeAssert(s *byte, typ *byte) *byte
    
    // interface switches
    func interfaceSwitch(s *byte, t *byte) (int, *byte)
    
    // interface equality. Type/itab pointers are already known to be equal, so
    // we only need to pass one.
    func ifaceeq(tab *uintptr, x, y unsafe.Pointer) (ret bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. test/inline.go

    }
    
    func switchType(x interface{}) int { // ERROR "can inline switchType" "x does not escape"
    	switch x.(type) {
    	case int:
    		return x.(int)
    	default:
    		return 0
    	}
    }
    
    // Test that switches on constant things, with constant cases, only cost anything for
    // the case that matches. See issue 50253.
    func switchConst1(p func(string)) { // ERROR "can inline switchConst" "p does not escape"
    	const c = 1
    	switch c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. test/newinline.go

    }
    
    func switchType(x interface{}) int { // ERROR "can inline switchType" "x does not escape"
    	switch x.(type) {
    	case int:
    		return x.(int)
    	default:
    		return 0
    	}
    }
    
    // Test that switches on constant things, with constant cases, only cost anything for
    // the case that matches. See issue 50253.
    func switchConst1(p func(string)) { // ERROR "can inline switchConst" "p does not escape"
    	const c = 1
    	switch c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/net/smtp/smtp.go

    	if err != nil {
    		return nil, err
    	}
    	return &dataCloser{c, c.Text.DotWriter()}, nil
    }
    
    var testHookStartTLS func(*tls.Config) // nil, except for tests
    
    // SendMail connects to the server at addr, switches to TLS if
    // possible, authenticates with the optional mechanism a if possible,
    // and then sends an email from address from, to addresses to, with
    // message msg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/runtime/race_amd64.s

    TEXT	runtime·racecall(SB), NOSPLIT, $0-0
    	MOVQ	fn+0(FP), AX
    	MOVQ	arg0+8(FP), RARG0
    	MOVQ	arg1+16(FP), RARG1
    	MOVQ	arg2+24(FP), RARG2
    	MOVQ	arg3+32(FP), RARG3
    	JMP	racecall<>(SB)
    
    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	racecall<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVQ	g_m(R14), R13
    	// Switch to g0 stack.
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	MOVQ	m_g0(R13), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/runtime/race_arm64.s

    TEXT	runtime·racecall(SB), NOSPLIT, $0-0
    	MOVD	fn+0(FP), R9
    	MOVD	arg0+8(FP), R0
    	MOVD	arg1+16(FP), R1
    	MOVD	arg2+24(FP), R2
    	MOVD	arg3+32(FP), R3
    	JMP	racecall<>(SB)
    
    // Switches SP to g0 stack and calls (R9). Arguments already set.
    // Clobbers R19, R20.
    TEXT	racecall<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVD	g_m(g), R10
    	// Switch to g0 stack.
    	MOVD	RSP, R19	// callee-saved, preserved across the CALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top