Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for gomaxprocs (0.25 sec)

  1. src/runtime/proc.go

    var worldsema uint32 = 1
    
    // Holding gcsema grants the M the right to block a GC, and blocks
    // until the current GC is done. In particular, it prevents gomaxprocs
    // from changing concurrently.
    //
    // TODO(mknyszek): Once gomaxprocs and the execution tracer can handle
    // being changed/enabled during a GC, remove this.
    var gcsema uint32 = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  value: "{{ $containers | join "," }}"
                - name: GOMEMLIMIT
                  valueFrom:
                    resourceFieldRef:
                      resource: limits.memory
                - name: GOMAXPROCS
                  valueFrom:
                    resourceFieldRef:
                      resource: limits.cpu
                - name: ISTIO_META_CLUSTER_ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    See 'go help packages' for a description of package patterns.
    //	    Sets -cover.
    //
    //	-cpu 1,2,4
    //	    Specify a list of GOMAXPROCS values for which the tests, benchmarks or
    //	    fuzz tests should be executed. The default is the current value
    //	    of GOMAXPROCS. -cpu does not apply to fuzz tests matched by -fuzz.
    //
    //	-failfast
    //	    Do not start new tests after the first test failure.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    	ct := c.tests[rand.Intn(len(c.tests))]
    	return ct.test(t)
    }
    
    func doConcurrentTest(t testing.TB, ct concurrentTest) {
    	maxProcs, numReqs := 1, 500
    	if testing.Short() {
    		maxProcs, numReqs = 4, 50
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
    
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	ct.init(t, db)
    	defer ct.finish(t)
    
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    						TotalAlloc: server.MemStats.TotalAlloc,
    						Mallocs:    server.MemStats.Mallocs,
    						Frees:      server.MemStats.Frees,
    						HeapAlloc:  server.MemStats.HeapAlloc,
    					},
    					GoMaxProcs:     server.GoMaxProcs,
    					NumCPU:         server.NumCPU,
    					RuntimeVersion: server.RuntimeVersion,
    					GCStats:        server.GCStats,
    					MinioEnvVars:   server.MinioEnvVars,
    				})
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    }
    func testTransportConcurrency(t *testing.T, mode testMode) {
    	// Not parallel: uses global test hooks.
    	maxProcs, numReqs := 16, 500
    	if testing.Short() {
    		maxProcs, numReqs = 4, 50
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%v", r.FormValue("echo"))
    	})).ts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // by memory bandwidth. We don't have a good way to determine the number of
    // workers that would saturate the bus though, so runtime.GOMAXPROCS
    // seems like a reasonable default.
    var preloadWorkerCount = runtime.GOMAXPROCS(0)
    
    // preload holds state for managing concurrent preloading of package data.
    //
    // A preload should be created with newPreload before loading a large
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    PILOT_ENABLE_ANALYSIS value: "{{ .Values.global.istiod.enableAnalysis }}" - name: CLUSTER_ID value: "{{ $.Values.global.multiCluster.clusterName | default `Kubernetes` }}" - name: GOMEMLIMIT valueFrom: resourceFieldRef: resource: limits.memory - name: GOMAXPROCS valueFrom: resourceFieldRef: resource: limits.cpu - name: PLATFORM value: "{{ .Values.global.platform }}" resources: {{- if .Values.pilot.resources }} {{ toYaml .Values.pilot.resources | trim | indent 12 }} {{- else }} {{ toYaml .Values.global.defaultResources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	}
    }
    
    func noAlloc(t *testing.T, n int, f func(int)) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	i := -1
    	allocs := testing.AllocsPerRun(n, func() {
    		f(i)
    		i++
    	})
    	if allocs > 0 {
    		t.Errorf("%d iterations: got %v mallocs, want 0", n, allocs)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    					// Log if we took a lot of time.
    					logger.Info("Site replication healing refresh took %.2fs", took)
    				}
    
    				// wait for 200 millisecond, if we are experience lot of I/O
    				waitForLowIO(runtime.GOMAXPROCS(0), 200*time.Millisecond, currentHTTPIO)
    			}
    			healTimer.Reset(siteHealTimeInterval)
    
    		case <-ctx.Done():
    			return
    		}
    	}
    }
    
    type srBucketStatsSummary struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top