Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for minutes (0.22 sec)

  1. api/go1.txt

    pkg time, method (*Time) GobDecode([]uint8) error
    pkg time, method (*Time) UnmarshalJSON([]uint8) error
    pkg time, method (*Timer) Stop() bool
    pkg time, method (Duration) Hours() float64
    pkg time, method (Duration) Minutes() float64
    pkg time, method (Duration) Nanoseconds() int64
    pkg time, method (Duration) Seconds() float64
    pkg time, method (Duration) String() string
    pkg time, method (Month) String() string
    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)
  2. api/go1.1.txt

    pkg time, const June = 6
    pkg time, const Kitchen = "3:04PM"
    pkg time, const March = 3
    pkg time, const May = 5
    pkg time, const Microsecond = 1000
    pkg time, const Millisecond = 1000000
    pkg time, const Minute = 60000000000
    pkg time, const Monday = 1
    pkg time, const Nanosecond = 1
    pkg time, const November = 11
    pkg time, const October = 10
    pkg time, const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST"
    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)
  3. 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 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  4. doc/asm.html

    not <code>3&amp;(1&lt;&lt;2)</code>.
    Also, constants are always evaluated as 64-bit unsigned integers.
    Thus <code>-2</code> is not the integer value minus two,
    but the unsigned 64-bit integer with the same bit pattern.
    The distinction rarely matters but
    to avoid ambiguity, division or right shift where the right operand's
    high bit is set is rejected.
    </p>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arch.go

    	instructions["JLS"] = x86.AJLS  /* lower or same (unsigned) (CF = 1 || ZF = 1) */
    	instructions["JLT"] = x86.AJLT  /* less than (signed) (SF != OF) */
    	instructions["JMI"] = x86.AJMI  /* negative (minus) (SF = 1) */
    	instructions["JNA"] = x86.AJLS  /* alternate */
    	instructions["JNAE"] = x86.AJCS /* alternate */
    	instructions["JNB"] = x86.AJCC  /* alternate */
    	instructions["JNBE"] = x86.AJHI /* alternate */
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  6. doc/go1.22.html

    is like
    <a href="/pkg/math/rand/v2/#Int64N"><code>Int64N</code></a> or
    <a href="/pkg/math/rand/v2/#Uint64N"><code>Uint64N</code></a>
    but works for any integer type.
    For example a random duration from 0 up to 5 minutes is
    <code>rand.N(5*time.Minute)</code>.
    
    <li>The Mitchell & Reeds LFSR generator provided by
    <a href="/pkg/math/rand/#Source"><code>math/rand</code>’s <code>Source</code></a>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  7. src/archive/zip/writer.go

    		var buf [directory64EndLen + directory64LocLen]byte
    		b := writeBuf(buf[:])
    
    		// zip64 end of central directory record
    		b.uint32(directory64EndSignature)
    		b.uint64(directory64EndLen - 12) // length minus signature (uint32) and length fields (uint64)
    		b.uint16(zipVersion45)           // version made by
    		b.uint16(zipVersion45)           // version needed to extract
    		b.uint32(0)                      // number of this disk
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top