Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,994 for Hour (0.04 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "foodir/fooobject",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/race/testdata/time_test.go

    	v = 2
    	time.AfterFunc(1, f)
    	<-c
    	v = 3
    }
    
    func TestNoRaceAfterFuncReset(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	t := time.AfterFunc(time.Hour, f)
    	t.Stop()
    	v = 2
    	t.Reset(1)
    	<-c
    	v = 3
    }
    
    func TestNoRaceTimer(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	v = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:34:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/registry/certificates/certificates/storage/metrics_test.go

    				Status: certificates.CertificateSigningRequestStatus{
    					Certificate: createCert(t, time.Hour, caPrivateKey, caCert),
    				},
    			},
    			old: &certificates.CertificateSigningRequest{
    				Spec: certificates.CertificateSigningRequestSpec{
    					SignerName:        "kubernetes.io/educate-dolphins",
    					ExpirationSeconds: csr.DurationToExpirationSeconds(time.Hour),
    				},
    			},
    			options:       &metav1.UpdateOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/TimeFormattingTest.groovy

            "10 minutes"        | "1 hour"            | minutes(42.1234)                    | "42m 7s"
            "10 minutes"        | "1 hour"            | minutes(60)                         | "1h"
            "1 hour"            | "10 hours"          | minutes(61)                         | "1h 1m"
            "1 hour"            | "10 hours"          | hours(1)                            | "1h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. security/pkg/pki/ca/ca_test.go

    			},
    			maxTTL:        2 * time.Hour,
    			requestedTTL:  3 * time.Hour,
    			expectedError: "requested TTL 3h0m0s is greater than the max allowed TTL 2h0m0s",
    		},
    		"CSR uses EC TTL error": {
    			forCA: false,
    			certOpts: util.CertOptions{
    				Org:      "istio.io",
    				ECSigAlg: util.EcdsaSigAlg,
    			},
    			maxTTL:        2 * time.Hour,
    			requestedTTL:  3 * time.Hour,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    					MaxPerCore:            &ctMaxPerCore,
    					Min:                   &ctMin,
    					TCPEstablishedTimeout: &metav1.Duration{Duration: 24 * time.Hour},
    					TCPCloseWaitTimeout:   &metav1.Duration{Duration: 1 * time.Hour},
    				},
    				ConfigSyncPeriod: metav1.Duration{Duration: 15 * time.Minute},
    				Logging: logsapi.LoggingConfiguration{
    					Format:         "text",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. security/pkg/cmd/constants.go

    const (
    	// DefaultSelfSignedCACertTTL is the default TTL of self-signed CA root certificate.
    	DefaultSelfSignedCACertTTL = 3650 * 24 * time.Hour
    
    	// DefaultSelfSignedRootCertCheckInterval is the default interval a self-signed
    	// CA checks and rotates its root certificate.
    	DefaultSelfSignedRootCertCheckInterval = 1 * time.Hour
    
    	// DefaultRootCertGracePeriodPercentile is the default length of root certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 07 03:27:36 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/time/mono_test.go

    	}
    
    	tn := Now()
    	tn1 := tn.Add(1 * Hour)
    	Sleep(100 * Millisecond)
    	d := Until(tn1)
    	if d < 59*Minute {
    		t.Errorf("Until(Now().Add(1*Hour)) = %v, wanted at least 59m", d)
    	}
    	now := Now()
    	if now.After(tn1) {
    		t.Errorf("Now().After(Now().Add(1*Hour)) = true, want false")
    	}
    	if !tn1.After(now) {
    		t.Errorf("Now().Add(1*Hour).After(now) = false, want true")
    	}
    	if tn1.Before(now) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

        ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    func TestControllerV2SyncCronJob(t *testing.T) {
    	// Check expectations on deadline parameters
    	if shortDead/60/60 >= 1 {
    		t.Errorf("shortDead should be less than one hour")
    	}
    
    	if mediumDead/60/60 < 1 || mediumDead/60/60 >= 24 {
    		t.Errorf("mediumDead should be between one hour and one day")
    	}
    
    	if longDead/60/60/24 < 10 {
    		t.Errorf("longDead should be at least ten days")
    	}
    
    	testCases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top