Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,994 for Hour (0.04 sec)

  1. 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)
  2. cmd/kubelet/app/server_bootstrap_test.go

    	// use config1 to refresh it and the cert manager won't return it for clients.
    	config2.CertData, config2.KeyData = genClientCert(t, time.Now().Add(-2*time.Hour), time.Now().Add(-time.Hour))
    	if _, err := buildClientCertificateManager(config1, config2, testDir, nodeName); err != nil {
    		t.Fatal(err)
    	}
    	fi = getFileInfo(testDir)
    	if len(fi) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. internal/s3select/sql/timestampfuncs_test.go

    package sql
    
    import (
    	"testing"
    	"time"
    )
    
    func TestParseAndDisplaySQLTimestamp(t *testing.T) {
    	beijing := time.FixedZone("", int((8 * time.Hour).Seconds()))
    	fakeLosAngeles := time.FixedZone("", -int((8 * time.Hour).Seconds()))
    	cases := []struct {
    		s string
    		t time.Time
    	}{
    		{"2010T", time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC)},
    		{"2010-02T", time.Date(2010, 2, 1, 0, 0, 0, 0, time.UTC)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.2K 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. src/go/internal/gccgoimporter/testdata/time.gox

     func (d <type 19>) String () <type -16>;
    >;
     func (t <type 3>) ISOWeek () (year <type -11>, week <type -11>);
     func (t <type 3>) Clock () (hour <type -11>, min <type -11>, sec <type -11>);
     func (t <type 3>) Hour () <type -11>;
     func (t <type 3>) Minute () <type -11>;
     func (t <type 3>) Second () <type -11>;
     func (t <type 3>) Nanosecond () <type -11>;
     func (t <type 3>) YearDay () <type -11>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
Back to top