Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,296 for Hour (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/metrics/v3.md

    | `minio_bucket_replication_last_hour_failed_count`                   | `gauge`   | Total number of objects which failed replication in the last hour on a bucket               | `bucket,server`                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	}
    	// you always have to indicate to the queue that you've completed a piece of work
    	defer c.queue.Done(key)
    
    	// do your work on the key.  This method will contains your "do stuff" logic
    	err := c.syncConfigMap()
    	if err == nil {
    		// if you had no error, tell the queue to stop tracking history for your key.  This will
    		// reset things like failure counts for per-item rate limiting
    		c.queue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		t.Fatalf("couldn't write out CA certificate to %s", etcdDir)
    	}
    
    	cfg := &kubeadmapi.ClusterConfiguration{
    		CertificatesDir: dir,
    		CertificateValidityPeriod: &metav1.Duration{
    			Duration: time.Hour * 10,
    		},
    	}
    	rm, err := NewManager(cfg, dir)
    	if err != nil {
    		t.Fatalf("Failed to create the certificate renewal manager: %v", err)
    	}
    
    	// Prepare test certs with a past validity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start.go

    type Config struct {
    	// ReportCrashes, if set, will enable crash reporting.
    	// ReportCrashes uses the [debug.SetCrashOutput] mechanism, which is a
    	// process-wide resource.
    	// Do not make other calls to that function within your application.
    	// ReportCrashes is a non-functional unless the program is built with go1.23+.
    	ReportCrashes bool
    
    	// Upload causes this program to periodically upload approved counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/utils.go

    	}
    	if now.Before(t2) {
    		return earliestTime, &t1, missedSchedules, nil
    	}
    
    	// It is possible for cron.ParseStandard("59 23 31 2 *") to return an invalid schedule
    	// minute - 59, hour - 23, dom - 31, month - 2, and dow is optional, clearly 31 is invalid
    	// In this case the timeBetweenTwoSchedules will be 0, and we error out the invalid schedule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    	template := x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: fmt.Sprintf("%s@%d", host, time.Now().Unix()),
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Now().Add(time.Hour * 24 * 365 * 100),
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
    		ExtKeyUsage:           []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top