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

Side by Side Diff: appengine/findit/common/constants.py

Issue 1914113002: [Findit] Enable project classifier and component classifier (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Includes all the constants of module names, queue names, url paths, etc.""" 5 """Includes all the constants of module names, queue names, url paths, etc."""
6 6
7 import os 7 import os
8 8
9 9
10 # Names of all modules. 10 # Names of all modules.
(...skipping 11 matching lines...) Expand all
22 22
23 # Waterfall-related. 23 # Waterfall-related.
24 WATERFALL_TRIGGER_ANALYSIS_URL = '/waterfall/trigger-analyses' 24 WATERFALL_TRIGGER_ANALYSIS_URL = '/waterfall/trigger-analyses'
25 WATERFALL_ALERTS_URL = 'https://sheriff-o-matic.appspot.com/alerts' 25 WATERFALL_ALERTS_URL = 'https://sheriff-o-matic.appspot.com/alerts'
26 COMPILE_STEP_NAME = 'compile' 26 COMPILE_STEP_NAME = 'compile'
27 27
28 28
29 # Directory of html templates. 29 # Directory of html templates.
30 HTML_TEMPLATE_DIR = os.path.realpath( 30 HTML_TEMPLATE_DIR = os.path.realpath(
31 os.path.join(os.path.dirname(__file__), os.path.pardir, 'templates')) 31 os.path.join(os.path.dirname(__file__), os.path.pardir, 'templates'))
32
33
34 # Used in line distance and priority for crashes.
35 INFINITY = 1000
Martin Barbella 2016/05/05 18:33:41 This feels a bit hacky.
Sharu Jiang 2016/05/10 03:11:02 I am not sure what's the better way, since move th
OLDNEW
« no previous file with comments | « no previous file | appengine/findit/crash/callstack.py » ('j') | appengine/findit/crash/classifier.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698