Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for limiter (0.54 sec)

  1. src/runtime/mgc.go

    	clearpools()
    
    	work.cycles.Add(1)
    
    	// Assists and workers can start the moment we start
    	// the world.
    	gcController.startCycle(now, int(gomaxprocs), trigger)
    
    	// Notify the CPU limiter that assists may begin.
    	gcCPULimiter.startGCTransition(true, now)
    
    	// In STW mode, disable scheduling of user Gs. This may also
    	// disable scheduling of this goroutine, so it may block as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// That is, it'll reduce the heap goal by this many extra bytes off of the
    	// base calculation, at minimum.
    	memoryLimitMinHeapGoalHeadroom = 1 << 20
    
    	// memoryLimitHeapGoalHeadroomPercent is how headroom the memory-limit-based
    	// heap goal should have as a percent of the maximum possible heap goal allowed
    	// to maintain the memory limit.
    	memoryLimitHeapGoalHeadroomPercent = 3
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - if the new state is "partialDisruption" we call a user defined function that returns a new limiter to use,
    	// - if the new state is "normal" we resume normal operation (go back to default limiter settings),
    	// - if new state is "fullDisruption" we restore normal eviction rate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    func gcDumpObject(label string, obj, off uintptr) {
    	s := spanOf(obj)
    	print(label, "=", hex(obj))
    	if s == nil {
    		print(" s=nil\n")
    		return
    	}
    	print(" s.base()=", hex(s.base()), " s.limit=", hex(s.limit), " s.spanclass=", s.spanclass, " s.elemsize=", s.elemsize, " s.state=")
    	if state := s.state.get(); 0 <= state && int(state) < len(mSpanStateNames) {
    		print(mSpanStateNames[state], "\n")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    			}
    		}
    	}
    	// There are a few very limited circumstances where we won't have a P here.
    	// It's OK to simply skip scavenging in these cases. Something else will notice
    	// and pick up the tab.
    	var now int64
    	if pp != nil && bytesToScavenge > 0 {
    		// Measure how long we spent scavenging and add that measurement to the assist
    		// time so we can track it for the GC CPU limiter.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/daemon/util"
    )
    
    const (
    	// BurstReplicas is a rate limiter for booting pods on a lot of pods.
    	// The value of 250 is chosen b/c values that are too high can cause registry DoS issues.
    	BurstReplicas = 250
    
    	// StatusUpdateRetries limits the number of retries if sending a status update to API server fails.
    	StatusUpdateRetries = 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Required(field.NewPath("spec").Child("limited"), "must not be empty when type is Limited"),
    		},
    	}, {
    		name: "limited requires more details",
    		priorityLevelConfiguration: &flowcontrol.PriorityLevelConfiguration{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "broken-limited",
    			},
    			Spec: flowcontrol.PriorityLevelConfigurationSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/resourcequota/admission_test.go

    }
    
    func getResourceRequirements(requests, limits api.ResourceList) api.ResourceRequirements {
    	res := api.ResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    func getVolumeResourceRequirements(requests, limits api.ResourceList) api.VolumeResourceRequirements {
    	res := api.VolumeResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    				t.Log("ListObjectVersions, bucket:", testCase.bucketName, "prefix:",
    					testCase.prefix, "marker:", testCase.marker, "delimiter:",
    					testCase.delimiter, "maxkeys:", testCase.maxKeys)
    
    				resultV, err = obj.ListObjectVersions(context.Background(), testCase.bucketName,
    					testCase.prefix, testCase.marker, "", testCase.delimiter, testCase.maxKeys)
    			} else {
    				t.Log("ListObjects, bucket:", testCase.bucketName, "prefix:",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		}
    
    		// Default is recursive, if delimiter is set then list non recursive.
    		objects := merged.fileInfos(bucket, prefix, delimiter)
    		loi.IsTruncated = err == nil && len(objects) > 0
    		if limitTo > 0 && len(objects) > limitTo {
    			objects = objects[:limitTo]
    			loi.IsTruncated = true
    		}
    		for _, obj := range objects {
    			if obj.IsDir && obj.ModTime.IsZero() && delimiter != "" {
    				// Only add each once.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top