Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for September (0.19 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. cmd/update_test.go

    }
    
    func TestReleaseTagToNFromTimeConversion(t *testing.T) {
    	utcLoc, _ := time.LoadLocation("")
    	testCases := []struct {
    		t      time.Time
    		tag    string
    		errStr string
    	}{
    		{
    			time.Date(2017, time.September, 29, 19, 16, 56, 0, utcLoc),
    			"RELEASE.2017-09-29T19-16-56Z", "",
    		},
    		{
    			time.Date(2017, time.August, 5, 0, 0, 53, 0, utcLoc),
    			"RELEASE.2017-08-05T00-00-53Z", "",
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    Build time:   2020-06-02 20:46:21 UTC
    Revision:     a27f41e4ae5e8a41ab9b19f8dd6d86d7b384dad4
    
    Kotlin:       1.3.72
    Groovy:       2.5.11
    Ant:          Apache Ant(TM) version 1.10.7 compiled on September 1 2019
    JVM:          14 (AdoptOpenJDK 14+36)
    OS:           Mac OS X 10.15.2 x86_64
    ----
    
    If not, here are some things you might see instead.
    
    === Command not found: gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	fmt.Println(time.Unix(1e9, 0).UTC())     // 1e9 seconds
    	fmt.Println(time.Unix(0, 1e18).UTC())    // 1e18 nanoseconds
    	fmt.Println(time.Unix(2e9, -1e18).UTC()) // 2e9 seconds - 1e18 nanoseconds
    
    	t := time.Date(2001, time.September, 9, 1, 46, 40, 0, time.UTC)
    	fmt.Println(t.Unix())     // seconds since 1970
    	fmt.Println(t.UnixNano()) // nanoseconds since 1970
    
    	// Output:
    	// 2001-09-09 01:46:40 +0000 UTC
    	// 2001-09-09 01:46:40 +0000 UTC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The https://pmd.github.io/[PMD Plugin] now uses https://pmd.github.io/pmd-6.8.0/pmd_release_notes.html#30-september-2018---680[6.8.0] instead of 5.6.1 by default.
    +
    In addition, the default ruleset was changed from the now deprecated `java-basic` to `category/java/errorprone.xml`.
    +
    We recommend configuring a ruleset explicitly, though.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"RFC3339Nano", Const, 0},
    		{"RFC822", Const, 0},
    		{"RFC822Z", Const, 0},
    		{"RFC850", Const, 0},
    		{"RubyDate", Const, 0},
    		{"Saturday", Const, 0},
    		{"Second", Const, 0},
    		{"September", Const, 0},
    		{"Since", Func, 0},
    		{"Sleep", Func, 0},
    		{"Stamp", Const, 0},
    		{"StampMicro", Const, 0},
    		{"StampMilli", Const, 0},
    		{"StampNano", Const, 0},
    		{"Sunday", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    32C7          ; mapped                 ; 0038 6708     # 1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR AUGUST
    32C8          ; mapped                 ; 0039 6708     # 1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR SEPTEMBER
    32C9          ; mapped                 ; 0031 0030 6708 #1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR OCTOBER
    32CA          ; mapped                 ; 0031 0031 6708 #1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR NOVEMBER
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top