mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Vendor Update Go Libs (#13444)
* denisenkom/go-mssqldb untagged -> v0.9.0 * github.com/editorconfig/editorconfig-core-go v2.3.7 -> v2.3.8 * github.com/go-testfixtures/testfixtures v3.4.0 -> v3.4.1 * github.com/mholt/archiver v3.3.2 -> v3.5.0 * github.com/olivere/elastic v7.0.20 -> v7.0.21 * github.com/urfave/cli v1.22.4 -> v1.22.5 * github.com/xanzy/go-gitlab v0.38.1 -> v0.39.0 * github.com/yuin/goldmark-meta untagged -> v1.0.0 * github.com/ethantkoenig/rupture 0a76f03a811a -> c3b3b810dc77 * github.com/jaytaylor/html2text 8fb95d837f7d -> 3577fbdbcff7 * github.com/kballard/go-shellquote cd60e84ee657 -> 95032a82bc51 * github.com/msteinert/pam 02ccfbfaf0cc -> 913b8f8cdf8b * github.com/unknwon/paginater 7748a72e0141 -> 042474bd0eae * CI.restart() Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		
							
								
								
									
										92
									
								
								vendor/github.com/pierrec/lz4/v4/options_gen.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								vendor/github.com/pierrec/lz4/v4/options_gen.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,92 @@ | ||||
| // Code generated by "stringer -type=BlockSize,CompressionLevel -output options_gen.go"; DO NOT EDIT. | ||||
|  | ||||
| package lz4 | ||||
|  | ||||
| import "strconv" | ||||
|  | ||||
| func _() { | ||||
| 	// An "invalid array index" compiler error signifies that the constant values have changed. | ||||
| 	// Re-run the stringer command to generate them again. | ||||
| 	var x [1]struct{} | ||||
| 	_ = x[Block64Kb-65536] | ||||
| 	_ = x[Block256Kb-262144] | ||||
| 	_ = x[Block1Mb-1048576] | ||||
| 	_ = x[Block4Mb-4194304] | ||||
| } | ||||
|  | ||||
| const ( | ||||
| 	_BlockSize_name_0 = "Block64Kb" | ||||
| 	_BlockSize_name_1 = "Block256Kb" | ||||
| 	_BlockSize_name_2 = "Block1Mb" | ||||
| 	_BlockSize_name_3 = "Block4Mb" | ||||
| ) | ||||
|  | ||||
| func (i BlockSize) String() string { | ||||
| 	switch { | ||||
| 	case i == 65536: | ||||
| 		return _BlockSize_name_0 | ||||
| 	case i == 262144: | ||||
| 		return _BlockSize_name_1 | ||||
| 	case i == 1048576: | ||||
| 		return _BlockSize_name_2 | ||||
| 	case i == 4194304: | ||||
| 		return _BlockSize_name_3 | ||||
| 	default: | ||||
| 		return "BlockSize(" + strconv.FormatInt(int64(i), 10) + ")" | ||||
| 	} | ||||
| } | ||||
| func _() { | ||||
| 	// An "invalid array index" compiler error signifies that the constant values have changed. | ||||
| 	// Re-run the stringer command to generate them again. | ||||
| 	var x [1]struct{} | ||||
| 	_ = x[Fast-0] | ||||
| 	_ = x[Level1-512] | ||||
| 	_ = x[Level2-1024] | ||||
| 	_ = x[Level3-2048] | ||||
| 	_ = x[Level4-4096] | ||||
| 	_ = x[Level5-8192] | ||||
| 	_ = x[Level6-16384] | ||||
| 	_ = x[Level7-32768] | ||||
| 	_ = x[Level8-65536] | ||||
| 	_ = x[Level9-131072] | ||||
| } | ||||
|  | ||||
| const ( | ||||
| 	_CompressionLevel_name_0 = "Fast" | ||||
| 	_CompressionLevel_name_1 = "Level1" | ||||
| 	_CompressionLevel_name_2 = "Level2" | ||||
| 	_CompressionLevel_name_3 = "Level3" | ||||
| 	_CompressionLevel_name_4 = "Level4" | ||||
| 	_CompressionLevel_name_5 = "Level5" | ||||
| 	_CompressionLevel_name_6 = "Level6" | ||||
| 	_CompressionLevel_name_7 = "Level7" | ||||
| 	_CompressionLevel_name_8 = "Level8" | ||||
| 	_CompressionLevel_name_9 = "Level9" | ||||
| ) | ||||
|  | ||||
| func (i CompressionLevel) String() string { | ||||
| 	switch { | ||||
| 	case i == 0: | ||||
| 		return _CompressionLevel_name_0 | ||||
| 	case i == 512: | ||||
| 		return _CompressionLevel_name_1 | ||||
| 	case i == 1024: | ||||
| 		return _CompressionLevel_name_2 | ||||
| 	case i == 2048: | ||||
| 		return _CompressionLevel_name_3 | ||||
| 	case i == 4096: | ||||
| 		return _CompressionLevel_name_4 | ||||
| 	case i == 8192: | ||||
| 		return _CompressionLevel_name_5 | ||||
| 	case i == 16384: | ||||
| 		return _CompressionLevel_name_6 | ||||
| 	case i == 32768: | ||||
| 		return _CompressionLevel_name_7 | ||||
| 	case i == 65536: | ||||
| 		return _CompressionLevel_name_8 | ||||
| 	case i == 131072: | ||||
| 		return _CompressionLevel_name_9 | ||||
| 	default: | ||||
| 		return "CompressionLevel(" + strconv.FormatInt(int64(i), 10) + ")" | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user