Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for DayOfWeek (0.15 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()
    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/time/zoneinfo_windows.go

    	// 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
    	t := Date(year, Month(d.Month), day, int(d.Hour), int(d.Minute), int(d.Second), 0, UTC)
    	i := int(d.DayOfWeek) - int(t.Weekday())
    	if i < 0 {
    		i += 7
    	}
    	day += i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	}
    	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
    	}
    	return int(incr), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                var curDate = moment([lastYear, lastMonth, startDay, 12, minute,...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  6. src/syscall/types_windows.go

    	ParentProcessID uint32
    	PriClassBase    int32
    	Flags           uint32
    	ExeFile         [MAX_PATH]uint16
    }
    
    type Systemtime struct {
    	Year         uint16
    	Month        uint16
    	DayOfWeek    uint16
    	Day          uint16
    	Hour         uint16
    	Minute       uint16
    	Second       uint16
    	Milliseconds uint16
    }
    
    type Timezoneinformation struct {
    	Bias         int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/time/format_test.go

    	{"YearDay", "Jan  2 002 __2 2", "Feb  4 035  35 4"},
    	{"Year", "2006 6 06 _6 __6 ___6", "2009 6 09 _6 __6 ___6"},
    	{"Month", "Jan January 1 01 _1", "Feb February 2 02 _2"},
    	{"DayOfMonth", "2 02 _2 __2", "4 04  4  35"},
    	{"DayOfWeek", "Mon Monday", "Wed Wednesday"},
    	{"Hour", "15 3 03 _3", "21 9 09 _9"},
    	{"Minute", "4 04 _4", "0 00 _0"},
    	{"Second", "5 05 _5", "57 57 _57"},
    }
    
    func TestFormat(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	ExePath      [MAX_PATH]uint16
    }
    
    const SizeofModuleEntry32 = unsafe.Sizeof(ModuleEntry32{})
    
    type Systemtime struct {
    	Year         uint16
    	Month        uint16
    	DayOfWeek    uint16
    	Day          uint16
    	Hour         uint16
    	Minute       uint16
    	Second       uint16
    	Milliseconds uint16
    }
    
    type Timezoneinformation struct {
    	Bias         int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Sysinfo_t.Unit", Field, 0},
    		{"Sysinfo_t.Uptime", Field, 0},
    		{"Sysinfo_t.X_f", Field, 0},
    		{"Systemtime", Type, 0},
    		{"Systemtime.Day", Field, 0},
    		{"Systemtime.DayOfWeek", Field, 0},
    		{"Systemtime.Hour", Field, 0},
    		{"Systemtime.Milliseconds", Field, 0},
    		{"Systemtime.Minute", Field, 0},
    		{"Systemtime.Month", Field, 0},
    		{"Systemtime.Second", Field, 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)
  10. api/go1.txt

    pkg syscall (windows-386), type Systemtime struct
    pkg syscall (windows-386), type Systemtime struct, Day uint16
    pkg syscall (windows-386), type Systemtime struct, DayOfWeek uint16
    pkg syscall (windows-386), type Systemtime struct, Hour uint16
    pkg syscall (windows-386), type Systemtime struct, Milliseconds uint16
    pkg syscall (windows-386), type Systemtime struct, Minute uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top