Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,539 for Hour (0.88 sec)

  1. pkg/model/proxy.go

    	CertBaseDir string `json:"BASE,omitempty"`
    
    	// IdleTimeout specifies the idle timeout for the proxy, in duration format (10s).
    	// If not set, default timeout is 1 hour.
    	IdleTimeout string `json:"IDLE_TIMEOUT,omitempty"`
    
    	// HTTP10 indicates the application behind the sidecar is making outbound http requests with HTTP/1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_test.go

    					Name: "fakeNode",
    				},
    				Spec: api.NodeSpec{},
    			})
    
    			client := fakeclient.NewSimpleClientset(objs...)
    
    			factory := informers.NewSharedInformerFactory(client, time.Hour /* disable resync */)
    			csiDriverInformer := factory.Storage().V1().CSIDrivers()
    			volumeAttachmentInformer := factory.Storage().V1().VolumeAttachments()
    			if driverInfo != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			return State{}, errGen
    		}
    		return State{
    			Transformer:         transformer,
    			EncryptedObject:     *encObject,
    			UID:                 "panda",
    			ExpirationTimestamp: clock.Now().Add(time.Hour),
    			CacheKey:            cacheKey,
    		}, nil
    	}
    }
    
    // TestEnvelopeTransformerStaleness validates that staleness checks on read honor the data returned from the StateFunc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  4. cmd/erasure-healing-common_test.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: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/syscall/types_windows.go

    	PriClassBase    int32
    	Flags           uint32
    	ExeFile         [MAX_PATH]uint16
    }
    
    type Systemtime struct {
    	Year         uint16
    	Month        uint16
    	DayOfWeek    uint16
    	Day          uint16
    	Hour         uint16
    	Minute       uint16
    	Second       uint16
    	Milliseconds uint16
    }
    
    type Timezoneinformation struct {
    	Bias         int32
    	StandardName [32]uint16
    	StandardDate Systemtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    	// backoff at least 1ms, 2ms, 4ms, 8ms, 10ms, 10ms, 10ms
    	durationFactors := []time.Duration{1, 2, 4, 8, 10, 10, 10}
    	backoffMgr := NewExponentialBackoffManager(1*time.Millisecond, 10*time.Millisecond, 1*time.Hour, 2.0, 0.0, &clock.RealClock{})
    
    	for i := range durationFactors {
    		start := time.Now()
    		<-backoffMgr.Backoff().C()
    		passed := time.Since(start)
    		if passed < durationFactors[i]*time.Millisecond {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		go w.Stop()
    		select {
    		case <-done:
    		case <-time.After(time.Second):
    			t.Fatal("stop is blocked when the timer is fired concurrently")
    		}
    	}
    
    	deadline := time.Now().Add(time.Hour)
    	// After that, verifies the cacheWatcher.process goroutine works correctly.
    	for i := 0; i < maxRetriesToProduceTheRaceCondition; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	// - none
    	//
    	// This is used only in agent.
    	PilotCertProvider string
    
    	// secret TTL.
    	SecretTTL time.Duration
    
    	// The ratio of cert lifetime to refresh a cert. For example, at 0.10 and 1 hour TTL,
    	// we would refresh 6 minutes before expiration.
    	SecretRotationGracePeriodRatio float64
    
    	// STS port
    	STSPort int
    
    	// credential fetcher.
    	CredFetcher CredFetcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/jwks_resolver.go

    	// Cached item will be removed from the cache if it hasn't been used longer than JwtPubKeyEvictionDuration or if pilot
    	// has failed to refresh it for more than JwtPubKeyEvictionDuration.
    	JwtPubKeyEvictionDuration = 24 * 7 * time.Hour
    
    	// JwtPubKeyRefreshIntervalOnFailure is the running interval of JWT pubKey refresh job on failure.
    	JwtPubKeyRefreshIntervalOnFailure = time.Minute
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/syscall/exec_linux_test.go

    	}
    }
    
    func testPidFD(t *testing.T, userns bool) error {
    	testenv.MustHaveExec(t)
    
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		// Child: wait for a signal.
    		time.Sleep(time.Hour)
    	}
    
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var pidfd int
    	cmd := testenv.Command(t, exe, "-test.run=^TestPidFD$")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top