Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for PROCS (0.21 sec)

  1. src/testing/testing.go

    	}
    	return ok
    }
    
    func runTests(matchString func(pat, str string) (bool, error), tests []InternalTest, deadline time.Time) (ran, ok bool) {
    	ok = true
    	for _, procs := range cpuList {
    		runtime.GOMAXPROCS(procs)
    		for i := uint(0); i < *count; i++ {
    			if shouldFailFast() {
    				break
    			}
    			if i > 0 && !ran {
    				// There were no tests to run on the first
    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/runtime/trace.go

    	// Let's emit it as soon as possible so that downstream tools can rely on the value
    	// being there fairly soon in a generation.
    	//
    	// It's important that we do this before allowing stop-the-worlds again,
    	// because the procs count could change.
    	if !stopTrace {
    		tl := traceAcquire()
    		tl.Gomaxprocs(gomaxprocs)
    		traceRelease(tl)
    	}
    
    	// Emit a GCActive event in the new generation if necessary.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	_SigPanic                // if the signal is from the kernel, panic
    	_SigDefault              // if the signal isn't explicitly requested, don't monitor it
    	_SigGoExit               // cause all runtime procs to exit (only used on Plan 9).
    	_SigSetStack             // Don't explicitly install handler, but add SA_ONSTACK to existing libc handler
    	_SigUnblock              // always unblock; see blockableSig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    	EvStack:             {"Stack", 5, false, []string{"id", "siz"}, nil},
    	EvGomaxprocs:        {"Gomaxprocs", 5, true, []string{"procs"}, nil},
    	EvProcStart:         {"ProcStart", 5, false, []string{"thread"}, nil},
    	EvProcStop:          {"ProcStop", 5, false, []string{}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	}
    	return ok, err
    }
    
    type orderingHandleFunc func(o *ordering, ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error)
    
    var orderingDispatch = [256]orderingHandleFunc{
    	// Procs.
    	go122.EvProcsChange: (*ordering).advanceAnnotation,
    	go122.EvProcStart:   (*ordering).advanceProcStart,
    	go122.EvProcStop:    (*ordering).advanceProcStop,
    	go122.EvProcSteal:   (*ordering).advanceProcSteal,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

      Ginkgo V2 doesn't accept go test's `-parallel` flags to parallelize Ginkgo specs, please switch to use `ginkgo -p` or `ginkgo -procs=N` instead. ([#109111](https://github.com/kubernetes/kubernetes/pull/109111), [@chendave](https://github.com/chendave)) [SIG API Machinery, Apps, Architecture, Auth, Autoscaling, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Node,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (linux-386), type Sysinfo_t struct, Loads [3]uint32
    pkg syscall (linux-386), type Sysinfo_t struct, Pad uint16
    pkg syscall (linux-386), type Sysinfo_t struct, Procs uint16
    pkg syscall (linux-386), type Sysinfo_t struct, Sharedram uint32
    pkg syscall (linux-386), type Sysinfo_t struct, Totalhigh uint32
    pkg syscall (linux-386), type Sysinfo_t struct, Totalram uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Sysinfo_t.Freeswap", Field, 0},
    		{"Sysinfo_t.Loads", Field, 0},
    		{"Sysinfo_t.Pad", Field, 0},
    		{"Sysinfo_t.Pad_cgo_0", Field, 0},
    		{"Sysinfo_t.Pad_cgo_1", Field, 0},
    		{"Sysinfo_t.Procs", Field, 0},
    		{"Sysinfo_t.Sharedram", Field, 0},
    		{"Sysinfo_t.Totalhigh", Field, 0},
    		{"Sysinfo_t.Totalram", Field, 0},
    		{"Sysinfo_t.Totalswap", Field, 0},
    		{"Sysinfo_t.Unit", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Loads [3]uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Pad uint16
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Procs uint16
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Sharedram uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalhigh uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalram uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top