Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for minute (0.29 sec)

  1. src/archive/zip/struct.go

    func timeZone(offset time.Duration) *time.Location {
    	const (
    		minOffset   = -12 * time.Hour  // E.g., Baker island at -12:00
    		maxOffset   = +14 * time.Hour  // E.g., Line island at +14:00
    		offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45
    	)
    	offset = offset.Round(offsetAlias)
    	if offset < minOffset || maxOffset < offset {
    		offset = 0
    	}
    	return time.FixedZone("", int(offset/time.Second))
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	m := Map(maxRune, []byte(a))
    	expect := tenRunes(unicode.MaxRune)
    	if string(m) != expect {
    		t.Errorf("growing: expected %q got %q", expect, m)
    	}
    
    	// 2. Shrink
    	minRune := func(r rune) rune { return 'a' }
    	m = Map(minRune, []byte(tenRunes(unicode.MaxRune)))
    	expect = a
    	if string(m) != expect {
    		t.Errorf("shrinking: expected %q got %q", expect, m)
    	}
    
    	// 3. Rot13
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE = 69
    pkg syscall (netbsd-arm64-cgo), const IP_MINFRAGSIZE ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_MINTTL = 24
    pkg syscall (netbsd-arm64-cgo), const IP_MINTTL ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_MSS = 576
    pkg syscall (netbsd-arm64-cgo), const IP_MSS ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_MULTICAST_IF = 9
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (freebsd-386), const IP_MAX_MEMBERSHIPS ideal-int
    pkg syscall (freebsd-386), const IP_MAX_SOCK_MUTE_FILTER ideal-int
    pkg syscall (freebsd-386), const IP_MAX_SOCK_SRC_FILTER ideal-int
    pkg syscall (freebsd-386), const IP_MAX_SOURCE_FILTER ideal-int
    pkg syscall (freebsd-386), const IP_MF ideal-int
    pkg syscall (freebsd-386), const IP_MINTTL ideal-int
    pkg syscall (freebsd-386), const IP_MIN_MEMBERSHIPS ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IP_MIN_MEMBERSHIPS = 31
    pkg syscall (freebsd-arm64), const IP_MIN_MEMBERSHIPS ideal-int
    pkg syscall (freebsd-arm64), const IP_MINTTL = 66
    pkg syscall (freebsd-arm64), const IP_MINTTL ideal-int
    pkg syscall (freebsd-arm64), const IP_MSFILTER = 74
    pkg syscall (freebsd-arm64), const IP_MSFILTER ideal-int
    pkg syscall (freebsd-arm64), const IP_MSS = 576
    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)
  6. api/go1.1.txt

    pkg syscall (linux-386), const RTNLGRP_IPV4_IFADDR = 5
    pkg syscall (linux-386), const RTNLGRP_IPV4_IFADDR ideal-int
    pkg syscall (linux-386), const RTNLGRP_IPV4_MROUTE = 6
    pkg syscall (linux-386), const RTNLGRP_IPV4_MROUTE ideal-int
    pkg syscall (linux-386), const RTNLGRP_IPV4_ROUTE = 7
    pkg syscall (linux-386), const RTNLGRP_IPV4_ROUTE ideal-int
    pkg syscall (linux-386), const RTNLGRP_IPV4_RULE = 8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top