// FuzzDurationStrict is a fuzz target for strict-unmarshaling Duration defined // in "k8s.io/apimachinery/pkg/apis/meta/v1". This target also checks that the // unmarshaled result can be marshaled back to the input. func FuzzDurationStrict(b []byte) int { … } // FuzzMicroTimeStrict is a fuzz target for strict-unmarshaling MicroTime // defined in "k8s.io/apimachinery/pkg/apis/meta/v1". This target also checks // that the unmarshaled result can be marshaled back to the input. func FuzzMicroTimeStrict(b []byte) int { … } // FuzzSigYaml is a fuzz target for "sigs.k8s.io/yaml" unmarshaling. func FuzzSigYaml(b []byte) int { … } // FuzzTimeStrict is a fuzz target for strict-unmarshaling Time defined in // "k8s.io/apimachinery/pkg/apis/meta/v1". This target also checks that the // unmarshaled result can be marshaled back to the input. func FuzzTimeStrict(b []byte) int { … } // FuzzYamlV2 is a fuzz target for "sigs.k8s.io/yaml/goyaml.v2" unmarshaling. func FuzzYamlV2(b []byte) int { … }