Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 998 for Hour (0.04 sec)

  1. docs/sts/web-identity.md

    By default, the temporary security credentials created by AssumeRoleWithWebIdentity last for one hour. However, the optional DurationSeconds parameter can be used to specify the validity duration of the generated credentials. This value varies from 900 seconds (15 minutes) up to the maximum session duration of 365 days.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    	}
    
    	condition1 := "condition1"
    	condition2 := "condition2"
    	pod1 := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo", CreationTimestamp: metav1.NewTime(time.Now().Add(-370 * 24 * time.Hour))},
    		Spec: api.PodSpec{
    			Containers: []api.Container{
    				{Name: "ctr1"},
    				{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    			},
    			NodeName: "test-node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer s.Close()
    
    	// Create an authorizer that caches successful responses "forever" (100 days).
    	wh, err := newV1beta1Authorizer(s.URL, clientCert, clientKey, caCert, 2400*time.Hour)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	aliceAttr := authorizer.AttributesRecord{User: &user.DefaultInfo{Name: "alice"}}
    	bobAttr := authorizer.AttributesRecord{User: &user.DefaultInfo{Name: "bob"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top