Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maxTotal (0.27 sec)

  1. src/cmd/trace/regions.go

    		}
    		sort.Strings(allRangeStats)
    
    		err = templUserRegionType.Execute(w, struct {
    			MaxTotal            time.Duration
    			Regions             []region
    			Name                string
    			Filter              *regionFilter
    			NonOverlappingStats []string
    			RangeStats          []string
    		}{
    			MaxTotal:            maxTotal,
    			Regions:             regions,
    			Name:                filter.name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    			N                   int
    			ExecTimePercent     string
    			MaxTotal            time.Duration
    			Goroutines          []goroutine
    			NonOverlappingStats []string
    			RangeStats          []string
    		}{
    			Name:                name,
    			N:                   len(goroutines),
    			ExecTimePercent:     execTimePercent,
    			MaxTotal:            maxTotalTime,
    			Goroutines:          goroutines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            final long timeToLive = getInitParameter(TIME_TO_LIVE_PROPERTY, 5L, Long.class);
            final TimeUnit timeUnit = TimeUnit.valueOf(getInitParameter(TIME_TO_LIVE_TIME_UNIT_PROPERTY, "MINUTES", String.class));
            final int maxTotal = getInitParameter(MAX_TOTAL_CONNECTION_PROPERTY, 200, Integer.class);
            final int defaultMaxPerRoute = getInitParameter(DEFAULT_MAX_CONNECTION_PER_ROUTE_PROPERTY, 20, Integer.class);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
Back to top