lookup | 0 | 1 | 4 | 16 | 64 | 256 | 1,024 | 4,096 | 16,192 | 65,536 | 262,144 | 1,048,576 |
---|---|---|---|---|---|---|---|---|---|---|---|---|
Set | 0 ± 0% | 12 ± 0% | 57 ± 0% | 307 ± 0% | 1,410 ± 1.1% | 6,200 ± 1.8% | 30,500 ± 1.2% | 143,000 ± 1.4% | 820,000 ± 1.4% | 4,510,000 ± 2.1% | 42,000,000 ± 6.3% | |
j.ArrayList | 0 ± 0% | 3 ± 0% | 4 ± 0% | 4 ± 0% | 4 ± 0% | 4 ± 0% | 4 ± 25.0% | 3 ± 166.7% | 10 ± 261.5% | 90 ± 72.2% | 1,000 ± 232.0% | -11,000 ± 52.6% |
m.Map | 0 ± 0% | 5 ± 0% | 20 ± 0% | 82 ± 1.2% | 337 ± 2.1% | 1,460 |
This file contains 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
import com.twitter.util.Await | |
import com.twitter.util.Closable | |
import com.twitter.util.Duration | |
import com.twitter.util.Future | |
import com.twitter.util.Promise | |
import com.twitter.util.Time | |
import scala.collection.mutable | |
/** |
This file contains 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 bootstrap | |
import finecss.Dsl | |
trait Bootstrap0 extends Dsl { | |
val accordion = rule.cls("accordion") | |
val active = rule.cls("active") | |
val arrow = rule.cls("arrow") | |
val breadcrumb_item = rule.cls("breadcrumb-item") |
This file contains 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 finecss.generated | |
import finecss.Dsl | |
trait TestModule20 extends Dsl { | |
val lead = rule.cls("lead") | |
.style("font-size", "1.25rem") | |
.style("font-weight", "300") | |
val display_1 = rule.cls("display-1") |
This file contains 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
import java.io.ByteArrayOutputStream | |
import java.time.ZonedDateTime | |
fun exec(vararg args: String) = try { | |
ByteArrayOutputStream().also { os -> | |
project.exec { | |
commandLine(*args) | |
standardOutput = os | |
} | |
}.toByteArray().let { String(it) }.trim() |
Troubleshooting videos issues in chromium based browsers
Go to http://security.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/
Download the latest 'chromium-codecs-ffmpeg-extra'
( i386 refers to 32bits & amd64 to 64bits version)
This file contains 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
import java.io._ | |
/** | |
* Schema for efficient binary serialization of case classes | |
* Implementation must: | |
* - declare all fields using `required` and `optional` methods | |
* - implement doRead, transferring field values from declaration to case class instance | |
* - assign every field an unique tag | |
* | |
* Protocol. |
This file contains 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 me.scf37.rediska.dao | |
import java.sql.Connection | |
import java.sql.Timestamp | |
import java.time.Instant | |
import cats.Applicative | |
import me.scf37.db.sql.SqlEffectLift | |
import me.scf37.rediska.dao.meta.Sequences | |
import me.scf37.rediska.dao.meta.Tables.USER |
This file contains 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 me.scf37.json | |
import java.lang.reflect.Field | |
import java.lang.reflect.ParameterizedType | |
import java.lang.reflect.Type | |
import java.util.concurrent.ConcurrentHashMap | |
import me.scf37.fine.exception.JsonParsingException | |
import tethys.JsonReader | |
import tethys.JsonWriter |
This file contains 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 bootstrap | |
import me.scf37.finecss.Dsl | |
trait Bootstrap0 extends Dsl { | |
val accordion = rule.cls("accordion") | |
val active = rule.cls("active") | |
val arrow = rule.cls("arrow") | |
val breadcrumb_item = rule.cls("breadcrumb-item") |
NewerOlder