Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for sunday (0.11 sec)

  1. .github/workflows/sigbuild-docker.yml

    # ==============================================================================
    
    name: Upload SIG Build docker containers regularly
    
    on:
      workflow_dispatch:
      schedule:
          # Run once a week on Sunday at midnight. See http://crontab.guru
          - cron: '0 0 * * 0'
      push:
        paths:
          - '.github/workflows/sigbuild-docker.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	{2152173599, parsedTime{2038, March, 14, 1, 59, 59, 0, Sunday, -8 * 60 * 60, "PST"}},
    	{2152173600, parsedTime{2038, March, 14, 3, 0, 0, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2152173601, parsedTime{2038, March, 14, 3, 0, 1, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2172733199, parsedTime{2038, November, 7, 1, 59, 59, 0, Sunday, -7 * 60 * 60, "PDT"}},
    	{2172733200, parsedTime{2038, November, 7, 1, 0, 0, 0, Sunday, -8 * 60 * 60, "PST"}},
    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/net/http/header_test.go

    }{
    	{Header{"Date": {""}}, true},
    	{Header{"Date": {"invalid"}}, true},
    	{Header{"Date": {"1994-11-06T08:49:37Z00:00"}}, true},
    	{Header{"Date": {"Sun, 06 Nov 1994 08:49:37 GMT"}}, false},
    	{Header{"Date": {"Sunday, 06-Nov-94 08:49:37 GMT"}}, false},
    	{Header{"Date": {"Sun Nov  6 08:49:37 1994"}}, false},
    }
    
    func TestParseTime(t *testing.T) {
    	expect := time.Date(1994, 11, 6, 8, 49, 37, 0, time.UTC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.input

    	gggggggggggg(x, y, z int) ()  // hurray
    }
    
    
    // formatting of variable declarations
    func _() {
    	type day struct { n int; short, long string }
    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    		Monday = day{ 1, "MON", "Monday" }
    		Tuesday = day{ 2, "TUE", "Tuesday" }
    		Wednesday = day{ 3, "WED", "Wednesday" }
    		Thursday = day{ 4, "THU", "Thursday" }
    		Friday = day{ 5, "FRI", "Friday" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  5. src/go/printer/testdata/declarations.golden

    	gggggggggggg(x, y, z int)	// hurray
    }
    
    // formatting of variable declarations
    func _() {
    	type day struct {
    		n		int
    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    		Monday		= day{1, "MON", "Monday"}
    		Tuesday		= day{2, "TUE", "Tuesday"}
    		Wednesday	= day{3, "WED", "Wednesday"}
    		Thursday	= day{4, "THU", "Thursday"}
    		Friday		= day{5, "FRI", "Friday"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/time.gox

    const Stamp = "Jan _2 15:04:05";
    const StampMicro = "Jan _2 15:04:05.000000";
    const StampMilli = "Jan _2 15:04:05.000";
    const StampNano = "Jan _2 15:04:05.000000000";
    const Sunday <type 19> = 0 ;
    const Thursday <type 19> = 4 ;
    func Tick (d <type 1>) <type 54 chan <- <type 3>>;
    type <type 46>;
    type <type 3>;
    type <type 33>;
    const Tuesday <type 19> = 2 ;
    var UTC <type 15>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  7. src/time/time.go

    }
    
    // A Weekday specifies a day of the week (Sunday = 0, ...).
    type Weekday int
    
    const (
    	Sunday Weekday = iota
    	Monday
    	Tuesday
    	Wednesday
    	Thursday
    	Friday
    	Saturday
    )
    
    // String returns the English name of the day ("Sunday", "Monday", ...).
    func (d Weekday) String() string {
    	if Sunday <= d && d <= Saturday {
    		return longDayNames[d]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/time/zoneinfo_windows.go

    func pseudoUnix(year int, d *syscall.Systemtime) int64 {
    	// Windows specifies daylight savings information in "day in month" format:
    	// d.Month is month number (1-12)
    	// d.DayOfWeek is appropriate weekday (Sunday=0 to Saturday=6)
    	// d.Day is week within the month (1 to 5, where 5 is last week of the month)
    	// d.Hour, d.Minute and d.Second are absolute time
    	day := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/doc/pkg.go

    	astPkg := pkgs[pkg.Name]
    
    	// TODO: go/doc does not include typed constants in the constants
    	// list, which is what we want. For instance, time.Sunday is of type
    	// time.Weekday, so it is defined in the type but not in the
    	// Consts list for the package. This prevents
    	//	go doc time.Sunday
    	// from finding the symbol. Work around this for now, but we
    	// should fix it in go/doc.
    	// A similar story applies to factory functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// so we just fail
    	if err != nil {
    		return 0, err
    	}
    	buf = bytes.TrimSpace(buf)
    	if len(buf) == 0 {
    		return 0, fmt.Errorf("empty weekends file")
    	}
    	dayofweek := time.Weekday(buf[0] - '0') // 0 is Sunday
    	// paranoia to make sure the value is legal
    	dayofweek %= 7
    	if dayofweek < 0 {
    		dayofweek += 7
    	}
    	today := now.Weekday()
    	incr := dayofweek - today
    	if incr <= 0 {
    		incr += 7
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top