This commit updates to images v0.117.0 so that the cross-distro.sh test works again (images removed fedora-39.json in main but the uses the previous version of images that includes fedora-39 so there is a mismatch (we should look into if there is a way to get github.com/osbuild/images@latest instead of main in the cross-arch test). It also updates all the vendor stuff that got pulled via the new images release (which is giantonormous). This update requires updating the Go version to 1.22.8
32 lines
710 B
Go
32 lines
710 B
Go
//go:build linux && go1.21
|
|
|
|
// Copyright (C) 2024 SUSE LLC. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package securejoin
|
|
|
|
import (
|
|
"slices"
|
|
"sync"
|
|
)
|
|
|
|
func slices_DeleteFunc[S ~[]E, E any](slice S, delFn func(E) bool) S {
|
|
return slices.DeleteFunc(slice, delFn)
|
|
}
|
|
|
|
func slices_Contains[S ~[]E, E comparable](slice S, val E) bool {
|
|
return slices.Contains(slice, val)
|
|
}
|
|
|
|
func slices_Clone[S ~[]E, E any](slice S) S {
|
|
return slices.Clone(slice)
|
|
}
|
|
|
|
func sync_OnceValue[T any](f func() T) func() T {
|
|
return sync.OnceValue(f)
|
|
}
|
|
|
|
func sync_OnceValues[T1, T2 any](f func() (T1, T2)) func() (T1, T2) {
|
|
return sync.OnceValues(f)
|
|
}
|