Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for fuzz (0.26 sec)

  1. src/testing/internal/testdeps/deps.go

    	defer cancel()
    	err := fuzz.RunFuzzWorker(ctx, fn)
    	if err == ctx.Err() {
    		return nil
    	}
    	return err
    }
    
    func (TestDeps) ReadCorpus(dir string, types []reflect.Type) ([]fuzz.CorpusEntry, error) {
    	return fuzz.ReadCorpus(dir, types)
    }
    
    func (TestDeps) CheckCorpus(vals []any, types []reflect.Type) error {
    	return fuzz.CheckCorpus(vals, types)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    			*r = networking.HTTPRewrite{}
    		},
    
    		func(r *durationpb.Duration, c fuzz.Continue) {
    			*r = durationpb.Duration{}
    		},
    		func(r *networking.HTTPRetry, c fuzz.Continue) {
    			*r = networking.HTTPRetry{}
    		},
    		func(r *networking.HTTPFaultInjection, c fuzz.Continue) {
    			*r = networking.HTTPFaultInjection{}
    		},
    		func(r *networking.Destination, c fuzz.Continue) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	    fuzz tests should be executed. The default is the current value
    	    of GOMAXPROCS. -cpu does not apply to fuzz tests matched by -fuzz.
    
    	-failfast
    	    Do not start new tests after the first test failure.
    
    	-fullpath
    	    Show full file names in the error messages.
    
    	-fuzz regexp
    	    Run the fuzz test matching the regular expression. When specified,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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/internal/trace/testdata/fuzz/FuzzReader/1e45307d5b2ec36d

    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)
  10. src/internal/trace/testdata/fuzz/FuzzReader/d91203cd397aa0bc

    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)
Back to top