Skip to content

Commit

Permalink
Add visual separators to large numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Nov 24, 2019
1 parent 4194f86 commit b5341c1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/condvar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 1,
max_queue_size: 1,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Bounded(Duration::from_secs(1)),
delay_seconds: 0
Expand All @@ -926,7 +926,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 1,
max_queue_size: 1,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 0
Expand All @@ -935,7 +935,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 5,
max_queue_size: 1,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 0
Expand All @@ -944,7 +944,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 1,
max_queue_size: 1,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 0
Expand All @@ -953,7 +953,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 1,
max_queue_size: 1,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 1
Expand All @@ -962,7 +962,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 1,
max_queue_size: 100,
messages_per_producer: 1000000,
messages_per_producer: 1_000_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 0
Expand Down Expand Up @@ -1007,7 +1007,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 10,
max_queue_size: 100,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::All,
timeout: Timeout::Forever,
delay_seconds: 0
Expand All @@ -1016,7 +1016,7 @@ mod webkit_queue_test {
num_producers: 1,
num_consumers: 10,
max_queue_size: 100,
messages_per_producer: 100000,
messages_per_producer: 100_000,
notification_style: NotifyStyle::One,
timeout: Timeout::Forever,
delay_seconds: 0
Expand Down

0 comments on commit b5341c1

Please sign in to comment.