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

Issue 2613153006: [Predator] Add TouchCrashedFileMetaFeature. (Closed)

Created:
3 years, 11 months ago by Sharu Jiang
Modified:
3 years, 10 months ago
CC:
chromium-reviews, infra-reviews+infra_chromium.org, RobertoCN
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

[Predator] Add TouchCrashedFileMetaFeature. TouchCrashedFileMetaFeature is a MetaFeature which wraps ``MinDistanceFeature``, ``TopFrameIndexFeature`` and ``TouchCrashedFile`` BUG=679097 Review-Url: https://codereview.chromium.org/2613153006 Committed: https://chromium.googlesource.com/infra/infra/+/894e9bbcdc91f9bb5029dc54f54257c1a72b1bb8

Patch Set 1 #

Total comments: 22

Patch Set 2 : Fix nits. #

Total comments: 10

Patch Set 3 : Fix nits. #

Patch Set 4 : Add comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+850 lines, -320 lines) Patch
M appengine/findit/common/chrome_dependency_fetcher.py View 2 chunks +0 lines, -2 lines 0 comments Download
M appengine/findit/crash/crash_util.py View 1 chunk +6 lines, -0 lines 0 comments Download
M appengine/findit/crash/loglinear/changelist_classifier.py View 2 chunks +3 lines, -9 lines 0 comments Download
M appengine/findit/crash/loglinear/changelist_features/min_distance.py View 1 2 3 4 chunks +188 lines, -46 lines 0 comments Download
M appengine/findit/crash/loglinear/changelist_features/test/min_distance_test.py View 1 2 1 chunk +239 lines, -46 lines 0 comments Download
M appengine/findit/crash/loglinear/changelist_features/test/top_frame_index_test.py View 1 3 chunks +25 lines, -40 lines 0 comments Download
A appengine/findit/crash/loglinear/changelist_features/test/touch_crashed_file_meta_test.py View 1 2 1 chunk +118 lines, -0 lines 0 comments Download
M appengine/findit/crash/loglinear/changelist_features/top_frame_index.py View 1 3 chunks +29 lines, -18 lines 0 comments Download
A appengine/findit/crash/loglinear/changelist_features/touch_crashed_file_meta.py View 1 1 chunk +121 lines, -0 lines 0 comments Download
M appengine/findit/crash/loglinear/feature.py View 2 chunks +3 lines, -4 lines 0 comments Download
M appengine/findit/crash/loglinear/test/changelist_classifier_test.py View 1 2 3 7 chunks +108 lines, -153 lines 0 comments Download
M appengine/findit/crash/loglinear/test/feature_test.py View 2 chunks +2 lines, -2 lines 0 comments Download
M appengine/findit/crash/predator.py View 1 chunk +1 line, -0 lines 0 comments Download
M appengine/findit/crash/suspect.py View 1 chunk +2 lines, -0 lines 0 comments Download
M appengine/findit/crash/test/crash_util_test.py View 1 chunk +3 lines, -0 lines 0 comments Download
M appengine/findit/libs/gitiles/commit_util.py View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 29 (17 generated)
Sharu Jiang
PTAL.
3 years, 11 months ago (2017-01-20 00:43:04 UTC) #13
chanli
https://codereview.chromium.org/2613153006/diff/160001/appengine/findit/crash/loglinear/changelist_features/min_distance.py File appengine/findit/crash/loglinear/changelist_features/min_distance.py (right): https://codereview.chromium.org/2613153006/diff/160001/appengine/findit/crash/loglinear/changelist_features/min_distance.py#newcode21 appengine/findit/crash/loglinear/changelist_features/min_distance.py:21: # TODO(wrengr): we should change things to use integers ...
3 years, 11 months ago (2017-01-23 04:37:46 UTC) #14
Sharu Jiang
https://codereview.chromium.org/2613153006/diff/160001/appengine/findit/crash/loglinear/changelist_features/min_distance.py File appengine/findit/crash/loglinear/changelist_features/min_distance.py (right): https://codereview.chromium.org/2613153006/diff/160001/appengine/findit/crash/loglinear/changelist_features/min_distance.py#newcode21 appengine/findit/crash/loglinear/changelist_features/min_distance.py:21: # TODO(wrengr): we should change things to use integers ...
3 years, 11 months ago (2017-01-23 21:44:47 UTC) #15
chanli
lgtm https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/top_frame_index.py File appengine/findit/crash/loglinear/changelist_features/top_frame_index.py (right): https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/top_frame_index.py#newcode31 appengine/findit/crash/loglinear/changelist_features/top_frame_index.py:31: def __init__(self, max_frame_index): So no need for default ...
3 years, 11 months ago (2017-01-23 21:52:33 UTC) #16
Sharu Jiang
https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/top_frame_index.py File appengine/findit/crash/loglinear/changelist_features/top_frame_index.py (right): https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/top_frame_index.py#newcode31 appengine/findit/crash/loglinear/changelist_features/top_frame_index.py:31: def __init__(self, max_frame_index): On 2017/01/23 21:52:33, chanli wrote: > ...
3 years, 11 months ago (2017-01-23 23:02:17 UTC) #17
Martin Barbella
I'm still thinking about some of the naming, but one comment in the meantime. Will ...
3 years, 11 months ago (2017-01-24 18:52:53 UTC) #18
Sharu Jiang
https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/crash_util.py File appengine/findit/crash/crash_util.py (right): https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/crash_util.py#newcode26 appengine/findit/crash/crash_util.py:26: if not path_1 and not path_2: On 2017/01/24 18:52:53, ...
3 years, 11 months ago (2017-01-24 19:43:11 UTC) #19
Martin Barbella
https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/min_distance.py File appengine/findit/crash/loglinear/changelist_features/min_distance.py (right): https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/min_distance.py#newcode17 appengine/findit/crash/loglinear/changelist_features/min_distance.py:17: # TODO(katesonia): we should change things to use integers ...
3 years, 11 months ago (2017-01-24 22:06:40 UTC) #20
Sharu Jiang
https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/min_distance.py File appengine/findit/crash/loglinear/changelist_features/min_distance.py (right): https://codereview.chromium.org/2613153006/diff/180001/appengine/findit/crash/loglinear/changelist_features/min_distance.py#newcode17 appengine/findit/crash/loglinear/changelist_features/min_distance.py:17: # TODO(katesonia): we should change things to use integers ...
3 years, 10 months ago (2017-01-25 19:13:31 UTC) #21
Martin Barbella
lgtm
3 years, 10 months ago (2017-01-26 00:52:47 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2613153006/240001
3 years, 10 months ago (2017-01-26 01:47:08 UTC) #26
commit-bot: I haz the power
3 years, 10 months ago (2017-01-26 01:57:33 UTC) #29
Message was sent while issue was closed.
Committed patchset #4 (id:240001) as
https://chromium.googlesource.com/infra/infra/+/894e9bbcdc91f9bb5029dc54f5425...

Powered by Google App Engine
This is Rietveld 408576698