Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 170 for gofunc (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/meta_test.go

    	"math/rand"
    	"reflect"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	metav1beta1 "k8s.io/apimachinery/pkg/apis/meta/v1beta1"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    )
    
    func TestAsPartialObjectMetadata(t *testing.T) {
    	f := fuzz.New().NilChance(.5).NumElements(0, 1).RandSource(rand.NewSource(1))
    
    	for i := 0; i < 100; i++ {
    		m := &metav1.ObjectMeta{}
    		f.Fuzz(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/apis/batch/fuzzer/fuzzer.go

    import (
    	"math"
    
    	fuzz "github.com/google/gofuzz"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/kubernetes/pkg/apis/batch"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/utils/pointer"
    )
    
    // Funcs returns the fuzzer functions for the batch api group.
    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(j *batch.Job, c fuzz.Continue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/go.sum

    github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
    github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
    github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
    github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/function-func-attr.pbtxt

    # CHECK-DAG: func private @custom_embedding_matmul{{[0-9]*}}(){{.+}}tf._implements = #tf_type.func<@tensorflow.embedding_matmul, {key1 = 2 : i64, key2 = false}>, tf._original_func_name = "custom_embedding_matmul"}...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 20:09:54 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/fuzzer/fuzzer.go

    */
    
    package fuzzer
    
    import (
    	"fmt"
    	"time"
    
    	"github.com/google/gofuzz"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/utils/ptr"
    )
    
    // Funcs returns the fuzzer functions for the kube-proxy apis.
    func Funcs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/round_trip_test.go

    package webhook
    
    import (
    	"math/rand"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	authorizationv1 "k8s.io/api/authorization/v1"
    	authorizationv1beta1 "k8s.io/api/authorization/v1beta1"
    )
    
    func TestRoundTrip(t *testing.T) {
    	f := fuzz.New()
    	seed := time.Now().UnixNano()
    	t.Logf("seed = %v", seed)
    	f.RandSource(rand.New(rand.NewSource(seed)))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/fuzzer.go

    package fuzzer
    
    import (
    	"strings"
    
    	fuzz "github.com/google/gofuzz"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apiserver/pkg/apis/audit"
    )
    
    // Funcs returns the fuzzer functions for the audit api group.
    func Funcs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(e *audit.Event, c fuzz.Continue) {
    			c.FuzzNoCustom(e)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 16:10:17 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi_test.go

    import (
    	"math/rand"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    func TestStructuralKubeOpenAPIRoundtrip(t *testing.T) {
    	f := fuzz.New()
    	seed := time.Now().UnixNano()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    package webhook
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	v1 "k8s.io/api/admissionregistration/v1"
    )
    
    func TestMutatingWebhookAccessor(t *testing.T) {
    	f := fuzz.New()
    	for i := 0; i < 100; i++ {
    		t.Run(fmt.Sprintf("Run %d/100", i), func(t *testing.T) {
    			orig := &v1.MutatingWebhook{}
    			f.Fuzz(orig)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/go.mod

    	github.com/go-openapi/swag v0.22.4 // indirect
    	github.com/gogo/protobuf v1.3.2 // indirect
    	github.com/golang/protobuf v1.5.4 // indirect
    	github.com/google/btree v1.0.1 // indirect
    	github.com/google/gofuzz v1.2.0 // indirect
    	github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
    	github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
    	github.com/imdario/mergo v0.3.6 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top