Home | History | Annotate | Download | only in handlers

Lines Matching refs:Builds

18 class Builds(webapp2.RequestHandler):
32 # Filter out recorded builds from available builds.
62 # its list of cached builds. That results in more builds than we want.
63 # Limit the list to the last 100 builds, because the urlfetch URL limit is
65 builds = frozenset(build for build in builder.cached_builds
67 available_builds[builder.name] = builds
73 # we request up to 100 builds (see above comment), and the slowest cron bots
96 builds = collections.defaultdict(set)
98 builds[row['f'][0]['v']].add(int(row['f'][1]['v']))
99 return builds
113 builder_builds = builder.builds.Fetch(build_numbers)