Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for synchrones (1.3 sec)

  1. doc/godebug.md

    and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).
    
    ### Go 1.23
    
    Go 1.23 changed the channels created by package time to be unbuffered
    (synchronous), which makes correct use of the [`Timer.Stop`](/pkg/time/#Timer.Stop)
    and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.
    The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stdlib_test.go

    	"builtin": true,
    
    	// go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    // Without synchronization, package files may be interleaved during concurrent
    // type-checking.
    var printPackageMu sync.Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    	lv.livevars = lv.livevars[:0]
    }
    
    func (lv *liveness) enableClobber() {
    	// The clobberdead experiment inserts code to clobber pointer slots in all
    	// the dead variables (locals and args) at every synchronous safepoint.
    	if !base.Flag.ClobberDead {
    		return
    	}
    	if lv.fn.Pragma&ir.CgoUnsafeArgs != 0 {
    		// C or assembly code uses the exact frame layout. Don't clobber.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top