Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,949 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. src/main/resources/fess_label_ru.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ko.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	"k8s.io/kubernetes/pkg/serviceaccount"
    	"k8s.io/utils/clock"
    )
    
    const (
    	dateFormat                 = "2006-01-02"
    	DefaultCleanerSyncInterval = 24 * time.Hour
    )
    
    // TokenCleanerOptions contains options for the LegacySATokenCleaner
    type LegacySATokenCleanerOptions struct {
    	// CleanUpPeriod is the period of time since the last usage of an legacy token before it can be deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    		Name:      "certificate_expiration_seconds",
    		Help:      "Distribution of the remaining lifetime on the certificate used to authenticate a request.",
    		Buckets: []float64{
    			0,
    			1800,     // 30 minutes
    			3600,     // 1 hour
    			7200,     // 2 hours
    			21600,    // 6 hours
    			43200,    // 12 hours
    			86400,    // 1 day
    			172800,   // 2 days
    			345600,   // 4 days
    			604800,   // 1 week
    			2592000,  // 1 month
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    	// WebhookRejectionNoError identifies a webhook properly rejected a request
    	WebhookRejectionNoError WebhookRejectionErrorType = "no_error"
    )
    
    var (
    	latencySummaryMaxAge = 5 * time.Hour
    
    	// Metrics provides access to all admission metrics.
    	Metrics = newAdmissionMetrics()
    )
    
    // ObserverFunc is a func that emits metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top