Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: client/tools/harvest_buildbot.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Fixed third parties Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « client/tools/gce_load_test_on_startup.sh ('k') | client/tools/isolateserver_load_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The LUCI Authors. All rights reserved. 2 # Copyright 2013 The LUCI Authors. All rights reserved.
3 # Use of this source code is governed by the Apache v2.0 license that can be 3 # Use of this source code is governed under the Apache License, Version 2.0
4 # found in the LICENSE file. 4 # that can be found in the LICENSE file.
5 5
6 """Harvest data on the Try Server. 6 """Harvest data on the Try Server.
7 7
8 Please use sparingly. Large values for horizon will trash the Try Server memory. 8 Please use sparingly. Large values for horizon will trash the Try Server memory.
9 """ 9 """
10 10
11 import os 11 import os
12 import optparse 12 import optparse
13 import sys 13 import sys
14 14
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 except ImportError: 92 except ImportError:
93 parser.error('Pass a directory path to buildbot_json.py with -b') 93 parser.error('Pass a directory path to buildbot_json.py with -b')
94 94
95 b = buildbot_json.Buildbot(options.url) 95 b = buildbot_json.Buildbot(options.url)
96 parse(b, options.horizon) 96 parse(b, options.horizon)
97 return 0 97 return 0
98 98
99 99
100 if __name__ == '__main__': 100 if __name__ == '__main__':
101 sys.exit(main()) 101 sys.exit(main())
OLDNEW
« no previous file with comments | « client/tools/gce_load_test_on_startup.sh ('k') | client/tools/isolateserver_load_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698