I hereby claim:
- I am pmlopes on github.
- I am pmlopes (https://keybase.io/pmlopes) on keybase.
- I have a public key whose fingerprint is 349E 08C1 8265 2E9E 4CFD 9034 65E8 59E4 DB40 5A41
To claim this, I am signing this object:
public class JsonArray extends ArrayList<Object> implements JsonElement<Integer>, List<Object> { | |
private static final long serialVersionUID = 1l; | |
public JsonArray() { | |
super(); | |
} | |
public JsonArray(List<?> list) { | |
super(list); |
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v2.0.22 (GNU/Linux) | |
mQINBFQib6sBEACu3OvNg5z1U8FCJF/IJnPeNEz7yYXFeKhmjXmdBUPkXOiFuKRC | |
jlJWFZhnaKXapK0dB3LXrAEbn8EmNBB6PuAKqSJ/3fW/bQgdrZPW39tlO8MvbRJf | |
Z/QdOovCa1t7rMgofeq1CQJKX1jS9mcnCSBChedI+cQWVZao/CIaGC4uek4CXnZp | |
XaIeb2YaaHkhq18g8MSVR9YTBt1AgNUTsFczVHA8+RZ60GL0nqps/s0FH9QJDyf9 | |
9OWXbOeJifbg03ul+Tx5kr0djouYKHOJypF8kM+HPpiBbcsskXpbAmv+OI0eu/AC | |
FJxf/7LtBMD6czPrx6/3HSisWxqgPfh3N8K896lmgH4aORQ1sAVj0ipimlYhIskl | |
gfKFSdYj1HsmbzqoK+W8ga345arX5q/rpgTGYOznjBbS1vbGOyhR8TVGHugnsSXf |
I hereby claim:
To claim this, I am signing this object:
import io.vertx.core.Vertx | |
import spock.lang.Shared | |
import spock.lang.Specification | |
import spock.util.concurrent.BlockingVariable | |
class HelloSpockSpec extends Specification { | |
@Shared | |
def Vertx vertx = Vertx.vertx() |
@Test | |
public void testLoad() { | |
final AtomicInteger counter = new AtomicInteger(); | |
int repetitions = 10000; | |
counter.set(repetitions); | |
for (int i = 0; i < repetitions; i++) { | |
redis.get("unknown", res -> { | |
if (res.failed()) { |
[Unit] | |
Description=Vert.x Service | |
Wants=environment.target | |
[Service] | |
Type=simple | |
ExecStart=/bin/java $JAVA_OPTS -jar %h/rpi-1.0-fat.jar | |
[Install] | |
Alias=default.target |
package io.vertx.blog; | |
import io.vertx.core.AbstractVerticle; | |
import io.vertx.core.http.HttpServerResponse; | |
import io.vertx.core.json.JsonArray; | |
import io.vertx.core.json.JsonObject; | |
import io.vertx.ext.jdbc.JDBCClient; | |
import io.vertx.ext.sql.SQLConnection; | |
import io.vertx.ext.web.Router; | |
import io.vertx.ext.web.handler.BodyHandler; |
{ | |
"name": "vertx3-hello", | |
"private": true, | |
"dependencies": { | |
"vertx3-min": "3.0.0-1" | |
}, | |
"scripts": { | |
"start": "./node_modules/.bin/vertx run server.js" | |
} | |
} |
<settings> | |
<profiles> | |
<profile> | |
<id>allow-snapshots</id> | |
<activation><activeByDefault>true</activeByDefault></activation> | |
<repositories> | |
<repository> | |
<id>snapshots-repo</id> | |
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |