HomeSort by relevance Sort by last modified time
    Searched defs:bug_id (Results 1 - 4 of 4) sorted by null

  /external/chromium-trace/catapult/dashboard/dashboard/models/
alert.py 24 bug_id = ndb.IntegerProperty(indexed=True) variable in class:Alert
79 if self.bug_id != original_alert.bug_id:
86 if self.bug_id > 0 and group.bug_id != self.bug_id:
87 group.bug_id = self.bug_id
91 elif self.bug_id < 0 and self.bug_id is not None
    [all...]
alert_group.py 22 bug_id = ndb.IntegerProperty(indexed=True) variable in class:AlertGroup
54 Assigns a bug_id or a group_id if there is a matching group,
134 if group.bug_id:
135 alert_entity.bug_id = group.bug_id
136 _AddLogForBugAssociate(alert_entity, group.bug_id)
149 def _AddLogForBugAssociate(anomaly_entity, bug_id):
156 bug_url = ('https://chromeperf.appspot.com/group_report?bug_id=' +
157 str(bug_id))
160 (test_path, bug_url, bug_id))
    [all...]
try_job.py 27 bug_id = ndb.IntegerProperty() variable in class:TryJob
75 if self.bug_id:
76 bug_data.SetBisectStatus(self.bug_id, 'started')
81 if self.bug_id:
82 bug_data.SetBisectStatus(self.bug_id, 'failed')
89 if self.bug_id:
90 bug_data.SetBisectStatus(self.bug_id, 'failed')
96 if self.bug_id:
97 bug_data.SetBisectStatus(self.bug_id, 'completed')
  /external/chromium-trace/catapult/dashboard/dashboard/
file_bug_test.py 29 bug_id = 12345 variable in class:MockIssueTrackerService
42 return cls.bug_id
169 self.service.bug_id = 277761
178 self.assertEqual(277761, anomaly_entity.bug_id)
180 self.assertIsNone(anomaly_entity.bug_id)
185 'https://chromeperf.appspot.com/group_report?bug_id=277761', comment)

Completed in 750 milliseconds