Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzIntoResourceFile (0.24 sec)

  1. tests/fuzz/regression_test.go

    		{"FuzzInitContext", FuzzInitContext},
    		{"FuzzXds", FuzzXds},
    		{"FuzzAnalyzer", FuzzAnalyzer},
    		{"FuzzCompareDiff", FuzzCompareDiff},
    		{"FuzzHelmReconciler", FuzzHelmReconciler},
    		{"FuzzIntoResourceFile", FuzzIntoResourceFile},
    		{"FuzzTranslateFromValueToSpec", FuzzTranslateFromValueToSpec},
    		{"FuzzConfigValidation2", FuzzConfigValidation2},
    		{"FuzzBNMUnmarshalJSON", FuzzBNMUnmarshalJSON},
    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/inject_fuzzer.go

    // limitations under the License.
    
    package fuzz
    
    import (
    	"bytes"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube/inject"
    )
    
    func FuzzIntoResourceFile(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	var sidecarTemplate map[string]string
    	err := f.FuzzMap(&sidecarTemplate)
    	if err != nil {
    		return 0
    	}
    	valuesConfig, err := f.GetString()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzCompareDiff fuzz_compare_diff
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzHelmReconciler fuzz_helm_reconciler
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzIntoResourceFile fuzz_into_resource_file
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzTranslateFromValueToSpec fuzz_translate_from_value_to_spec
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzBNMUnmarshalJSON fuzz_bnm_unmarshal_json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top