Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for poll (0.18 sec)

  1. doc/next/6-stdlib/1-time.md

    making it difficult to use `Reset` and `Stop` correctly.
    A visible effect of this change is that `len` and `cap` of timer channels
    now returns 0 instead of 1, which may affect programs that
    poll the length to decide whether a receive on the timer channel
    will succeed.
    Such code should use a non-blocking receive instead.
    
    These new behaviors are only enabled when the main Go program
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE = 79764918
    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_BE ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE = 3988292384
    pkg syscall (netbsd-arm64-cgo), const ETHER_CRC_POLY_LE ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN = 14
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg regexp/syntax, method (InstOp) String() string
    pkg runtime/debug, func SetPanicOnFault(bool) bool
    pkg runtime/debug, func WriteHeapDump(uintptr)
    pkg sync, method (*Pool) Get() interface{}
    pkg sync, method (*Pool) Put(interface{})
    pkg sync, type Pool struct
    pkg sync, type Pool struct, New func() interface{}
    pkg syscall (darwin-386), func FcntlFlock(uintptr, int, *Flock_t) error
    pkg syscall (darwin-386), func Mlock([]uint8) error
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	ROLL $1, (BX)                           // d103
    	ROLL $1, (R11)                          // 41d103
    	ROLL $1, DX                             // d1c2
    	ROLL $1, R11                            // 41d1c3
    	ROLL CL, (BX)                           // d303
    	ROLL CL, (R11)                          // 41d303
    	ROLL CL, DX                             // d3c2
    	ROLL CL, R11                            // 41d3c3
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_PIPE = 42
    pkg syscall (darwin-arm64), const SYS_PIPE ideal-int
    pkg syscall (darwin-arm64), const SYS_POLL = 230
    pkg syscall (darwin-arm64), const SYS_POLL ideal-int
    pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL = 417
    pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN = 244
    pkg syscall (darwin-arm64), const SYS_POSIX_SPAWN ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_OPENAT = 499
    pkg syscall (freebsd-arm64), const SYS_OPENAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_OPENBSD_POLL = 252
    pkg syscall (freebsd-arm64), const SYS_OPENBSD_POLL ideal-int
    pkg syscall (freebsd-arm64), const SYS_OVADVISE = 72
    pkg syscall (freebsd-arm64), const SYS_OVADVISE ideal-int
    pkg syscall (freebsd-arm64), const SYS_PATHCONF = 191
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (linux-amd64), const SYS_EPOLL_CREATE ideal-int
    pkg syscall (linux-amd64), const SYS_EPOLL_CREATE1 ideal-int
    pkg syscall (linux-amd64), const SYS_EPOLL_CTL ideal-int
    pkg syscall (linux-amd64), const SYS_EPOLL_CTL_OLD ideal-int
    pkg syscall (linux-amd64), const SYS_EPOLL_PWAIT ideal-int
    pkg syscall (linux-amd64), const SYS_EPOLL_WAIT ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. src/archive/zip/register.go

    // simultaneously, but each returned reader will be used only by
    // one goroutine at a time.
    type Decompressor func(r io.Reader) io.ReadCloser
    
    var flateWriterPool sync.Pool
    
    func newFlateWriter(w io.Writer) io.WriteCloser {
    	fw, ok := flateWriterPool.Get().(*flate.Writer)
    	if ok {
    		fw.Reset(w)
    	} else {
    		fw, _ = flate.NewWriter(w, 5)
    	}
    	return &pooledFlateWriter{fw: fw}
    }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  9. lib/time/zoneinfo.zip

    America/Virgin America/Whitehorse America/Winnipeg America/Yakutat America/Yellowknife Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Macquarie Antarctica/Mawson Antarctica/McMurdo Antarctica/Palmer Antarctica/Rothera Antarctica/South_Pole Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Arctic/Longyearbyen Asia/Aden Asia/Almaty Asia/Amman Asia/Anadyr Asia/Aqtau Asia/Aqtobe Asia/Ashgabat Asia/Ashkhabad Asia/Atyrau Asia/Baghdad Asia/Bahrain Asia/Baku Asia/Bangkok Asia/Barnaul Asia/Beirut...
    ZIP Archive
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  10. src/cmd/asm/internal/asm/testdata/arm64.s

    	FMOVD	0x8008(R1), F2		// FMOVD	32776(R1), F2		// 3b204091620740fd
    	FMOVD	0x1006ff8(R1), F2	// FMOVD	16805880(R1), F2	// 3bfc7f9162ff7ffd
    
    // very large or unaligned offset uses constant pool.
    // the encoding cannot be checked as the address of the constant pool is unknown.
    // here we only test that they can be assembled.
    	MOVB	R1, 0x1000000(R2)	// MOVB		R1, 16777216(R2)
    	MOVB	R1, 0x44332211(R2)	// MOVB		R1, 1144201745(R2)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top