Lines Matching full:latest
15 which will automatically grab profdata from latest PGO generate builders
114 """Fetch the latest profdata and metadata from a give gs location.
132 # Use a loop to go through all artifacts to find the latest profdata.
133 # An example of the output of latest builder bucket:
162 """Fetch artifacts from latest builders.
170 print('\nFETCHING LATEST PROFDATA ON %s...' % arch.upper())
259 help='Merge and upload profiles from the latest builders.')
262 '--latest',
286 if not args.all_latest_profiles and not (args.latest or args.buildbucket):
287 parser.error('Please specify whether to use latest profiles or '
290 if args.all_latest_profiles and (args.latest or args.buildbucket):
292 'with --latest or --buildbucket')
294 latest = ['arm', 'arm64', 'amd64'] \
295 if args.all_latest_profiles else args.latest
297 all_arch_list = latest.copy()
328 for arch in latest: