Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,785 for Hour (0.04 sec)

  1. src/time/zoneinfo.go

    	// Most calls to FixedZone have an unnamed zone with an offset by the hour.
    	// Optimize for that case by returning the same *Location for a given hour.
    	const hoursBeforeUTC = 12
    	const hoursAfterUTC = 14
    	hour := offset / 60 / 60
    	if name == "" && -hoursBeforeUTC <= hour && hour <= +hoursAfterUTC && hour*60*60 == offset {
    		unnamedFixedZonesOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server_test.go

    			},
    			wantLeaderElection: &componentbaseconfig.LeaderElectionConfiguration{
    				LeaderElect:       false,                                    // from CLI args
    				LeaseDuration:     metav1.Duration{Duration: 2 * time.Hour}, // from CLI args
    				RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    				RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    				ResourceLock:      "leases",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/cache.go

    // Go developers found that essentially all reuse of cached entries happened
    // within 5 days of the previous reuse. See golang.org/issue/22990.
    const (
    	mtimeInterval = 1 * time.Hour
    	trimInterval  = 24 * time.Hour
    	trimLimit     = 5 * 24 * time.Hour
    )
    
    // used makes a best-effort attempt to update mtime on file,
    // so that mtime reflects cache access time.
    //
    // Because the reflection only needs to be approximate,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "EvaluatorTimestampFormatPatternHourClockAmPmMismatch",
    		message:    "Time stamp format pattern contains a 12-hour hour of day format symbol but doesn't also contain an AM/PM field, or it contains a 24-hour hour of day format specifier and contains an AM/PM field in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    func getDefaultSelfSignedIstioCAOptions(fclient *fake.Clientset) *IstioCAOptions {
    	caCertTTL := time.Hour
    	defaultCertTTL := 30 * time.Minute
    	maxCertTTL := time.Hour
    	org := "test.ca.Org"
    	client := fake.NewSimpleClientset().CoreV1()
    	if fclient != nil {
    		client = fclient.CoreV1()
    	}
    	rootCertFile := ""
    	rootCertCheckInverval := time.Hour
    	rsaKeySize := 2048
    
    	caopts, _ := NewSelfSignedIstioCAOptions(context.Background(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. pkg/log/config.go

    	buf[4] = '-'
    	buf[5] = byte((month)/10) + '0'
    	buf[6] = byte((month)%10) + '0'
    	buf[7] = '-'
    	buf[8] = byte((day)/10) + '0'
    	buf[9] = byte((day)%10) + '0'
    	buf[10] = 'T'
    	buf[11] = byte((hour)/10) + '0'
    	buf[12] = byte((hour)%10) + '0'
    	buf[13] = ':'
    	buf[14] = byte((minute)/10) + '0'
    	buf[15] = byte((minute)%10) + '0'
    	buf[16] = ':'
    	buf[17] = byte((second)/10) + '0'
    	buf[18] = byte((second)%10) + '0'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/net/tcpsock_test.go

    	if err != nil {
    		b.Fatal(err)
    	}
    	defer c.Close()
    	if err := <-done; err != nil {
    		b.Fatal(err)
    	}
    	defer serv.Close()
    	c.SetWriteDeadline(time.Now().Add(2 * time.Hour))
    	deadline := time.Now().Add(time.Hour)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		c.SetReadDeadline(deadline)
    		deadline = deadline.Add(1)
    	}
    }
    
    func TestDialTCPDefaultKeepAlive(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/options.go

    			lowBound := time.Hour
    			upBound := time.Duration(1<<32) * time.Second
    			if completed.Authentication.ServiceAccounts.MaxExpiration < lowBound ||
    				completed.Authentication.ServiceAccounts.MaxExpiration > upBound {
    				return CompletedOptions{}, fmt.Errorf("the service-account-max-token-expiration must be between 1 hour and 2^32 seconds")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Cookie.kt

          var hour = -1
          var minute = -1
          var second = -1
          var dayOfMonth = -1
          var month = -1
          var year = -1
          val matcher = TIME_PATTERN.matcher(s)
    
          while (pos < limit) {
            val end = dateCharacterOffset(s, pos + 1, limit, true)
            matcher.region(pos, end)
    
            when {
              hour == -1 && matcher.usePattern(TIME_PATTERN).matches() -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                }
                else {
                    // t not in DST so subtract 1 hour
                    t -= 3600000;
                }
            }
            else {
                // not in DST
                if ( cfg.getLocalTimezone().inDaylightTime(new Date(t)) ) {
                    // t is in DST so add 1 hour
                    t += 3600000;
                }
                else {
                    // t isn't in DST either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
Back to top