Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for breakdown (0.17 sec)

  1. src/cmd/trace/regions.go

      window.location.search = params.toString();
    }
    </script>
    
    <h1>Regions: {{.Name}}</h1>
    
    Table of contents
    <ul>
    	<li><a href="#summary">Summary</a></li>
    	<li><a href="#breakdown">Breakdown</a></li>
    	<li><a href="#ranges">Special ranges</a></li>
    </ul>
    
    <h3 id="summary">Summary</h3>
    
    {{ with $p := filterParams .Filter}}
    <table class="summary">
    	<tr>
    		<td>Network wait profile:</td>
    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

      params.set(key, value);
      window.location.search = params.toString();
    }
    </script>
    
    <h1>Goroutines</h1>
    
    Table of contents
    <ul>
    	<li><a href="#summary">Summary</a></li>
    	<li><a href="#breakdown">Breakdown</a></li>
    	<li><a href="#ranges">Special ranges</a></li>
    </ul>
    
    <h3 id="summary">Summary</h3>
    
    <table class="summary">
    	<tr>
    		<td>Goroutine start location:</td>
    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. src/internal/trace/traceviewer/http.go

    </p>
    <p>
      At the top ("STATS"), there are three additional timelines that
      display statistical information.
    
      "Goroutines" is a time series of the count of existing goroutines;
      clicking on it displays their breakdown by state at that moment:
      running, runnable, or waiting.
    
      "Heap" is a time series of the amount of heap memory allocated (in orange)
      and (in green) the allocation limit at which the next GC cycle will begin.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Ideally, this column should be empty.
    +
    3. Focusing on a script, plugin, or lifecycle callback will show a breakdown of the tasks that were created.
    
    [[sec:task_configuration_avoidance_pitfalls]]
    === Migration pitfalls
    [[task_configuration_avoidance_pitfall_build_scan_plugin]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one.go

    }
    
    func getAttemptsLabel(p *framework.QueuedPodInfo) string {
    	// We breakdown the pod scheduling duration by attempts capped to a limit
    	// to avoid ending up with a high cardinality metric.
    	if p.Attempts >= 15 {
    		return "15+"
    	}
    	return strconv.Itoa(p.Attempts)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    		// Try again.
    	}
    
    	// We couldn't observe the expected idle time even once.
    	for i, dt := range failureIdleTimes {
    		t.Logf("try %2d: idle time = %.5fs\n", i+1, dt)
    	}
    	t.Logf("try %d breakdown:\n", len(failureIdleTimes))
    	for i := range names {
    		if m1[i].Value.Kind() == metrics.KindBad {
    			continue
    		}
    		t.Logf("\t%s %0.3f\n", names[i], m2[i].Value.Float64()-m1[i].Value.Float64())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top