Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 312 for buzz (0.05 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/fuzz/FuzzReader/malformed-timestamp

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 234 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/fuzz/FuzzReader/large-id

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 252 bytes
    - Viewed (0)
  4. src/html/fuzz_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package html
    
    import "testing"
    
    func FuzzEscapeUnescape(f *testing.F) {
    	f.Fuzz(func(t *testing.T, v string) {
    		e := EscapeString(v)
    		u := UnescapeString(e)
    		if u != v {
    			t.Errorf("EscapeString(%q) = %q, UnescapeString(%q) = %q, want %q", v, e, e, u, v)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 20:35:20 UTC 2023
    - 636 bytes
    - Viewed (0)
  5. src/internal/fuzz/counters_supported.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (darwin || linux || windows || freebsd) && (amd64 || arm64)
    
    package fuzz
    
    import (
    	"unsafe"
    )
    
    // coverage returns a []byte containing unique 8-bit counters for each edge of
    // the instrumented source code. This coverage data will only be generated if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 21:16:39 UTC 2022
    - 710 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_fuzzfail_v0.1.0.txt

    go 1.18
    -- .info --
    {"Version":"v0.1.0"}
    -- go.mod --
    module example.com/fuzzfail
    
    go 1.18
    -- fuzzfail_test.go --
    package fuzzfail
    
    import "testing"
    
    func FuzzFail(f *testing.F) {
    	f.Fuzz(func(t *testing.T, b []byte) {
    		t.Fatalf("oops: %q", b)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 291 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/fuzz/FuzzReader/invalid-proc-state

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 221 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    			if ok {
    				t.Fatalf("Expected %s to be unescapable, but it escaped to: %s", s, e)
    			}
    		})
    	}
    }
    
    func TestEscapingFuzz(t *testing.T) {
    	fuzzer := fuzz.New()
    	for i := 0; i < 1000; i++ {
    		var unescaped string
    		fuzzer.Fuzz(&unescaped)
    		t.Run(fmt.Sprintf("%d - '%s'", i, unescaped), func(t *testing.T) {
    			if len(unescaped) == 0 {
    				return
    			}
    			escaped, ok := Escape(unescaped)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. tests/fuzz/operator_translate_fuzzer.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/operator/pkg/translate"
    )
    
    func FuzzTranslateFromValueToSpec(data []byte) int {
    	tr := translate.NewReverseTranslator()
    	_, _ = tr.TranslateFromValueToSpec(data, false)
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 807 bytes
    - Viewed (0)
  10. tests/fuzz/mesh_fuzzer.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/pkg/config/mesh"
    )
    
    func FuzzParseMeshNetworks(data []byte) int {
    	_, _ = mesh.ParseMeshNetworks(string(data))
    	return 1
    }
    
    func FuzzValidateMeshConfig(data []byte) int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 860 bytes
    - Viewed (0)
Back to top