Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Widmer (0.29 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE = 235
    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_CREATE ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE = 236
    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_DELETE ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN = 239
    pkg syscall (netbsd-arm64-cgo), const SYS_TIMER_GETOVERRUN ideal-int
    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)
  2. src/archive/zip/writer_test.go

    			w, _ := zw.CreateHeader(&FileHeader{
    				Name:   "foo",
    				Method: Deflate,
    			})
    			w.Write(bigBuf)
    		}
    		zw.Close()
    	}
    
    	b.ReportAllocs()
    	// Run once and then reset the timer.
    	// This effectively discards the very large initial flate setup cost,
    	// as well as the initialization of bigBuf.
    	runOnce(&bytes.Buffer{})
    	b.ResetTimer()
    
    	b.RunParallel(func(pb *testing.PB) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), const SYS_TIMERFD_SETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMER_CREATE ideal-int
    pkg syscall (linux-386), const SYS_TIMER_DELETE ideal-int
    pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN ideal-int
    pkg syscall (linux-386), const SYS_TIMER_GETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMER_SETTIME ideal-int
    pkg syscall (linux-386), const SYS_TIMES 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)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const EVFILT_THREADMARKER = 14
    pkg syscall (darwin-arm64), const EVFILT_THREADMARKER ideal-int
    pkg syscall (darwin-arm64), const EVFILT_TIMER = -7
    pkg syscall (darwin-arm64), const EVFILT_TIMER ideal-int
    pkg syscall (darwin-arm64), const EVFILT_USER = -10
    pkg syscall (darwin-arm64), const EVFILT_USER ideal-int
    pkg syscall (darwin-arm64), const EVFILT_VM = -12
    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)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EVFILT_SYSCOUNT = 11
    pkg syscall (freebsd-arm64), const EVFILT_SYSCOUNT ideal-int
    pkg syscall (freebsd-arm64), const EVFILT_TIMER = -7
    pkg syscall (freebsd-arm64), const EVFILT_TIMER ideal-int
    pkg syscall (freebsd-arm64), const EVFILT_USER = -11
    pkg syscall (freebsd-arm64), const EVFILT_USER ideal-int
    pkg syscall (freebsd-arm64), const EVFILT_VNODE = -4
    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)
  6. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    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)
  7. api/go1.1.txt

    pkg syscall (linux-386), const SYS_TIMERFD_SETTIME = 325
    pkg syscall (linux-386), const SYS_TIMER_CREATE = 259
    pkg syscall (linux-386), const SYS_TIMER_DELETE = 263
    pkg syscall (linux-386), const SYS_TIMER_GETOVERRUN = 262
    pkg syscall (linux-386), const SYS_TIMER_GETTIME = 261
    pkg syscall (linux-386), const SYS_TIMER_SETTIME = 260
    pkg syscall (linux-386), const SYS_TIMES = 43
    pkg syscall (linux-386), const SYS_TKILL = 238
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SYS_TIMER_CREATE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_DELETE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_GETOVERRUN ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_GETTIME ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMER_SETTIME ideal-int
    pkg syscall (linux-arm-cgo), const SYS_TIMES ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. doc/godebug.md

    ### 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.
    There are no runtime metrics for this change,
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/bufio/scan.go

    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    // See the emptyFinalToken example for a use of this value.
    var ErrFinalToken = errors.New("final token")
    
    // Scan advances the [Scanner] to the next token, which will then be
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
Back to top