in licensing/license.go [46:59]
func init() {
// Iterate over the supported licenses to make sure everything fit
// without any additional allocation.
for _, v := range Headers {
var l int
for _, v2 := range v {
l += len(v2)
}
if l > defaulBufSize {
defaulBufSize = l
}
}
}