Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 3 additions & 3 deletions apis/cost/fuzzer/fuzzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ package fuzzer
import (
"kubeops.dev/ui-server/apis/cost/v1alpha1"

fuzz "github.com/google/gofuzz"
runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
"sigs.k8s.io/randfill"
)

// Funcs returns the fuzzer functions for this api group.
var Funcs = func(codecs runtimeserializer.CodecFactory) []any {
return []any{
// v1alpha1
func(s *v1alpha1.CostReport, c fuzz.Continue) {
c.FuzzNoCustom(s) // fuzz self without calling this function again
func(s *v1alpha1.CostReport, c randfill.Continue) {
c.Fill(s) // fuzz self without calling this function again
},
}
}
582 changes: 515 additions & 67 deletions apis/cost/v1alpha1/openapi_generated.go

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apis/offline/fuzzer/fuzzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ package fuzzer
import (
"kubeops.dev/ui-server/apis/offline/v1alpha1"

fuzz "github.com/google/gofuzz"
runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
"sigs.k8s.io/randfill"
)

// Funcs returns the fuzzer functions for this api group.
var Funcs = func(codecs runtimeserializer.CodecFactory) []any {
return []any{
// v1alpha1
func(s *v1alpha1.OfflineLicense, c fuzz.Continue) {
c.FuzzNoCustom(s) // fuzz self without calling this function again
func(s *v1alpha1.OfflineLicense, c randfill.Continue) {
c.Fill(s) // fuzz self without calling this function again
},
}
}
582 changes: 515 additions & 67 deletions apis/offline/v1alpha1/openapi_generated.go

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apis/policy/fuzzer/fuzzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ package fuzzer
import (
"kubeops.dev/ui-server/apis/policy/v1alpha1"

fuzz "github.com/google/gofuzz"
runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
"sigs.k8s.io/randfill"
)

// Funcs returns the fuzzer functions for this api group.
var Funcs = func(codecs runtimeserializer.CodecFactory) []any {
return []any{
// v1alpha1
func(s *v1alpha1.PolicyReport, c fuzz.Continue) {
c.FuzzNoCustom(s) // fuzz self without calling this function again
func(s *v1alpha1.PolicyReport, c randfill.Continue) {
c.Fill(s) // fuzz self without calling this function again
},
}
}
582 changes: 515 additions & 67 deletions apis/policy/v1alpha1/openapi_generated.go

Large diffs are not rendered by default.

337 changes: 165 additions & 172 deletions go.mod

Large diffs are not rendered by default.

759 changes: 369 additions & 390 deletions go.sum

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions vendor/cloud.google.com/go/auth/CHANGES.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vendor/cloud.google.com/go/auth/auth.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vendor/cloud.google.com/go/auth/credentials/compute.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 23 additions & 5 deletions vendor/cloud.google.com/go/auth/credentials/detect.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

127 changes: 106 additions & 21 deletions vendor/cloud.google.com/go/auth/credentials/filetypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading