Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 3h (0.02 sec)

  1. docs/sts/dex.yaml

      # tlsKey: /etc/dex/tls.key
    
      # Configuration for telemetry
      telemetry:
        http: 0.0.0.0:5558
    
    # Uncomment this block to enable configuration for the expiration time durations.
    expiry:
      signingKeys: "3h"
      idTokens: "3h"
    
      # Options for controlling the logger.
      logger:
        level: "debug"
        format: "text" # can also be "json"
    
    # Default values shown below
    oauth2:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/token.go

    func (bto *BootstrapTokenOptions) AddTTLFlagWithName(fs *pflag.FlagSet, flagName string) {
    	fs.DurationVar(
    		&bto.TTL.Duration, flagName, bto.TTL.Duration,
    		"The duration before the token is automatically deleted (e.g. 1s, 2m, 3h). If set to '0', the token will never expire",
    	)
    }
    
    // AddUsagesFlag adds the --usages flag to the given flagset
    func (bto *BootstrapTokenOptions) AddUsagesFlag(fs *pflag.FlagSet) {
    	fs.StringSliceVar(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/duration/duration_test.go

    		{d: 10*time.Minute - time.Millisecond, want: "9m59s"},
    		{d: 10 * time.Minute, want: "10m"},
    		{d: 10*time.Minute + time.Second, want: "10m"},
    		{d: 3*time.Hour - time.Millisecond, want: "179m"},
    		{d: 3 * time.Hour, want: "3h"},
    		{d: 3*time.Hour + time.Minute, want: "3h1m"},
    		{d: 8*time.Hour - time.Millisecond, want: "7h59m"},
    		{d: 8 * time.Hour, want: "8h"},
    		{d: 8*time.Hour + 59*time.Minute, want: "8h"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 17 18:04:52 UTC 2020
    - 4.5K bytes
    - Viewed (0)
Back to top