* provider: adding Nomad provider * updating CONTRIBUTING.md with Nomad provider * updated README.md by adding the Nomad provider * fix typo * adding nomad/api and nomad/testutil deps * adding Nomad binary dependency for provider tests * fixed the nomad binary download command step and added tolerations to the nomad provider. * adding nomad provider demo gif * adding my name to authors * adding two missing go-rootcerts files after dep ensure * delete pod comment
30 lines
526 B
Go
30 lines
526 B
Go
//+build go1.10
|
|
|
|
package lz4
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func (h Header) String() string {
|
|
var s strings.Builder
|
|
|
|
s.WriteString(fmt.Sprintf("%T{", h))
|
|
if h.BlockChecksum {
|
|
s.WriteString("BlockChecksum: true ")
|
|
}
|
|
if h.NoChecksum {
|
|
s.WriteString("NoChecksum: true ")
|
|
}
|
|
if bs := h.BlockMaxSize; bs != 0 && bs != 4<<20 {
|
|
s.WriteString(fmt.Sprintf("BlockMaxSize: %d ", bs))
|
|
}
|
|
if l := h.CompressionLevel; l != 0 {
|
|
s.WriteString(fmt.Sprintf("CompressionLevel: %d ", l))
|
|
}
|
|
s.WriteByte('}')
|
|
|
|
return s.String()
|
|
}
|