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

12 3 4

  /external/chromium-trace/catapult/dashboard/docs/
deploy-checklist.md 61 ### Triaging and bisect functionality
68 - One can start a bisect job by clicking any point in the graph, clicking
69 "bisect", then submitting the form.
pages-and-endpoints.md 48 **/bisect\_stats**: View bisect job success rate stats.
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_job.py 11 """A buildbot bisect job started and monitored through buildbucket."""
50 """Prepares a nested dict containing the bisect config."""
email_template.py 93 'Bisect FYI Try Job Failed on %(bot)s for %(test_name)s.')
96 <font color="red"><b>Bisect FYI Try Job Failed</b></font>
100 A Bisect FYI Try Job for %(test_name)s was submitted on %(bot)s at
105 <tr><td>Bisect Config:</td><td><b><pre>%(config)s</pre></b></td>
107 <tr><td>Bisect Results:</td><td><b><pre>%(results)s</pre></b></td>
112 Bisect FYI Try Job Failed
116 Bisect Config: %(config)s
118 Bisect Results:
320 """Gets the contents of the email to send once a bisect FYI job completes."""
issue_tracker_service.py 46 """Adds a comment with the bisect results to the given bug.
50 comment: Bisect results information.
191 # one request is 100. Since bisect-fyi jobs may have more then 100
graph_revisions.py 17 import bisect namespace
128 index = bisect.bisect_left(revisions, row.revision)
update_bug_with_results_test.py 265 # When a bisect has a culprit for a perf regression,
328 # Only 1 cache for bisect stats.
398 job_type='bisect-fyi',
427 job_type='bisect-fyi',
453 'Bisect report returns empty for job id %s, bug_id %s.', 1, 111)
  /external/chromium-trace/catapult/dashboard/dashboard/elements/
trace-button.html 8 Most of this code is duplicated in bisect-form.
22 * FIXME: This style is duplicated from the bisect-form style.
chart-tooltip.html 16 <link rel="import" href="/dashboard/elements/bisect-button.html">
112 <bisect-button affirmative xsrfToken="{{xsrfToken}}"
114 bisectInfo="{{bisectInfo}}"></bisect-button>
trace-form.html 113 * Checks whether a revision appears to be OK to use for bisect.
114 * TODO(qyearsley): Extract common code in trace-form and bisect-form.
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
chart_base_2d_brushable_x.html 50 var bisect = d3.bisector(this.getXForDatum_.bind(this)).right;
51 return bisect(this.data_, dataX) - 1;
  /external/llvm/utils/
bisect 19 print("Bisect Starting!")
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 11 # We must also handle the case that bisect was imported before.
12 if 'bisect' in sys.modules:
13 del sys.modules['bisect']
16 import bisect as py_bisect
20 del sys.modules['bisect']
23 import bisect as c_bisect
212 self.assertEqual(self.module.bisect, self.module.bisect_right)
218 self.assertEqual(self.module.bisect(a=data, x=25, lo=1, hi=3), 2)
323 Example from the Library Reference: Doc/library/bisect.rst
325 The bisect() function is generally useful for categorizing numeric data
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/trie/
py.py 4 from bisect import bisect_left
  /external/tremolo/Tremolo/
vorbisfile.c 219 ogg_int64_t bisect; local
222 bisect=searched;
224 bisect=(searched+endsearched)/2;
227 _seek_helper(vf,bisect);
231 endsearched=bisect;
526 /* Chained bitstream. Bisect-search each logical bitstream
1196 ogg_int64_t bisect; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 35 import bisect namespace
115 i = bisect.bisect_left(self._lengths, size)
160 bisect.insort(self._lengths, length)
  /external/autotest/site_utils/autoupdate/
release.py 9 import bisect namespace
160 i = bisect.bisect_left(self._sorted_shifted_branchpoint_rel_key_list,
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 29 import bisect namespace
223 igyrowindow0 = bisect.bisect(all_times, tcam0)
224 igyrowindow1 = bisect.bisect(all_times, tcam1)
  /build/tools/releasetools/
sparse_img.py 15 import bisect namespace
176 idx = bisect.bisect_right(self.offset_index, s) - 1
244 idx = bisect.bisect_right(self.offset_index, b) - 1

Completed in 1490 milliseconds

12 3 4