Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createIstiodDumps (0.24 sec)

  1. tests/fuzz/compare_fuzzer.go

    // nolint: revive
    package fuzz
    
    import (
    	"bytes"
    	"errors"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/istioctl/pkg/writer/compare"
    )
    
    func createIstiodDumps(f *fuzz.ConsumeFuzzer) (map[string][]byte, error) {
    	m := make(map[string][]byte)
    	maxNoEntries := 50
    	qty, err := f.GetInt()
    	if err != nil {
    		return m, err
    	}
    	noOfEntries := qty % maxNoEntries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top