Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for daysBefore (0.36 sec)

  1. src/time/time.go

    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    	} else {
    		begin = int(daysBefore[month])
    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    // daysBefore[m] counts the number of days in a non-leap year
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    		d := r.day - dow
    		if d < 0 {
    			d += 7
    		}
    		for i := 1; i < r.week; i++ {
    			if d+7 >= daysIn(Month(r.mon), year) {
    				break
    			}
    			d += 7
    		}
    		d += int(daysBefore[r.mon-1])
    		if isLeap(year) && r.mon > 2 {
    			d++
    		}
    		s = d * secondsPerDay
    	}
    
    	return s + r.time - off
    }
    
    // lookupName returns information about the time zone with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/time/format.go

    		if yday < 1 || yday > 365 {
    			return Time{}, newParseError(alayout, avalue, "", value, ": day-of-year out of range")
    		}
    		if m == 0 {
    			m = (yday-1)/31 + 1
    			if int(daysBefore[m]) < yday {
    				m++
    			}
    			d = yday - int(daysBefore[m-1])
    		}
    		// If month, day already seen, yday's m, d must match.
    		// Otherwise, set them from m, d.
    		if month >= 0 && month != m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/main/webapp/css/font-awesome.min.css

    fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{cont...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/font-awesome.min.css

    fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{cont...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top