Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for fuzz (0.24 sec)

  1. pkg/util/coverage/fake_test_deps.go

    // which is called unconditionally when running tests.
    //
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    type fakeTestDeps struct{}
    
    // https://go.dev/src/testing/fuzz.go#L88
    //
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    type corpusEntry = struct {
    	Parent     string
    	Path       string
    	Data       []byte
    	Values     []any
    	Generation int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/fuzz/pcg.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fuzz
    
    import (
    	"math/bits"
    	"os"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    )
    
    type mutatorRand interface {
    	uint32() uint32
    	intn(int) int
    	uint32n(uint32) uint32
    	exp2() int
    	bool() bool
    
    	save(randState, randInc *uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/trace/reader_test.go

    	// Currently disabled because the parser doesn't do much validation and most
    	// getters can be made to panic. Turn this on once the parser is meant to
    	// reject invalid traces.
    	const testGetters = false
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r, err := trace.NewReader(bytes.NewReader(b))
    		if err != nil {
    			return
    		}
    		for {
    			ev, err := r.ReadEvent()
    			if err != nil {
    				break
    			}
    
    			if !testGetters {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/internal/platform/supported.go

    	default:
    		return false
    	}
    }
    
    // FuzzSupported reports whether goos/goarch supports fuzzing
    // ('go test -fuzz=.').
    func FuzzSupported(goos, goarch string) bool {
    	switch goos {
    	case "darwin", "freebsd", "linux", "windows":
    		return true
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations:
        fizz: buzz
      labels:
        foo: bar
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
      name: default-istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/HierarchicalNameSerializerTest.groovy

                "com.foo.bar.FooBarBazTest",
                "com/foo/bar/FooBarBazTest\$SomeUtility.java",
                "com.foo.bar.FooBarBazTest\$SomeUtility",
                "com.fizz.buzz.TestUtil",
                "com.fizz.buzz.SomeUtil",
                "com.google.common.collect.ImmutableSet",
                "com.google.common.collect.ImmutableSet",
                "com.google.common.collect.ImmutableSet",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/config/security/security_test.go

    			values:    []string{"/foo/{buzz}/bar/{**}"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchAnyTemplate with named var: {buzz=*}",
    			values:    []string{"/foo/{buzz=*}/bar/{**}"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchAnyTemplate with named var: {buzz=**}",
    			values:    []string{"/{*}/foo/{buzz=**}/bar"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

        if (api_def == nullptr) {
          continue;
        }
    
        OpInfo op_info(op_def, *api_def, std::vector<string>());
        status.Update(env->NewWritableFile(
            root_location + "/" + op_def.name() + "_fuzz.cc", &fuzz_file));
        status.Update(
            fuzz_file->Append(WriteSingleFuzzer(op_info, OpFuzzingIsOk(op_info))));
        status.Update(fuzz_file->Close());
      }
      TF_CHECK_OK(status);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top