Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,335 for Hour (0.07 sec)

  1. pkg/wasm/options.go

    // limitations under the License.
    
    package wasm
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	DefaultPurgeInterval         = 1 * time.Hour
    	DefaultModuleExpiry          = 24 * time.Hour
    	DefaultHTTPRequestTimeout    = 15 * time.Second
    	DefaultHTTPRequestMaxRetries = 5
    )
    
    // Options contains configurations to create a Cache instance.
    type Options struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. .github/workflows/feedback.yml

    name: Feedback
    
    on:
      schedule:
        - cron: '0 * * * *' # every hour
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 516 bytes
    - Viewed (1)
  3. security/pkg/nodeagent/cache/secretcache_test.go

    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.5,
    			expected:    time.Minute * 30,
    		},
    		{
    			name:        "grace period .25",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.25,
    			expected:    time.Minute * 45,
    		},
    		{
    			name:        "grace period .75",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.75,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/time/time.go

    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    	sec = int(abs % secondsPerDay)
    	hour = sec / secondsPerHour
    	sec -= hour * secondsPerHour
    	min = sec / secondsPerMinute
    	sec -= min * secondsPerMinute
    	return
    }
    
    // Hour returns the hour within the day specified by t, in the range [0, 23].
    func (t Time) Hour() int {
    	return int(t.abs()%secondsPerDay) / secondsPerHour
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. pkg/kubelet/util/queue/work_queue_test.go

    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    }
    
    func TestNewBasicWorkQueue(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    				Address:         "0.0.0.0", // Note: This field should have no effect in CM now, and "0.0.0.0" is the default value.
    				MinResyncPeriod: metav1.Duration{Duration: 8 * time.Hour},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					Kubeconfig:  "/kubeconfig",
    					ContentType: "application/json",
    					QPS:         50.0,
    					Burst:       100,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    				RevokedCertificates: []pkix.RevokedCertificate{
    					{
    						SerialNumber:   big.NewInt(2),
    						RevocationTime: time.Time{}.Add(time.Hour),
    					},
    				},
    				Number:     big.NewInt(5),
    				ThisUpdate: time.Time{}.Add(time.Hour * 24),
    				NextUpdate: time.Time{}.Add(time.Hour * 48),
    			},
    			expectedError: "x509: requested SignatureAlgorithm does not match private key type",
    		},
    		{
    			name: "valid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. cmd/object-lambda-handlers.go

    		host = globalMinioEndpointURL.Host
    		secure = globalMinioEndpointURL.Scheme == "https"
    	}
    
    	duration := time.Until(cred.Expiration)
    	if duration > time.Hour || duration < time.Hour {
    		// Always limit to 1 hour.
    		duration = time.Hour
    	}
    
    	clnt, err := miniogo.New(host, &miniogo.Options{
    		Creds:     credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, cred.SessionToken),
    		Secure:    secure,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/certlist_test.go

    				ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    					CertificateValidityPeriod: &metav1.Duration{
    						Duration: time.Hour * 1,
    					},
    				},
    			},
    			expectedConfig: &pkiutil.CertConfig{
    				Config: certutil.Config{
    					NotBefore: now.Add(-backdate),
    				},
    				NotAfter: now.Add(time.Hour * 1)},
    		},
    		{
    			name: "CA cert validity is set",
    			cert: &KubeadmCert{
    				CAName:       "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/metrics-v3-bucket-replication.go

    var (
    	bucketReplLastHrFailedBytesMD = NewGaugeMD(bucketReplLastHrFailedBytes,
    		"Total number of bytes failed at least once to replicate in the last hour on a bucket",
    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top