Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 301 for fizz (0.06 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    					Infrastructure: &k8s.GatewayInfrastructure{
    						Labels:      map[k8s.AnnotationKey]k8s.AnnotationValue{"foo": "bar", "gateway.networking.k8s.io/ignore": "true"},
    						Annotations: map[k8s.AnnotationKey]k8s.AnnotationValue{"fizz": "buzz", "gateway.networking.k8s.io/ignore": "true"},
    					},
    				},
    			},
    			objects: defaultObjects,
    		},
    		{
    			name: "kube-gateway-ambient-redirect",
    			gw: k8sbeta.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. tests/fuzz/Dockerfile.fuzz

        rm -rf  /var/log/*log \
        /var/lib/apt/lists/* \
        /var/log/apt/* \
        /var/lib/dpkg/*-old \
        /var/cache/debconf/*-old
    
    RUN go get -u github.com/dvyukov/go-fuzz/go-fuzz \
        github.com/dvyukov/go-fuzz/go-fuzz-dep \
        github.com/dvyukov/go-fuzz/go-fuzz-build
    
    COPY . /istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 12:29:52 UTC 2021
    - 957 bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    // F is a type passed to fuzz tests.
    //
    // Fuzz tests run generated inputs against a provided fuzz target, which can
    // find and report potential bugs in the code being tested.
    //
    // A fuzz test runs the seed corpus by default, which includes entries provided
    // by (*F).Add and entries in the testdata/fuzz/<FuzzTestName> directory. After
    // any necessary setup and calls to (*F).Add, the fuzz test must then call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. tests/fuzz/fuzz.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package fuzz
    
    import (
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    )
    
    func FuzzParseInputs(data []byte) int {
    	_, _, err := crd.ParseInputs(string(data))
    	if err != nil {
    		return 0
    	}
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 03:26:36 UTC 2022
    - 783 bytes
    - Viewed (0)
  5. src/internal/fuzz/fuzz.go

    		if coverageEnabled {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, gathering baseline coverage: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		} else {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, testing seed corpus: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		}
    	} else if c.crashMinimizing != nil {
    		fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, minimizing\n", c.elapsed())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. pkg/fuzz/README.md

    func FuzzBuildHTTP(f *testing.F) {
      fuzz.Fuzz(f, func(fg fuzz.Helper) {
        // Setup a few structs for testing
        bundle := fuzz.Struct[trustdomain.Bundle](fg)
            // This one has a custom validator
        push := fuzz.Struct[*model.PushContext](fg, validatePush)
            // *model.Proxy, and other types, implement the fuzz.Validator interface and already validate some basics.
        node := fuzz.Struct[*model.Proxy](fg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_profile_flags.txt

    [!fuzz] skip
    
    ! go test -fuzz=FuzzTrivial -coverprofile=prof
    ! stdout .
    stderr '^cannot use -coverprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -blockprofile=prof
    ! stdout .
    stderr '^cannot use -blockprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -cpuprofile=prof
    ! stdout .
    stderr '^cannot use -cpuprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -memprofile=prof
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:01:20 UTC 2021
    - 855 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top