Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 251 for buzz (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/scriptconds_test.go

    	add("cross", script.BoolCondition("cmd/go GOOS/GOARCH != GOHOSTOS/GOHOSTARCH", goHostOS != runtime.GOOS || goHostArch != runtime.GOARCH))
    	add("fuzz", sysCondition("-fuzz", platform.FuzzSupported, false))
    	add("fuzz-instrumented", sysCondition("-fuzz with instrumentation", platform.FuzzInstrumented, false))
    	add("git", lazyBool("the 'git' executable exists and provides the standard CLI", hasWorkingGit))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/fuzz/FuzzReader/4d9ddc909984e871

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 163 bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/testdata/fuzz/FuzzRoundTrip/b615162315f7b72c

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

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 23:37:45 UTC 2023
    - 37 bytes
    - Viewed (0)
Back to top