mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
ad2642a8aa
* Implementation for calculating language statistics Impement saving code language statistics to database Implement rendering langauge stats Add primary laguage to show in repository list Implement repository stats indexer queue Add indexer test Refactor to use queue module * Do not timeout for queues
11 lines
180 B
Go
11 lines
180 B
Go
package substring
|
|
|
|
// reverse is a helper fn for Suffixes
|
|
func reverse(b []byte) []byte {
|
|
n := len(b)
|
|
for i := 0; i < n/2; i++ {
|
|
b[i], b[n-1-i] = b[n-1-i], b[i]
|
|
}
|
|
return b
|
|
}
|