Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    var (
    	osreldateOnce sync.Once
    	osreldate     uint32
    )
    
    // First __DragonFly_version after September 2019 ABI changes
    // http://lists.dragonflybsd.org/pipermail/users/2019-September/358280.html
    const _dragonflyABIChangeVersion = 500705
    
    func supportsABI(ver uint32) bool {
    	osreldateOnce.Do(func() { osreldate, _ = SysctlUint32("kern.osreldate") })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K 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/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)
Back to top