Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for September (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});Xo.format=ac.numberFormat,Xo.geo={},re.prototype={s:0,t:0,add:function(n){ue(n,this.t,cc),ue(cc.s,this.s,this),this.s?this....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg time, const RFC850 = "Monday, 02-Jan-06 15:04:05 MST"
    pkg time, const RubyDate = "Mon Jan 02 15:04:05 -0700 2006"
    pkg time, const Saturday = 6
    pkg time, const Second = 1000000000
    pkg time, const September = 9
    pkg time, const Stamp = "Jan _2 15:04:05"
    pkg time, const StampMicro = "Jan _2 15:04:05.000000"
    pkg time, const StampMilli = "Jan _2 15:04:05.000"
    pkg time, const StampNano = "Jan _2 15:04:05.000000000"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top