Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for startMem (0.13 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

              "interval": "1m",
              "legendFormat": "[{{server}}]",
              "refId": "A"
            }
          ],
          "title": "Bucket Scans Started",
          "type": "timeseries"
        }
      ],
      "refresh": "",
      "schemaVersion": 39,
      "tags": [
        "minio"
      ],
      "templating": {
        "list": [
          {
            "current": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		})
    	}
    }
    
    func TestAllocateAndAddPodWithInitContainers(t *testing.T) {
    	testCases := []testMemoryManager{
    		{
    			description: "should remove init containers from the state file, once app container started",
    			policyName:  policyTypeStatic,
    			machineInfo: returnMachineInfo(),
    			assignments: state.ContainerMemoryAssignments{},
    			expectedAssignments: state.ContainerMemoryAssignments{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    // error from roundTrip.
    func (pc *persistConn) shouldRetryRequest(req *Request, err error) bool {
    	if http2isNoCachedConnError(err) {
    		// Issue 16582: if the user started a bunch of
    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DICS_DISABLE    DICS_STATE = 0x00000002 // The device is being disabled.
    	DICS_PROPCHANGE DICS_STATE = 0x00000003 // The properties of the device have changed.
    	DICS_START      DICS_STATE = 0x00000004 // The device is being started (if the request is for the currently active hardware profile).
    	DICS_STOP       DICS_STATE = 0x00000005 // The device is being stopped. The driver stack will be unloaded and the CSCONFIGFLAG_DO_NOT_START flag will be set for the device.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	off       int           // offset of str within original string
    	subs      substitutions // substitutions
    	templates []*Template   // templates being processed
    
    	// The number of entries in templates when we started parsing
    	// a lambda, plus 1 so that 0 means not parsing a lambda.
    	lambdaTemplateLevel int
    
    	parsingConstraint bool // whether parsing a constraint expression
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    		i := caseIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    	// it as a DevicePlugin resource. This makes sure any pod that was scheduled
    	// during the time of propagating capacity change to the scheduler will be
    	// properly rejected instead of being incorrectly started.
    	err = testManager.writeCheckpoint()
    	as.Nil(err)
    	testManager.healthyDevices = make(map[string]sets.Set[string])
    	testManager.unhealthyDevices = make(map[string]sets.Set[string])
    	err = testManager.readCheckpoint()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			testCheckResultsInStrictOrder(t, w, scenario.expectedInitialEventsBookmark(createdPods))
    
    			createdPods = []*example.Pod{}
    			// add a pod that is greater than the storage's RV when the watch was started
    			for _, obj := range scenario.podsAfterEstablishingWatch {
    				obj.Namespace = ns
    				out := &example.Pod{}
    				err = store.Create(ctx, computePodKey(obj), obj, out, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    		i := caseIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top