Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for September (0.13 sec)

  1. src/time/time_test.go

    		// Sunday, 15 September 1991, 02:00:00 clocks were turned backward 1 hour to
    		// Sunday, 15 September 1991, 01:00:00 local standard time instead.
    		// The UTC time was 14 September 1991, 17:00:00
    		4: {Date(1991, September, 14, 16, 50, 0, 0, loc), Date(1991, September, 14, 7, 50, 0, 0, UTC)},
    		5: {Date(1991, September, 14, 17, 0, 0, 0, loc), Date(1991, September, 14, 8, 0, 0, 0, UTC)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/time/format.go

    	"Aug",
    	"Sep",
    	"Oct",
    	"Nov",
    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    	"May",
    	"June",
    	"July",
    	"August",
    	"September",
    	"October",
    	"November",
    	"December",
    }
    
    // match reports whether s1 and s2 match ignoring case.
    // It is assumed s1 and s2 are the same length.
    func match(s1, s2 string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    // while the recursive call using m2 will use expNNMontgomery.
    // For more details, see Ç. K. Koç, “Montgomery Reduction with Even Modulus”,
    // IEE Proceedings: Computers and Digital Techniques, 141(5) 314-316, September 1994.
    // http://www.people.vcu.edu/~jwang3/CMSC691/j34monex.pdf
    func (z nat) expNNMontgomeryEven(x, y, m nat) nat {
    	// Split m = m₁ × m₂ where m₁ = 2ⁿ
    	n := m.trailingZeroBits()
    	m1 := nat(nil).shl(natOne, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/time/time.go

    }
    
    // A Month specifies a month of the year (January = 1, ...).
    type Month int
    
    const (
    	January Month = 1 + iota
    	February
    	March
    	April
    	May
    	June
    	July
    	August
    	September
    	October
    	November
    	December
    )
    
    // String returns the English name of the month ("January", "February", ...).
    func (m Month) String() string {
    	if January <= m && m <= December {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top