Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzOverlayIOP (0.26 sec)

  1. tests/fuzz/regression_test.go

    		{"FuzzGetEnabledComponents", FuzzGetEnabledComponents},
    		{"FuzzUnmarshalAndValidateIOPS", FuzzUnmarshalAndValidateIOPS},
    		{"FuzzRenderManifests", FuzzRenderManifests},
    		{"FuzzOverlayIOP", FuzzOverlayIOP},
    		{"FuzzNewControlplane", FuzzNewControlplane},
    		{"FuzzResolveK8sConflict", FuzzResolveK8sConflict},
    		{"FuzzYAMLManifestPatch", FuzzYAMLManifestPatch},
    		{"FuzzGalleyDiag", FuzzGalleyDiag},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzUnmarshalAndValidateIOPS fuzz_unmarshal_and_validate_iops
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzRenderManifests fuzz_render_manifests
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzOverlayIOP fuzz_overlay_iop
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzNewControlplane fuzz_new_control_plane
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzResolveK8sConflict fuzz_resolve_k8s_conflict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tests/fuzz/misc_fuzzers.go

    	f.AllowUnexportedFields()
    
    	cp := &controlplane.IstioControlPlane{}
    	err := f.GenerateStruct(cp)
    	if err != nil {
    		return 0
    	}
    	_, _ = cp.RenderManifest()
    	return 1
    }
    
    func FuzzOverlayIOP(data []byte) int {
    	f := fuzz.NewConsumer(data)
    
    	base, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    	overlay, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top