Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 348 for Gomaxprocs (0.58 sec)

  1. pkg/kube/inject/testdata/inject/replicationcontroller.yaml.injected

              value: nginx
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.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/net/timeout_test.go

    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in os/timeout_test.go.
    func TestVariousDeadlines4Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/sync/pool.go

    	l := p.local
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	if p.local == nil {
    		allPools = append(allPools, p)
    	}
    	// If GOMAXPROCS changes between GCs, we re-allocate the array and lose the old one.
    	size := runtime.GOMAXPROCS(0)
    	local := make([]poolLocal, size)
    	atomic.StorePointer(&p.local, unsafe.Pointer(&local[0])) // store-release
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  5. 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)
  6. src/math/rand/default_test.go

    func doDefaultTest(t *testing.T, v string) {
    	code, err := strconv.Atoi(v)
    	if err != nil {
    		t.Fatalf("internal error: unrecognized code %q", v)
    	}
    
    	goroutines := runtime.GOMAXPROCS(0)
    	if goroutines < 4 {
    		goroutines = 4
    	}
    
    	ch := make(chan uint64, goroutines*3)
    	var wg sync.WaitGroup
    
    	// The various tests below should not cause race detector reports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 23:39:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/only-proxy-container.yaml.injected

                ]
            - name: ISTIO_META_APP_CONTAINERS
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.injected

              value: hello
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/job.yaml.injected

              value: pi
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/runtime/traceevent.go

    	traceEvCPUSample  // CPU profiling sample [timestamp, M ID, P ID, goroutine ID, stack ID]
    	traceEvFrequency  // timestamp units per sec [freq]
    
    	// Procs.
    	traceEvProcsChange // current value of GOMAXPROCS [timestamp, GOMAXPROCS, stack ID]
    	traceEvProcStart   // start of P [timestamp, P ID, P seq]
    	traceEvProcStop    // stop of P [timestamp]
    	traceEvProcSteal   // P was stolen [timestamp, P ID, P seq, M ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top