Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for fuzz (0.16 sec)

  1. 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)
  2. pkg/kubelet/stats/provider_test.go

    	}
    	return statsapi.VolumeStats{
    		FsStats: fsStats,
    		Name:    volumeName,
    	}
    }
    
    func generateCustomMetricSpec() []cadvisorapiv1.MetricSpec {
    	f := fuzz.New().NilChance(0).Funcs(
    		func(e *cadvisorapiv1.MetricSpec, c fuzz.Continue) {
    			c.Fuzz(&e.Name)
    			switch c.Intn(3) {
    			case 0:
    				e.Type = cadvisorapiv1.MetricGauge
    			case 1:
    				e.Type = cadvisorapiv1.MetricCumulative
    			case 2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K 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. 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)
  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. 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/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)
Back to top