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
./gradlew :core-all:dependencyInsight --configuration compile --dependency opentracing | |
:core-all:dependencyInsight | |
io.opentracing:opentracing-api:0.31.0 | |
+--- io.opentracing:opentracing-noop:0.31.0 | |
| \--- io.opentracing:opentracing-util:0.31.0 | |
| \--- io.opentracing.contrib:opentracing-web-servlet-filter:0.1.0 | |
| \--- compile | |
+--- io.opentracing:opentracing-util:0.31.0 (*) | |
+--- io.opentracing.brave:brave-opentracing:0.27.0 | |
| \--- compile |
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
Implementation of the example used to show react: | |
~~~ | |
bind | |
[#ui/div | children: | |
[#ui/div text: "Jokes"] | |
[#ui/div | children: | |
[#ui/ul #joke-list]] | |
[#ui/div | children: | |
[#ui/input #add-joke, placeholder: "Insert an id"] |
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
(set-env! | |
:source-paths #{"src/cljs"} | |
:resource-paths #{"resources"} | |
:dependencies '[[adzerk/boot-cljs "1.7.228-1" :scope "test"] | |
[adzerk/boot-cljs-repl "0.3.0" :scope "test"] | |
[adzerk/boot-reload "0.4.8" :scope "test"] | |
[pandeiro/boot-http "0.7.2" :scope "test"] | |
[com.cemerick/piggieback "0.2.1" :scope "test"] | |
[org.clojure/tools.nrepl "0.2.12" :scope "test"] | |
[weasel "0.7.0" :scope "test"] |
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
(ns cloverage.boot-cloverage | |
(:require [boot.core :as core] | |
[boot.pod :as pod] | |
[boot.util :as util])) | |
(def ^:private deps | |
'[[cloverage "1.0.8-SNAPSHOT"]]) | |
(core/deftask cloverage | |
"cloverage analysis" |
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
(def ^:private deps | |
'[[cloverage "1.0.6"]]) | |
(deftask cloverage | |
"cloverage analysis" | |
[] | |
(let [pod (-> (get-env) | |
(update-in [:dependencies] into deps) | |
pod/make-pod | |
future)] |
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.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.ScheduledExecutorService; | |
import java.util.concurrent.TimeUnit; | |
import org.testng.annotations.Test; | |
import com.linkedin.parseq.Engine; | |
import com.linkedin.parseq.EngineBuilder; | |
import com.linkedin.parseq.Task; |
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
(defn- reduce-over-values | |
[func map] | |
(reduce (fn [accu [key value]] | |
(assoc accu key (func value))) | |
{} map)) |