This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(bench-s3 pid=33673) --- BENCHMARK ---------------------------------------------------------------------------------------------------------------- | |
(bench-s3 pid=33673) | |
(bench-s3 pid=33673) Download performance with 4 MB objects (m5.8xlarge) | |
(bench-s3 pid=33673) +-------------------------------------------------------------------------------------------------+ | |
(bench-s3 pid=33673) | Time to First Byte (ms) | Time to Last Byte (ms) | | |
(bench-s3 pid=33673) +---------+----------------+------------------------------------------------+------------------------------------------------+ | |
(bench-s3 pid=33673) | Threads | Throughput | avg min p25 p50 p75 p90 p99 max | avg min p25 p50 p75 p90 p99 max | | |
(bench-s3 pid=33673) +---------+----------------+------------------------------------------------+------------------------------------------------+ | |
(bench-s3 pid=33673) | 8 | 663. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def time[R](block: => R): (R, Long) = { | |
val t0 = System.nanoTime() | |
val result = block | |
val t1 = System.nanoTime() | |
(result, t1 - t0) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.jainlabs; | |
import java.awt.*; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.*; | |
public class SwingTest { | |
private JFrame frame; | |
private JLabel result; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://tour.golang.org |