Lines Matching full:bucket
153 Table View drilldown of a histogram bucket
155 interval: interval for each bucket. E.g., 10 means that buckets should
643 def _get_hostnames_in_bucket(hist_data, bucket):
645 Get all the hostnames that constitute a particular bucket in the histogram.
648 bucket: tuple containing the (low, high) values of the target bucket
652 if bucket[0] <= pass_rate < bucket[1]]
720 ['%d%% - <%d%%' % bucket for bucket in buckets] +
735 titles = ['%d%% - <%d%%: %d machines' % (bucket[0], bucket[1], y_val)
736 for bucket, y_val in zip(buckets, y)]
741 # Get the hostnames for each bucket in the histogram
742 names_list = [_get_hostnames_in_bucket(hist_data, bucket)
743 for bucket in buckets]