Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,218 for Hour (0.08 sec)

  1. pkg/printers/internalversion/printers_test.go

    						},
    						{
    							Ready:                true,
    							RestartCount:         3,
    							State:                api.ContainerState{Running: &api.ContainerStateRunning{}},
    							LastTerminationState: api.ContainerState{Terminated: &api.ContainerStateTerminated{FinishedAt: metav1.NewTime(time.Now().Add(-20 * 24 * time.Hour))}},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Last Hour Failed Size [{{bucket}}]",
              "refId": "A"
            }
          ],
          "title": "Last Hour Failed Size",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    			workqueue.TypedRateLimitingQueueConfig[string]{Name: "RequestHeaderAuthRequestController"},
    		),
    	}
    
    	// we construct our own informer because we need such a small subset of the information available.  Just one namespace.
    	c.configmapInformer = coreinformers.NewFilteredConfigMapInformer(client, c.configmapNamespace, 12*time.Hour, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, func(listOptions *metav1.ListOptions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    					CertDirectory: "/var/run/kubernetes",
    					PairName:      "apiserver",
    				},
    				HTTP2MaxStreamsPerConnection: 42,
    				Required:                     true,
    			}).WithLoopback(),
    			EventTTL: 1 * time.Hour,
    			Audit: &apiserveroptions.AuditOptions{
    				LogOptions: apiserveroptions.AuditLogOptions{
    					Path:       "/var/log",
    					MaxAge:     11,
    					MaxBackups: 12,
    					MaxSize:    13,
    					Format:     "json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants.go

    	// CertificateValidityPeriod defines the validity period for all the signed certificates generated by kubeadm
    	CertificateValidityPeriod = time.Hour * 24 * 365
    	// CACertificateValidityPeriod defines the validity period for all the signed CA certificates generated by kubeadm
    	CACertificateValidityPeriod = time.Hour * 24 * 365 * 10
    
    	// DefaultCertificateDir defines default certificate directory
    	DefaultCertificateDir = "pki"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet.go

    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    				7776000,   // 3  months
    				15552000,  // 6  months
    				31104000,  // 1  year
    				124416000, // 4  years
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/encoding/asn1/marshal.go

    }
    
    func appendTimeCommon(dst []byte, t time.Time) []byte {
    	_, month, day := t.Date()
    
    	dst = appendTwoDigits(dst, int(month))
    	dst = appendTwoDigits(dst, day)
    
    	hour, min, sec := t.Clock()
    
    	dst = appendTwoDigits(dst, hour)
    	dst = appendTwoDigits(dst, min)
    	dst = appendTwoDigits(dst, sec)
    
    	_, offset := t.Zone()
    
    	switch {
    	case offset/60 == 0:
    		return append(dst, 'Z')
    	case offset > 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. cmd/signature-v4_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: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. security/pkg/k8s/chiron/utils_test.go

    05n8TGERBj7TLdtIVbtUIx3JHAo3PWJywA6mEDovFMJhJERp9sDHIr1BbhXK1TFN
    Z6HNH6gInkSSMtvC4Ptejb749PTaePRPF7ID//eq/3AH8UK50F3TQcLjEqWUsJUn
    aFKltOc+RAjzDklcUPeG4Y6eMA==
    -----END CERTIFICATE-----
    `
    	DefaulCertTTL = 24 * time.Hour
    )
    
    type mockTLSServer struct {
    	httpServer *httptest.Server
    }
    
    func defaultReactionFunc(obj runtime.Object) kt.ReactionFunc {
    	return func(act kt.Action) (bool, runtime.Object, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils_test.go

    	now := metav1.Now()
    	then1Month := metav1.Time{Time: now.AddDate(0, -1, 0)}
    	then2Hours := metav1.Time{Time: now.Add(-2 * time.Hour)}
    	then5Hours := metav1.Time{Time: now.Add(-5 * time.Hour)}
    	then8Hours := metav1.Time{Time: now.Add(-8 * time.Hour)}
    	zeroTime := metav1.Time{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top