Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for fuzzers (0.14 sec)

  1. tests/integration/security/fuzz/fuzz_test.go

    	return false
    }
    
    func runFuzzer(t framework.TestContext, fuzzer, ns, server string) {
    	pods, err := t.Clusters().Default().PodsForSelector(context.TODO(), ns, "app="+fuzzer)
    	if err != nil {
    		t.Fatalf("failed to get %s pod: %v", fuzzer, err)
    	}
    	t.Logf("running %s test against the %s (should normally complete in 60 seconds)...", fuzzer, server)
    
    	switch fuzzer {
    	case dotdotpwn:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is deprecated.\n";
        return false;
      }
    
      // TODO(unda, b/249347507): should we hide fuzzers for hidden ops?
      if (op_info.api_def.visibility() == ApiDef::HIDDEN) {
        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is hidden.\n";
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package fuzzer
    
    import (
    	"fmt"
    	"math/rand"
    	"sort"
    	"strconv"
    	"strings"
    
    	fuzz "github.com/google/gofuzz"
    
    	apitesting "k8s.io/apimachinery/pkg/api/apitesting"
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	roundTripTypes(t, scheme, codecFactory, fuzzer, nonRoundTrippableTypes, true)
    }
    
    func RoundTripTypes(t *testing.T, scheme *runtime.Scheme, codecFactory runtimeserializer.CodecFactory, fuzzer *fuzz.Fuzzer, nonRoundTrippableTypes map[schema.GroupVersionKind]bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. pkg/apis/core/fuzzer/fuzzer.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package fuzzer
    
    import (
    	"reflect"
    	"strconv"
    	"time"
    
    	fuzz "github.com/google/gofuzz"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pkg/api/testing/serialization_test.go

    	k8s_api_v1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"sigs.k8s.io/yaml"
    )
    
    // fuzzInternalObject fuzzes an arbitrary runtime object using the appropriate
    // fuzzer registered with the apitesting package.
    func fuzzInternalObject(t *testing.T, forVersion schema.GroupVersion, item runtime.Object, seed int64) runtime.Object {
    	fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(seed), legacyscheme.Codecs).Fuzz(item)
    
    	j, err := meta.TypeAccessor(item)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. src/internal/fuzz/fuzz.go

    			// The messages are not helpful since either the user triggered the error
    			// (with ^C) or another more helpful message will be printed (a crasher).
    			err = nil
    		}
    		if err != nil && (fuzzErr == nil || fuzzErr == ctx.Err()) {
    			fuzzErr = err
    		}
    		if stopping {
    			return
    		}
    		stopping = true
    		cancelWorkers()
    		doneC = nil
    	}
    
    	// Ensure that any crash we find is written to the corpus, even if an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    }
    
    func TestValidateNestedValueValidationComplete(t *testing.T) {
    	fuzzer := fuzz.New()
    	fuzzer.Funcs(
    		func(s *JSON, c fuzz.Continue) {
    			if c.RandBool() {
    				s.Object = float64(42.0)
    			}
    		},
    		func(s **NestedValueValidation, c fuzz.Continue) {
    			if c.RandBool() {
    				*s = &NestedValueValidation{}
    			}
    		},
    	)
    	fuzzer.NilChance(0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/conversion_test.go

    					},
    				},
    			},
    		},
    	}
    
    	// Add some fuzzed RCs.
    	apiObjectFuzzer := fuzzer.FuzzerFor(fuzzer.MergeFuzzerFuncs(metafuzzer.Funcs, corefuzzer.Funcs), rand.NewSource(152), legacyscheme.Codecs)
    	for i := 0; i < 100; i++ {
    		rc := &v1.ReplicationController{}
    		apiObjectFuzzer.Fuzz(rc)
    		// Sometimes the fuzzer decides to leave Spec.Template nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/coerce_test.go

    	codec := json.NewSerializer(json.DefaultMetaFactory, scheme, scheme, false)
    	seed := rand.Int63()
    	fuzzer := fuzzer.FuzzerFor(metafuzzer.Funcs, rand.NewSource(seed), codecs)
    
    	N := 1000
    	for i := 0; i < N; i++ {
    		u := &unstructured.Unstructured{Object: map[string]interface{}{}}
    		original := &metav1.ObjectMeta{}
    		fuzzer.Fuzz(original)
    		if err := SetObjectMeta(u.Object, original); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top