/external/chromium-trace/catapult/dashboard/dashboard/elements/ |
bisect-status.html | 8 The bisect-status elements indicate whether the last bisect job 12 <polymer-element name="bisect-status"> 15 .bisect-status { 23 .bisect-status.started { 28 .bisect-status.completed { 33 .bisect-status.failed { 38 <span class="bisect-status {{status}}" title="{{status}}">•</span> 42 Polymer('bisect-status', {
|
bisect-button.html | 10 <link rel="import" href="/dashboard/elements/bisect-form.html"> 13 <polymer-element name="bisect-button" attributes="bisectInfo bugId xsrfToken"> 43 on-click="{{onBisect}}">Bisect</paper-button> 44 <bisect-form 45 id="bisect" 50 bugId="{{bugId}}"></bisect-form> 56 Polymer('bisect-button', { 65 * Updates the bisect button when the bisectInfo is set. 97 * Displays the bisect-form when the bisect button is clicked [all...] |
bisect-button-test.html | 8 <link rel="import" href="/dashboard/elements/bisect-button.html"> 26 var button = document.createElement('bisect-button'); 31 var button = document.createElement('bisect-button'); 46 var button = document.createElement('bisect-button'); 69 var button = document.createElement('bisect-button');
|
bisect-form.html | 8 The bisect-form element includes the form for all of the different stages of 9 the bisect process after the user clicks on the bisect button. 19 <polymer-element name="bisect-form" extends="base-form" 65 <td>Bisect bot:</td> 116 <td>Bisect mode:</td> 124 If you would like to bisect on a test failure, please carefully 139 <p><a href="http://www.chromium.org/developers/speed-infra/perf-try-bots-bisect-bots/config"> 145 on-click="{{onSendToTrybot}}">Start bisect</paper-button> 160 * Checks whether a revision appears to be OK to use for bisect [all...] |
bug-info.html | 8 <link rel="import" href="/dashboard/elements/bisect-button.html"> 38 <bisect-button id="bisect" class="mini"></bisect-button> 120 * Displays a bisect button. 126 this.$.bisect.bugId = this.bugId; 129 this.$.bisect.bisectInfo = {
|
/external/chromium-trace/catapult/experimental/bisect_lib/ |
README.md | 5 Bisect on catapult 8 The purpose of this library is to house the logic used by the [bisect 9 recipe](https://code.google.com/p/chromium/codesearch#chromium/build/scripts/slave/recipes/bisect.py) 16 * Eventually move the bisect director role outside of buildbot/recipes and
|
depot_map.py | 8 repositories supported by auto-bisect.
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
can_bisect.py | 5 """A handler and functions to check whether bisect is supported.""" 23 # The bisect bot map stored in datastore is expected to be 24 # a dict mapping master names to [perf bot, bisect bot] pairs. 25 # If a master name is not in the dict, bisect isn't supported. 32 """Checks whether bisect is supported for a test. 36 start_revision: The start of the bisect revision range. 37 end_revision: The end of the bisect revision range. 49 """Checks whether a test is valid for bisect.""" 74 """Checks whether a revision looks like a valid revision for bisect."""
|
bisect_fyi.py | 24 Bisect Config: %(info)s 42 """Runs bisect jobs with pre determined configs.""" 53 errors_list[test_name] = {'error': 'Missing bisect config.'} 59 """Re-starts a bisect-job after modifying it's config based on run count. 67 bisect job. Otherwise, a dict containing "error", with some description 85 """Creates a TryJob entity with the bisect config. 89 bisect_config: A dictionary of parameters for a bisect job. 95 NotBisectableError: A valid bisect config could not be created. 99 raise auto_bisect.NotBisectableError('Could not select a bisect bot.') 108 job_type='bisect-fyi' [all...] |
bisect_stats.py | 5 """URL endpoints to show bisect stats.""" 20 """URL endpoint to get stats about bisect runs.""" 47 """Sums up failed and completed bisect run series. 76 """Updates bisect run stat by bot name and status. 78 Bisect stats stored in a layered_cache entity have the form below. Each 79 tick is one week and count is the sum of failed or completed bisect runs. 91 bot_name: Name of the bisect bot. 92 status: Bisect status. Either 'failed' or 'completed'. 94 # TODO(chrisphan): Add stats for staled bisect.
|
update_bug_with_results.py | 40 Hi %(author)s, the bisect results pointed to your CL below as possibly 59 It expects no parameters and has no output. It checks all current bisect try 60 jobs and send comments to an issue on the issue tracker if a bisect job has 92 job: A TryJob entity, which represents one bisect try job. 98 # TODO(chrisphan): Do we want to send a FYI Bisect email here? 107 elif job.job_type == 'bisect-fyi': 132 error_message += '\nFailed to update bug with bisect results.' 134 error_message = 'Failed to update bug with bisect results: %s' % e 154 """Posts bisect results on issue tracker.""" 177 # Set restrict view label if the bisect results are internal only [all...] |
auto_bisect.py | 19 # Days between successive bisect restarts. 41 """An error indicating that a bisect couldn't be automatically started.""" 46 """Restarts failed bisect jobs. 48 Bisect jobs that ran out of retries will be deleted. 51 True if all bisect jobs that were retried were successfully triggered, 60 # Start bisect right away if this is the first retry. Otherwise, 61 # try bisect with different config. 74 comment = ('Failed to run bisect %s times.' 83 """Re-starts a bisect-job after modifying it's config based on run count. 89 True if the bisect was successfully triggered and False otherwise [all...] |
bisect_report.py | 5 """Generates reports base on bisect result data.""" 12 ===== BISECT JOB RESULTS ===== 17 Bisect job ran on: %(bisect_bot)s 43 The bisect was aborted because %s 49 The following warnings were raised by the bisect job: 70 """Generates a report for bisect results. 78 Bisect report string.
|
start_try_job.py | 5 """URL endpoint containing server-side functionality for bisect try jobs.""" 30 # Path to the perf bisect script config file, relative to chromium/src. 31 _BISECT_CONFIG_PATH = 'tools/auto_bisect/bisect.cfg' 78 """URL endpoint for AJAX requests for bisect config handling. 80 Requests are made to this end-point by bisect and trace forms. This handler 84 "perform-bisect": Triggers a bisect job. 89 """Performs one of several bisect-related actions depending on parameters. 106 elif step == 'perform-bisect': 116 """Gathers the parameters for a bisect job and triggers the job."" [all...] |
bisect_report_test.py | 94 ===== BISECT JOB RESULTS ===== 113 Bisect job ran on: linux 136 ===== BISECT JOB RESULTS ===== 146 Bisect job ran on: linux 171 ===== BISECT JOB RESULTS ===== 176 Bisect job ran on: linux 202 ===== BISECT JOB RESULTS ===== 207 The following warnings were raised by the bisect job: 212 Bisect job ran on: linux 238 ===== BISECT JOB RESULTS ==== [all...] |
ttest.py | 26 import bisect namespace 226 # bisect.bisect will return the index at which (df + 1,) would be 228 t_table_row = _TABLE[bisect.bisect(_TABLE, (df + 1,)) - 1][1] 230 # In this line, bisect.bisect would return the index in the row 233 # t-value, so here we also subtract one from the result of bisect.bisect. 234 return _TWO_TAIL[bisect.bisect(t_table_row, abs(t)) - 1 [all...] |
bad_bisect.py | 5 """URL endpoint to record bad bisect.""" 58 'headline': 'Confirmed bad bisect. Thank you for reporting.'})
|
post_bisect_results.py | 5 """URL endpoint to allow bisect bots to post results to the dashboard.""" 35 Bisect results come from a "data" parameter, which is a JSON encoding of a 102 """Returns a URL for information about a bisect try job."""
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
try_job.py | 5 """A Model that represents one bisect or perf test try job. 8 bisect jobs and update bugs with results. 10 They are also used in /auto_bisect to restart unsuccessful bisect jobs. 36 # Bisect run status (e.g., started, failed). 56 default='bisect', 57 choices=['bisect', 'bisect-fyi', 'perf-try']) 59 # job_name attribute is used by try jobs of bisect FYI. 62 # Results data coming from bisect bots.
|
bug_data.py | 35 # Status of the latest bisect run for this bug 51 """Sets the bisect status for a Bug entity."""
|
/external/chromium-trace/catapult/dashboard/dashboard/templates/ |
bad_bisect.html | 22 that bisect job <a href="#">{{try_job_id}}</a> is incorrect.
|
bisect_stats.html | 10 <title>Bisect Statistics</title> 34 <h1>Bisect Statistics</h1> 37 <h2>Bisect Run Summary</h2> 43 <h2>Bisect Run By Platform</h2> 50 <quick-log id="bisect-infra-failure-log" 72 // Data object for bisect results by platform. 84 // Data object for total bisect results in the form: 108 * Loads chart for bisect total failed and success runs. 148 * Loads chart for bisect runs by platform.
|
buildbucket_job_status.html | 16 Status of the bisect job {{job_id}}: ERROR, {{error}} 20 Status of the bisect job {{job_id}}: {{build.status}}, {{build.result}}
|
edit_site_config.html | 50 Bisect FYI test cases.</li> 58 Map of tester names to bisector bot for recipe bisect.</li> 65 Association between bot names and bisect bot names.</li> 67 Map of master names to bisect "test types".</li> 71 Try servers to use for bisect jobs.</li>
|
/external/chromium-trace/catapult/dashboard/ |
cron.yaml | 6 - description: Start and restart bisect jobs. 27 - description: Update bugs with completed bisect job results. 43 - description: Triggers bisect FYI jobs.
|