Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Widmer (0.41 sec)

  1. 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. 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 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  4. 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 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  5. 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 30 11:13:12 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 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EVFILT_SYSCOUNT = 11 #53466
    pkg syscall (freebsd-riscv64), const EVFILT_SYSCOUNT ideal-int #53466
    pkg syscall (freebsd-riscv64), const EVFILT_TIMER = -7 #53466
    pkg syscall (freebsd-riscv64), const EVFILT_TIMER ideal-int #53466
    pkg syscall (freebsd-riscv64), const EVFILT_USER = -11 #53466
    pkg syscall (freebsd-riscv64), const EVFILT_USER ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top