OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alert_dicts
(Results
1 - 2
of
2
) sorted by null
/external/chromium-trace/catapult/dashboard/dashboard/
send_stoppage_alert_emails.py
82
alert_dicts
= [_AlertRowDict(a) for a in stoppage_alerts]
87
body=_TextBody(
alert_dicts
),
88
html=_HtmlBody(
alert_dicts
))
115
def _HtmlBody(
alert_dicts
):
117
html_alerts = '\n'.join(_HTML_ALERT_ROW_TEMPLATE % a for a in
alert_dicts
)
124
def _TextBody(
alert_dicts
):
126
text_alerts = '\n'.join(_TEXT_ALERT_ROW_TEMPLATE % a for a in
alert_dicts
)
group_report.py
169
alert_dicts
= anomaly_dicts + stoppage_alert_dicts
172
'alert_list':
alert_dicts
[:_DISPLAY_LIMIT],
173
'subtests': _GetSubTestsForAlerts(
alert_dicts
),
Completed in 79 milliseconds