Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for minuti (0.12 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    				diskGC := &mockDiskGC{err: nil}
    				nodeRef := &v1.ObjectReference{Kind: "Node", Name: "test", UID: types.UID("test"), Namespace: ""}
    
    				config := Config{
    					PressureTransitionPeriod: time.Minute * 5,
    					Thresholds: []evictionapi.Threshold{
    						{
    							Signal:   evictionapi.SignalMemoryAvailable,
    							Operator: evictionapi.OpLessThan,
    							Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    				{10, time.Now().Add(-10 * time.Minute)},
    				{9, time.Now().Add(-9 * time.Minute)},
    			},
    			3,
    			3,
    			2,
    		},
    		{
    			"stabilize - old recommendations",
    			"",
    			[]timestampedRecommendation{
    				{10, time.Now().Add(-10 * time.Minute)},
    				{4, time.Now().Add(-1 * time.Minute)},
    				{5, time.Now().Add(-2 * time.Minute)},
    				{9, time.Now().Add(-9 * time.Minute)},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		Type:      gaugeMetric,
    	}
    }
    
    func getRepFailedOperationsLastMinuteMD(namespace MetricNamespace) MetricDescription {
    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      lastMinFailedCount,
    		Help:      "Total number of objects which failed replication in the last full minute",
    		Type:      gaugeMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    stamping about, and shouting `Off with his head!' or `Off with
    her head!' about once in a minute.
    
      Alice began to feel very uneasy:  to be sure, she had not as
    yet had any dispute with the Queen, but she knew that it might
    happen any minute, `and then,' thought she, `what would become of
    me?  They're dreadfully fond of beheading people here; the great
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				{
    					timeToPass: 0,
    					newNodes:   makeNodes(v1.ConditionTrue, timeNow, timeNow),
    				},
    				{
    					timeToPass: 1 * time.Minute,
    					newNodes:   makeNodes(v1.ConditionTrue, timeNow, timeNow),
    				},
    				{
    					timeToPass: 1 * time.Minute,
    					newNodes:   makeNodes(v1.ConditionFalse, timePlusTwoMinutes, timePlusTwoMinutes),
    				},
    			},
    			expectedPodStatusUpdates: 1,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    stamping about, and shouting `Off with his head!' or `Off with
    her head!' about once in a minute.
    
      Alice began to feel very uneasy:  to be sure, she had not as
    yet had any dispute with the Queen, but she knew that it might
    happen any minute, `and then,' thought she, `what would become of
    me?  They're dreadfully fond of beheading people here; the great
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Last Minute Failed Size [{{bucket}}]",
              "refId": "A"
            }
          ],
          "title": "Last Minute Failed Size",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	kubelet.podManager.SetPods(pods)
    	kubelet.workQueue.Enqueue(pods[2].UID, 0)
    	kubelet.workQueue.Enqueue(pods[3].UID, 30*time.Second)
    	kubelet.workQueue.Enqueue(pods[4].UID, 2*time.Minute)
    
    	clock.Step(1 * time.Minute)
    
    	expected := []*v1.Pod{pods[2], pods[3], pods[0]}
    	podsToSync := kubelet.getPodsToSync()
    	sort.Sort(podsByUID(expected))
    	sort.Sort(podsByUID(podsToSync))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    		Operator: evictionapi.OpLessThan,
    		Value: evictionapi.ThresholdValue{
    			Quantity: quantityMustParse("2Gi"),
    		},
    		GracePeriod: 1 * time.Minute,
    	}
    	oldTime := metav1.NewTime(now.Time.Add(-2 * time.Minute))
    	testCases := map[string]struct {
    		observedAt thresholdsObservedAt
    		now        time.Time
    		result     []evictionapi.Threshold
    	}{
    		"empty": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		roi.EventType = ReplicateExisting
    		globalReplicationPool.queueReplicaTask(roi)
    	}
    	return
    }
    
    const (
    	mrfSaveInterval  = 5 * time.Minute
    	mrfQueueInterval = mrfSaveInterval + time.Minute // A minute higher than save interval
    
    	mrfRetryLimit = 3 // max number of retries before letting scanner catch up on this object version
    	mrfMaxEntries = 1000000
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top