Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cpuList (0.2 sec)

  1. src/testing/testing.go

    		}
    		cpu, err := strconv.Atoi(val)
    		if err != nil || cpu <= 0 {
    			fmt.Fprintf(os.Stderr, "testing: invalid value %q for -test.cpu\n", val)
    			os.Exit(1)
    		}
    		cpuList = append(cpuList, cpu)
    	}
    	if cpuList == nil {
    		cpuList = append(cpuList, runtime.GOMAXPROCS(-1))
    	}
    }
    
    func shouldFailFast() bool {
    	return *failFast && numFailed.Load() > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    	// If no flag was specified, don't run benchmarks.
    	if len(*matchBenchmarks) == 0 {
    		return true
    	}
    	// Collect matching benchmarks and determine longest name.
    	maxprocs := 1
    	for _, procs := range cpuList {
    		if procs > maxprocs {
    			maxprocs = procs
    		}
    	}
    	ctx := &benchContext{
    		match:  newMatcher(matchString, *matchBenchmarks, "-test.bench", *skip),
    		extLen: len(benchmarkName("", maxprocs)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    	}
    	m := newMatcher(deps.MatchString, *match, "-test.run", *skip)
    	var mFuzz *matcher
    	if *matchFuzz != "" {
    		mFuzz = newMatcher(deps.MatchString, *matchFuzz, "-test.fuzz", *skip)
    	}
    
    	for _, procs := range cpuList {
    		runtime.GOMAXPROCS(procs)
    		for i := uint(0); i < *count; i++ {
    			if shouldFailFast() {
    				break
    			}
    
    			tctx := newTestContext(*parallel, m)
    			tctx.deadline = deadline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/provider_test.go

    	cinfo := getTestContainerInfo(seed, podName, podNamespace, containerName)
    	cinfo.Stats[0].Memory.RSS = 0
    	cinfo.Stats[0].CpuInst.Usage.Total = 0
    	cinfo.Stats[0].Network = &cadvisorapiv2.NetworkStats{
    		Interfaces: []cadvisorapiv1.InterfaceStats{{
    			Name:     "eth0",
    			RxBytes:  0,
    			RxErrors: 0,
    			TxBytes:  0,
    			TxErrors: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Equal(cs.Timestamp.UnixNano(), actual.CPU.Time.UnixNano())
    	assert.Equal(cs.Cpu.Usage.Total, *actual.CPU.UsageCoreNanoSeconds)
    	assert.Equal(cs.CpuInst.Usage.Total, *actual.CPU.UsageNanoCores)
    
    	assert.Equal(cs.Memory.Usage, *actual.Memory.UsageBytes)
    	assert.Equal(cs.Memory.WorkingSet, *actual.Memory.WorkingSetBytes)
    	assert.Equal(cs.Memory.RSS, *actual.Memory.RSSBytes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top