Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 312 for buzz (0.05 sec)

  1. src/internal/fuzz/sys_posix.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.
    
    //go:build darwin || freebsd || linux
    
    package fuzz
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"syscall"
    )
    
    type sharedMemSys struct{}
    
    func sharedMemMapFile(f *os.File, size int, removeOnClose bool) (*sharedMem, error) {
    	prot := syscall.PROT_READ | syscall.PROT_WRITE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/internal/pgo/testdata/fuzz/FuzzRoundTrip/2055d314024c8d6c

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 48 bytes
    - Viewed (0)
  3. src/runtime/debug/testdata/fuzz/FuzzParseBuildInfoRoundTrip/c73dce23c1f2494c

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 23:37:45 UTC 2023
    - 44 bytes
    - Viewed (0)
  4. src/internal/fuzz/worker_test.go

    // Copyright 2021 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 (
    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"internal/race"
    	"io"
    	"os"
    	"os/signal"
    	"reflect"
    	"strconv"
    	"testing"
    	"time"
    )
    
    var benchmarkWorkerFlag = flag.Bool("benchmarkworker", false, "")
    
    func TestMain(m *testing.M) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/output/fuzzer/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 fuzzer
    
    import (
    	"time"
    
    	fuzz "github.com/google/gofuzz"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    
    	bootstraptokenv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/bootstraptoken/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/fuzz/FuzzReader/aeb749b6bc317b66

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

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

    // identified through fuzzing.
    //
    // The function passed to (*F).Fuzz within the fuzz test is considered the fuzz
    // target. A fuzz target must accept a *T parameter, followed by one or more
    // parameters for random inputs. The types of arguments passed to (*F).Add must
    // be identical to the types of these parameters. The fuzz target may signal
    // that it's found a problem the same way tests do: by calling T.Fail (or any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    	seed := rand.Int63()
    	fuzzer := fuzzer.FuzzerFor(metafuzzer.Funcs, rand.NewSource(seed), codecs)
    
    	// fuzz to make sure we don't miss any function calls below
    	u := &unstructured.Unstructured{Object: map[string]interface{}{}}
    	metadata := &metav1.ObjectMeta{}
    	fuzzer.Fuzz(metadata)
    	if err := setObjectMeta(u, metadata); err != nil {
    		t.Fatalf("unexpected error setting fuzzed ObjectMeta: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. tests/fuzz/crd_roundtrip_fuzzer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package fuzz
    
    import (
    	"bytes"
    	"encoding/hex"
    	"fmt"
    	"reflect"
    	"strings"
    	"sync"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    	"github.com/davecgh/go-spew/spew"
    	legacyproto "github.com/golang/protobuf/proto" // nolint: staticcheck
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top