Home | History | Annotate | Download | only in dashboard

Lines Matching refs:Row

31     # Construct a query for recently added Row entities.
32 query = graph_data.Row.query()
33 query = query.order(-graph_data.Row.timestamp)
42 # Row entities that belong to a test that matches the pattern.
62 query = query.filter(graph_data.Row.parent_test.IN(test_keys))
70 # Fetch the Row entities.
75 for row in rows:
77 'test': utils.TestPath(row.parent_test),
78 'added_time': row.timestamp.strftime('%Y-%m-%d %H:%M:%S %Z'),
79 'revision': row.revision,
80 'value': row.value,
81 'error': row.error,
90 # Render the template with the row information that was fetched.