HomeSort by relevance Sort by last modified time
    Searched full:alerts (Results 1 - 25 of 335) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/dashboard/dashboard/elements/
bug-info.html 62 * @param {HTMLElement} alertsTable HTML element of alerts-table.
79 var alerts = this.getCheckedOrAllAlerts();
80 if (alerts.length == 0) {
82 'WARNING: There appear to be no alerts associated with this bug.';
86 var minRevRange = this.alertsTable.getMinimumRevisionRange(alerts);
88 var info = 'Minimum revision range for ' + alerts.length;
89 info += (alerts.length == 1) ? ' alert: ' : ' alerts: ';
92 this.updateBisectButton(alerts, minRevRange);
96 'WARNING: Non-overlapping alerts are grouped together.'
    [all...]
alerts-table.html 16 <polymer-element name="alerts-table"
21 #alerts {
29 #alerts thead {
33 #alerts thead th {
38 #alerts thead th,
39 #alerts thead td {
44 #alerts thead th:active,
45 #alerts thead td:active {
49 #alerts #groupheader {
54 #alerts #checkheader, #alerts #graphheader
    [all...]
triage-dialog.html 9 on an alert, or clicks on a "triage" button on the alerts page. It allows the
19 attributes="xsrfToken alerts">
133 'alerts': this.alerts,
165 if (this.alerts && this.alerts.length && this.alerts[0].nudgeList) {
166 this.nudgeList = this.alerts[0].nudgeList;
175 * Updates the this.alertKeys based on this.alerts.
179 if (this.alerts && this.alerts.length)
    [all...]
alerts-page.html 11 <link rel="import" href="/dashboard/elements/alerts-table.html">
18 <polymer-element name="alerts-page">
89 <h2>Performance alerts</h2>
90 <p id='num-alerts'>
92 <template if="{{anomalies.length != 1}}">{{anomalies.length}} alerts.</template>
94 <alerts-table id="anomaly-table"
100 </alerts-table>
103 <h2>Data stoppage alerts</h2>
104 <alerts-table id="stoppage-alert-table"
108 </alerts-table
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/side_panel/
alerts_side_panel_test.html 22 var panel = document.createElement('tr-ui-e-s-alerts-side-panel');
33 var panel = document.createElement('tr-ui-e-s-alerts-side-panel');
34 var alerts = [
39 panel.model = createModelWithAlerts(alerts);
47 assert.equal(alerts[0], e.selection[0]);
48 assert.equal(alerts[1], e.selection[1]);
55 function createModelWithAlerts(alerts) {
57 m.alerts = alerts;
alerts_side_panel.html 15 <polymer-element name='tr-ui-e-s-alerts-side-panel'
60 * Fires a selection event selecting all alerts of the specified
64 var alertsOfType = this.model_.alerts.filter(function(alert) {
74 * Returns a map for the specified alerts where each key is the
75 * alert type string and each value is a list of alerts with that
78 alertsByType_: function(alerts) {
80 alerts.forEach(function(alert) {
113 createAlertsTable_: function(alerts) {
114 var alertsByType = this.alertsByType_(alerts);
134 var panel = this.createAlertsTable_(this.model_.alerts);
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
alert_track.html 26 this.heading = 'Alerts';
30 get alerts() {
34 set alerts(alerts) {
35 this.alerts_ = alerts;
36 if (alerts === undefined) {
alert_track_test.html 30 var alerts = [
36 return alerts;
40 var alerts = createAlerts();
41 alerts[1].selectionState = SelectionState.SELECTED;
54 track.alerts = alerts;
64 var alerts = createAlerts();
69 track.alerts = alerts;
72 assert.equal(a0, alerts[0])
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdfformfill_embeddertest.cpp 78 const auto& alerts = delegate.GetAlerts(); local
79 ASSERT_EQ(1U, alerts.size());
81 EXPECT_STREQ(L"hello world", alerts[0].message.c_str());
82 EXPECT_STREQ(L"Alert", alerts[0].title.c_str());
83 EXPECT_EQ(0, alerts[0].type);
84 EXPECT_EQ(0, alerts[0].icon);
  /external/chromium-trace/catapult/dashboard/dashboard/models/
alert_group.py 5 """Model for a group of alerts."""
19 """Represents a group of alerts that are likely to have the same cause."""
33 # The kind of the alerts in this group. Each group only has one kind.
51 def GroupAlerts(alerts, test_suite, kind):
52 """Groups alerts with matching criteria.
58 alerts: A list of Alerts.
59 test_suite: The test suite name for |alerts|.
62 if not alerts:
64 alerts = [a for a in alerts if not getattr(a, 'is_improvement', False)
    [all...]
stoppage_alert_test.py 64 # First, create |_MAX_GROUP_SIZE| alerts; all of them can be created
70 alerts = []
77 alerts.append(new_alert)
78 self.assertEqual(stoppage_alert._MAX_GROUP_SIZE, len(alerts))
79 self.assertTrue(all(a.group == alerts[0].group for a in alerts))
  /external/autotest/client/site_tests/autoupdate_ParameterizedJob/
control 8 'cc': ['chromeos-installer-alerts@google.com'],
  /external/chromium-trace/catapult/dashboard/dashboard/static/
alerts.html 13 <link rel="import" href="/dashboard/elements/alerts-page.html">
27 <h1>Chrome Performance Alerts</h1>
29 <alerts-page></alerts-page>
  /external/chromium-trace/catapult/dashboard/docs/
deploy-checklist.md 25 ### Alerts page functionality
27 [/alerts](https://chromeperf.appspot.com/alerts)
29 - If there are untriaged alerts, a table of alerts should be shown.
30 - If there are no alerts, try
31 [/alerts?triaged=true](https://chromeperf.appspot.com/alerts?triaged=true);
32 it should show the last 500 alerts.
34 with the selected alerts and their graphs
    [all...]
pages-and-endpoints.md 10 **/alerts**: View current outstanding alerts
12 - *triaged*: Whether to include recent already-triaged alerts.
13 - *improvements*: Whether to include improvement alerts.
14 - *sortby*: A field in the alerts table to sort rows by.
28 **/group\_report**: View graphs for a set of alerts
29 - *bug\_id*: Bug ID to view alerts for.
30 - *rev*: Chromium commit position to view alerts for.
  /external/chromium-trace/catapult/dashboard/dashboard/
associate_alerts.py 5 """Provides an endpoint and web interface for associating alerts with bug."""
21 """Associates alerts with a bug."""
34 confirm: If non-empty, associate alerts with a bug ID even if
35 it appears that the alerts already associated with that bug
49 'error': 'No alerts specified to add bugs to.'})
72 # On the alerts page, alerts are only highlighted if the revision range
73 # overlaps with the revision ranges for all of the selected alerts; the
95 """Sets the bug ID for a set of alerts.
103 to associate the alerts with a bug even if it appears that th
    [all...]
alerts_test.py 11 from dashboard import alerts
27 app = webapp2.WSGIApplication([('/alerts', alerts.AlertsHandler)])
31 """Adds sample data, including triaged and non-triaged alerts."""
56 # Add some (12) non-triaged alerts.
67 # Add some (2) already-triaged alerts.
96 response = self.testapp.get('/alerts')
98 self.assertIn('Chrome Performance Alerts', response.body)
102 response = self.testapp.post('/alerts')
127 response = self.testapp.post('/alerts', {'triaged': 'true'}
    [all...]
group_report.py 5 """Provides the web interface for a set of alerts and their graphs."""
11 from dashboard import alerts
21 # This is the max number of alerts to query at once. This is used in cases
22 # when we may want to query more many more alerts than actually get displayed.
25 # Maximum number of alerts that we might want to try display in one table.
37 """Returns dynamic data for /group_report with some set of alerts.
39 The set of alerts is determined by the keys, bug ID or revision given.
68 """Show alerts for |bug_id|.
86 """Shows a alerts whose revision range includes the given revision.
108 """Show alerts for |keys|
    [all...]
file_bug.py 34 """Uses oauth2 to file a new bug with a set of alerts."""
75 'error': 'No alerts specified to add bugs to.'
105 """Creates a bug, associates it with the alerts, sends a HTML response.
115 alerts = ndb.get_multi(alert_keys)
120 milestone_label = _MilestoneLabel(alerts)
142 for alert_entity in alerts:
144 ndb.put_multi(alerts)
146 comment_body = _AdditionalDetails(bug_id, alerts)
159 def _AdditionalDetails(bug_id, alerts):
163 alerts_url = '%s?keys=%s' % (base_url, _UrlsafeKeys(alerts))
    [all...]
edit_anomalies.py 18 """Handles editing the bug IDs and revision range of Alerts."""
22 """Allows adding or resetting bug IDs and invalid statuses to Alerts.
46 # Get the list of alerts to modify.
50 'error': 'No alerts specified to add bugs to.'}))
68 """Changes or resets the bug ID of all given alerts."""
99 self.response.out.write(json.dumps({'success': 'Alerts nudged.'}))
send_stoppage_alert_emails.py 63 """Sends emails to sheriffs about stoppage alerts in the past day.
69 """Emails sheriffs about new stoppage alerts."""
89 sender='gasper-alerts@google.com',
107 """Returns the subject line for an email about stoppage alerts.
110 sheriff_entity: The Sheriff who will receive the alerts.
121 """Returns the HTML body for an email about stoppage alerts."""
131 """Returns the text body for an email about stoppage alerts."""
152 """Returns a list of stdio log links for the given stoppage alerts."""
158 """Returns a list of test owners for the given alerts."""
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsCbConstants.java 85 /** CMAS Message Identifier for Presidential Level alerts. */
89 /** CMAS Message Identifier for Extreme alerts, Urgency=Immediate, Certainty=Observed. */
93 /** CMAS Message Identifier for Extreme alerts, Urgency=Immediate, Certainty=Likely. */
97 /** CMAS Message Identifier for Extreme alerts, Urgency=Expected, Certainty=Observed. */
101 /** CMAS Message Identifier for Extreme alerts, Urgency=Expected, Certainty=Likely. */
105 /** CMAS Message Identifier for Severe alerts, Urgency=Immediate, Certainty=Observed. */
109 /** CMAS Message Identifier for Severe alerts, Urgency=Immediate, Certainty=Likely. */
113 /** CMAS Message Identifier for Severe alerts, Urgency=Expected, Certainty=Observed. */
117 /** CMAS Message Identifier for Severe alerts, Urgency=Expected, Certainty=Likely. */
137 /** CMAS Message Identifier for Presidential Level alerts for additional language
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
alert_sub_view.html 116 getRowsForAlerts_: function(alerts) {
117 if (alerts.length == 1) {
120 value: alerts[0].title
122 var detailRows = this.getRowsForSingleAlert_(alerts[0]);
126 return alerts.map(function(alert) {
130 isExpanded: alerts.size < 10, // This is somewhat arbitrary for now.
144 var alerts = this.currentSelection_;
145 this.$.table.tableRows = this.getRowsForAlerts_(alerts);
  /external/chromium-trace/catapult/dashboard/dashboard/templates/
load_from_prod.html 17 associated alerts from prod onto a dev server.</p>
29 <p>Load recent alerts for a sheriff.</p>
35 Number of alerts: <input name="num_alerts"
45 <input type="submit" value="Load alerts"></input>
  /external/chromium-trace/catapult/tracing/tracing/extras/android/
android_auditor_test.html 43 assert.equal(model.alerts.length, 1);
45 var alert = model.alerts[0];
61 assert.equal(model.alerts.length, 1);
63 var alert = model.alerts[0];
80 assert.equal(model.alerts.length, 1);
82 var alert = model.alerts[0];
98 assert.equal(model.alerts.length, 1);
100 var alert = model.alerts[0];
139 assert.equal(model.alerts.length, 2);
140 var alert = model.alerts[0]
    [all...]

Completed in 5521 milliseconds

1 2 3 4 5 6 7 8 91011>>