Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/apis/admission/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 (
    	fuzz "github.com/google/gofuzz"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 14 21:57:55 UTC 2019
    - 1.2K 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top