mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			253 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			253 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !go1.7
 | |
| 
 | |
| package sdkio
 | |
| 
 | |
| // Copy of Go 1.7 io package's Seeker constants.
 | |
| const (
 | |
| 	SeekStart   = 0 // seek relative to the origin of the file
 | |
| 	SeekCurrent = 1 // seek relative to the current offset
 | |
| 	SeekEnd     = 2 // seek relative to the end
 | |
| )
 |