Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for benchmarking (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				if err != nil {
    					b.Fatalf("parse selector: %v", err)
    				}
    				pred := storage.SelectionPredicate{
    					Label: labels.Everything(),
    					Field: parsedField,
    				}
    
    				// now we start benchmarking
    				b.ResetTimer()
    				for i := 0; i < b.N; i++ {
    					result := &example.PodList{}
    					err = cacher.GetList(context.TODO(), "pods", storage.ListOptions{
    						Predicate:       pred,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	var buf bytes.Buffer
    	if len(pkgArgs) == 0 || testBench != "" || testFuzz != "" {
    		// Stream test output (no buffering) when no package has
    		// been given on the command line (implicit current directory)
    		// or when benchmarking or fuzzing.
    		// No change to stdout.
    	} else {
    		// If we're only running a single package under test or if parallelism is
    		// set to 1, and if we're displaying all output (testShowPass), we can
    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. src/cmd/compile/internal/ssagen/ssa.go

    	// useful on all architectures.
    	var hotAlign, hotRequire int64
    
    	if base.Debug.AlignHot > 0 {
    		switch base.Ctxt.Arch.Name {
    		// enable this on a case-by-case basis, with benchmarking.
    		// currently shown:
    		//   good for amd64
    		//   not helpful for Apple Silicon
    		//
    		case "amd64", "386":
    			// Align to 64 if 31 or fewer bytes remain in a cache line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top