Bump k8s.io deps to v0.25.3
Signed-off-by: Luca Comellini <luca.com@gmail.com>
This commit is contained in:
		
							
								
								
									
										14
									
								
								vendor/k8s.io/client-go/util/workqueue/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								vendor/k8s.io/client-go/util/workqueue/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -16,11 +16,11 @@ limitations under the License.
 | 
			
		||||
 | 
			
		||||
// Package workqueue provides a simple queue that supports the following
 | 
			
		||||
// features:
 | 
			
		||||
//  * Fair: items processed in the order in which they are added.
 | 
			
		||||
//  * Stingy: a single item will not be processed multiple times concurrently,
 | 
			
		||||
//      and if an item is added multiple times before it can be processed, it
 | 
			
		||||
//      will only be processed once.
 | 
			
		||||
//  * Multiple consumers and producers. In particular, it is allowed for an
 | 
			
		||||
//      item to be reenqueued while it is being processed.
 | 
			
		||||
//  * Shutdown notifications.
 | 
			
		||||
//   - Fair: items processed in the order in which they are added.
 | 
			
		||||
//   - Stingy: a single item will not be processed multiple times concurrently,
 | 
			
		||||
//     and if an item is added multiple times before it can be processed, it
 | 
			
		||||
//     will only be processed once.
 | 
			
		||||
//   - Multiple consumers and producers. In particular, it is allowed for an
 | 
			
		||||
//     item to be reenqueued while it is being processed.
 | 
			
		||||
//   - Shutdown notifications.
 | 
			
		||||
package workqueue // import "k8s.io/client-go/util/workqueue"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										7
									
								
								vendor/k8s.io/client-go/util/workqueue/rate_limiting_queue.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								vendor/k8s.io/client-go/util/workqueue/rate_limiting_queue.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -50,6 +50,13 @@ func NewNamedRateLimitingQueue(rateLimiter RateLimiter, name string) RateLimitin
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func NewRateLimitingQueueWithDelayingInterface(di DelayingInterface, rateLimiter RateLimiter) RateLimitingInterface {
 | 
			
		||||
	return &rateLimitingType{
 | 
			
		||||
		DelayingInterface: di,
 | 
			
		||||
		rateLimiter:       rateLimiter,
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// rateLimitingType wraps an Interface and provides rateLimited re-enquing
 | 
			
		||||
type rateLimitingType struct {
 | 
			
		||||
	DelayingInterface
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user