Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for synchrones (0.35 sec)

  1. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    const (
    	reserved = 0
    	allBytes = ^uint32(0)
    )
    
    func lock(f File, lt lockType) error {
    	// Per https://golang.org/issue/19098, “Programs currently expect the Fd
    	// method to return a handle that uses ordinary synchronous I/O.”
    	// However, LockFileEx still requires an OVERLAPPED structure,
    	// which contains the file offset of the beginning of the lock range.
    	// We want to lock the entire file, so we leave the offset as zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K 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. 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)
  4. 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