Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendBackend (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	defaultBatchThrottleQPS   = 10               // Limit the send rate by 10 QPS.
    	defaultBatchThrottleBurst = 15               // Allow up to 15 QPS burst.
    )
    
    func appendBackend(existing, newBackend audit.Backend) audit.Backend {
    	if existing == nil {
    		return newBackend
    	}
    	if newBackend == nil {
    		return existing
    	}
    	return audit.Union(existing, newBackend)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top