Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for cpuList (0.11 sec)

  1. src/go/doc/testdata/testing.go

    }
    
    func parseCpuList() {
    	if len(*cpuListStr) == 0 {
    		cpuList = append(cpuList, runtime.GOMAXPROCS(-1))
    	} else {
    		for _, val := range strings.Split(*cpuListStr, ",") {
    			cpu, err := strconv.Atoi(val)
    			if err != nil || cpu <= 0 {
    				fmt.Fprintf(os.Stderr, "testing: invalid value %q for -test.cpu", val)
    				os.Exit(1)
    			}
    			cpuList = append(cpuList, cpu)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/benchmark.go

    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: invalid regexp for -test.bench: %s\n", err)
    			os.Exit(1)
    		}
    		if !matched {
    			continue
    		}
    		for _, procs := range cpuList {
    			runtime.GOMAXPROCS(procs)
    			b := &B{
    				common: common{
    					signal: make(chan any),
    				},
    				benchmark: Benchmark,
    			}
    			benchName := Benchmark.Name
    			if procs != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. src/go/doc/testdata/testing.1.golden

    		cpuListStr	= flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
    		parallel	= flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
    	
    		cpuList	[]int
    	)
    
    	// 
    	var benchTime = flag.Duration("test.benchtime", 1*time.Second, "approximate run time for each benchmark")
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Wiredmax           int64
    	Nswapdev           int64
    	Swpages            int64
    	Swpginuse          int64
    	Swpgonly           int64
    	Nswget             int64
    	Unused1            int64
    	Cpuhit             int64
    	Cpumiss            int64
    	Faults             int64
    	Traps              int64
    	Intrs              int64
    	Swtch              int64
    	Softs              int64
    	Syscalls           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/winstats_test.go

    	assert.Equal(t, len(actualRootInfos["/"].Stats), len(infos["/"].Stats))
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Cpu, infos["/"].Stats[0].Cpu)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].CpuInst, infos["/"].Stats[0].CpuInst)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Memory, infos["/"].Stats[0].Memory)
    }
    
    func TestWinMachineInfo(t *testing.T) {
    	c := getClient(t)
    
    	machineInfo, err := c.WinMachineInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    	Wiredmax           int64
    	Nswapdev           int64
    	Swpages            int64
    	Swpginuse          int64
    	Swpgonly           int64
    	Nswget             int64
    	Unused1            int64
    	Cpuhit             int64
    	Cpumiss            int64
    	Faults             int64
    	Traps              int64
    	Intrs              int64
    	Swtch              int64
    	Softs              int64
    	Syscalls           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

    	Wiredmax           int64
    	Nswapdev           int64
    	Swpages            int64
    	Swpginuse          int64
    	Swpgonly           int64
    	Nswget             int64
    	Unused1            int64
    	Cpuhit             int64
    	Cpumiss            int64
    	Faults             int64
    	Traps              int64
    	Intrs              int64
    	Swtch              int64
    	Softs              int64
    	Syscalls           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top