Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MaxLWorkers (0.05 sec)

  1. cmd/handler-api.go

    	if t.replicationPriority == "" {
    		return replicationPoolOpts{
    			Priority:    "auto",
    			MaxWorkers:  WorkerMaxLimit,
    			MaxLWorkers: LargeWorkerCount,
    		}
    	}
    
    	return replicationPoolOpts{
    		Priority:    t.replicationPriority,
    		MaxWorkers:  t.replicationMaxWorkers,
    		MaxLWorkers: t.replicationMaxLWorkers,
    	}
    }
    
    func (t *apiConfig) getTransitionWorkers() int {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 17:07:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top