Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dow (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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