Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for breakdown (0.35 sec)

  1. 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)
  2. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(this.colorScheme){d.colorScheme=this.colorScheme;}}
    static fromEntries(entries){const breakdown=new Breakdown();for(const[name,value]of entries){breakdown.set(name,value);}
    return breakdown;}
    static deserialize(data,deserializer){const breakdown=new Breakdown();breakdown.colorScheme=deserializer.getObject(data[0]);const keys=deserializer.getObject(data[1]);for(let i=0;i<keys.length;++i){breakdown.set(deserializer.getObject(keys[i]),tr.b.numberFromJson(data[i+2]));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

              "legendFormat": "Pool {{pool}} / Set {{set}} - Status",
              "range": true,
              "refId": "E",
              "useBackend": false
            }
          ],
          "title": "Health Breakdown",
          "type": "bargauge"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. 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)
  5. 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