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

Side by Side Diff: appengine/findit/model/approach_type.py

Issue 2225723005: [Findit] Add WfSuspectedCL model to save triage results for each suspected CL. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | appengine/findit/model/test/wf_culprit_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
(Empty)
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
3 # found in the LICENSE file.
lijeffrey 2016/08/09 04:14:47 nit: how about name this file analysis_approach_ty
4
5
6 # Represents the type of approach.
7 HEURISTIC = 0x00
8 TRY_JOB = 0x01
9 BOTH = 0x08
10
11 STATUS_TO_DESCRIPTION = {
12 HEURISTIC: 'Heuristic',
13 TRY_JOB: 'Try Job',
14 BOTH: 'Both'
15 }
OLDNEW
« no previous file with comments | « no previous file | appengine/findit/model/test/wf_culprit_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698