Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Fuzz (0.02 sec)

  1. README.md

    [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/tensorflow.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:tensorflow)
    [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/tensorflow-py.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:tensorflow-py)
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-28 20:38
    - 11.6K bytes
    - Viewed (0)
  2. src/archive/zip/fuzz_test.go

    		if de.IsDir() {
    			continue
    		}
    		b, err := os.ReadFile(filepath.Join("testdata", de.Name()))
    		if err != nil {
    			f.Fatalf("failed to read testdata: %s", err)
    		}
    		f.Add(b)
    	}
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r, err := NewReader(bytes.NewReader(b), int64(len(b)))
    		if err != nil {
    			return
    		}
    
    		type file struct {
    			header  *FileHeader
    			content []byte
    		}
    		files := []file{}
    Registered: 2025-05-27 11:13
    - Last Modified: 2022-01-13 18:06
    - 1.7K bytes
    - Viewed (0)
  3. CODEOWNERS

    /pkg/spiffe/                                                     @istio/wg-security-maintainers
    /pkg/test/                                                       @istio/wg-test-and-release-maintainers
    /pkg/fuzz/                                                       @istio/wg-test-and-release-maintainers
    /pkg/tracing/                                                    @istio/wg-policies-and-telemetry-maintainers
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-03 00:41
    - 7.1K bytes
    - Viewed (0)
  4. src/archive/tar/fuzz_test.go

    	}
    	_, err = w.Write(inp)
    	if err != nil {
    		f.Fatalf("failed to write file to archive: %s", err)
    	}
    	if err := w.Close(); err != nil {
    		f.Fatalf("failed to write archive: %s", err)
    	}
    	f.Add(b.Bytes())
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r := NewReader(bytes.NewReader(b))
    		type file struct {
    			header  *Header
    			content []byte
    		}
    		files := []file{}
    		for {
    			hdr, err := r.Next()
    			if err == io.EOF {
    Registered: 2025-05-27 11:13
    - Last Modified: 2022-01-13 18:06
    - 2.2K bytes
    - Viewed (0)
  5. common/config/.golangci.yml

                - '!**/istioctl/**'
                - '!**/tools/bug-report/**'
                - '!**/pkg/kube/**'
                - '!**/pkg/url/**'
                - '!**/pkg/test/framework/**'
                - '!**/tests/fuzz/**'
              deny:
                - pkg: istio.io/istio/operator
                  desc: operator should not be imported
                - pkg: istio.io/istio/istioctl
                  desc: istioctl should not be imported
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-10 14:30
    - 8.1K bytes
    - Viewed (0)
  6. api/go1.18.txt

    pkg testing, method (*F) FailNow()
    pkg testing, method (*F) Failed() bool
    pkg testing, method (*F) Fatal(...interface{})
    pkg testing, method (*F) Fatalf(string, ...interface{})
    pkg testing, method (*F) Fuzz(interface{})
    pkg testing, method (*F) Helper()
    pkg testing, method (*F) Log(...interface{})
    pkg testing, method (*F) Logf(string, ...interface{})
    pkg testing, method (*F) Name() string
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-02-17 20:31
    - 13K bytes
    - Viewed (0)
  7. go.mod

    module istio.io/istio
    
    go 1.24.0
    
    require (
    	cloud.google.com/go/compute/metadata v0.6.0
    	github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6
    	github.com/Masterminds/semver/v3 v3.3.1
    	github.com/Masterminds/sprig/v3 v3.3.0
    	github.com/alecholmes/xfccparser v0.4.0
    	github.com/cbeuw/connutil v0.0.0-20200411215123-966bfaa51ee3
    	github.com/cenkalti/backoff/v4 v4.3.0
    	github.com/cespare/xxhash/v2 v2.3.0
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-25 02:39
    - 10.3K bytes
    - Viewed (0)
  8. go.sum

    dario.cat/mergo v1.0.2 h1:85+piFYR1tMbRrLcDwR18y4UKJ3aH1Tbzi24VRW1TK8=
    dario.cat/mergo v1.0.2/go.mod h1:E/hbnu0NxMFBjpMIE34DRGLWqDy0g5FuKDhCb31ngxA=
    github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 h1:He8afgbRMd7mFxO99hRNu+6tazq8nFF9lIwo9JFroBk=
    github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8=
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-25 02:39
    - 61.1K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    			}
    		}
    	}
    }
    
    func FuzzReplace(f *testing.F) {
    	for _, tt := range ReplaceTests {
    		f.Add([]byte(tt.in), []byte(tt.old), []byte(tt.new), tt.n)
    	}
    	f.Fuzz(func(t *testing.T, in, old, new []byte, n int) {
    		differentImpl := func(in, old, new []byte, n int) []byte {
    			var out Buffer
    			if n < 0 {
    				n = math.MaxInt
    			}
    			for i := 0; i < len(in); {
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-05-15 21:24
    - 62.9K bytes
    - Viewed (0)
  10. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    bulsan-südtirol.it
    bulsan.it
    bungoono.oita.jp
    bungotakada.oita.jp
    bunkyo.tokyo.jp
    busan.kr
    business
    business.in
    but.jp
    buy
    buyshop.jp
    buyshouses.net
    buzen.fukuoka.jp
    buzz
    bv
    bw
    by
    bydgoszcz.pl
    byen.site
    bygland.no
    bykle.no
    bytom.pl
    bz
    bz.it
    bzh
    báhcavuotna.no
    báhccavuotna.no
    báidár.no
    bájddar.no
    bálát.no
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 22:00
    - 129.6K bytes
    - Viewed (1)
Back to top