Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dow (0.02 sec)

  1. test/fixedbugs/bug399.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2674
    
    package main
    const dow = "\000\003"
    
    func main() {
    	println(int(dow[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 263 bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/moment-with-locales.min.js

    h(this,"_monthsShortRegex")||(this._monthsShortRegex=Ae),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},mt.week=function(e){return Ie(e,this._week.dow,this._week.doy).week},mt.firstDayOfYear=function(){return this._week.doy},mt.firstDayOfWeek=function(){return this._week.dow},mt.weekdays=function(e,a){return e?_(this._weekdays)?this._weekdays[e.day()]:this._weekdays[this._weekdays.isFormat.test(a)?"format":"standalone"][e.day()]:_(this._weekdays)?this._week...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    		yy0 := year
    		if r.mon <= 2 {
    			yy0--
    		}
    		yy1 := yy0 / 100
    		yy2 := yy0 % 100
    		dow := ((26*m1-2)/10 + 1 + yy2 + yy2/4 + yy1/4 - 2*yy1) % 7
    		if dow < 0 {
    			dow += 7
    		}
    		// Now dow is the day-of-week of the first day of r.mon.
    		// Get the day-of-month of the first "dow" day.
    		d := r.day - dow
    		if d < 0 {
    			d += 7
    		}
    		for i := 1; i < r.week; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                    }
                }
            }
            return null;
        }
    
        private static String getDateString(final String text) {
            for (final String dow : DAY_OF_WEEK) {
                final int i = text.lastIndexOf(dow);
                if (i != -1) {
                    return text.substring(i);
                }
            }
            return null;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    	}
    	if now.Before(t2) {
    		return earliestTime, &t1, missedSchedules, nil
    	}
    
    	// It is possible for cron.ParseStandard("59 23 31 2 *") to return an invalid schedule
    	// minute - 59, hour - 23, dom - 31, month - 2, and dow is optional, clearly 31 is invalid
    	// In this case the timeBetweenTwoSchedules will be 0, and we error out the invalid schedule
    	timeBetweenTwoSchedules := int64(t2.Sub(t1).Round(time.Second).Seconds())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    	zones := [...]string{"-0700", "MST", "UT"} // zone = (("+" / "-") 4DIGIT) / "UT" / "GMT" / ...
    
    	for _, dow := range dows {
    		for _, day := range days {
    			for _, year := range years {
    				for _, second := range seconds {
    					for _, zone := range zones {
    						s := dow + day + " Jan " + year + " 15:04" + second + " " + zone
    						dateLayouts = append(dateLayouts, s)
    					}
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top