Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,785 for Hour (0.04 sec)

  1. cmd/bucket-stats.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: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/credentialprovider/plugin/plugin_test.go

    		cache:          cache.NewExpirationStore(cacheKeyFunc, &cacheExpirationPolicy{clock: tclock}),
    		plugin: &fakeExecPlugin{
    			cacheKeyType:  credentialproviderapi.RegistryPluginCacheKeyType,
    			cacheDuration: time.Hour,
    			auth: map[string]credentialproviderapi.AuthConfig{
    				"*.registry.io": {
    					Username: "user",
    					Password: "password",
    				},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    } else {
                        // t not in DST so subtract 1 hour
                        t -= 3600000;
                    }
                } else {
                    // not in DST
                    if( TZ.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: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  4. internal/rest/client.go

    // https://www.awsarchitectureblog.com/2015/03/backoff.html
    func exponentialBackoffWait(r *rand.Rand, unit, cap time.Duration) func(uint) time.Duration {
    	if unit > time.Hour {
    		// Protect against integer overflow
    		panic("unit cannot exceed one hour")
    	}
    	return func(attempt uint) time.Duration {
    		if attempt > 16 {
    			// Protect against integer overflow
    			attempt = 16
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    type Reactor struct {
    	verb       string
    	objectType string
    	reaction   fakeclient.ReactionFunc
    }
    
    func testTryAcquireOrRenew(t *testing.T, objectType string) {
    	future := time.Now().Add(1000 * time.Hour)
    	past := time.Now().Add(-1000 * time.Hour)
    
    	tests := []struct {
    		name           string
    		observedRecord rl.LeaderElectionRecord
    		observedTime   time.Time
    		reactors       []Reactor
    
    		key               string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  6. cmd/globals.go

    	// tmp directory are deemed stale.
    	GlobalStaleUploadsExpiry = time.Hour * 24 // 24 hrs.
    
    	// GlobalStaleUploadsCleanupInterval - Cleanup interval when the stale uploads cleanup is initiated.
    	GlobalStaleUploadsCleanupInterval = time.Hour * 6 // 6 hrs.
    
    	// Refresh interval to update in-memory iam config cache.
    	globalRefreshIAMInterval = 10 * time.Minute
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    				CurrentTime: time.Now().Add(time.Duration(-100 * time.Hour * 24 * 365)),
    				Roots:       getRootCertPool(t),
    			},
    			Certs: getCerts(t, clientCNCert),
    			User:  CommonNameUserConversion,
    
    			ExpectOK:  false,
    			ExpectErr: true,
    		},
    		"expired cert": {
    			Opts: x509.VerifyOptions{
    				CurrentTime: time.Now().Add(time.Duration(100 * time.Hour * 24 * 365)),
    				Roots:       getRootCertPool(t),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/testing/testserver.go

    		}
    
    		// make a client certificate for the api server - common name has to match one of our defined names above
    		serial, err := rand.Int(rand.Reader, new(big.Int).SetInt64(math.MaxInt64-1))
    		if err != nil {
    			return result, err
    		}
    		serial = new(big.Int).Add(serial, big.NewInt(1))
    		tenThousandHoursLater := time.Now().Add(10_000 * time.Hour)
    		certTmpl := x509.Certificate{
    			Subject: pkix.Name{
    				CommonName: "misty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/log/log.go

    			*buf = append(*buf, '/')
    			itoa(buf, int(month), 2)
    			*buf = append(*buf, '/')
    			itoa(buf, day, 2)
    			*buf = append(*buf, ' ')
    		}
    		if flag&(Ltime|Lmicroseconds) != 0 {
    			hour, min, sec := t.Clock()
    			itoa(buf, hour, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, min, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, sec, 2)
    			if flag&Lmicroseconds != 0 {
    				*buf = append(*buf, '.')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/generic_test.go

    	verifyEvents(t, expected, actual)
    }
    
    func newTestGenericPLEGWithRuntimeMock(runtimeMock kubecontainer.Runtime) *GenericPLEG {
    	pleg := &GenericPLEG{
    		relistDuration: &RelistDuration{RelistPeriod: time.Hour, RelistThreshold: 2 * time.Hour},
    		runtime:        runtimeMock,
    		eventChannel:   make(chan *PodLifecycleEvent, 1000),
    		podRecords:     make(podRecords),
    		cache:          kubecontainer.NewCache(),
    		clock:          clock.RealClock{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top