Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ISOWeek (0.43 sec)

  1. src/go/internal/gccgoimporter/testdata/issue29198.gox

     func (t <esc:0x12> <type 12>) Round (d <type 26>) <type 12>;
     func (t <esc:0x1> <type 12>) Minute () <type -11>;
     func (t <esc:0x1> <type 12>) Clock () (hour <type -11>, min <type -11>, sec <type -11>);
     func (t <esc:0x1> <type 12>) ISOWeek () (year <type -11>, week <type -11>);
     func (t <esc:0x1> <type 12>) Day () <type -11>;
     func (t <esc:0x1> <type 28 *<type 12>>) .time.mono () <type -4>;
     func (t <esc:0x1> <type 12>) UnixNano () <type -4>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	{"Day", func(t1, t2 Time) bool { return t1.Day() == t2.Day() }},
    	{"Weekday", func(t1, t2 Time) bool { return t1.Weekday() == t2.Weekday() }},
    	{"ISOWeek", func(t1, t2 Time) bool {
    		a1, b1 := t1.ISOWeek()
    		a2, b2 := t2.ISOWeek()
    		return a1 == a2 && b1 == b2
    	}},
    	{"Clock", func(t1, t2 Time) bool {
    		a1, b1, c1 := t1.Clock()
    		a2, b2, c2 := t2.Clock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/time.gox

     func (t <type 3>) Month () <type 18>;
     func (t <type 3>) Day () <type -11>;
     func (t <type 3>) Weekday () <type 19 "Weekday" <type -11>
     func (d <type 19>) String () <type -16>;
    >;
     func (t <type 3>) ISOWeek () (year <type -11>, week <type -11>);
     func (t <type 3>) Clock () (hour <type -11>, min <type -11>, sec <type -11>);
     func (t <type 3>) Hour () <type -11>;
     func (t <type 3>) Minute () <type -11>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  4. src/time/time.go

    	return Weekday(int(sec) / secondsPerDay)
    }
    
    // ISOWeek returns the ISO 8601 year and week number in which t occurs.
    // Week ranges from 1 to 53. Jan 01 to Jan 03 of year n might belong to
    // week 52 or 53 of year n-1, and Dec 29 to Dec 31 might belong to week 1
    // of year n+1.
    func (t Time) ISOWeek() (year, week int) {
    	// According to the rule that the first calendar week of a calendar year is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                        if (calendar[row][col].isSame(new...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/moment-with-locales.min.js

    r<1?s=r+Ce(n=e.year()-1,a,t):r>Ce(e.year(),a,t)?(s=r-Ce(e.year(),a,t),n=e.year()+1):(n=e.year(),s=r),{week:s,year:n}}function Ce(e,a,t){var s=Ne(e,a,t),n=Ne(e+1,a,t);return(Te(e)-s+n)/7}I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),P("week","w"),P("isoWeek","W"),A("week",5),A("isoWeek",5),ie("w",B),ie("ww",B,V),ie("W",B),ie("WW",B,V),Me(["w","ww","W","WW"],function(e,a,t,s){a[s.substr(0,1)]=g(e)});I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Time).Day", Method, 0},
    		{"(Time).Equal", Method, 0},
    		{"(Time).Format", Method, 0},
    		{"(Time).GoString", Method, 17},
    		{"(Time).GobEncode", Method, 0},
    		{"(Time).Hour", Method, 0},
    		{"(Time).ISOWeek", Method, 0},
    		{"(Time).In", Method, 0},
    		{"(Time).IsDST", Method, 17},
    		{"(Time).IsZero", Method, 0},
    		{"(Time).Local", Method, 0},
    		{"(Time).Location", Method, 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)
  8. api/go1.txt

    pkg time, method (Time) Equal(Time) bool
    pkg time, method (Time) Format(string) string
    pkg time, method (Time) GobEncode() ([]uint8, error)
    pkg time, method (Time) Hour() int
    pkg time, method (Time) ISOWeek() (int, int)
    pkg time, method (Time) In(*Location) Time
    pkg time, method (Time) IsZero() bool
    pkg time, method (Time) Local() Time
    pkg time, method (Time) Location() *Location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top