Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fuzzers (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		}
    		if q.Cmp(Quantity{}) == 0 {
    			continue
    		}
    		if e, a := "-"+item.expect, q.String(); e != a {
    			t.Errorf("%#v: expected %v, got %v (%#v)", item.in, e, a, q.i)
    		}
    	}
    }
    
    var fuzzer = fuzz.New().Funcs(
    	func(q *Quantity, c fuzz.Continue) {
    		q.i = Zero
    		if c.RandBool() {
    			q.Format = BinarySI
    			if c.RandBool() {
    				dec := &inf.Dec{}
    				q.d = infDecAmount{Dec: dec}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		testlogArg = []string{"-test.testlogfile=" + a.Objdir + "testlog.txt"}
    	}
    	panicArg := "-test.paniconexit0"
    	fuzzArg := []string{}
    	if testFuzz != "" {
    		fuzzCacheDir := filepath.Join(cache.Default().FuzzDir(), a.Package.ImportPath)
    		fuzzArg = []string{"-test.fuzzcachedir=" + fuzzCacheDir}
    	}
    	coverdirArg := []string{}
    	addToEnv := ""
    	if cfg.BuildCover {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tests/integration/security/fuzz/fuzzers/wfuzz/wordlist.yaml

    # Luca "ikki" Carettoni - v0.1
    #
    # 847 attack vectors, 8 levels of recursion (Unix-like, Windows)
    #
    # Usage: replace {FILE} with the absolute URI of a local resource, then use
    # your favourite web application fuzzer (e.g. wfuzz)
    # Generated from https://github.com/xmendez/wfuzz/blob/master/wordlist/vulns/dirTraversal.txt
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: wordlist
    data:
      dirTraversal.txt: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 86K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// (memoryLimitMinHeapGoalHeadroom, not pictured) because the aforementioned pacing inaccuracies
    	// disproportionately affect small heaps: as heaps get smaller, the pacer's inputs get fuzzier.
    	// Shorter GC cycles and less GC work means noisy external factors like the OS scheduler have a
    	// greater impact.
    
    	memoryLimit := uint64(c.memoryLimit.Load())
    
    	// Compute term 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top