Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for emails (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	EL3HLT          = syscall.Errno(0x27)
    	EL3RST          = syscall.Errno(0x28)
    	ELNRNG          = syscall.Errno(0x29)
    	ELOOP           = syscall.Errno(0x55)
    	EMEDIA          = syscall.Errno(0x6e)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x3b)
    	EMULTIHOP       = syscall.Errno(0x7d)
    	ENAMETOOLONG    = syscall.Errno(0x56)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    //
    // h.lock must be held.
    //
    // allocMSpanLocked must be called on the system stack because
    // its caller holds the heap lock. See mheap for details.
    // Running on the system stack also ensures that we won't
    // switch Ps during this function. See tryAllocMSpan for details.
    //
    //go:systemstack
    func (h *mheap) allocMSpanLocked() *mspan {
    	assertLockHeld(&h.lock)
    
    	pp := getg().m.p.ptr()
    	if pp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/time/time.go

    // time.Now().Before(deadline), are similarly robust against wall clock
    // resets.
    //
    // The rest of this section gives the precise details of how operations
    // use monotonic clocks, but understanding those details is not required
    // to use this package.
    //
    // The Time returned by time.Now contains a monotonic clock reading.
    // If Time t has a monotonic clock reading, t.Add adds the same duration to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		}
    		if p := ctxt.findLibPath("libmingw32.a"); p != "none" {
    			hostArchive(ctxt, p)
    		}
    		// Link libmsvcrt.a to resolve '__acrt_iob_func' symbol
    		// (see https://golang.org/issue/23649 for details).
    		if p := ctxt.findLibPath("libmsvcrt.a"); p != "none" {
    			hostArchive(ctxt, p)
    		}
    		any = false
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(1)
    		if len(undefs) > 0 {
    			any = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	// 'go mod tidy' or 'go mod vendor'.
    	//
    	// The direct map is keyed by module paths, not module versions. When a
    	// module's selected version changes, we assume that it remains direct if the
    	// previous version was a direct dependency. That assumption might not hold in
    	// rare cases (such as if a dependency splits out a nested module, or merges a
    	// nested module back into a parent module).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x6a)
    	ELOOP           = syscall.Errno(0x3e)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x28)
    	EMULTIHOP       = syscall.Errno(0x5f)
    	ENAMETOOLONG    = syscall.Errno(0x3f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    	ELOOP           = syscall.Errno(0x3e)
    	EMEDIUMTYPE     = syscall.Errno(0x56)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x28)
    	ENAMETOOLONG    = syscall.Errno(0x3f)
    	ENEEDAUTH       = syscall.Errno(0x51)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x60)
    	ELOOP           = syscall.Errno(0x3e)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x28)
    	EMULTIHOP       = syscall.Errno(0x5e)
    	ENAMETOOLONG    = syscall.Errno(0x3f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    	ELOOP           = syscall.Errno(0x3e)
    	EMEDIUMTYPE     = syscall.Errno(0x56)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x28)
    	ENAMETOOLONG    = syscall.Errno(0x3f)
    	ENEEDAUTH       = syscall.Errno(0x51)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go

    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    	ELOOP           = syscall.Errno(0x3e)
    	EMEDIUMTYPE     = syscall.Errno(0x56)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    	EMSGSIZE        = syscall.Errno(0x28)
    	ENAMETOOLONG    = syscall.Errno(0x3f)
    	ENEEDAUTH       = syscall.Errno(0x51)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
Back to top