Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for gomaxprocs (0.18 sec)

  1. src/runtime/mgcpacer.go

    // trigger a GC cycle such that no GC assists are required to finish on time.
    // This algorithm thus optimizes GC CPU utilization to the dedicated background
    // mark utilization of 25% of GOMAXPROCS by minimizing GC assists.
    // GOMAXPROCS. The high-level design of this algorithm is documented
    // at https://github.com/golang/proposal/blob/master/design/44167-gc-pacer-redesign.md.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/sync/atomic/atomic_test.go

    				break
    			}
    		}
    	}
    }
    
    func TestHammer32(t *testing.T) {
    	const p = 4
    	n := 100000
    	if testing.Short() {
    		n = 1000
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(p))
    
    	for name, testf := range hammer32 {
    		c := make(chan int)
    		var val uint32
    		for i := 0; i < p; i++ {
    			go func() {
    				defer func() {
    					if err := recover(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    		}
    	}
    
    	gcBgMarkStartWorkers()
    
    	systemstack(gcResetMarkState)
    
    	work.stwprocs, work.maxprocs = gomaxprocs, gomaxprocs
    	if work.stwprocs > ncpu {
    		// This is used to compute CPU time of the STW phases,
    		// so it can't be more than ncpu, even if GOMAXPROCS is.
    		work.stwprocs = ncpu
    	}
    	work.heap0 = gcController.heapLive.Load()
    	work.pauseNS = 0
    	work.mode = mode
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	//
    	// If this is nil, it is populated with the real thing in init.
    	shouldStop func() bool
    
    	// gomaxprocs returns the current value of gomaxprocs. Stub for testing.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	gomaxprocs func() int32
    }
    
    // init initializes a scavenger state and wires to the current G.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    func func2(c chan int) { <-c }
    func func3(c chan int) { <-c }
    func func4(c chan int) { <-c }
    
    func TestGoroutineCounts(t *testing.T) {
    	// Setting GOMAXPROCS to 1 ensures we can force all goroutines to the
    	// desired blocking point.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	c := make(chan int)
    	for i := 0; i < 100; i++ {
    		switch {
    		case i%10 == 0:
    			go func1(c)
    		case i%2 == 0:
    			go func2(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    		}(w)
    	}
    
    	maxbg := maxbg
    	// for runtime.NumCPU() < 4 ||  runtime.GOMAXPROCS(0) == 1, do not change maxbg.
    	// Because there is not enough CPU to parallel the testing of multiple packages.
    	if runtime.NumCPU() > 4 && runtime.GOMAXPROCS(0) != 1 {
    		for _, w := range worklist {
    			// See go.dev/issue/65164
    			// because GOMAXPROCS=2 runtime CPU usage is low,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

              value: "{{ $containers | join "," }}"
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            {{- if .CompliancePolicy }}
            - name: COMPLIANCE_POLICY
              value: "{{ .CompliancePolicy }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

              value: "{{ $containers | join "," }}"
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            {{- if .CompliancePolicy }}
            - name: COMPLIANCE_POLICY
              value: "{{ .CompliancePolicy }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.template.gen.yaml

              value: "{{ $containers | join "," }}"
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            {{- if .CompliancePolicy }}
            - name: COMPLIANCE_POLICY
              value: "{{ .CompliancePolicy }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.0.template.gen.yaml

              value: "{{ $containers | join "," }}"
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            {{- if .CompliancePolicy }}
            - name: COMPLIANCE_POLICY
              value: "{{ .CompliancePolicy }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top