Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,976 for Hour (0.06 sec)

  1. src/time/zoneinfo_windows.go

    	// 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
    	if week := int(d.Day) - 1; week < 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. cmd/license-update.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/wasm/options.go

    // limitations under the License.
    
    package wasm
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	DefaultPurgeInterval         = 1 * time.Hour
    	DefaultModuleExpiry          = 24 * time.Hour
    	DefaultHTTPRequestTimeout    = 15 * time.Second
    	DefaultHTTPRequestMaxRetries = 5
    )
    
    // Options contains configurations to create a Cache instance.
    type Options struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. .github/workflows/feedback.yml

    name: Feedback
    
    on:
      schedule:
        - cron: '0 * * * *' # every hour
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 516 bytes
    - Viewed (1)
  5. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

                            schedulingPolicy = daily {
                                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)
  6. .teamcity/src/main/kotlin/configurations/StagePasses.kt

                    schedulingPolicy = weekly {
                        dayOfWeek = ScheduleTrigger.DAY.Saturday
                        hour = 1
                    }
                } else {
                    schedulingPolicy = daily {
                        hour = 0
                        minute = 30
                    }
                }
                triggerBuild = always()
                withPendingChangesOnly = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonStopEventsTest.groovy

        }
    
        def "uniqueRecentDaemonStopEvents() omits stop events older than 1 hour"() {
            given:
            Calendar calendar = Calendar.getInstance()
            calendar.add(Calendar.HOUR, -1)
            Date oneHourAgo = calendar.time
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.5,
    			expected:    time.Minute * 30,
    		},
    		{
    			name:        "grace period .25",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.25,
    			expected:    time.Minute * 45,
    		},
    		{
    			name:        "grace period .75",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.75,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/time/time.go

    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    	sec = int(abs % secondsPerDay)
    	hour = sec / secondsPerHour
    	sec -= hour * secondsPerHour
    	min = sec / secondsPerMinute
    	sec -= min * secondsPerMinute
    	return
    }
    
    // Hour returns the hour within the day specified by t, in the range [0, 23].
    func (t Time) Hour() int {
    	return int(t.abs()%secondsPerDay) / secondsPerHour
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/kubelet/util/queue/work_queue_test.go

    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    }
    
    func TestNewBasicWorkQueue(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top