HomeSort by relevance Sort by last modified time
    Searched full:anomaly (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/chromium-trace/catapult/dashboard/dashboard/
dump_graph_json_test.py 16 from dashboard.models import anomaly namespace
102 anomaly.Anomaly(sheriff=sheriff_key, test=test_key).put()
104 # Anomaly entities for the requested test, as well as sheriffs for
105 # the aforementioned Anomaly, should be returned.
112 anomalies = _EntitiesOfKind(entities, 'Anomaly')
130 anomaly.Anomaly(sheriff=chromium_sheriff, test=test_key_foo).put()
131 anomaly.Anomaly(sheriff=qa_sheriff, test=test_key_bar).put(
    [all...]
edit_anomalies_test.py 18 from dashboard.models import anomaly namespace
35 anomaly.Anomaly(start_revision=123456,
40 anomaly.Anomaly(start_revision=123460,
45 anomaly.Anomaly(start_revision=123465,
50 return anomaly.Anomaly.query().fetch(keys_only=True)
group_report_test.py 15 from dashboard.models import anomaly namespace
31 """Adds a group of Anomaly entities to the datastore."""
34 anomaly_key = anomaly.Anomaly(
61 test.improvement_direction = anomaly.DOWN
97 key = ndb.Key('Anomaly', 123)
100 self.assertEqual('No Anomaly found for key %s.' % key.urlsafe(), error)
105 self.assertIn('Invalid Anomaly key', error)
debug_alert.py 5 """Provides an interface for debugging the anomaly detection function."""
15 from dashboard.models import anomaly namespace
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.
277 """Makes a list of data about Anomaly entities for a Test.""
    [all...]
migrate_test_names_test.py 13 from dashboard.models import anomaly namespace
49 """Adds sample TestMetadata, Row, and Anomaly entities."""
53 # Also add 2 Anomaly entities.
60 anomaly.Anomaly(
88 r1: Expected end revision of first Anomaly.
89 r2: Expected end revision of second Anomaly.
92 anomalies = anomaly.Anomaly.query(
93 anomaly.Anomaly.test == key).fetch(
    [all...]
edit_anomaly_configs.py 5 """Provides the web interface for editing anomaly threshold configurations."""
15 """Handles editing the info about anomaly threshold configurations.
bench_find_anomalies_test.py 17 from dashboard.models import anomaly namespace
42 improvement_direction=anomaly.UNKNOWN, config=None):
82 anomaly_key = anomaly.Anomaly(
96 test = self._AddTestData('test', _SAMPLE_SERIES, anomaly.DOWN)
148 test = self._AddTestData('test', _SAMPLE_SERIES, anomaly.DOWN)
auto_triage_test.py 17 from dashboard.models import anomaly namespace
34 improvement_direction=anomaly.UP):
40 improvement_direction: One of {anomaly.UP, anomaly.DOWN, anomaly.UNKNOWN}.
60 """Adds a sample Anomaly and returns the key."""
65 return anomaly.Anomaly(
189 series, sheriff_key, improvement_direction=anomaly.DOWN)
213 series, sheriff_key, improvement_direction=anomaly.DOWN
    [all...]
associate_alerts.py 16 from dashboard.models import anomaly namespace
115 # Get Anomaly entities and related TestMetadata entities.
147 anomalies_with_bug = anomaly.Anomaly.query(
148 anomaly.Anomaly.bug_id == bug_id).fetch()
184 also be gotten by querying the datastore for Anomaly entities for
auto_bisect.py 15 from dashboard.models import anomaly namespace
148 anomalies = anomaly.Anomaly.query(anomaly.Anomaly.bug_id == bug_id).fetch()
150 raise NotBisectableError('No Anomaly alerts found for this bug.')
220 anomalies: A non-empty list of Anomaly entities.
221 index: Index of the first Anomaly entity to look at. If this is greater
241 """Compares two Anomalies to decide which Anomaly's TestMetadata is better to
257 a1: The first Anomaly entity
    [all...]
edit_anomalies.py 5 """URI endpoint for nudging Anomaly entities and updating alert bug IDs."""
25 and end revisions of Anomaly entities.
28 keys: A comma-separated list of urlsafe keys of Anomaly entities.
email_summary_test.py 15 from dashboard.models import anomaly namespace
41 anomaly.Anomaly(
144 for a in anomaly.Anomaly.query().fetch():
164 self.assertIn('A <b>' + anomaly.FREAKIN_HUGE + '</b> regression', html)
bench_find_anomalies.py 7 This tool provides a way to benchmark an anomaly detection algorithm against
55 from dashboard.models import anomaly namespace
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 TestMetadata."""
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...]
change_internal_only.py 16 from dashboard.models import anomaly namespace
162 # Update all of the Anomaly entities for this test.
165 anomalies = anomaly.Anomaly.GetAlertsForTest(test_key)
file_bug_test.py 21 from dashboard.models import anomaly namespace
73 """Adds sample data and returns a dict of rev to anomaly key."""
91 return anomaly.Anomaly(
179 # The anomaly entities should be updated.
180 for anomaly_entity in anomaly.Anomaly.query().fetch():
graph_json_test.py 17 from dashboard.models import anomaly namespace
59 improvement_direction=anomaly.UP,
95 improvement_direction=anomaly.UP,
495 anomaly1 = anomaly.Anomaly(
503 anomaly2 = anomaly.Anomaly(
517 anomaly3 = anomaly.Anomaly(
541 # Verify key fields of the annotation dictionary for the first anomaly
    [all...]
find_change_points_exp.py 28 **kwargs: Extra parameters to add to the anomaly config dict.
33 # The anomaly threshold config dictionary determines how many points are
  /hardware/invensense/6515/libsensors_iio/software/core/mpl/
mag_disturb.h 90 /* These API get/set the yaw angle based magnetic anomaly detection*/
94 /* These API get/set the yaw angle based strong magnetic anomaly detection*/
95 /* The strong magnetic anomaly detection will drop heading accuracy if gyro is not trustable */
  /external/chromium-trace/catapult/dashboard/docs/
code-snippets.md 16 from dashboard.models import anomaly
19 query = anomaly.Anomaly.query(anomaly.Anomaly.bug_id == -1)
20 query = query.filter(anomaly.Anomaly.sheriff == sheriff)
21 query = query.order(-anomaly.Anomaly.timestamp)
glossary.md 34 *Anomaly*: In the dashboard code, an anomaly refers to a step up or step
  /external/chromium-trace/catapult/dashboard/dashboard/static/
debug_alert.html 22 * Plots the main data series and related anomaly information.
54 * where we're expecting to possibly find an anomaly in the series.
110 * @param {Array} anomalyPoints array of [x, y] points for each anomaly.
135 // Below we are assuming that the anomaly data series and
138 var anomaly = window['ANOMALIES'][i];
139 var labelContent = anomalyDescription(anomaly);
147 * @param {Object} anomaly An object with anomaly information.
150 var anomalyDescription = function(anomaly) {
151 var index = anomaly['x_value']
    [all...]
  /external/chromium-trace/catapult/dashboard/
index.yaml 22 - kind: Anomaly
26 - kind: Anomaly
33 - kind: Anomaly
41 - kind: Anomaly
53 - kind: Anomaly
60 - kind: Anomaly
71 - kind: Anomaly
77 - kind: Anomaly
87 - kind: Anomaly
92 - kind: Anomaly
    [all...]
cron.yaml 14 - description: Send e-mails with daily anomaly summaries.
64 #&kind=Anomaly\
  /external/chromium-trace/catapult/dashboard/dashboard/models/
alert_group.py 24 # The minimum start of the revision range where the anomaly occurred.
27 # The minimum end of the revision range where the anomaly occurred.
55 otherwise creates a new group for that anomaly.
122 """Adds an anomaly to group and updates the group's properties."""
138 logging.debug('Auto triage: Associated anomaly on %s with %s.',
  /external/autotest/client/cros/audio/
audio_analysis.py 187 """Detects anomaly in a sine wave signal.
189 This method detects anomaly in a sine wave signal by matching
194 signal is matched and there is no anomaly in this block of test signal.
196 covers an anomaly.
199 be at least one block covering the transition from sine wave to anomaly.
204 @param block_size: The block size in samples to detect anomaly.
207 @returns: A list containing detected anomaly time in seconds.
245 @param block_size: The block size in samples to detect anomaly.

Completed in 1069 milliseconds

12 3 4 5