Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 430 for tims (0.06 sec)

  1. src/crypto/x509/x509.go

    	// be nil.
    	SerialNumber *big.Int
    	// RevocationTime represents the time at which the certificate was revoked. It
    	// is both used when creating a CRL and populated when parsing a CRL. It must
    	// not be the zero time.
    	RevocationTime time.Time
    	// ReasonCode represents the reason for revocation, using the integer enum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		} else if !equalTimeAndZone(jsonTime, tt.time) {
    			t.Errorf("Unmarshaled time = %v, want %v", jsonTime, tt.time)
    		}
    	}
    }
    
    func TestUnmarshalInvalidTimes(t *testing.T) {
    	tests := []struct {
    		in   string
    		want string
    	}{
    		{`{}`, "Time.UnmarshalJSON: input is not a JSON string"},
    		{`[]`, "Time.UnmarshalJSON: input is not a JSON string"},
    		{`"2000-01-01T1:12:34Z"`, `<nil>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    	testCases := []struct {
    		modTime  time.Time
    		days     ExpirationDays
    		expected time.Time
    	}{
    		{
    			time.Date(2020, time.March, 15, 10, 10, 10, 0, time.UTC),
    			4,
    			time.Date(2020, time.March, 20, 0, 0, 0, 0, time.UTC),
    		},
    		{
    			time.Date(2020, time.March, 15, 0, 0, 0, 0, time.UTC),
    			1,
    			time.Date(2020, time.March, 17, 0, 0, 0, 0, time.UTC),
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    func (s *xlStorage) readMetadataWithDMTime(ctx context.Context, itemPath string) ([]byte, time.Time, error) {
    	if contextCanceled(ctx) {
    		return nil, time.Time{}, ctx.Err()
    	}
    
    	if err := checkPathLength(itemPath); err != nil {
    		return nil, time.Time{}, err
    	}
    
    	f, err := OpenFile(itemPath, readMode, 0o666)
    	if err != nil {
    		return nil, time.Time{}, err
    	}
    	defer f.Close()
    	stat, err := f.Stat()
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Instead, any value that's relevant for the execution of the task should be modeled as a task property.
    
    [[config_cache:requirements:build_listeners]]
    === Using build listeners
    
    Plugins and build scripts must not register any build listeners.
    That is listeners registered at configuration time that get notified at execution time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    					},
    					Status: v1.PodStatus{
    						Phase: v1.PodSucceeded,
    						StartTime: &metav1.Time{
    							Time: time.Now().Add(-10 * time.Minute),
    						},
    						Conditions: []v1.PodCondition{
    							{
    								Type:               v1.PodReady,
    								LastTransitionTime: metav1.Time{Time: time.Now().Add(-9*time.Minute - 54*time.Second)},
    								Status:             v1.ConditionFalse,
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// crypto/rand.
    	// The Reader must be safe for use by multiple goroutines.
    	Rand io.Reader
    
    	// Time returns the current time as the number of seconds since the epoch.
    	// If Time is nil, TLS uses time.Now.
    	Time func() time.Time
    
    	// Certificates contains one or more certificate chains to present to the
    	// other side of the connection. The first certificate compatible with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption_test.go

    	currentTime := dc.clock.Now()
    	pdb.Status.DisruptedPods = map[string]metav1.Time{
    		"p1":       {Time: currentTime},                       // Should be removed, pod deletion started.
    		"p2":       {Time: currentTime.Add(-3 * time.Minute)}, // Should be removed, expired.
    		"p3":       {Time: currentTime.Add(-time.Minute)},     // Should remain, pod untouched.
    		"notthere": {Time: currentTime},                       // Should be removed, pod deleted.
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	errSpec error = errors.New("")
    )
    
    type timestampedRecommendation struct {
    	recommendation int32
    	timestamp      time.Time
    }
    
    type timestampedScaleEvent struct {
    	replicaChange int32 // absolute value, non-negative
    	timestamp     time.Time
    	outdated      bool
    }
    
    // HorizontalController is responsible for the synchronizing HPA objects stored
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    	if isGroup {
    		if store.getUsersSysType() == MinIOUsersSysType {
    			g, ok := c.iamGroupsMap[name]
    			if !ok {
    				if err := store.loadGroup(context.Background(), name, c.iamGroupsMap); err != nil {
    					return nil, time.Time{}, err
    				}
    				g, ok = c.iamGroupsMap[name]
    				if !ok {
    					return nil, time.Time{}, errNoSuchGroup
    				}
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top