Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 312 for buzz (0.15 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // builders : 2013-11-07 Binky Moon, LLC
    builders
    
    // business : 2013-11-07 Binky Moon, LLC
    business
    
    // buy : 2014-12-18 Amazon Registry Services, Inc.
    buy
    
    // buzz : 2013-10-02 DOTSTRATEGY CO.
    buzz
    
    // bzh : 2014-02-27 Association www.bzh
    bzh
    
    // cab : 2013-10-24 Binky Moon, LLC
    cab
    
    // cafe : 2015-02-11 Binky Moon, LLC
    cafe
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_modcache.txt

    # If the module does include a test corpus, 'go test' (without '-fuzz') should
    # load that corpus and run the fuzz tests against it, but 'go test -fuzz=.'
    # should continue to be rejected.
    
    go get -t example.com/fuzzfail@v0.2.0
    
    ! go test example.com/fuzzfail
    stdout '^\s*fuzzfail_test\.go:7: oops:'
    
    ! go test -fuzz=. example.com/fuzzfail
    ! stdout .
    stderr '^cannot use -fuzz flag on package outside the main module$'
    
    go mod verify
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz.txt

    -- corpustesting/testdata/fuzz/FuzzPass/1 --
    go test fuzz v1
    []byte("00000")
    -- corpustesting/testdata/fuzz/FuzzPassString/1 --
    go test fuzz v1
    string("hello")
    -- corpustesting/testdata/fuzz/FuzzPanic/1 --
    malformed
    -- corpustesting/testdata/fuzz/FuzzInNestedDir/anotherdir/1 --
    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzWrongType/1 --
    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_cache.txt

    [!fuzz-instrumented] skip
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Fuzz cache should not exist after a regular test run.
    go test .
    exists $GOCACHE
    ! exists $GOCACHE/fuzz
    
    # Fuzzing should write interesting values to the cache.
    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. pkg/apis/core/fuzzer/fuzzer.go

    			}
    		},
    		func(s *core.PodStatus, c fuzz.Continue) {
    			c.Fuzz(&s)
    			s.HostIPs = []core.HostIP{{IP: s.HostIP}}
    		},
    		func(j *core.PodPhase, c fuzz.Continue) {
    			statuses := []core.PodPhase{core.PodPending, core.PodRunning, core.PodFailed, core.PodUnknown}
    			*j = statuses[c.Rand.Intn(len(statuses))]
    		},
    		func(j *core.Binding, c fuzz.Continue) {
    			c.Fuzz(&j.ObjectMeta)
    			j.Target.Name = c.RandString()
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_match.txt

    stdout '^ok'
    stdout 'no fuzz tests to fuzz'
    
    [short] stop
    
    # Matches only fuzz targets to test with -run.
    go test -run Fuzz standalone_fuzz_test.go
    ! stdout '^ok.*\[no tests to run\]'
    stdout '^ok'
    
    # Matches no fuzz targets.
    go test -run ThisWillNotMatch standalone_fuzz_test.go
    stdout '^ok.*no tests to run'
    ! stdout 'no fuzz tests to fuzz'
    
    -- standalone_fuzz_test.go --
    package standalone_fuzz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 953 bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/fuzz_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/fuzz"
    )
    
    func FuzzBuildGatewayListeners(f *testing.F) {
    	f.Fuzz(func(t *testing.T, patchCount int, hostname string, data []byte) {
    		defer fuzz.Finalize()
    		fg := fuzz.New(t, data)
    		proxy := fuzz.Struct[*model.Proxy](fg)
    		to := fuzz.Struct[TestOptions](fg)
    		lb := fuzz.Struct[*ListenerBuilder](fg)
    		cg := NewConfigGenTest(t, to)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_mutate_fail.txt

    [!fuzz] skip
    
    # Check that if a worker does not call F.Fuzz or calls F.Fail first,
    # 'go test' exits non-zero and no crasher is recorded.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    ! go test -fuzz=FuzzReturn
    ! exists testdata
    
    ! go test -fuzz=FuzzSkip
    ! exists testdata
    
    ! go test -fuzz=FuzzFail
    ! exists testdata
    
    ! go test -fuzz=FuzzPanic
    ! exists testdata
    
    ! go test -fuzz=FuzzNilPanic
    ! exists testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    ! go test -fuzz=. ./zero ./one
    stderr '^cannot use -fuzz flag with multiple packages$'
    go test -fuzz=. -fuzztime=1x ./one
    
    # With fuzzing enabled, at most one target in the same package may match.
    ! go test -fuzz=. ./two
    stdout '^testing: will not fuzz, -fuzz matches more than one fuzz test: \[FuzzOne FuzzTwo\]$'
    go test -fuzz=FuzzTwo -fuzztime=1x ./two
    
    -- go.mod --
    module fuzz
    
    go 1.18
    -- zero/zero.go --
    package zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    ! go test -run=FuzzWithNilPanic -fuzz=FuzzWithNilPanic -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithNilPanic[/\\]'
    stdout 'panic called with nil argument|test executed panic.nil. or runtime.Goexit'
    go run check_testdata.go FuzzWithNilPanic
    
    ! go test -run=FuzzWithGoexit -fuzz=FuzzWithGoexit -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithGoexit[/\\]'
    stdout 'runtime.Goexit'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top