Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for saturday (0.7 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

                                this.hour = triggerHour
                            }
                        } else {
                            schedulingPolicy = weekly {
                                this.dayOfWeek = ScheduleTrigger.DAY.Saturday
                                this.hour = triggerHour
                            }
                        }
                        triggerBuild = always()
                        withPendingChangesOnly = branch.isMainBranch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/StagePasses.kt

        } else if (stage.trigger != Trigger.never) {
            triggers.schedule {
                if (stage.trigger == Trigger.weekly) {
                    schedulingPolicy = weekly {
                        dayOfWeek = ScheduleTrigger.DAY.Saturday
                        hour = 1
                    }
                } else {
                    schedulingPolicy = daily {
                        hour = 0
                        minute = 30
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.input

    		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" }
    		Saturday = day{ 6, "SAT", "Saturday" }
    	)
    }
    
    
    // formatting of multi-line variable declarations
    var a1, b1, c1 int  // all on one line
    
    var a2, b2,
    c2 int  // this line should be indented
    
    var (a3, b3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/time.gox

    const RFC822 = "02 Jan 06 15:04 MST";
    const RFC822Z = "02 Jan 06 15:04 -0700";
    const RFC850 = "Monday, 02-Jan-06 15:04:05 MST";
    const RubyDate = "Mon Jan 02 15:04:05 -0700 2006";
    const Saturday <type 19> = 6 ;
    const Second <type 1> = 1000000000 ;
    const September <type 18> = 9 ;
    func Since (t <type 3>) <type 1>;
    func Sleep (d <type 1>);
    const Stamp = "Jan _2 15:04:05";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. src/go/printer/testdata/declarations.golden

    		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"}
    		Saturday	= day{6, "SAT", "Saturday"}
    	)
    }
    
    // formatting of multi-line variable declarations
    var a1, b1, c1 int	// all on one line
    
    var a2, b2,
    	c2 int	// this line should be indented
    
    var (
    	a3, b3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  7. src/time/time.go

    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]
    	}
    	buf := make([]byte, 20)
    	n := fmtInt(buf, uint64(d))
    	return "%!Weekday(" + string(buf[n:]) + ")"
    }
    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/format.go

    				}
    			}
    		}
    	}
    	return layout, 0, ""
    }
    
    var longDayNames = []string{
    	"Sunday",
    	"Monday",
    	"Tuesday",
    	"Wednesday",
    	"Thursday",
    	"Friday",
    	"Saturday",
    }
    
    var shortDayNames = []string{
    	"Sun",
    	"Mon",
    	"Tue",
    	"Wed",
    	"Thu",
    	"Fri",
    	"Sat",
    }
    
    var shortMonthNames = []string{
    	"Jan",
    	"Feb",
    	"Mar",
    	"Apr",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/time/time_test.go

    	{-1221681866, parsedTime{1931, April, 16, 3, 55, 34, 0, Thursday, 0, "UTC"}},
    	{-11644473600, parsedTime{1601, January, 1, 0, 0, 0, 0, Monday, 0, "UTC"}},
    	{599529660, parsedTime{1988, December, 31, 0, 1, 0, 0, Saturday, 0, "UTC"}},
    	{978220860, parsedTime{2000, December, 31, 0, 1, 0, 0, Sunday, 0, "UTC"}},
    }
    
    var nanoutctests = []TimeTest{
    	{0, parsedTime{1970, January, 1, 0, 0, 0, 1e8, Thursday, 0, "UTC"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"RFC1123Z", Const, 0},
    		{"RFC3339", Const, 0},
    		{"RFC3339Nano", Const, 0},
    		{"RFC822", Const, 0},
    		{"RFC822Z", Const, 0},
    		{"RFC850", Const, 0},
    		{"RubyDate", Const, 0},
    		{"Saturday", Const, 0},
    		{"Second", Const, 0},
    		{"September", Const, 0},
    		{"Since", Func, 0},
    		{"Sleep", Func, 0},
    		{"Stamp", Const, 0},
    		{"StampMicro", Const, 0},
    		{"StampMilli", Const, 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)
Back to top