Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,584 for Hour (0.16 sec)

  1. src/log/log.go

    			*buf = append(*buf, '/')
    			itoa(buf, int(month), 2)
    			*buf = append(*buf, '/')
    			itoa(buf, day, 2)
    			*buf = append(*buf, ' ')
    		}
    		if flag&(Ltime|Lmicroseconds) != 0 {
    			hour, min, sec := t.Clock()
    			itoa(buf, hour, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, min, 2)
    			*buf = append(*buf, ':')
    			itoa(buf, sec, 2)
    			if flag&Lmicroseconds != 0 {
    				*buf = append(*buf, '.')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	template := &Certificate{
    		SerialNumber: serialNumber,
    		Subject:      pkix.Name{CommonName: cn},
    		NotBefore:    time.Now().Add(-1 * time.Hour),
    		NotAfter:     time.Now().Add(24 * time.Hour),
    
    		KeyUsage:              KeyUsageKeyEncipherment | KeyUsageDigitalSignature | KeyUsageCertSign,
    		ExtKeyUsage:           []ExtKeyUsage{ExtKeyUsageServerAuth},
    		BasicConstraintsValid: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/testing/testserver.go

    		}
    
    		// make a client certificate for the api server - common name has to match one of our defined names above
    		serial, err := rand.Int(rand.Reader, new(big.Int).SetInt64(math.MaxInt64-1))
    		if err != nil {
    			return result, err
    		}
    		serial = new(big.Int).Add(serial, big.NewInt(1))
    		tenThousandHoursLater := time.Now().Add(10_000 * time.Hour)
    		certTmpl := x509.Certificate{
    			Subject: pkix.Name{
    				CommonName: "misty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. pkg/volume/util/resize_util_test.go

    			LastTransitionTime: currentTime,
    		},
    	}).get()
    
    	noConditionPVC := makePVC([]v1.PersistentVolumeClaimCondition{}).get()
    
    	conditionFalseTime := metav1.Now()
    	newTime := metav1.NewTime(time.Now().Add(1 * time.Hour))
    
    	testCases := []conditionMergeTestCase{
    		{
    			description:     "when removing all conditions",
    			pvc:             pvc.DeepCopy(),
    			newConditions:   []v1.PersistentVolumeClaimCondition{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic_test.go

    	verifyEvents(t, expected, actual)
    }
    
    func newTestGenericPLEGWithRuntimeMock(runtimeMock kubecontainer.Runtime) *GenericPLEG {
    	pleg := &GenericPLEG{
    		relistDuration: &RelistDuration{RelistPeriod: time.Hour, RelistThreshold: 2 * time.Hour},
    		runtime:        runtimeMock,
    		eventChannel:   make(chan *PodLifecycleEvent, 1000),
    		podRecords:     make(podRecords),
    		cache:          kubecontainer.NewCache(),
    		clock:          clock.RealClock{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. internal/config/identity/openid/openid.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
    - 16.5K bytes
    - Viewed (0)
  7. security/tools/generate_cert/main.go

    	validFrom      = flag.String("start-date", "", "Creation date in format of "+timeLayout)
    	validFor       = flag.Duration("duration", 10*365*24*time.Hour, "Duration that certificate is valid for.")
    	isCA           = flag.Bool("ca", false, "Whether this cert should be a Certificate Authority.")
    	signerCertFile = flag.String("signer-cert", "", "Signer certificate file (PEM encoded).")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 16:21:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2_test.go

    	restored := make(map[string]string)
    	restored[xhttp.AmzRestore] = completedRestoreObj(time.Now().UTC().Add(time.Hour)).String()
    
    	restoredExpired := make(map[string]string)
    	restoredExpired[xhttp.AmzRestore] = completedRestoreObj(time.Now().UTC().Add(-time.Hour)).String()
    
    	testCases := []struct {
    		xlmeta xlMetaV2Object
    		uses   bool
    	}{
    		{ // transitioned object version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	testResumeState("ResumeWithOldTicket", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("old first ticket matches the fresh one")
    	}
    
    	// Once the session master secret is expired, a full handshake should occur.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*8*time.Hour + time.Minute) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. docs/sts/tls.md

    - MinIO returns temp. S3 credentials associated to the found policy.
    
    The returned credentials expiry after a certain period of time that can be configured via `&DurationSeconds=3600`. By default, the STS credentials are valid for 1 hour. The minimum expiration allowed is 15 minutes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
Back to top