Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzNewBootstrapServer (0.43 sec)

  1. tests/fuzz/regression_test.go

    		{"FuzzNewControlplane", FuzzNewControlplane},
    		{"FuzzResolveK8sConflict", FuzzResolveK8sConflict},
    		{"FuzzYAMLManifestPatch", FuzzYAMLManifestPatch},
    		{"FuzzGalleyDiag", FuzzGalleyDiag},
    		{"FuzzNewBootstrapServer", FuzzNewBootstrapServer},
    		{"FuzzGenCSR", FuzzGenCSR},
    		{"FuzzCreateCertE2EUsingClientCertAuthenticator", FuzzCreateCertE2EUsingClientCertAuthenticator},
    		{"FuzzConfigValidation3", FuzzConfigValidation3},
    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/bootstrap_fuzzer.go

    // nolint: revive
    package fuzz
    
    import (
    	"os"
    	"time"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pilot/pkg/bootstrap"
    	"istio.io/istio/pkg/config/mesh"
    )
    
    func FuzzNewBootstrapServer(data []byte) int {
    	f := fuzz.NewConsumer(data)
    
    	// Create mesh config file
    	meshConfigFile, err := createRandomConfigFile(f)
    	if err != nil {
    		return 0
    	}
    	defer os.Remove(meshConfigFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzYAMLManifestPatch fuzz_yaml_manifest_patch
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzGalleyDiag fuzz_galley_diag
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzNewBootstrapServer fuzz_new_bootstrap_server
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzGenCSR fuzz_gen_csr
    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