Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Contains ¶
Contains checks if the specified string (key) is present in the specified collection.
func Convert ¶
func Convert(src, target interface{}) error
Convert converts a struct (src) to another one (target) using yaml marshalling/unmarshalling. If the structure are not compatible, this will throw an error as the unmarshalling will fail.
func ConvertByJSON ¶
func ConvertByJSON(src, target interface{}) error
ConvertByJSON converts a struct (src) to another one (target) using json marshalling/unmarshalling. If the structure are not compatible, this will throw an error as the unmarshalling will fail.
func FilterString ¶
FilterString returns a json representation of the specified map that is used as filter for docker.
Types ¶
type InParallel ¶
type InParallel struct {
// contains filtered or unexported fields
}
InParallel holds a pool and a waitgroup to execute tasks in parallel and to be able to wait for completion of all tasks.
func (*InParallel) Add ¶
func (i *InParallel) Add(task func() error)
Add adds runs the specified task in parallel and add it to the waitGroup.
func (*InParallel) Wait ¶
func (i *InParallel) Wait() error
Wait waits for all tasks to complete and returns the latests error encountered if any.