Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,999 for Hour (0.04 sec)

  1. pkg/routes/openidmetadata.go

    const (
    	// cacheControl is the value of the Cache-Control header. Overrides the
    	// global `private, no-cache` setting.
    	headerCacheControl = "Cache-Control"
    	cacheControl       = "public, max-age=3600" // 1 hour
    
    	// mimeJWKS is the content type of the keyset response
    	mimeJWKS = "application/jwk-set+json"
    )
    
    // OpenIDMetadataServer is an HTTP server for metadata of the KSA token issuer.
    type OpenIDMetadataServer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		{"ms", []string{"ms", "millisecond"}, float64(time.Millisecond)},
    		{"s", []string{"s", "sec", "second"}, float64(time.Second)},
    		{"hrs", []string{"hour", "hr"}, float64(time.Hour)},
    	},
    	DefaultUnit: Unit{"s", []string{}, float64(time.Second)},
    }, {
    	Units: []Unit{
    		{"n*GCU", []string{"nanogcu"}, 1e-9},
    		{"u*GCU", []string{"microgcu"}, 1e-6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. docs/sts/client-grants.md

    By default, the temporary security credentials created by AssumeRoleWithClientGrants last for one hour. However, use the optional DurationSeconds parameter to specify the duration of the credentials. This value varies from 900 seconds (15 minutes) up to the maximum session duration of 365 days.
    
    ## API Request Parameters
    
    ### Token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. istioctl/pkg/xds/client.go

    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/kube"
    )
    
    const (
    	// defaultExpirationSeconds is how long-lived a token to request (an hour)
    	defaultExpirationSeconds = 60 * 60
    )
    
    // Audience to create tokens for
    var tokenAudiences = []string{"istio-ca"}
    
    // GetXdsResponse opens a gRPC connection to opts.xds and waits for a single response
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. cmd/jwt.go

    	defaultJWTExpiry = 24 * time.Hour
    
    	// Inter-node JWT token expiry is 15 minutes.
    	defaultInterNodeJWTExpiry = 15 * time.Minute
    )
    
    var (
    	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
    	errAccessKeyDisabled  = errors.New("The access key you provided is disabled")
    	errAuthentication     = errors.New("Authentication failed, check your access credentials")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/kube/client_factory.go

    			discoveryCacheDir := computeDiscoverCacheDir(filepath.Join(cacheDir, "discovery"), restConfig.Host)
    
    			return diskcached.NewCachedDiscoveryClientForConfig(restConfig, discoveryCacheDir, httpCacheDir, 6*time.Hour)
    		}
    		d, err := discovery.NewDiscoveryClientForConfig(restConfig)
    		if err != nil {
    			return nil, err
    		}
    		return memory.NewMemCacheClient(d), nil
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. internal/config/heal/heal.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: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/volume/util/volumeattributesclass_test.go

    	"k8s.io/client-go/informers"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    func TestGetDefaultVolumeAttributesClass(t *testing.T) {
    	var (
    		t1 = time.Now()
    		t2 = time.Now().Add(1 * time.Hour)
    	)
    
    	dirverName1 := "my-driver1"
    	vac1 := &storagev1alpha1.VolumeAttributesClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "my-vac1",
    			Annotations: map[string]string{
    				"a": "b",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/test/mock/caserver.go

    	if err != nil {
    		caServerLog.Errorf("failed to create CA KeyCertBundle: %+v", err)
    		return nil, err
    	}
    
    	server := &CAServer{
    		certPem:         cert,
    		keyPem:          key,
    		certLifetime:    24 * time.Hour,
    		KeyCertBundle:   keyCertBundle,
    		GRPCServer:      grpc.NewServer(opts...),
    		faultInjectLock: &sync.Mutex{},
    	}
    	// Register CA service at gRPC server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    	}
    	// instead of using the shared informers from the controlplane instance, we construct our own informer
    	// because we need such a small subset of the information available, only the kubernetes.default ServiceCIDR
    	c.serviceCIDRInformer = networkingv1alpha1informers.NewFilteredServiceCIDRInformer(client, 12*time.Hour,
    		cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc},
    		func(options *metav1.ListOptions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top