HomeSort by relevance Sort by last modified time
    Searched refs:anomaly (Results 26 - 44 of 44) sorted by null

12

  /external/chromium-trace/catapult/dashboard/dashboard/
email_summary_test.py 15 from dashboard.models import anomaly
41 anomaly.Anomaly(
143 for a in anomaly.Anomaly.query().fetch():
163 self.assertIn('A <b>' + anomaly.FREAKIN_HUGE + '</b> regression', html)
find_anomalies.py 5 """Processes tests and creates new Anomaly entities.
9 new Anomaly entities.
20 from dashboard.models import anomaly
25 # may be used if a test has a "max_window_size" anomaly config parameter.
69 logging.info('Found at least one anomaly in: %s', test.test_path)
76 anomalies, utils.TestSuiteName(test.key), 'Anomaly')
128 in the same environment. If an anomaly happens in the ref build results at
129 the same time as an anomaly happened in the test build, that suggests that
142 an anomaly found in the corresponding ref test will be filtered out.
158 # Log information about what anomaly got filtered and what did not
    [all...]
stats.py 27 from dashboard.models import anomaly
376 if test.improvement_direction == anomaly.UP:
378 if test.improvement_direction == anomaly.DOWN:
387 return anomaly.FREAKIN_HUGE
409 alerts = anomaly.Anomaly.query(
410 anomaly.Anomaly.timestamp >= start_time,
411 anomaly.Anomaly.timestamp < end_time
    [all...]
migrate_test_names_test.py 15 from dashboard.models import anomaly
51 """Adds sample Test, Row, and Anomaly entities."""
55 # Also add 2 Anomaly entities.
62 anomaly.Anomaly(
90 r1: Expected end revision of first Anomaly.
91 r2: Expected end revision of second Anomaly.
94 anomalies = anomaly.Anomaly.query(
95 anomaly.Anomaly.test == key).fetch(
    [all...]
auto_bisect.py 15 from dashboard.models import anomaly
149 anomalies = anomaly.Anomaly.query(anomaly.Anomaly.bug_id == bug_id).fetch()
151 raise NotBisectableError('No Anomaly alerts found for this bug.')
225 anomalies: A non-empty list of Anomaly entities.
226 index: Index of the first Anomaly entity to look at. If this is greater
245 """Compares two Anomalies to decide which Anomaly's Test is better to use.
260 a1: The first Anomaly entity
    [all...]
file_bug_test.py 21 from dashboard.models import anomaly
73 """Adds sample data and returns a dict of rev to anomaly key."""
89 return anomaly.Anomaly(
175 # The anomaly entities should be updated.
176 for anomaly_entity in anomaly.Anomaly.query().fetch():
group_report_test.py 16 from dashboard.models import anomaly
32 """Adds a group of Anomaly entities to the datastore."""
35 anomaly_key = anomaly.Anomaly(
62 test.improvement_direction = anomaly.DOWN
98 key = ndb.Key('Anomaly', 123)
101 self.assertEqual('No Anomaly found for key %s.' % key.urlsafe(), error)
106 self.assertIn('Invalid Anomaly key', error)
update_bug_with_results.py 25 from dashboard.models import anomaly
222 query = anomaly.Anomaly.query(
223 anomaly.Anomaly.bug_id == int(source_bug_id))
update_bug_with_results_test.py 22 from dashboard.models import anomaly
336 anomaly.Anomaly(
340 anomaly.Anomaly(
347 anomalies = anomaly.Anomaly.query(
348 anomaly.Anomaly.bug_id == int(54321)).fetch()
graph_json.py 24 from dashboard.models import anomaly
37 anomaly.UP: 'Higher',
38 anomaly.DOWN: 'Lower',
39 anomaly.UNKNOWN: '?',
167 """Gets a map of revision numbers to Anomaly entities."""
168 anomalies = anomaly.Anomaly.query().filter(
169 anomaly.Anomaly.test == test).fetch()
add_point_queue.py 21 from dashboard.models import anomaly
197 return anomaly.UP if higher_is_better else anomaly.DOWN
add_point_test.py 24 from dashboard.models import anomaly
255 # Verify that an anomaly processing was called.
634 self.assertEqual(anomaly.UNKNOWN, tests[0].improvement_direction)
637 self.assertEqual(anomaly.DOWN, tests[1].improvement_direction)
645 improvement_direction=anomaly.DOWN).put()
667 self.assertEqual(anomaly.UNKNOWN, tests[0].improvement_direction)
670 self.assertEqual(anomaly.UP, tests[1].improvement_direction)
679 improvement_direction=anomaly.DOWN).put()
682 self.assertEqual(anomaly.DOWN, test.improvement_direction)
704 self.assertEqual(anomaly.UP, test.improvement_direction
    [all...]
debug_alert.py 5 """Provides an interface for debugging the anomaly detection function."""
15 from dashboard.models import anomaly
32 """Displays UI for debugging the anomaly detection function.
62 # Get the anomaly data from the new anomaly detection module. This will
110 """Gets the name of the custom anomaly threshold, just for display."""
118 """Gets the name of the anomaly threshold dict to use."""
168 # We make a separate series for each anomaly, since segments may overlap.
200 an anomaly.
292 """Makes a list of data about Anomaly entities for a Test.""
    [all...]
migrate_test_names.py 30 from dashboard.models import anomaly
385 """Copies the Anomaly entities from one test to another.
392 A list of Future objects for Anomaly entities to update.
394 anomalies_to_update = anomaly.Anomaly.query(
395 anomaly.Anomaly.test == old_parent_key).fetch(
debug_alert_test.py 14 from dashboard.models import anomaly
88 """Adds a custom anomaly config which applies to one test."""
140 anomaly.Anomaly(
146 # Information about the stored anomaly should be somewhere on the page.
graph_json_test.py 17 from dashboard.models import anomaly
58 improvement_direction=anomaly.UP,
92 improvement_direction=anomaly.UP,
493 anomaly1 = anomaly.Anomaly(
501 anomaly2 = anomaly.Anomaly(
526 # Verify key fields of the annotation dictionary for the first anomaly.
535 # Verify key fields of the annotation dictionary for th second anomaly.
631 improvement_direction=anomaly.UP
    [all...]
bench_find_anomalies.py 7 This tool provides a way to benchmark an anomaly detection algorithm against
55 from dashboard.models import anomaly
92 # Anomaly. If an Anomaly's end revision overlaps another Anomaly's window,
93 # they are considered the same Anomaly.
113 """Reference anomaly data for one Test."""
121 # List of lists of revisions around Anomaly entities from base run.
124 # List of lists of revisions around Anomaly entities marked invalid.
127 # List of lists of revisions around Anomaly entities with bug IDs
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/models/
graph_data.py 64 from dashboard.models import anomaly
123 # There is a default anomaly threshold config (in anomaly.py), and it can
131 default=anomaly.UNKNOWN,
133 anomaly.UP,
134 anomaly.DOWN,
135 anomaly.UNKNOWN
259 Here, we check the sheriffs and anomaly configs to make sure they are
284 # Set the anomaly threshold config to the first one that has a test pattern
285 # that matches this test, if there is one. Anomaly configs are sorted b
    [all...]
  /external/ImageMagick/MagickCore/
widget.c 3654 anomaly, local
4245 anomaly, local
    [all...]

Completed in 152 milliseconds

12