mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-06-07 00:43:06 +00:00
- Update github.com/sirupsen/logrus v1.9.0 -> v1.9.3 in test/go.mod to fix GHSA-4f99-4q7p-p3gh (High) - Update github.com/prometheus/prometheus v0.35.0 -> v0.311.3 to fix GHSA-vffh-x6r8-xx99 (Medium) - Run go mod tidy and go mod vendor to update vendor directory
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package swag
|
|
|
|
import "github.com/go-openapi/swag/stringutils"
|
|
|
|
// ContainsStrings searches a slice of strings for a case-sensitive match.
|
|
//
|
|
// Deprecated: use [slices.Contains] or [stringutils.ContainsStrings] instead.
|
|
func ContainsStrings(coll []string, item string) bool {
|
|
return stringutils.ContainsStrings(coll, item)
|
|
}
|
|
|
|
// ContainsStringsCI searches a slice of strings for a case-insensitive match.
|
|
//
|
|
// Deprecated: use [stringutils.ContainsStringsCI] instead.
|
|
func ContainsStringsCI(coll []string, item string) bool {
|
|
return stringutils.ContainsStringsCI(coll, item)
|
|
}
|
|
|
|
// JoinByFormat joins a string array by a known format (e.g. swagger's collectionFormat attribute).
|
|
//
|
|
// Deprecated: use [stringutils.JoinByFormat] instead.
|
|
func JoinByFormat(data []string, format string) []string {
|
|
return stringutils.JoinByFormat(data, format)
|
|
}
|
|
|
|
// SplitByFormat splits a string by a known format.
|
|
//
|
|
// Deprecated: use [stringutils.SplitByFormat] instead.
|
|
func SplitByFormat(data, format string) []string {
|
|
return stringutils.SplitByFormat(data, format)
|
|
}
|