Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for etime (0.14 sec)

  1. src/cmd/go/internal/cache/cache.go

    // within 5 days of the previous reuse. See golang.org/issue/22990.
    const (
    	mtimeInterval = 1 * time.Hour
    	trimInterval  = 24 * time.Hour
    	trimLimit     = 5 * 24 * time.Hour
    )
    
    // used makes a best-effort attempt to update mtime on file,
    // so that mtime reflects cache access time.
    //
    // Because the reflection only needs to be approximate,
    // and to reduce the amount of disk activity caused by using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    	}
    
    	// check both fileInfo's have same number of versions, if not skip
    	// the `other` entry.
    	if len(eVers.versions) != len(oVers.versions) {
    		eTime := eVers.latestModtime()
    		oTime := oVers.latestModtime()
    		if !eTime.Equal(oTime) {
    			if eTime.After(oTime) {
    				return e, false
    			}
    			return other, false
    		}
    		// Tiebreak on version count.
    		if len(eVers.versions) > len(oVers.versions) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	ESHUTDOWN       = syscall.Errno(0x6c)
    	ESOCKTNOSUPPORT = syscall.Errno(0x5e)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x74)
    	ESTRPIPE        = syscall.Errno(0x56)
    	ETIME           = syscall.Errno(0x3e)
    	ETIMEDOUT       = syscall.Errno(0x6e)
    	ETOOMANYREFS    = syscall.Errno(0x6d)
    	EUCLEAN         = syscall.Errno(0x75)
    	EUNATCH         = syscall.Errno(0x31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/runtime/netpoll_solaris.go

    	r := port_getn(portfd, &events[0], uint32(len(events)), &n, wait)
    	e := errno()
    	if r < 0 && e == _ETIME && n > 0 {
    		// As per port_getn(3C), an ETIME failure does not preclude the
    		// delivery of some number of events.  Treat a timeout failure
    		// with delivered events as a success.
    		r = 0
    	}
    	if r < 0 {
    		if e != _EINTR && e != _ETIME {
    			print("runtime: port_getn on fd ", portfd, " failed (errno=", e, ")\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPROCLIM           = Errno(1131)
    	EUSERS             = Errno(1132)
    	EDQUOT             = Errno(1133)
    	ESTALE             = Errno(1134)
    	EREMOTE            = Errno(1135)
    	ENOSTR             = Errno(1136)
    	ETIME              = Errno(1137)
    	ENOSR              = Errno(1138)
    	ENOMSG             = Errno(1139)
    	EBADMSG            = Errno(1140)
    	EIDRM              = Errno(1141)
    	ENONET             = Errno(1142)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	Cgid uint32
    	Mode uint32
    	_    [0]uint8
    	Seq  uint16
    	_    uint16
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Atime  int64
    	Dtime  int64
    	Ctime  int64
    	Cpid   int32
    	Lpid   int32
    	Nattch uint64
    	_      uint64
    	_      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	Cgid uint32
    	Mode uint32
    	_    [0]uint8
    	Seq  uint16
    	_    uint16
    	_    uint32
    	_    uint32
    }
    type SysvShmDesc struct {
    	Perm       SysvIpcPerm
    	Segsz      uint32
    	Atime      uint32
    	Dtime      uint32
    	Ctime      uint32
    	Cpid       int32
    	Lpid       int32
    	Nattch     uint32
    	Atime_high uint16
    	Dtime_high uint16
    	Ctime_high uint16
    	_          uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint32
    	Seq  uint32
    	_    uint32
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Atime  int64
    	Dtime  int64
    	Ctime  int64
    	Segsz  uint64
    	Cpid   int32
    	Lpid   int32
    	Nattch uint64
    	_      uint64
    	_      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top