Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 25h0m0s$ (0.15 sec)

  1. src/cmd/go/testdata/script/test_flags.txt

    env GOFLAGS='-test.timeout=24h0m0s -count=1'
    go test -v -x ./x
    stdout 'timeout: 24h0m0s$'
    stderr '-test.count=1'
    
    # ...or without.
    env GOFLAGS='-timeout=24h0m0s -count=1'
    go test -v -x ./x
    stdout 'timeout: 24h0m0s$'
    stderr '-test.count=1'
    
    # Arguments from the command line should override GOFLAGS...
    go test -v -x -timeout=25h0m0s ./x
    stdout 'timeout: 25h0m0s$'
    stderr '-test.count=1'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    			signingKeyFile:    "../testdata/multilevelpki/ecc-int-key.pem",
    			certLifetime:      25 * time.Hour,
    			checkCertLifetime: true,
    			expectedError:     "requested TTL 25h0m0s is greater than the max allowed TTL 24h0m0s",
    		},
    	}
    	defaultWorkloadCertTTL := 30 * time.Minute
    	maxWorkloadCertTTL := 24 * time.Hour
    	rsaKeySize := 2048
    
    	for id, tc := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/time/example_test.go

    	// oneYearLater: start.AddDate(1, 0, 0) = 2024-03-25 12:00:00 +0000 UTC
    	// oneDayLaterZurich: startZurich.AddDate(0, 0, 1) = 2023-03-26 12:00:00 +0200 CEST
    	// Day duration in UTC: 24h0m0s | Day duration in Zürich: 23h0m0s
    }
    
    func ExampleTime_After() {
    	year2000 := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)
    	year3000 := time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux_test.go

      qps: 5
    clusterCIDR: 10.244.0.0/16
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 0s
      syncPeriod: 30s
    ipvs:
      excludeCIDRs: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top