mirror of
https://github.com/mudler/luet.git
synced 2025-07-13 07:04:19 +00:00
Instead of using gox on one side and an action to release, we can merge them together with goreleaser which will build for extra targets (arm, mips if needed in the future) and it also takes care of creating checksums, a source archive, and a changelog and creating a release with all the artifacts. All binaries should respect the old naming convention, so any scripts out there should still work. Signed-off-by: Itxaka <igarcia@suse.com>
22 lines
520 B
Go
22 lines
520 B
Go
// Copyright 2015 Huan Du. All rights reserved.
|
|
// Licensed under the MIT license that can be found in the LICENSE file.
|
|
|
|
package xstrings
|
|
|
|
const bufferMaxInitGrowSize = 2048
|
|
|
|
// Lazy initialize a buffer.
|
|
func allocBuffer(orig, cur string) *stringBuilder {
|
|
output := &stringBuilder{}
|
|
maxSize := len(orig) * 4
|
|
|
|
// Avoid to reserve too much memory at once.
|
|
if maxSize > bufferMaxInitGrowSize {
|
|
maxSize = bufferMaxInitGrowSize
|
|
}
|
|
|
|
output.Grow(maxSize)
|
|
output.WriteString(orig[:len(orig)-len(cur)])
|
|
return output
|
|
}
|