Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | `cargo fix --edition-idioms` | Simon Sapin | 2018-11-08 | 1 | -1/+1 |
| | |||||
* | Sort `use` statements | Simon Sapin | 2018-11-06 | 1 | -3/+3 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -5/+5 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -5/+1 |
| | |||||
* | Add the TaskSourceName to CommonScriptMsg::Task | Agustin Chiappe Berrini | 2018-09-04 | 1 | -1/+2 |
| | | | | Update QueuedTaskConversion and the TaskQueue to use it | ||||
* | introduce "per task source" ignoring of tasks | Gregory Terzian | 2018-07-10 | 1 | -1/+3 |
| | |||||
* | added pipelines to all task sources | ddh | 2017-10-25 | 1 | -3/+4 |
| | | | | changed task sources to accept pipeline ids | ||||
* | added time to interactive metrics, refactored metrics to use traits | ddh | 2017-10-24 | 1 | -1/+2 |
| | | | | changed task macro to take pipeline info | ||||
* | Remove use of unstable box syntax. | Simon Sapin | 2017-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax. | ||||
* | Introduce TaskOnce | Anthony Ramine | 2017-09-20 | 1 | -5/+5 |
| | | | | | Having both TaskBox and TaskOnce allows us to remove the superfluous inner boxing from CancellableTask<T>. | ||||
* | Rename Task to TaskBox | Anthony Ramine | 2017-09-20 | 1 | -2/+2 |
| | |||||
* | Make Task require Send | Anthony Ramine | 2017-09-20 | 1 | -1/+1 |
| | |||||
* | Use task! to notify performance observers | Anthony Ramine | 2017-09-18 | 1 | -21/+7 |
| | |||||
* | Move Task to its own module | Anthony Ramine | 2017-09-18 | 1 | -1/+1 |
| | |||||
* | Rename Runnable to Task | Anthony Ramine | 2017-09-16 | 1 | -14/+18 |
| | | | | | | | | | | | | The changes are: * `*Runnable` -> `*Task`; * `RunnableMsg` -> `Task`; * `RunnableWrapper` -> `TaskCanceller`; * `MainThreadRunnable` -> `MainThreadTask`; * `wrap_runnable` -> `wrap_task`; * `get_runnable_wrapper` -> `task_canceller`; * `handler` -> `run`; * `main_thread_handler` -> `run_with_script_thread`. | ||||
* | Make Performance Timeline API work in Workers | Fernando Jiménez Moreno | 2017-09-05 | 1 | -26/+38 |
| | |||||
* | order derivable traits lists | Clément DAVID | 2017-08-23 | 1 | -1/+1 |
| | | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs | ||||
* | Performance Timeline API | Fernando Jiménez Moreno | 2017-08-17 | 1 | -0/+58 |