entities
listlengths
1
44.6k
max_stars_repo_path
stringlengths
6
160
max_stars_repo_name
stringlengths
6
66
max_stars_count
int64
0
47.9k
content
stringlengths
18
1.04M
id
stringlengths
1
6
new_content
stringlengths
18
1.04M
modified
bool
1 class
references
stringlengths
32
1.52M
[ { "context": "generate alphanum-gen 10)\n key \"message\"\n value \"Hello World!!\"]\n (s", "end": 2025, "score": 0.8871956467628479, "start": 2018, "tag": "KEY", "value": "message" }, { "context": "generate alphanum-gen 10)\n key ...
test/ziggurat/producer_test.clj
shubhang93/ziggurat
0
(ns ziggurat.producer-test (:require [clojure.string :refer [blank?]] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [ziggurat.config :refer [ziggurat-config]] [ziggurat.fixtures :as fix :refer [*producer-properties* *consumer-properties*]] ...
74469
(ns ziggurat.producer-test (:require [clojure.string :refer [blank?]] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [ziggurat.config :refer [ziggurat-config]] [ziggurat.fixtures :as fix :refer [*producer-properties* *consumer-properties*]] ...
true
(ns ziggurat.producer-test (:require [clojure.string :refer [blank?]] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [ziggurat.config :refer [ziggurat-config]] [ziggurat.fixtures :as fix :refer [*producer-properties* *consumer-properties*]] ...
[ { "context": "; Copyright (c) Chris Houser, Dec 2008. All rights reserved.\n; The use and d", "end": 30, "score": 0.9998641014099121, "start": 18, "tag": "NAME", "value": "Chris Houser" }, { "context": "sed interactively at the REPL\n\n(ns \n #^{:author \"Chris Houser, Christoph...
ThirdParty/clojure-contrib-1.1.0/src/clojure/contrib/repl_utils.clj
allertonm/Couverjure
3
; Copyright (c) Chris Houser, Dec 2008. All rights reserved. ; The use and distribution terms for this software are covered by the ; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) ; which can be found in the file CPL.TXT at the root of this distribution. ; By using this software in any fas...
49106
; Copyright (c) <NAME>, Dec 2008. All rights reserved. ; The use and distribution terms for this software are covered by the ; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) ; which can be found in the file CPL.TXT at the root of this distribution. ; By using this software in any fashion, ...
true
; Copyright (c) PI:NAME:<NAME>END_PI, Dec 2008. All rights reserved. ; The use and distribution terms for this software are covered by the ; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) ; which can be found in the file CPL.TXT at the root of this distribution. ; By using this software in...
[ { "context": "! *unchecked-math* :warn-on-boxed)\n(ns ^{:author \"John Alan McDonald\" :date \"2016-12-22\"\n :doc \"Step function pro", "end": 105, "score": 0.9998731017112732, "start": 87, "tag": "NAME", "value": "John Alan McDonald" } ]
src/test/clojure/taiga/test/classify/step/tree.clj
wahpenayo/taiga
4
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "John Alan McDonald" :date "2016-12-22" :doc "Step function probability forest example." } taiga.test.classify.step.tree (:require [clojure.test :as test] [zana.api :as z] [taiga.api :as tai...
113566
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "<NAME>" :date "2016-12-22" :doc "Step function probability forest example." } taiga.test.classify.step.tree (:require [clojure.test :as test] [zana.api :as z] [taiga.api :as taiga] ...
true
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "PI:NAME:<NAME>END_PI" :date "2016-12-22" :doc "Step function probability forest example." } taiga.test.classify.step.tree (:require [clojure.test :as test] [zana.api :as z] [taiga.api :as t...
[ { "context": ";; Copyright (c) Thomas Athorne\n;;\n;; Licensed under the Apache License, Versio", "end": 33, "score": 0.9998769164085388, "start": 19, "tag": "NAME", "value": "Thomas Athorne" } ]
src/thicken/theme.clj
thomasathorne/thicken
0
;; Copyright (c) Thomas Athorne ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or...
25730
;; Copyright (c) <NAME> ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed ...
true
;; Copyright (c) PI:NAME:<NAME>END_PI ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable ...
[ { "context": "(ns state)\n\n; Code from: Programming Clojure, Alex Miller\n\n; p01: Refs and Software Transactional Memory\n\n;", "end": 57, "score": 0.9998659491539001, "start": 46, "tag": "NAME", "value": "Alex Miller" }, { "context": "2: (deref reference)\n\n(deref current-track)\...
clj/ex/study_clojure/ex06/src/state.clj
mertnuhoglu/study
1
(ns state) ; Code from: Programming Clojure, Alex Miller ; p01: Refs and Software Transactional Memory ; p01.01: (ref initial-state) (def current-track (ref "Mars")) ; p01.02: (deref reference) (deref current-track) ;;=> "Mars" (identity @current-track) ;;=> "Mars" ; p01.03: (ref-set reference new-value) (ref-...
124289
(ns state) ; Code from: Programming Clojure, <NAME> ; p01: Refs and Software Transactional Memory ; p01.01: (ref initial-state) (def current-track (ref "Mars")) ; p01.02: (deref reference) (deref current-track) ;;=> "<NAME>" (identity @current-track) ;;=> "<NAME>" ; p01.03: (ref-set reference new-value) (ref-s...
true
(ns state) ; Code from: Programming Clojure, PI:NAME:<NAME>END_PI ; p01: Refs and Software Transactional Memory ; p01.01: (ref initial-state) (def current-track (ref "Mars")) ; p01.02: (deref reference) (deref current-track) ;;=> "PI:NAME:<NAME>END_PI" (identity @current-track) ;;=> "PI:NAME:<NAME>END_PI" ; p01...
[ { "context": "ntation of global thermonuclear war.\"\n {:author \"Daniel Solano Gómez\"}\n (:gen-class :main no\n :extends a", "end": 1740, "score": 0.999785840511322, "start": 1721, "tag": "NAME", "value": "Daniel Solano Gómez" } ]
jvm-lang/clojure/src/clojure/decafbot/clojure/GlobalThermonuclearWarActivity.clj
sattvik/decafbot
0
; Copyright © 2011 Sattvik Software & Technology Resources, Ltd. Co. ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; ; 1. Redistributions of source code must retain the above copyright notice, ;...
103953
; Copyright © 2011 Sattvik Software & Technology Resources, Ltd. Co. ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; ; 1. Redistributions of source code must retain the above copyright notice, ;...
true
; Copyright © 2011 Sattvik Software & Technology Resources, Ltd. Co. ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; ; 1. Redistributions of source code must retain the above copyright notice, ;...
[ { "context": "{:auth\n {:KEY (.getBytes \"s49628MbrU8VoG8Q\")\n :MACKEY (.getBytes \"R4A6bX69a4NU68xK\")}\n }", "end": 42, "score": 0.9882316589355469, "start": 26, "tag": "KEY", "value": "s49628MbrU8VoG8Q" }, { "context": "etBytes \"s49628MbrU8VoG8Q\")\n :MACKEY (.getBytes \"R4A6b...
properties_example.clj
jrosti/ontrail
1
{:auth {:KEY (.getBytes "s49628MbrU8VoG8Q") :MACKEY (.getBytes "R4A6bX69a4NU68xK")} }
11641
{:auth {:KEY (.getBytes "<KEY>") :MACKEY (.getBytes "<KEY>")} }
true
{:auth {:KEY (.getBytes "PI:KEY:<KEY>END_PI") :MACKEY (.getBytes "PI:KEY:<KEY>END_PI")} }
[ { "context": " }\n }\n :result {\n :id 1\n :name \"Luke Skywalker\"\n :weaponId 2\n }\n }}\n)\n\n(defn get-sample", "end": 371, "score": 0.9997665882110596, "start": 357, "tag": "NAME", "value": "Luke Skywalker" }, { "context": "details {}\n :result {\n ...
test/unit/restql/core/response/headers_test.clj
caiorcferreira/restQL-clojure
2
(ns restql.core.response.headers-test (:require [clojure.test :refer [deftest is]]) (:use restql.core.response.headers)) (defn get-sample-result [] {:jedis { :details { :headers { :x-type "Jedi" :x-weapon "Light Saber" :cache-control "max-age=500, s-maxage=1200" } } ...
34503
(ns restql.core.response.headers-test (:require [clojure.test :refer [deftest is]]) (:use restql.core.response.headers)) (defn get-sample-result [] {:jedis { :details { :headers { :x-type "Jedi" :x-weapon "Light Saber" :cache-control "max-age=500, s-maxage=1200" } } ...
true
(ns restql.core.response.headers-test (:require [clojure.test :refer [deftest is]]) (:use restql.core.response.headers)) (defn get-sample-result [] {:jedis { :details { :headers { :x-type "Jedi" :x-weapon "Light Saber" :cache-control "max-age=500, s-maxage=1200" } } ...
[ { "context": "(def pages {\"auto-complete\" {:key \"auto-complete\"\n :render-fn ", "end": 612, "score": 0.613296627998352, "start": 612, "tag": "KEY", "value": "" }, { "context": "x 16px\"}}\n [:a {:href \"https://gitlab.com/synqrinus/s...
dev/syn_antd/test_page.cljs
heypragyan/syn-antd
3
(ns syn-antd.test-page (:require [re-frame.core :as re-frame] [reagent.core :as reagent] [syn-antd.layout :as layout] [syn-antd.menu :as menu] ;; Demo pages [syn-antd.auto-complete-page :as auto-complete-page] [syn-antd.input-page :as input-page] [syn-antd.input-number-page :as input...
6932
(ns syn-antd.test-page (:require [re-frame.core :as re-frame] [reagent.core :as reagent] [syn-antd.layout :as layout] [syn-antd.menu :as menu] ;; Demo pages [syn-antd.auto-complete-page :as auto-complete-page] [syn-antd.input-page :as input-page] [syn-antd.input-number-page :as input...
true
(ns syn-antd.test-page (:require [re-frame.core :as re-frame] [reagent.core :as reagent] [syn-antd.layout :as layout] [syn-antd.menu :as menu] ;; Demo pages [syn-antd.auto-complete-page :as auto-complete-page] [syn-antd.input-page :as input-page] [syn-antd.input-number-page :as input...
[ { "context": "lytics.io\\\",\n :type \\\"Organization\\\",\n :name \\\"Yet Analytics\\\"},\n :versions\n [{:id \\\"https://w3id.or", "end": 1147, "score": 0.648216962814331, "start": 1145, "tag": "NAME", "value": "et" } ]
src/test/com/yetanalytics/pan_test/errors_test_fixtures.cljc
yetanalytics/project-pan
2
(ns com.yetanalytics.pan-test.errors-test-fixtures) ;; Profile metadata error (def err-msg-1 " **** Syntax Errors **** -- Spec failed -------------------- Value: \"not an id\" of property: :id in object: {:id \"not an id\", :type \"FooBar\", :prefLabel {\"en\" \"Catch\"}, :definition {\"en\" \"The profile f...
3834
(ns com.yetanalytics.pan-test.errors-test-fixtures) ;; Profile metadata error (def err-msg-1 " **** Syntax Errors **** -- Spec failed -------------------- Value: \"not an id\" of property: :id in object: {:id \"not an id\", :type \"FooBar\", :prefLabel {\"en\" \"Catch\"}, :definition {\"en\" \"The profile f...
true
(ns com.yetanalytics.pan-test.errors-test-fixtures) ;; Profile metadata error (def err-msg-1 " **** Syntax Errors **** -- Spec failed -------------------- Value: \"not an id\" of property: :id in object: {:id \"not an id\", :type \"FooBar\", :prefLabel {\"en\" \"Catch\"}, :definition {\"en\" \"The profile f...
[ { "context": "; Copyright (c) 2014 Kevin Bell. All rights reserved.\n; See the file license.tx", "end": 33, "score": 0.9997622966766357, "start": 23, "tag": "NAME", "value": "Kevin Bell" }, { "context": "g permission.\n\n(ns dacom.db\n \"https://github.com/Datomic/day-of-datomic...
utils/src/dacom/db.clj
bellkev/dacom
27
; Copyright (c) 2014 Kevin Bell. All rights reserved. ; See the file license.txt for copying permission. (ns dacom.db "https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/io.clj and https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/schema.clj" (:require [dato...
100974
; Copyright (c) 2014 <NAME>. All rights reserved. ; See the file license.txt for copying permission. (ns dacom.db "https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/io.clj and https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/schema.clj" (:require [datomic....
true
; Copyright (c) 2014 PI:NAME:<NAME>END_PI. All rights reserved. ; See the file license.txt for copying permission. (ns dacom.db "https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/io.clj and https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/schema.clj" (:req...
[ { "context": "reasoning functionality.\n;;;;\n;;;; @copyright 2020 Dennis Drown et l'Université du Québec à Montréal\n;;;; -------", "end": 392, "score": 0.9998799562454224, "start": 380, "tag": "NAME", "value": "Dennis Drown" } ]
apps/say_sila/priv/fnode/say/src/say/infer.clj
dendrown/say_sila
0
;;;; ------------------------------------------------------------------------- ;;;; ;;;; _/_/_/ _/_/_/ _/ _/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/ _/ _/ _/_/_/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/_/ _/_/_/ _/_/_/_/ _/ _/ ;;;; ;;;; Ont...
113442
;;;; ------------------------------------------------------------------------- ;;;; ;;;; _/_/_/ _/_/_/ _/ _/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/ _/ _/ _/_/_/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/_/ _/_/_/ _/_/_/_/ _/ _/ ;;;; ;;;; Ont...
true
;;;; ------------------------------------------------------------------------- ;;;; ;;;; _/_/_/ _/_/_/ _/ _/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/ _/ _/ _/_/_/_/ ;;;; _/ _/ _/ _/ _/ ;;;; _/_/_/ _/_/_/ _/_/_/_/ _/ _/ ;;;; ;;;; Ont...
[ { "context": "))\n\n(defn -main [& args]\n (println (salutations \"John\")))\n", "end": 173, "score": 0.9941710829734802, "start": 169, "tag": "NAME", "value": "John" } ]
8. Clojure/src/hello/core.clj
skilbjo/lisp
0
(ns hello.core (:require [clojure.java.io :as io]) (:gen-class)) (defn salutations [name] (str "Greetings " name)) (defn -main [& args] (println (salutations "John")))
10288
(ns hello.core (:require [clojure.java.io :as io]) (:gen-class)) (defn salutations [name] (str "Greetings " name)) (defn -main [& args] (println (salutations "<NAME>")))
true
(ns hello.core (:require [clojure.java.io :as io]) (:gen-class)) (defn salutations [name] (str "Greetings " name)) (defn -main [& args] (println (salutations "PI:NAME:<NAME>END_PI")))
[ { "context": "; Copyright (c) 2014 Kevin Bell. All rights reserved.\n; See the file license.tx", "end": 33, "score": 0.9997546076774597, "start": 23, "tag": "NAME", "value": "Kevin Bell" }, { "context": "compojure, and om\"\n :url \"https://github.com/bellkev/dacom\"\n :depende...
project.clj
bellkev/dacom
27
; Copyright (c) 2014 Kevin Bell. All rights reserved. ; See the file license.txt for copying permission. (defproject dacom "0.1.3-SNAPSHOT" :description "A skeleton app built with datomic, compojure, and om" :url "https://github.com/bellkev/dacom" :dependencies [[org.clojure/clojure "1.5.1"] ...
35620
; Copyright (c) 2014 <NAME>. All rights reserved. ; See the file license.txt for copying permission. (defproject dacom "0.1.3-SNAPSHOT" :description "A skeleton app built with datomic, compojure, and om" :url "https://github.com/bellkev/dacom" :dependencies [[org.clojure/clojure "1.5.1"] [or...
true
; Copyright (c) 2014 PI:NAME:<NAME>END_PI. All rights reserved. ; See the file license.txt for copying permission. (defproject dacom "0.1.3-SNAPSHOT" :description "A skeleton app built with datomic, compojure, and om" :url "https://github.com/bellkev/dacom" :dependencies [[org.clojure/clojure "1.5.1"] ...
[ { "context": ".)\n content-ivan {:crux.db/id :ivan :name \"Ivan\"}\n content-hash (str (c/new-id content-iva", "end": 750, "score": 0.9211124777793884, "start": 746, "tag": "NAME", "value": "Ivan" }, { "context": "rux.db/id {:user \"Xwop1A7Xog4nD6AfhZaPgg\"} :name \"Ada...
test/crux/api_test.clj
souenzzo/crux
0
(ns crux.api-test (:require [clojure.test :as t] [crux.bootstrap.standalone] [crux.codec :as c] [crux.fixtures :as f] [crux.rdf :as rdf]) (:import clojure.lang.LazySeq java.util.Date java.time.Duration crux.bootstrap.standalone.Standal...
257
(ns crux.api-test (:require [clojure.test :as t] [crux.bootstrap.standalone] [crux.codec :as c] [crux.fixtures :as f] [crux.rdf :as rdf]) (:import clojure.lang.LazySeq java.util.Date java.time.Duration crux.bootstrap.standalone.Standal...
true
(ns crux.api-test (:require [clojure.test :as t] [crux.bootstrap.standalone] [crux.codec :as c] [crux.fixtures :as f] [crux.rdf :as rdf]) (:import clojure.lang.LazySeq java.util.Date java.time.Duration crux.bootstrap.standalone.Standal...
[ { "context": "position 9}\n {:name \"user_name\", :base-type :type/Text, :d", "end": 2113, "score": 0.7815967798233032, "start": 2109, "tag": "NAME", "value": "name" }, { "context": "ase-position 10}\n {:name \"use...
c#-metabase/modules/drivers/druid/test/metabase/driver/druid/sync_test.clj
hanakhry/Crime_Admin
0
(ns metabase.driver.druid.sync-test (:require [clojure.test :refer :all] [metabase.driver :as driver] [metabase.test :as mt] [metabase.timeseries-query-processor-test.util :as tqpt])) (deftest sync-test (mt/test-driver :druid (tqpt/with-flattened-dbdef (testing "descri...
40626
(ns metabase.driver.druid.sync-test (:require [clojure.test :refer :all] [metabase.driver :as driver] [metabase.test :as mt] [metabase.timeseries-query-processor-test.util :as tqpt])) (deftest sync-test (mt/test-driver :druid (tqpt/with-flattened-dbdef (testing "descri...
true
(ns metabase.driver.druid.sync-test (:require [clojure.test :refer :all] [metabase.driver :as driver] [metabase.test :as mt] [metabase.timeseries-query-processor-test.util :as tqpt])) (deftest sync-test (mt/test-driver :druid (tqpt/with-flattened-dbdef (testing "descri...
[ { "context": "e when using wrong API key\"\n (let [username \"alice\"\n ;; need cookies and csrf to actually", "end": 1712, "score": 0.9976107478141785, "start": 1707, "tag": "USERNAME", "value": "alice" }, { "context": "l})\n (api-key/add-api-key! \"44\" {:comment...
test/clj/rems/api/test_api.clj
ossilva/rems
31
(ns ^:integration rems.api.test-api (:require [clojure.test :refer :all] [rems.api.testing :refer :all] [rems.db.api-key :as api-key] [rems.db.core :as db] [rems.db.test-data-helpers :as test-helpers] [rems.handler :refer [handler]] [ring.mock.re...
97010
(ns ^:integration rems.api.test-api (:require [clojure.test :refer :all] [rems.api.testing :refer :all] [rems.db.api-key :as api-key] [rems.db.core :as db] [rems.db.test-data-helpers :as test-helpers] [rems.handler :refer [handler]] [ring.mock.re...
true
(ns ^:integration rems.api.test-api (:require [clojure.test :refer :all] [rems.api.testing :refer :all] [rems.db.api-key :as api-key] [rems.db.core :as db] [rems.db.test-data-helpers :as test-helpers] [rems.handler :refer [handler]] [ring.mock.re...
[ { "context": " Kafka\n;; partitions, based on https://github.com/basho/bitcask\n\n;; Should really spill the local cached ", "end": 966, "score": 0.6691940426826477, "start": 961, "tag": "USERNAME", "value": "basho" }, { "context": "tially using something like\n;; https://github.com/...
dev/bitcask_kafka.clj
dotemacs/crux
0
(ns bitcask-kafka (:require [clojure.edn :as edn] [clojure.tools.logging :as log] [crux.codec :as c] [crux.db :as db] [crux.kafka :as k] [crux.kafka.consumer :as kc] [crux.lru :as lru] [crux.memory :as mem] [taoensso.nippy...
74430
(ns bitcask-kafka (:require [clojure.edn :as edn] [clojure.tools.logging :as log] [crux.codec :as c] [crux.db :as db] [crux.kafka :as k] [crux.kafka.consumer :as kc] [crux.lru :as lru] [crux.memory :as mem] [taoensso.nippy...
true
(ns bitcask-kafka (:require [clojure.edn :as edn] [clojure.tools.logging :as log] [crux.codec :as c] [crux.db :as db] [crux.kafka :as k] [crux.kafka.consumer :as kc] [crux.lru :as lru] [crux.memory :as mem] [taoensso.nippy...
[ { "context": "; Copyright (c) Christophe Grand. All rights reserved.\n; The use and distributio", "end": 34, "score": 0.9998701214790344, "start": 18, "tag": "NAME", "value": "Christophe Grand" } ]
server/target/net/cgrand/parsley.clj
OctavioBR/healthcheck
0
; Copyright (c) Christophe Grand. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in...
92450
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashi...
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this softwar...
[ { "context": "Utilities for Clojure\"\n :url \"https://github.com/xsc/ancient-clj\"\n :license {:name \"MIT\"\n ", "end": 124, "score": 0.999566376209259, "start": 121, "tag": "USERNAME", "value": "xsc" }, { "context": "ses/mit\"\n :year 2013\n :key...
project.clj
xsc/ancient-clj
4
(defproject ancient-clj "2.0.1-SNAPSHOT" :description "Maven Version Utilities for Clojure" :url "https://github.com/xsc/ancient-clj" :license {:name "MIT" :comment "MIT License" :url "https://choosealicense.com/licenses/mit" :year 2013 :key "mit"} :dependencies ...
113106
(defproject ancient-clj "2.0.1-SNAPSHOT" :description "Maven Version Utilities for Clojure" :url "https://github.com/xsc/ancient-clj" :license {:name "MIT" :comment "MIT License" :url "https://choosealicense.com/licenses/mit" :year 2013 :key "<KEY>"} :dependencie...
true
(defproject ancient-clj "2.0.1-SNAPSHOT" :description "Maven Version Utilities for Clojure" :url "https://github.com/xsc/ancient-clj" :license {:name "MIT" :comment "MIT License" :url "https://choosealicense.com/licenses/mit" :year 2013 :key "PI:KEY:<KEY>END_PI"} ...
[ { "context": "ers 1))\n(println (nth '(7 8 9) 0))\n\n(def names '(\"alice\" \"bob\" \"fred\"))\n(println (nth names 0))", "end": 110, "score": 0.811069905757904, "start": 105, "tag": "NAME", "value": "alice" }, { "context": "(println (nth '(7 8 9) 0))\n\n(def names '(\"alice\" \"bob\...
resources/data.clj
kalkirose/udemy-clojure-introduction
0
(def numbers '(1 2 3 4 5 6 7 8 9)) (println (nth numbers 1)) (println (nth '(7 8 9) 0)) (def names '("alice" "bob" "fred")) (println (nth names 0))
37217
(def numbers '(1 2 3 4 5 6 7 8 9)) (println (nth numbers 1)) (println (nth '(7 8 9) 0)) (def names '("<NAME>" "<NAME>" "<NAME>")) (println (nth names 0))
true
(def numbers '(1 2 3 4 5 6 7 8 9)) (println (nth numbers 1)) (println (nth '(7 8 9) 0)) (def names '("PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI")) (println (nth names 0))
[ { "context": " :follower-name \"Follower Won\"\n :follower", "end": 1916, "score": 0.808807373046875, "start": 1904, "tag": "NAME", "value": "Follower Won" } ]
specs/untangled/server/protocol_support_spec.clj
untangled-web/server
22
(ns untangled.server.protocol-support-spec (:require [clojure.test :as t] [com.stuartsierra.component :as component] [datomic.api :as d] [om.next.server :as om] [taoensso.timbre :as timbre] [untangled-spec.core :refer [specification behavior provided component assertions]] [untangled.datom...
122917
(ns untangled.server.protocol-support-spec (:require [clojure.test :as t] [com.stuartsierra.component :as component] [datomic.api :as d] [om.next.server :as om] [taoensso.timbre :as timbre] [untangled-spec.core :refer [specification behavior provided component assertions]] [untangled.datom...
true
(ns untangled.server.protocol-support-spec (:require [clojure.test :as t] [com.stuartsierra.component :as component] [datomic.api :as d] [om.next.server :as om] [taoensso.timbre :as timbre] [untangled-spec.core :refer [specification behavior provided component assertions]] [untangled.datom...
[ { "context": "stributed filesystem.\"\n :url \"https://github.com/nathanmarz/dfs-datastores\"\n :license {:name \"Eclipse Public", "end": 351, "score": 0.996612548828125, "start": 341, "tag": "USERNAME", "value": "nathanmarz" }, { "context": "g}}\n :scm {:connection \"scm:git:git:...
dfs-datastores-cascading/project.clj
cchepelov/dfs-datastores
102
(def ROOT-DIR (subs *file* 0 (- (count *file*) (count "project.clj")))) (def VERSION (-> ROOT-DIR (str "/../VERSION") slurp)) (defproject com.backtype/dfs-datastores-cascading VERSION :description "Dead-simple vertical partitioning, compression, appends, and consolidation of data on a distributed filesystem." :url...
25301
(def ROOT-DIR (subs *file* 0 (- (count *file*) (count "project.clj")))) (def VERSION (-> ROOT-DIR (str "/../VERSION") slurp)) (defproject com.backtype/dfs-datastores-cascading VERSION :description "Dead-simple vertical partitioning, compression, appends, and consolidation of data on a distributed filesystem." :url...
true
(def ROOT-DIR (subs *file* 0 (- (count *file*) (count "project.clj")))) (def VERSION (-> ROOT-DIR (str "/../VERSION") slurp)) (defproject com.backtype/dfs-datastores-cascading VERSION :description "Dead-simple vertical partitioning, compression, appends, and consolidation of data on a distributed filesystem." :url...
[ { "context": ";;\n;; Author:: Adam Jacob (<adam@opscode.com>)\n;; Author:: Christopher Brow", "end": 25, "score": 0.9998520016670227, "start": 15, "tag": "NAME", "value": "Adam Jacob" }, { "context": ";;\n;; Author:: Adam Jacob (<adam@opscode.com>)\n;; Author:: Christopher Brown (<cb...
src/omnibus/s3.clj
racker/omnibus
2
;; ;; Author:: Adam Jacob (<adam@opscode.com>) ;; Author:: Christopher Brown (<cb@opscode.com>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the Licens...
69847
;; ;; Author:: <NAME> (<<EMAIL>>) ;; Author:: <NAME> (<<EMAIL>>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of ...
true
;; ;; Author:: PI:NAME:<NAME>END_PI (<PI:EMAIL:<EMAIL>END_PI>) ;; Author:: PI:NAME:<NAME>END_PI (<PI:EMAIL:<EMAIL>END_PI>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in...
[ { "context": "piano])\n (:require [polynome.core :as poly]))\n\n;;Erik Satie Gnossienne No. 1\n\n(def phrase1a [:iii :v :iv# :iii :iii :ii#", "end": 137, "score": 0.9998772740364075, "start": 116, "tag": "NAME", "value": "Erik Satie Gnossienne" } ]
examples/satie.clj
samaaron/overtone
2
(ns examples.satie (:use [overtone.live] [overtone.inst piano]) (:require [polynome.core :as poly])) ;;Erik Satie Gnossienne No. 1 (def phrase1a [:iii :v :iv# :iii :iii :ii# :iii :ii#]) (def phrase1b [:iii :v :iv# :iii :v# :vi :v# :vi]) (def phrase1c [:iii :v :iv# :iii :iii :ii# :i :vii- :vi- :vii- :vi- :...
92318
(ns examples.satie (:use [overtone.live] [overtone.inst piano]) (:require [polynome.core :as poly])) ;;<NAME> No. 1 (def phrase1a [:iii :v :iv# :iii :iii :ii# :iii :ii#]) (def phrase1b [:iii :v :iv# :iii :v# :vi :v# :vi]) (def phrase1c [:iii :v :iv# :iii :iii :ii# :i :vii- :vi- :vii- :vi- :vii- :i :vii- :...
true
(ns examples.satie (:use [overtone.live] [overtone.inst piano]) (:require [polynome.core :as poly])) ;;PI:NAME:<NAME>END_PI No. 1 (def phrase1a [:iii :v :iv# :iii :iii :ii# :iii :ii#]) (def phrase1b [:iii :v :iv# :iii :v# :vi :v# :vi]) (def phrase1c [:iii :v :iv# :iii :iii :ii# :i :vii- :vi- :vii- :vi- :v...
[ { "context": "r constructor works\"\n (let [test-user (new-user \"Mark\" \"Mandel\" \"email\" \"password\")]\n (:id test-user", "end": 68, "score": 0.9987394213676453, "start": 64, "tag": "NAME", "value": "Mark" }, { "context": "ructor works\"\n (let [test-user (new-user \"Mark\...
testdata/refactoring/MultiBody.clj
JetBrains/la-clojure
91
(fact "Better constructor works" (let [test-user (new-user "Mark" "Mandel" "email" "password")] (:id test-user) => truthy (:firstname test-user) => "Mark" (:lastname test-user) => "Mandel" (:password<caret> test-user) => "password" (:email test-user) => "email" (:photo test-user) => nil ...
78153
(fact "Better constructor works" (let [test-user (new-user "<NAME>" "<NAME>" "email" "password")] (:id test-user) => truthy (:firstname test-user) => "<NAME>" (:lastname test-user) => "<NAME>" (:password<caret> test-user) => "<PASSWORD>" (:email test-user) => "email" (:photo test-user) => ni...
true
(fact "Better constructor works" (let [test-user (new-user "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" "email" "password")] (:id test-user) => truthy (:firstname test-user) => "PI:NAME:<NAME>END_PI" (:lastname test-user) => "PI:NAME:<NAME>END_PI" (:password<caret> test-user) => "PI:PASSWORD:<PASSW...
[ { "context": "tor `valid-email?)\n (f/html5-input :password \"password\" :validator `f/minmax-length? :validator-args {:m", "end": 1704, "score": 0.9992656707763672, "start": 1696, "tag": "PASSWORD", "value": "password" }, { "context": ":min 7 :max 100})\n (f/html5-input :pas...
src/main/movie_database/ui/new_user.cljc
andrewbeach/movie-database
0
(ns movie-database.ui.new-user (:require [om.next :as om :refer [defui]] [fulcro.client.core :as u] [om.dom :as dom] [fulcro.client.mutations :as m :refer [defmutation]] [fulcro.i18n :refer [tr]] [fulcro.events :as evts] [fulcro.ui.forms :as f] ...
4990
(ns movie-database.ui.new-user (:require [om.next :as om :refer [defui]] [fulcro.client.core :as u] [om.dom :as dom] [fulcro.client.mutations :as m :refer [defmutation]] [fulcro.i18n :refer [tr]] [fulcro.events :as evts] [fulcro.ui.forms :as f] ...
true
(ns movie-database.ui.new-user (:require [om.next :as om :refer [defui]] [fulcro.client.core :as u] [om.dom :as dom] [fulcro.client.mutations :as m :refer [defmutation]] [fulcro.i18n :refer [tr]] [fulcro.events :as evts] [fulcro.ui.forms :as f] ...
[ { "context": " :query-params {:token \"dummy-token\"}})]\n (is (= 401 (:status response))))))\n\n(d", "end": 5976, "score": 0.6900952458381653, "start": 5965, "tag": "KEY", "value": "dummy-token" }, { "context": "s/context))\n user1 (e/login (s...
system-int-test/test/cmr/system_int_test/ingest/provider_ingest_test.clj
jaybarra/Common-Metadata-Repository
0
(ns cmr.system-int-test.ingest.provider-ingest-test "CMR provider ingest integration test" (:require [clj-http.client :as client] [clojure.set :as set] [clojure.test :refer :all] [cmr.access-control.test.util :as access-control] [cmr.common.util :as u] [cmr.mock-echo.client.echo-util :as e] ...
106933
(ns cmr.system-int-test.ingest.provider-ingest-test "CMR provider ingest integration test" (:require [clj-http.client :as client] [clojure.set :as set] [clojure.test :refer :all] [cmr.access-control.test.util :as access-control] [cmr.common.util :as u] [cmr.mock-echo.client.echo-util :as e] ...
true
(ns cmr.system-int-test.ingest.provider-ingest-test "CMR provider ingest integration test" (:require [clj-http.client :as client] [clojure.set :as set] [clojure.test :refer :all] [cmr.access-control.test.util :as access-control] [cmr.common.util :as u] [cmr.mock-echo.client.echo-util :as e] ...
[ { "context": ";; Copyright 2014-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold Li", "end": 111, "score": 0.999809980392456, "start": 96, "tag": "NAME", "value": "Ragnar Svensson" }, { "context": "-2020 King\n;; Copyright 2009-2014 Ra...
editor/src/clj/editor/gl/vertex2.clj
cmarincia/defold
0
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 Ragnar Svensson, Christian Murray ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together wi...
114950
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 <NAME>, <NAME> ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together with FAQs at ;; https...
true
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, to...
[ { "context": " of their house.\",\n :director \"Tim Burton\",\n :genres [\"Comedy\" \"Fantas", "end": 264, "score": 0.9998865723609924, "start": 254, "tag": "NAME", "value": "Tim Burton" }, { "context": " :year \"1988\",\n ...
workspace/hello-web-1/src/hello_web_1/movies/service.clj
muthuishere/clojure-workshop-web-template
0
(ns hello-web-1.movies.service) (def movies (atom [{:plot "A couple of recently deceased ghosts contract the services of a \"bio-exorcist\" in order to remove the obnoxious new owners of their house.", :director "Tim Burton", :genres ["Comedy" "Fantasy"], ...
90219
(ns hello-web-1.movies.service) (def movies (atom [{:plot "A couple of recently deceased ghosts contract the services of a \"bio-exorcist\" in order to remove the obnoxious new owners of their house.", :director "<NAME>", :genres ["Comedy" "Fantasy"], ...
true
(ns hello-web-1.movies.service) (def movies (atom [{:plot "A couple of recently deceased ghosts contract the services of a \"bio-exorcist\" in order to remove the obnoxious new owners of their house.", :director "PI:NAME:<NAME>END_PI", :genres ["Comedy" "Fa...
[ { "context": "(defproject io.eidel/hcloud \"1.0.0\"\n :author \"Oliver Eidel <http://www.eidel.io>\"\n :description \"Clojure li", "end": 59, "score": 0.9998635649681091, "start": 47, "tag": "NAME", "value": "Oliver Eidel" }, { "context": "he Hetzner Cloud API.\"\n :url \"https://...
project.clj
olieidel/hcloud
13
(defproject io.eidel/hcloud "1.0.0" :author "Oliver Eidel <http://www.eidel.io>" :description "Clojure library for the Hetzner Cloud API." :url "https://github.com/olieidel/hcloud" :license {:name "MIT License" :url "https://opensource.org/licenses/MIT" :distribution :re...
84975
(defproject io.eidel/hcloud "1.0.0" :author "<NAME> <http://www.eidel.io>" :description "Clojure library for the Hetzner Cloud API." :url "https://github.com/olieidel/hcloud" :license {:name "MIT License" :url "https://opensource.org/licenses/MIT" :distribution :repo} ...
true
(defproject io.eidel/hcloud "1.0.0" :author "PI:NAME:<NAME>END_PI <http://www.eidel.io>" :description "Clojure library for the Hetzner Cloud API." :url "https://github.com/olieidel/hcloud" :license {:name "MIT License" :url "https://opensource.org/licenses/MIT" :distribu...
[ { "context": "r the License.\n;\n\n(ns\n ^{:doc \"\"\n :author \"Vladimir Tsanev\"}\n reactor-core.publisher\n (:refer-clojure :exc", "end": 647, "score": 0.999852180480957, "start": 632, "tag": "NAME", "value": "Vladimir Tsanev" } ]
src/reactor_core/publisher.clj
jaju/reactor-core-clojure
2
; ; Copyright 2018 the original author or authors. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or ...
51754
; ; Copyright 2018 the original author or authors. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or ...
true
; ; Copyright 2018 the original author or authors. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or ...
[ { "context": " 42\n :name \"A Test Org\"\n :slug ", "end": 1740, "score": 0.9172568917274475, "start": 1739, "tag": "NAME", "value": "A" }, { "context": " :email \"foo@bar.c...
test/cljs/chronograph_web/pages/admin/events_test.cljs
nilenso/chronograph
3
(ns chronograph-web.pages.admin.events-test (:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]] [re-frame.core :as rf] [re-frame.db] [chronograph-web.pages.admin.events :as org-events] [chronograph-web.events.tasks :as task-events] ...
101750
(ns chronograph-web.pages.admin.events-test (:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]] [re-frame.core :as rf] [re-frame.db] [chronograph-web.pages.admin.events :as org-events] [chronograph-web.events.tasks :as task-events] ...
true
(ns chronograph-web.pages.admin.events-test (:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]] [re-frame.core :as rf] [re-frame.db] [chronograph-web.pages.admin.events :as org-events] [chronograph-web.events.tasks :as task-events] ...
[ { "context": "fmulti for set intersection testing.\"\n :author \"palisades dot lakes at gmail dot com\"\n :since \"2017", "end": 258, "score": 0.8434706926345825, "start": 255, "tag": "EMAIL", "value": "pal" }, { "context": "lti for set intersection testing.\"\n :author \"palis...
src/main/clojure/palisades/lakes/multix/sets/multi.clj
palisades-lakes/multimethod-experiments
5
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.multix.sets.multi {:doc "clojure.core/defmulti for set intersection testing." :author "palisades dot lakes at gmail dot com" :since "2017-04-20" :...
73961
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.multix.sets.multi {:doc "clojure.core/defmulti for set intersection testing." :author "<EMAIL> <NAME> <EMAIL>" :since "2017-04-20" :version "2017-...
true
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.multix.sets.multi {:doc "clojure.core/defmulti for set intersection testing." :author "PI:EMAIL:<EMAIL>END_PI PI:NAME:<NAME>END_PI PI:EMAIL:<EMAIL>END_P...
[ { "context": "\"Project 1\" :description \"Dumb Project 1\" :owner \"Sergey\"}\n {:id 2 :name \"Project 2\" :description \"Dumb ", "end": 2101, "score": 0.9982069134712219, "start": 2095, "tag": "NAME", "value": "Sergey" }, { "context": "\"Project 2\" :description \"Dumb Project 2\...
src/cljc/cgql/cgql_demo.cljc
bearz/cgql
4
(ns cgql.cgql-demo (:require [clojure.walk :refer [prewalk prewalk-replace]] [com.stuartsierra.dependency :as dep] [clojure.spec.alpha :as s] [clojure.repl :refer [doc]] [clojure.pprint :refer [pprint]] [clojure.string :refer [capitalize]] [bearz...
88829
(ns cgql.cgql-demo (:require [clojure.walk :refer [prewalk prewalk-replace]] [com.stuartsierra.dependency :as dep] [clojure.spec.alpha :as s] [clojure.repl :refer [doc]] [clojure.pprint :refer [pprint]] [clojure.string :refer [capitalize]] [bearz...
true
(ns cgql.cgql-demo (:require [clojure.walk :refer [prewalk prewalk-replace]] [com.stuartsierra.dependency :as dep] [clojure.spec.alpha :as s] [clojure.repl :refer [doc]] [clojure.pprint :refer [pprint]] [clojure.string :refer [capitalize]] [bearz...
[ { "context": "with arguments\"\n (is (= \"{say (string:\\\"hae maga\\\",number:5,true:true,false:false,null:null,map:{s", "end": 380, "score": 0.5247414708137512, "start": 379, "tag": "NAME", "value": "a" }, { "context": "{hello world}}\"\n (query [:say {:string \"hae ma...
test/graphql_inquiry/main_test.clj
BillFront/graphql-inquiry
2
(ns graphql-inquiry.main-test (:require [clojure.test :refer [is deftest testing]] [graphql-inquiry.main :refer [query mutation]])) (deftest query-test (is (= "{say {hello world}}" (query [:say [:hello :world]]))) (is (= "{say {hello {world}}}" (query [:say [:hello [:world]]]))) (...
86855
(ns graphql-inquiry.main-test (:require [clojure.test :refer [is deftest testing]] [graphql-inquiry.main :refer [query mutation]])) (deftest query-test (is (= "{say {hello world}}" (query [:say [:hello :world]]))) (is (= "{say {hello {world}}}" (query [:say [:hello [:world]]]))) (...
true
(ns graphql-inquiry.main-test (:require [clojure.test :refer [is deftest testing]] [graphql-inquiry.main :refer [query mutation]])) (deftest query-test (is (= "{say {hello world}}" (query [:say [:hello :world]]))) (is (= "{say {hello {world}}}" (query [:say [:hello [:world]]]))) (...
[ { "context": ";; Three-Dimensional Orientation Using a Mouse\" by Ken Shoemake\n;;\n;; http://www.talisman.org/~erlkonig/misc/shoe", "end": 466, "score": 0.9998504519462585, "start": 454, "tag": "NAME", "value": "Ken Shoemake" } ]
src/thi/ng/geom/gl/arcball.cljc
gaybro8777/geom
803
(ns thi.ng.geom.gl.arcball #?(:cljs (:require-macros [thi.ng.math.macros :as mm])) (:require [thi.ng.math.core :as m] [thi.ng.geom.core :as g] [thi.ng.geom.vector :as v :refer [vec2 vec3 V3Y]] [thi.ng.geom.matrix :as mat] [thi.ng.geom.quaternion :as q] #?(:clj [thi.ng.math.macros :as mm...
81169
(ns thi.ng.geom.gl.arcball #?(:cljs (:require-macros [thi.ng.math.macros :as mm])) (:require [thi.ng.math.core :as m] [thi.ng.geom.core :as g] [thi.ng.geom.vector :as v :refer [vec2 vec3 V3Y]] [thi.ng.geom.matrix :as mat] [thi.ng.geom.quaternion :as q] #?(:clj [thi.ng.math.macros :as mm...
true
(ns thi.ng.geom.gl.arcball #?(:cljs (:require-macros [thi.ng.math.macros :as mm])) (:require [thi.ng.math.core :as m] [thi.ng.geom.core :as g] [thi.ng.geom.vector :as v :refer [vec2 vec3 V3Y]] [thi.ng.geom.matrix :as mat] [thi.ng.geom.quaternion :as q] #?(:clj [thi.ng.math.macros :as mm...
[ { "context": "(ns vlagwt.score\n ^{:author \"Thomas Bock <thomas.bock@ptb.de>\"\n :doc \"Finds the max sco", "end": 41, "score": 0.999868631362915, "start": 30, "tag": "NAME", "value": "Thomas Bock" }, { "context": "(ns vlagwt.score\n ^{:author \"Thomas Bock <thomas.bock@ptb.de>...
src/vlagwt/score.clj
wactbprot/vl-agwt
0
(ns vlagwt.score ^{:author "Thomas Bock <thomas.bock@ptb.de>" :doc "Finds the max score: the current state of the calibration request."} (:require [vlagwt.config :as c] [clojure.string :as string] [vlagwt.utils :as u])) (defn number-of-calib [v] (:Calibrations (first (filter :Calibr...
11794
(ns vlagwt.score ^{:author "<NAME> <<EMAIL>>" :doc "Finds the max score: the current state of the calibration request."} (:require [vlagwt.config :as c] [clojure.string :as string] [vlagwt.utils :as u])) (defn number-of-calib [v] (:Calibrations (first (filter :Calibrations v)))) (d...
true
(ns vlagwt.score ^{:author "PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI>" :doc "Finds the max score: the current state of the calibration request."} (:require [vlagwt.config :as c] [clojure.string :as string] [vlagwt.utils :as u])) (defn number-of-calib [v] (:Calibrations (first (f...
[ { "context": "ed to Clojars by JUXT)\"\n :url \"http://github.com/weavejester/hiccup\"\n :license {:name \"Eclipse Public License", "end": 195, "score": 0.9852139949798584, "start": 184, "tag": "USERNAME", "value": "weavejester" }, { "context": " [:developer\n ...
hiccup/hiccup/project.clj
juxt/clojars-mirrors
0
(defproject pro.juxt.clojars-mirrors.hiccup/hiccup "2.0.0-alpha2" :description "A fast library for rendering HTML in Clojure (mirrored to Clojars by JUXT)" :url "http://github.com/weavejester/hiccup" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:di...
86149
(defproject pro.juxt.clojars-mirrors.hiccup/hiccup "2.0.0-alpha2" :description "A fast library for rendering HTML in Clojure (mirrored to Clojars by JUXT)" :url "http://github.com/weavejester/hiccup" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:di...
true
(defproject pro.juxt.clojars-mirrors.hiccup/hiccup "2.0.0-alpha2" :description "A fast library for rendering HTML in Clojure (mirrored to Clojars by JUXT)" :url "http://github.com/weavejester/hiccup" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:di...
[ { "context": "token returns empty\"\n (user/create! \"user1\" \"password1\")\n (let [thoughts (take 6 (:results quer", "end": 3287, "score": 0.7040624618530273, "start": 3279, "tag": "PASSWORD", "value": "password" }, { "context": " other-token (invoke-login {...
test/clj/memento/test/routes/api/thought_cluster.clj
ricardojmendez/memento
2
(ns memento.test.routes.api.thought-cluster (:require [clojure.test :refer :all] [clj-time.coerce :as c] [clj-time.core :as t] [memento.handler :refer [app]] [memento.config :refer [env]] [memento.db.user :as user] [memento.test.db.core :as tdb] ...
102363
(ns memento.test.routes.api.thought-cluster (:require [clojure.test :refer :all] [clj-time.coerce :as c] [clj-time.core :as t] [memento.handler :refer [app]] [memento.config :refer [env]] [memento.db.user :as user] [memento.test.db.core :as tdb] ...
true
(ns memento.test.routes.api.thought-cluster (:require [clojure.test :refer :all] [clj-time.coerce :as c] [clj-time.core :as t] [memento.handler :refer [app]] [memento.config :refer [env]] [memento.db.user :as user] [memento.test.db.core :as tdb] ...
[ { "context": "st/chemiclj_scratch.clj\n;;;\n;;; Copyright (c) 2010 Cyrus Harmon (ch-lisp@bobobeach.com) All rights\n;;; reserved.\n", "end": 75, "score": 0.9998693466186523, "start": 63, "tag": "NAME", "value": "Cyrus Harmon" }, { "context": "atch.clj\n;;;\n;;; Copyright (c) 2010 Cyr...
test/chemiclj_scratch.clj
slyrus/chemiclj
1
;;; file: test/chemiclj_scratch.clj ;;; ;;; Copyright (c) 2010 Cyrus Harmon (ch-lisp@bobobeach.com) All rights ;;; reserved. ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of sourc...
112003
;;; file: test/chemiclj_scratch.clj ;;; ;;; Copyright (c) 2010 <NAME> (<EMAIL>) All rights ;;; reserved. ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain t...
true
;;; file: test/chemiclj_scratch.clj ;;; ;;; Copyright (c) 2010 PI:NAME:<NAME>END_PI (PI:EMAIL:<EMAIL>END_PI) All rights ;;; reserved. ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions...
[ { "context": "(ns clojure_refactoring)\n\n;; Copyright (c) 2010 Tom Crayford,\n;;\n;; Redistribution and use in source and binar", "end": 60, "score": 0.999657928943634, "start": 48, "tag": "NAME", "value": "Tom Crayford" } ]
src/clojure_refactoring.clj
tcrayford/clojure-refactoring
6
(ns clojure_refactoring) ;; Copyright (c) 2010 Tom Crayford, ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions ;; are met: ;; ;; Redistributions of source code must retain the above copyright ;; notice, this list of co...
32205
(ns clojure_refactoring) ;; Copyright (c) 2010 <NAME>, ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions ;; are met: ;; ;; Redistributions of source code must retain the above copyright ;; notice, this list of conditio...
true
(ns clojure_refactoring) ;; Copyright (c) 2010 PI:NAME:<NAME>END_PI, ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions ;; are met: ;; ;; Redistributions of source code must retain the above copyright ;; notice, this li...
[ { "context": "lidation (see [[with-two-pass]]).\"\n :author \"Paul Landes\"}\n zensols.model.eval-classifier\n (:require [", "end": 272, "score": 0.9998874664306641, "start": 261, "tag": "NAME", "value": "Paul Landes" }, { "context": "```\n\n See a [working example](https:/...
src/clojure/zensols/model/eval_classifier.clj
plandes/clj-ml-model
6
(ns ^{:doc "A *client* entry point library to help with evaluating machine learning models. This library not only wraps the Weka library but also provides additional functionality like a two pass cross validation (see [[with-two-pass]])." :author "Paul Landes"} zensols.model.eval-classifier (:require...
64157
(ns ^{:doc "A *client* entry point library to help with evaluating machine learning models. This library not only wraps the Weka library but also provides additional functionality like a two pass cross validation (see [[with-two-pass]])." :author "<NAME>"} zensols.model.eval-classifier (:require [clo...
true
(ns ^{:doc "A *client* entry point library to help with evaluating machine learning models. This library not only wraps the Weka library but also provides additional functionality like a two pass cross validation (see [[with-two-pass]])." :author "PI:NAME:<NAME>END_PI"} zensols.model.eval-classifier ...
[ { "context": " :user \"us&r\"\n :password \"p&ssw@rd\"\n :database \"database\"}]\n (w", "end": 347, "score": 0.9993882775306702, "start": 339, "tag": "PASSWORD", "value": "p&ssw@rd" } ]
test/vip/data_processor/db/postgres_test.clj
votinginfoproject/data-processor
10
(ns vip.data-processor.db.postgres-test (:require [vip.data-processor.db.postgres :refer :all] [turbovote.resource-config :refer [config]] [clojure.test :refer :all])) (deftest url-test (let [db-spec-1 {:host "host" :port "5678" :user "us&r" ...
86270
(ns vip.data-processor.db.postgres-test (:require [vip.data-processor.db.postgres :refer :all] [turbovote.resource-config :refer [config]] [clojure.test :refer :all])) (deftest url-test (let [db-spec-1 {:host "host" :port "5678" :user "us&r" ...
true
(ns vip.data-processor.db.postgres-test (:require [vip.data-processor.db.postgres :refer :all] [turbovote.resource-config :refer [config]] [clojure.test :refer :all])) (deftest url-test (let [db-spec-1 {:host "host" :port "5678" :user "us&r" ...
[ { "context": "Lat1 [10 5 foo] ; => 1\n;isLat [] ; => 1\n;isLat [Jack [Sprat] could eat no chicken fat] ; => 0\n;isLat ", "end": 8447, "score": 0.9853264093399048, "start": 8443, "tag": "NAME", "value": "Jack" }, { "context": "Sprat] could eat no chicken fat] ; => 0\n;isLat [[Jack...
src/TLS.clj
berndblasius/Bracket.jl
1
; Functions from The Little Schemer ... ; ... and translation to Bracket ; ************************************************* ; subst: substitute all occurrences ;substar orange' banana' [ [brandy banana] ; [bread] ; [sherbet [[banana] cream] [[ice banana]]]] ; => [[brandy orange] [bread] [sherbet [[or...
87903
; Functions from The Little Schemer ... ; ... and translation to Bracket ; ************************************************* ; subst: substitute all occurrences ;substar orange' banana' [ [brandy banana] ; [bread] ; [sherbet [[banana] cream] [[ice banana]]]] ; => [[brandy orange] [bread] [sherbet [[or...
true
; Functions from The Little Schemer ... ; ... and translation to Bracket ; ************************************************* ; subst: substitute all occurrences ;substar orange' banana' [ [brandy banana] ; [bread] ; [sherbet [[banana] cream] [[ice banana]]]] ; => [[brandy orange] [bread] [sherbet [[or...
[ { "context": " [:div\n [:div.form-group\n [:label {:for \"username\"} \"User name\"]\n [:input#username.form-control", "end": 1944, "score": 0.9992753863334656, "start": 1936, "tag": "USERNAME", "value": "username" }, { "context": "username.form-control {:type \"text\" :...
src-cljs/imago/login.cljs
thi-ng/imago
1
(ns imago.login (:require-macros [cljs.core.async.macros :refer [go go-loop]]) (:require [imago.config :as config] [imago.modal :as modal] [imago.alerts :as alerts] [thi.ng.domus.async :as async] [thi.ng.domus.log :refer [debug info warn]] [thi.ng.domus.io :as io] [thi.ng.domus.router :as ro...
110749
(ns imago.login (:require-macros [cljs.core.async.macros :refer [go go-loop]]) (:require [imago.config :as config] [imago.modal :as modal] [imago.alerts :as alerts] [thi.ng.domus.async :as async] [thi.ng.domus.log :refer [debug info warn]] [thi.ng.domus.io :as io] [thi.ng.domus.router :as ro...
true
(ns imago.login (:require-macros [cljs.core.async.macros :refer [go go-loop]]) (:require [imago.config :as config] [imago.modal :as modal] [imago.alerts :as alerts] [thi.ng.domus.async :as async] [thi.ng.domus.log :refer [debug info warn]] [thi.ng.domus.io :as io] [thi.ng.domus.router :as ro...
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 29, "score": 0.9998192191123962, "start": 18, "tag": "NAME", "value": "Rich Hickey" } ]
chat-demo/cljs/bc/dom-helpers.cljs
PoshHsu/clj-browserchannel
10
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any ...
91338
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashi...
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this softwar...
[ { "context": " -- Combinatory logic specs\n\n; Copyright (c) 2019 Burkhardt Renz, THM. All rights reserved.\n; The use and distribu", "end": 86, "score": 0.9998664259910583, "start": 72, "tag": "NAME", "value": "Burkhardt Renz" } ]
src/lwb/cl/spec.clj
esb-lwb/lwb
22
; lwb Logic WorkBench -- Combinatory logic specs ; Copyright (c) 2019 Burkhardt Renz, THM. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php). ; By using this software in any fashion, you are agreeing...
68039
; lwb Logic WorkBench -- Combinatory logic specs ; Copyright (c) 2019 <NAME>, THM. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php). ; By using this software in any fashion, you are agreeing to be b...
true
; lwb Logic WorkBench -- Combinatory logic specs ; Copyright (c) 2019 PI:NAME:<NAME>END_PI, THM. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php). ; By using this software in any fashion, you are ag...
[ { "context": "t strips HTML comments from strings.\"\n (is (= \"Bob\" (strip-html-comments \"Bob\")))\n (is (empty? (s", "end": 545, "score": 0.9855422377586365, "start": 542, "tag": "NAME", "value": "Bob" }, { "context": " strings.\"\n (is (= \"Bob\" (strip-html-comments \"...
test/clj/cwiki/test/util/wc.clj
clartaq/cwiki
3
;;; ;;; This namespace provides tests for the functions used to count ;;; words in a piece of Markdown text. ;;; ;;; NOTE: These tests have special knowledge of how things are replaced ;;; by spaces or not. Changes in the implementation of the counting ;;; functions may require alteration of the expected test results. ...
56921
;;; ;;; This namespace provides tests for the functions used to count ;;; words in a piece of Markdown text. ;;; ;;; NOTE: These tests have special knowledge of how things are replaced ;;; by spaces or not. Changes in the implementation of the counting ;;; functions may require alteration of the expected test results. ...
true
;;; ;;; This namespace provides tests for the functions used to count ;;; words in a piece of Markdown text. ;;; ;;; NOTE: These tests have special knowledge of how things are replaced ;;; by spaces or not. Changes in the implementation of the counting ;;; functions may require alteration of the expected test results. ...
[ { "context": "ostagga and milestones.\n;; Copyright (C) 2016 , Rafik NACCACHE <rafik@fekr.tech>\n\n(ns tasks.parser-rules)\n\n;;mil", "end": 153, "score": 0.9998812079429626, "start": 139, "tag": "NAME", "value": "Rafik NACCACHE" }, { "context": "tones.\n;; Copyright (C) 2016 ,...
js/compiled/out/tasks/parser_rules.cljs
fekr/tasks
1
;; A set of rules for the parser to be used with tasks- the demo website showcasing postagga and milestones. ;; Copyright (C) 2016 , Rafik NACCACHE <rafik@fekr.tech> (ns tasks.parser-rules) ;;milestone #_:milestone-id #_:task-name #_:predecessors ;;task #_:predecessors #_:resource-id #_:duration #_:priority #_...
33212
;; A set of rules for the parser to be used with tasks- the demo website showcasing postagga and milestones. ;; Copyright (C) 2016 , <NAME> <<EMAIL>> (ns tasks.parser-rules) ;;milestone #_:milestone-id #_:task-name #_:predecessors ;;task #_:predecessors #_:resource-id #_:duration #_:priority #_:task-id #_:task...
true
;; A set of rules for the parser to be used with tasks- the demo website showcasing postagga and milestones. ;; Copyright (C) 2016 , PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI> (ns tasks.parser-rules) ;;milestone #_:milestone-id #_:task-name #_:predecessors ;;task #_:predecessors #_:resource-id #_:duration #...
[ { "context": "[parent windowy _windowx]\n (let [l1 \"Notcurses by Nick Black et al\"\n l2 \"Zig lang by Andrew Kelley & co", "end": 6585, "score": 0.9998868703842163, "start": 6575, "tag": "NAME", "value": "Nick Black" }, { "context": "urses by Nick Black et al\"\n l2 ...
src/clj/demo/main.clj
dundalek/notcurses-clojure-example
13
(ns demo.main (:gen-class) (:import (com.dundalek.notcurses.swig NC notcurses_options ncplane_options NCConstants) (cz.adamh.utils NativeUtils) (java.util.concurrent.locks LockSupport))) (set! *warn-on-reflection* true) (def BOX_NUM 10) (def c_red 0xd72c2f) (def c_yel 0xffd029) (def c_blu 0...
7646
(ns demo.main (:gen-class) (:import (com.dundalek.notcurses.swig NC notcurses_options ncplane_options NCConstants) (cz.adamh.utils NativeUtils) (java.util.concurrent.locks LockSupport))) (set! *warn-on-reflection* true) (def BOX_NUM 10) (def c_red 0xd72c2f) (def c_yel 0xffd029) (def c_blu 0...
true
(ns demo.main (:gen-class) (:import (com.dundalek.notcurses.swig NC notcurses_options ncplane_options NCConstants) (cz.adamh.utils NativeUtils) (java.util.concurrent.locks LockSupport))) (set! *warn-on-reflection* true) (def BOX_NUM 10) (def c_red 0xd72c2f) (def c_yel 0xffd029) (def c_blu 0...
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 29, "score": 0.9997984170913696, "start": 18, "tag": "NAME", "value": "Rich Hickey" } ]
data/clojure/4afcd83dfeebd356d472cc59a6564ef5_core_deftype.clj
maxim5/code-inspector
5
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any ...
111036
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashi...
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this softwar...
[ { "context": " via \"\n [:a {:href \"https://www.patreon.com/sekao\" :target \"_blank\"}\n \"my patreon\"]]]]\n [", "end": 7764, "score": 0.9995418787002563, "start": 7759, "tag": "USERNAME", "value": "sekao" }, { "context": ":a {:href \"https://sekao.net/\" :target \...
src/cljs/nightcoders/core.cljs
ClojureBridgeAmsterdam/Nightcoders.net
3
(ns nightcoders.core (:require [reagent.core :as r] [cljs.reader :refer [read-string]] [cljsjs.material-ui] [cljs-react-material-ui.core :refer [get-mui-theme]] [cljs-react-material-ui.reagent :as ui] [nightcoders.auth :as auth] [goog.object]) ...
64374
(ns nightcoders.core (:require [reagent.core :as r] [cljs.reader :refer [read-string]] [cljsjs.material-ui] [cljs-react-material-ui.core :refer [get-mui-theme]] [cljs-react-material-ui.reagent :as ui] [nightcoders.auth :as auth] [goog.object]) ...
true
(ns nightcoders.core (:require [reagent.core :as r] [cljs.reader :refer [read-string]] [cljsjs.material-ui] [cljs-react-material-ui.core :refer [get-mui-theme]] [cljs-react-material-ui.reagent :as ui] [nightcoders.auth :as auth] [goog.object]) ...
[ { "context": " :initial_token \"123XYZ\"\n :auto_bootstrap ", "end": 1462, "score": 0.991226077079773, "start": 1456, "tag": "KEY", "value": "123XYZ" }, { "context": " :initial_token \"12...
test/com/datastax/configbuilder/build_config_test.clj
XN137/cass-config-builder
0
;; Copyright DataStax, Inc. ;; Please see the included license file for details. (ns com.datastax.configbuilder.build-config-test (:require [clojure.test :refer :all] [com.datastax.configbuilder.test-data :as test-data] [com.datastax.configbuilder.test-helpers :as helper] [com.dat...
54302
;; Copyright DataStax, Inc. ;; Please see the included license file for details. (ns com.datastax.configbuilder.build-config-test (:require [clojure.test :refer :all] [com.datastax.configbuilder.test-data :as test-data] [com.datastax.configbuilder.test-helpers :as helper] [com.dat...
true
;; Copyright DataStax, Inc. ;; Please see the included license file for details. (ns com.datastax.configbuilder.build-config-test (:require [clojure.test :refer :all] [com.datastax.configbuilder.test-data :as test-data] [com.datastax.configbuilder.test-helpers :as helper] [com.dat...
[ { "context": "nt library in clojure\"\n :url \"https://github.com/aterreno/etcd-clojure\"\n :lein-release {:deploy-via :cloja", "end": 116, "score": 0.9995353817939758, "start": 108, "tag": "USERNAME", "value": "aterreno" }, { "context": "w.apache.org/licenses/LICENSE-2.0\"}\n :sc...
project.clj
uswitch/etcd-clojure
1
(defproject etcd-clojure "0.2.0" :description "etcd client library in clojure" :url "https://github.com/aterreno/etcd-clojure" :lein-release {:deploy-via :clojars} :license {:name "Apache license version 2" :url "http://www.apache.org/licenses/LICENSE-2.0"} :scm {:url "git@github.com:aterreno/etcd...
48653
(defproject etcd-clojure "0.2.0" :description "etcd client library in clojure" :url "https://github.com/aterreno/etcd-clojure" :lein-release {:deploy-via :clojars} :license {:name "Apache license version 2" :url "http://www.apache.org/licenses/LICENSE-2.0"} :scm {:url "<EMAIL>:aterreno/etcd-clojur...
true
(defproject etcd-clojure "0.2.0" :description "etcd client library in clojure" :url "https://github.com/aterreno/etcd-clojure" :lein-release {:deploy-via :clojars} :license {:name "Apache license version 2" :url "http://www.apache.org/licenses/LICENSE-2.0"} :scm {:url "PI:EMAIL:<EMAIL>END_PI:aterr...
[ { "context": "st/keystore.jks\"\n :key-password \"password\"}\n (let [response (http/get \"https://localho", "end": 1097, "score": 0.9994999170303345, "start": 1089, "tag": "PASSWORD", "value": "password" } ]
ring-jetty-adapter/test/ring/adapter/test/jetty.clj
orend/ring
147
(ns ring.adapter.test.jetty (:use clojure.test ring.adapter.jetty) (:require [clj-http.client :as http]) (:import (org.eclipse.jetty.util.thread QueuedThreadPool) (org.eclipse.jetty.server Server Request) (org.eclipse.jetty.server.handler AbstractHandler))) (defn- hello-world [reque...
92386
(ns ring.adapter.test.jetty (:use clojure.test ring.adapter.jetty) (:require [clj-http.client :as http]) (:import (org.eclipse.jetty.util.thread QueuedThreadPool) (org.eclipse.jetty.server Server Request) (org.eclipse.jetty.server.handler AbstractHandler))) (defn- hello-world [reque...
true
(ns ring.adapter.test.jetty (:use clojure.test ring.adapter.jetty) (:require [clj-http.client :as http]) (:import (org.eclipse.jetty.util.thread QueuedThreadPool) (org.eclipse.jetty.server Server Request) (org.eclipse.jetty.server.handler AbstractHandler))) (defn- hello-world [reque...
[ { "context": " email\n :password hashed-password}]\n :returning [:id]})\n {:", "end": 2570, "score": 0.7692859172821045, "start": 2555, "tag": "PASSWORD", "value": "hashed-password" } ]
src/main/app/model/session.clj
eccentric-j/skeljo
0
(ns app.model.session (:require [app.model.database :as db] [datascript.core :as d] [com.fulcrologic.guardrails.core :refer [>defn => | ?]] [com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]] [taoensso.timbre :as log] [clojure.spec.alpha :as s] [buddy.hashers :as hs] [...
65089
(ns app.model.session (:require [app.model.database :as db] [datascript.core :as d] [com.fulcrologic.guardrails.core :refer [>defn => | ?]] [com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]] [taoensso.timbre :as log] [clojure.spec.alpha :as s] [buddy.hashers :as hs] [...
true
(ns app.model.session (:require [app.model.database :as db] [datascript.core :as d] [com.fulcrologic.guardrails.core :refer [>defn => | ?]] [com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]] [taoensso.timbre :as log] [clojure.spec.alpha :as s] [buddy.hashers :as hs] [...
[ { "context": "3:45\"}]\n :restaurant/location {:location/addres \"Rua Ribeirão Claro\"\n :location/number 192\n ", "end": 1796, "score": 0.9997081756591797, "start": 1778, "tag": "NAME", "value": "Rua Ribeirão Claro" }, { "context": "2\n ...
test/foodship_restaurant/helpers/keywords_test.clj
eronalves/foodship-restaurant
5
(ns foodship-restaurant.helpers.keywords-test (:require [clojure.test :refer :all] [foodship-restaurant.helpers.keywords :as keywords])) (def complex-keywords-map {:restaurant/id 1 :restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"] :restaurant/preparation-time {:preparation-time/min 45 ...
98941
(ns foodship-restaurant.helpers.keywords-test (:require [clojure.test :refer :all] [foodship-restaurant.helpers.keywords :as keywords])) (def complex-keywords-map {:restaurant/id 1 :restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"] :restaurant/preparation-time {:preparation-time/min 45 ...
true
(ns foodship-restaurant.helpers.keywords-test (:require [clojure.test :refer :all] [foodship-restaurant.helpers.keywords :as keywords])) (def complex-keywords-map {:restaurant/id 1 :restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"] :restaurant/preparation-time {:preparation-time/min 45 ...
[ { "context": "e max before exponentiating prevents overflow. See Goodfellow, Bengio, and Courville\n ; (2016), pg. 179.", "end": 36202, "score": 0.9478124380111694, "start": 36192, "tag": "NAME", "value": "Goodfellow" }, { "context": " exponentiating prevents overflow. See Go...
src/neurojure/core.clj
cguenthner/neurojure
0
(ns neurojure.core (:require [clojure.set :as set] [neurojure.utils :as u :refer [def- -?> -?>>]] [ranvier.core :as r :refer [G]] [tensure.core :as m])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Initializers ;...
9256
(ns neurojure.core (:require [clojure.set :as set] [neurojure.utils :as u :refer [def- -?> -?>>]] [ranvier.core :as r :refer [G]] [tensure.core :as m])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Initializers ;...
true
(ns neurojure.core (:require [clojure.set :as set] [neurojure.utils :as u :refer [def- -?> -?>>]] [ranvier.core :as r :refer [G]] [tensure.core :as m])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Initializers ;...
[ { "context": "\n {:text \"They hand out Chicken McNuggets but they're stone cold.\"}\n ", "end": 2182, "score": 0.7309207320213318, "start": 2165, "tag": "NAME", "value": "Chicken McNuggets" }, { "context": " {:text \"The j...
src/xyzzwhy/text.clj
akivascript/xyzzwhy
0
(ns xyzzwhy.text) ;; This text presents source material for xyzzwhy's original corpus. Each ;; class (such as :location-events or :obstacles) is a map containing map ;; fragments the minimal requirement of which is a :text key. ;; ;; A fragment's :text value can contain a number of substitutions represented ;; by %0-%...
118350
(ns xyzzwhy.text) ;; This text presents source material for xyzzwhy's original corpus. Each ;; class (such as :location-events or :obstacles) is a map containing map ;; fragments the minimal requirement of which is a :text key. ;; ;; A fragment's :text value can contain a number of substitutions represented ;; by %0-%...
true
(ns xyzzwhy.text) ;; This text presents source material for xyzzwhy's original corpus. Each ;; class (such as :location-events or :obstacles) is a map containing map ;; fragments the minimal requirement of which is a :text key. ;; ;; A fragment's :text value can contain a number of substitutions represented ;; by %0-%...
[ { "context": "q)\n (cmd/queue-bind ch c q x {\"routing_key\" \"acits.#\"})\n (Thread/sleep 300)\n (lb/publish ch ", "end": 1188, "score": 0.8760731220245361, "start": 1181, "tag": "KEY", "value": "acits.#" } ]
langohr/test/com/novemberain/acits/queue_bind_test.clj
michaelklishin/acits
1
(ns com.novemberain.acits.queue-bind-test (:require [langohr.core :as lc] [langohr.channel :as lch] [langohr.queue :as lq] [langohr.exchange :as le] [langohr.basic :as lb] [com.novemberain.acits.commands :as cmd] [clojure.test :refer :...
81976
(ns com.novemberain.acits.queue-bind-test (:require [langohr.core :as lc] [langohr.channel :as lch] [langohr.queue :as lq] [langohr.exchange :as le] [langohr.basic :as lb] [com.novemberain.acits.commands :as cmd] [clojure.test :refer :...
true
(ns com.novemberain.acits.queue-bind-test (:require [langohr.core :as lc] [langohr.channel :as lch] [langohr.queue :as lq] [langohr.exchange :as le] [langohr.basic :as lb] [com.novemberain.acits.commands :as cmd] [clojure.test :refer :...
[ { "context": ".core))\n\n;; Color conversion function, courtesy of Jack Rusher\n(defn hex-to-rgb [hex]\n (map (comp #(Integer/par", "end": 90, "score": 0.9998058080673218, "start": 79, "tag": "NAME", "value": "Jack Rusher" } ]
src/vdquil/util.clj
Jjunior130/vdquil
33
(ns vdquil.util (:use quil.core)) ;; Color conversion function, courtesy of Jack Rusher (defn hex-to-rgb [hex] (map (comp #(Integer/parseInt % 16) (partial apply str)) (partition 2 (.replace hex "#" "")))) (defn hex-to-color [hex] (apply color (hex-to-rgb hex)))
62569
(ns vdquil.util (:use quil.core)) ;; Color conversion function, courtesy of <NAME> (defn hex-to-rgb [hex] (map (comp #(Integer/parseInt % 16) (partial apply str)) (partition 2 (.replace hex "#" "")))) (defn hex-to-color [hex] (apply color (hex-to-rgb hex)))
true
(ns vdquil.util (:use quil.core)) ;; Color conversion function, courtesy of PI:NAME:<NAME>END_PI (defn hex-to-rgb [hex] (map (comp #(Integer/parseInt % 16) (partial apply str)) (partition 2 (.replace hex "#" "")))) (defn hex-to-color [hex] (apply color (hex-to-rgb hex)))
[ { "context": ";; Copyright 2014-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold Li", "end": 111, "score": 0.9998128414154053, "start": 96, "tag": "NAME", "value": "Ragnar Svensson" }, { "context": "-2020 King\n;; Copyright 2009-2014 R...
editor/test/integration/font_test.clj
cmarincia/defold
0
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 Ragnar Svensson, Christian Murray ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together wi...
116352
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 <NAME>, <NAME> ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together with FAQs at ;; https...
true
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, to...
[ { "context": "be ordered by.\n\n Example: [{:label \\\"Name\\\" :accessor :name}\n {:labe", "end": 3589, "score": 0.9361647367477417, "start": 3585, "tag": "NAME", "value": "Name" }, { "context": "accessor :name}\n {:label \\...
src/xtdb_inspector/ui/table.clj
tatut/xtdb-inspector
18
(ns xtdb-inspector.ui.table "A table component with filtering." (:require [ripley.html :as h] [ripley.live.source :as source] [ripley.live.collection :as collection] [clojure.string :as str] [ripley.js :as js])) (defn- default-filter-fn "A very simple text filter, ...
80927
(ns xtdb-inspector.ui.table "A table component with filtering." (:require [ripley.html :as h] [ripley.live.source :as source] [ripley.live.collection :as collection] [clojure.string :as str] [ripley.js :as js])) (defn- default-filter-fn "A very simple text filter, ...
true
(ns xtdb-inspector.ui.table "A table component with filtering." (:require [ripley.html :as h] [ripley.live.source :as source] [ripley.live.collection :as collection] [clojure.string :as str] [ripley.js :as js])) (defn- default-filter-fn "A very simple text filter, ...
[ { "context": "\n ;; create the admin\n admin-email \"admin@purpleapp.com\"\n admin-password \"foobar\"\n admin-fu", "end": 899, "score": 0.9999279379844666, "start": 880, "tag": "EMAIL", "value": "admin@purpleapp.com" }, { "context": "ail \"admin@purpleapp...
test/dashboard/test/orders.clj
Purple-Services/dashboard-service
3
(ns dashboard.test.orders (:require [clojure.test :refer [is deftest testing use-fixtures]] [clj-time.coerce :as c] [clj-time.local :as l] [common.db :as db] [dashboard.orders :as orders] [dashboard.test.data-tools :as data-tools] [dashboard.test...
80325
(ns dashboard.test.orders (:require [clojure.test :refer [is deftest testing use-fixtures]] [clj-time.coerce :as c] [clj-time.local :as l] [common.db :as db] [dashboard.orders :as orders] [dashboard.test.data-tools :as data-tools] [dashboard.test...
true
(ns dashboard.test.orders (:require [clojure.test :refer [is deftest testing use-fixtures]] [clj-time.coerce :as c] [clj-time.local :as l] [common.db :as db] [dashboard.orders :as orders] [dashboard.test.data-tools :as data-tools] [dashboard.test...
[ { "context": "l/new-hospital))]\n\n (person-arrives! hospital \"victor\")\n (person-arrives! hospital \"alessandra\")\n ", "end": 423, "score": 0.9991849660873413, "start": 417, "tag": "NAME", "value": "victor" }, { "context": "hospital \"victor\")\n (person-arrives! hospi...
hospital/src/hospital/class5.clj
vgeorgo/courses-alura-clojure
0
(ns hospital.class5 (:use [clojure pprint]) (:require [hospital.model :as h.model] [hospital.logic :as h.logic])) (defn person-arrives! [hospital, person] (swap! hospital h.logic/person-arrives :waiting person)) (defn transfer! [hospital from to] (swap! hospital h.logic/transfer from to)) (defn s...
103995
(ns hospital.class5 (:use [clojure pprint]) (:require [hospital.model :as h.model] [hospital.logic :as h.logic])) (defn person-arrives! [hospital, person] (swap! hospital h.logic/person-arrives :waiting person)) (defn transfer! [hospital from to] (swap! hospital h.logic/transfer from to)) (defn s...
true
(ns hospital.class5 (:use [clojure pprint]) (:require [hospital.model :as h.model] [hospital.logic :as h.logic])) (defn person-arrives! [hospital, person] (swap! hospital h.logic/person-arrives :waiting person)) (defn transfer! [hospital from to] (swap! hospital h.logic/transfer from to)) (defn s...
[ { "context": "fying handlers (better portability).\"\n {:author \"Peter Taoussanis\"}\n\n \n \n ", "end": 2719, "score": 0.9998626708984375, "start": 2703, "tag": "NAME", "value": "Peter Taoussanis" } ]
resources/public/js/out/taoensso/sente.cljs
nathanWedwards/vote-simple
0
(ns taoensso.sente "Channel sockets. Otherwise known as The Shiz. Protocol | client>server | client>server ?+ ack/reply | server>user push * WebSockets: ✓ [1] ✓ * Ajax: [2] ✓ [3] [1] Emulate with cb-uui...
54098
(ns taoensso.sente "Channel sockets. Otherwise known as The Shiz. Protocol | client>server | client>server ?+ ack/reply | server>user push * WebSockets: ✓ [1] ✓ * Ajax: [2] ✓ [3] [1] Emulate with cb-uui...
true
(ns taoensso.sente "Channel sockets. Otherwise known as The Shiz. Protocol | client>server | client>server ?+ ack/reply | server>user push * WebSockets: ✓ [1] ✓ * Ajax: [2] ✓ [3] [1] Emulate with cb-uui...
[ { "context": "pe :email\n :channel/identifier \"john@example.com\"}]\n user {:user/first-name \"John\"\n ", "end": 806, "score": 0.9999194145202637, "start": 790, "tag": "EMAIL", "value": "john@example.com" }, { "context": "hn@example.com\"}]\n ...
test/jsk/data/user_test.clj
e85th/jsk
0
(ns jsk.data.user-test (:require [clojure.test :refer :all] ;[jsk.core-test :as test] [taoensso.timbre :as log] [datomic.api :as d] [jsk.data.user :as user] [e85th.commons.datomic :as datomic] [e85th.commons.util :as u])) ;(use-fixtures :once te...
36724
(ns jsk.data.user-test (:require [clojure.test :refer :all] ;[jsk.core-test :as test] [taoensso.timbre :as log] [datomic.api :as d] [jsk.data.user :as user] [e85th.commons.datomic :as datomic] [e85th.commons.util :as u])) ;(use-fixtures :once te...
true
(ns jsk.data.user-test (:require [clojure.test :refer :all] ;[jsk.core-test :as test] [taoensso.timbre :as log] [datomic.api :as d] [jsk.data.user :as user] [e85th.commons.datomic :as datomic] [e85th.commons.util :as u])) ;(use-fixtures :once te...
[ { "context": " ;; Code from Pedestal:\n ;; https://github.com/pedestal/pedestal/blob/master/log/src/io/pedestal/log.clj#", "end": 1245, "score": 0.9987177848815918, "start": 1237, "tag": "USERNAME", "value": "pedestal" }, { "context": "-jdbc-url db-config))\n (.setUs...
src/main/lrsql/system/database.clj
rajkowski/lrsql
28
(ns lrsql.system.database (:require [clojure.tools.logging :as log] [com.stuartsierra.component :as component] [lrsql.backend.protocol :as bp] [lrsql.spec.config :as cs] [lrsql.system.util :as cu :refer [assert-config make-jdbc-url]]) (:import [com.zaxxer.hikari Hikar...
4489
(ns lrsql.system.database (:require [clojure.tools.logging :as log] [com.stuartsierra.component :as component] [lrsql.backend.protocol :as bp] [lrsql.spec.config :as cs] [lrsql.system.util :as cu :refer [assert-config make-jdbc-url]]) (:import [com.zaxxer.hikari Hikar...
true
(ns lrsql.system.database (:require [clojure.tools.logging :as log] [com.stuartsierra.component :as component] [lrsql.backend.protocol :as bp] [lrsql.spec.config :as cs] [lrsql.system.util :as cu :refer [assert-config make-jdbc-url]]) (:import [com.zaxxer.hikari Hikar...
[ { "context": "\n{\"Language\" \"Clojure\"\n \"Version\" 1.10\n \"Author\" \"Rich Hickey\"}\n\n;; Maps have near constant time lookup by key.", "end": 1660, "score": 0.9998763799667358, "start": 1649, "tag": "NAME", "value": "Rich Hickey" }, { "context": "ct.\n\n{:language \"Clojure\"...
src/instructor/01_datastructures.clj
arnaudbos/ratatouille
0
(ns instructor.01-datastructures) ;;; Collections: lists, vectors, maps, and sets ;; Clojure provides a rich set of immutable and persistent data structures, ;; which support efficient creation of “modified” versions, by utilizing structural sharing. ;; Don't know what "structural sharing" is? Please ask! ;; Collect...
59277
(ns instructor.01-datastructures) ;;; Collections: lists, vectors, maps, and sets ;; Clojure provides a rich set of immutable and persistent data structures, ;; which support efficient creation of “modified” versions, by utilizing structural sharing. ;; Don't know what "structural sharing" is? Please ask! ;; Collect...
true
(ns instructor.01-datastructures) ;;; Collections: lists, vectors, maps, and sets ;; Clojure provides a rich set of immutable and persistent data structures, ;; which support efficient creation of “modified” versions, by utilizing structural sharing. ;; Don't know what "structural sharing" is? Please ask! ;; Collect...
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 29, "score": 0.9998670816421509, "start": 18, "tag": "NAME", "value": "Rich Hickey" }, { "context": "tice, or any other, from this software.\n\n; Author: Frantisek Sodomka\n\n\n(ns...
ThirdParty/clojure-1.1.0/test/clojure/test_clojure/test_utils.clj
allertonm/Couverjure
3
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any ...
46183
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashi...
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this softwar...
[ { "context": "l conn/db {:ID @user-id :EMAIL email :PASSWORD (hashers/derive password) :TEMP_TOKEN @temp-token :STATUS_ID status-id})\n ", "end": 1568, "score": 0.9979648590087891, "start": 1545, "tag": "PASSWORD", "value": "hashers/derive password" }, { "context": "il.UUID/randomU...
src/stronghand_3e_api/account/register.clj
saingsab/stronghand-3e-api
0
(ns stronghand-3e-api.account.register (:require [aero.core :refer (read-config)] [ring.util.http-response :refer :all] [buddy.hashers :as hashers] [stronghand-3e-api.utils.validate :as validate] [stronghand-3e-api.utils.mailling :as mailling] [stronghand-3e...
39043
(ns stronghand-3e-api.account.register (:require [aero.core :refer (read-config)] [ring.util.http-response :refer :all] [buddy.hashers :as hashers] [stronghand-3e-api.utils.validate :as validate] [stronghand-3e-api.utils.mailling :as mailling] [stronghand-3e...
true
(ns stronghand-3e-api.account.register (:require [aero.core :refer (read-config)] [ring.util.http-response :refer :all] [buddy.hashers :as hashers] [stronghand-3e-api.utils.validate :as validate] [stronghand-3e-api.utils.mailling :as mailling] [stronghand-3e...
[ { "context": "wn-test\" schema :facts\n [[:parent :ancestor \"Shmi Skywalker\" :child \"Anakin Skywalker\"]\n [:pare", "end": 837, "score": 0.7299403548240662, "start": 835, "tag": "NAME", "value": "mi" }, { "context": " [[:parent :ancestor \"Shmi Skywalker\" :child \"Anakin S...
examples/star-wars/bacwn.cljs
greenyouse/multco
6
(ns examples.star-wars.bacwn (:use-macros [fogus.datalog.bacwn.macros :only [<- ?- make-database]]) (:require [fogus.datalog.bacwn :as bacwn] [fogus.datalog.bacwn.impl.rules :as r] [multco.core :as m])) ;; Do a bacwn schema like normal. (def schema (make-database (relation :parent [:a...
118245
(ns examples.star-wars.bacwn (:use-macros [fogus.datalog.bacwn.macros :only [<- ?- make-database]]) (:require [fogus.datalog.bacwn :as bacwn] [fogus.datalog.bacwn.impl.rules :as r] [multco.core :as m])) ;; Do a bacwn schema like normal. (def schema (make-database (relation :parent [:a...
true
(ns examples.star-wars.bacwn (:use-macros [fogus.datalog.bacwn.macros :only [<- ?- make-database]]) (:require [fogus.datalog.bacwn :as bacwn] [fogus.datalog.bacwn.impl.rules :as r] [multco.core :as m])) ;; Do a bacwn schema like normal. (def schema (make-database (relation :parent [:a...
[ { "context": ";; The MIT License (MIT)\n;;\n;; Copyright (c) 2016 Richard Hull\n;;\n;; Permission is hereby granted, free of charg", "end": 62, "score": 0.9997546672821045, "start": 50, "tag": "NAME", "value": "Richard Hull" } ]
plugin/src/leiningen/nvd.clj
plaguna/lein-nvd
0
;; The MIT License (MIT) ;; ;; Copyright (c) 2016 Richard Hull ;; ;; Permission is hereby granted, free of charge, to any person obtaining a copy ;; of this software and associated documentation files (the "Software"), to deal ;; in the Software without restriction, including without limitation the rights ;; to use, co...
103722
;; The MIT License (MIT) ;; ;; Copyright (c) 2016 <NAME> ;; ;; Permission is hereby granted, free of charge, to any person obtaining a copy ;; of this software and associated documentation files (the "Software"), to deal ;; in the Software without restriction, including without limitation the rights ;; to use, copy, mo...
true
;; The MIT License (MIT) ;; ;; Copyright (c) 2016 PI:NAME:<NAME>END_PI ;; ;; Permission is hereby granted, free of charge, to any person obtaining a copy ;; of this software and associated documentation files (the "Software"), to deal ;; in the Software without restriction, including without limitation the rights ;; to...
[ { "context": "Tab \"/secret/hbase.keytab\"\n :principal \"user@HBASE.EXAMPLE.COM\"\n :context \"Client\"))))\n", "end": 3283, "score": 0.9999161958694458, "start": 3261, "tag": "EMAIL", "value": "user@HBASE.EXAMPLE.COM" } ]
test/hbase_region_inspector/config_test.clj
htross/hbase-region-inspector
115
(ns hbase-region-inspector.config-test (:require [clojure.test :refer :all] [clojure.string :as str] [clojure.java.io :refer [resource file]] [hbase-region-inspector.config :refer :all :as c])) (deftest test-kerberos? (is (= false (#'c/kerberos? {}))) (is (= false (#'c/kerbero...
75062
(ns hbase-region-inspector.config-test (:require [clojure.test :refer :all] [clojure.string :as str] [clojure.java.io :refer [resource file]] [hbase-region-inspector.config :refer :all :as c])) (deftest test-kerberos? (is (= false (#'c/kerberos? {}))) (is (= false (#'c/kerbero...
true
(ns hbase-region-inspector.config-test (:require [clojure.test :refer :all] [clojure.string :as str] [clojure.java.io :refer [resource file]] [hbase-region-inspector.config :refer :all :as c])) (deftest test-kerberos? (is (= false (#'c/kerberos? {}))) (is (= false (#'c/kerbero...
[ { "context": ";; Copyright 2017 7bridges s.r.l.\n;;\n;; Licensed under the Apache License, V", "end": 26, "score": 0.7470564842224121, "start": 18, "tag": "USERNAME", "value": "7bridges" }, { "context": "embedded record. eg:\n\n {:_class \\\"User\\\" :name \\\"Test\\\"}\"\n [r]\n ...
src/clj_odbp/binary/serialize/types.clj
7BridgesEu/clj-odbp
0
;; Copyright 2017 7bridges s.r.l. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in ...
21829
;; Copyright 2017 7bridges s.r.l. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in ...
true
;; Copyright 2017 7bridges s.r.l. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in ...
[ { "context": ";; Copyright (c) Metail and Thomas Athorne\n;;\n;; Licensed under the Apa", "end": 25, "score": 0.9984632730484009, "start": 19, "tag": "NAME", "value": "Metail" }, { "context": ";; Copyright (c) Metail and Thomas Athorne\n;;\n;; Licensed under the Apache Licens...
src/clj_stan/read_output.clj
thomasathorne/clj-stan
14
;; Copyright (c) Metail and Thomas Athorne ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applic...
56097
;; Copyright (c) <NAME> and <NAME> ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law...
true
;; Copyright (c) PI:NAME:<NAME>END_PI and PI:NAME:<NAME>END_PI ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unles...
[ { "context": "nstrument and studio abstractions.\"\n :author \"Jeff Rose & Sam Aaron\"}\n overtone.studio.core\n (:use [ove", "end": 87, "score": 0.9998766183853149, "start": 78, "tag": "NAME", "value": "Jeff Rose" }, { "context": "nd studio abstractions.\"\n :author \"Jeff...
src/overtone/studio/core.clj
ABaldwinHunter/overtone
3,870
(ns ^{:doc "Higher level instrument and studio abstractions." :author "Jeff Rose & Sam Aaron"} overtone.studio.core (:use [overtone.sc defaults server]) (:require [overtone.config.log :as log])) (defonce studio* (atom {:synth-group nil :instruments {} ...
117132
(ns ^{:doc "Higher level instrument and studio abstractions." :author "<NAME> & <NAME>"} overtone.studio.core (:use [overtone.sc defaults server]) (:require [overtone.config.log :as log])) (defonce studio* (atom {:synth-group nil :instruments {} ...
true
(ns ^{:doc "Higher level instrument and studio abstractions." :author "PI:NAME:<NAME>END_PI & PI:NAME:<NAME>END_PI"} overtone.studio.core (:use [overtone.sc defaults server]) (:require [overtone.config.log :as log])) (defonce studio* (atom {:synth-group nil :instruments ...
[ { "context": "te used for testing data products\"\n :author \"Herve Schnegg\"}\n\n test-site.core\n\n (:require [io.pedestal.htt", "end": 82, "score": 0.9998677372932434, "start": 69, "tag": "NAME", "value": "Herve Schnegg" } ]
data/test/clojure/aa21ef044eef173e32643879c8568a42403a1c42core.clj
harshp8l/deep-learning-lang-detection
84
(ns ^{:doc "Test site used for testing data products" :author "Herve Schnegg"} test-site.core (:require [io.pedestal.http :as http] [io.pedestal.http.route :as route] [hiccup.page :as page])) (defn test-page [request] {:status 200 :headers {"Content-Type" "text/html"} :body...
43962
(ns ^{:doc "Test site used for testing data products" :author "<NAME>"} test-site.core (:require [io.pedestal.http :as http] [io.pedestal.http.route :as route] [hiccup.page :as page])) (defn test-page [request] {:status 200 :headers {"Content-Type" "text/html"} :body (page/...
true
(ns ^{:doc "Test site used for testing data products" :author "PI:NAME:<NAME>END_PI"} test-site.core (:require [io.pedestal.http :as http] [io.pedestal.http.route :as route] [hiccup.page :as page])) (defn test-page [request] {:status 200 :headers {"Content-Type" "text/html"} ...
[ { "context": ";; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>\n;; All rights reserved.\n;;\n;; Redi", "end": 40, "score": 0.9998824000358582, "start": 27, "tag": "NAME", "value": "Andrey Antukh" }, { "context": ";; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>\n;; All ...
test/datoteka/tests/test_storages.clj
kiramclean/datoteka
0
;; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz> ;; All rights reserved. ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are met: ;; ;; * Redistributions of source code must retain the above copyright notice, this ;; ...
87842
;; Copyright (c) 2015-2016 <NAME> <<EMAIL>> ;; All rights reserved. ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are met: ;; ;; * Redistributions of source code must retain the above copyright notice, this ;; list of con...
true
;; Copyright (c) 2015-2016 PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI> ;; All rights reserved. ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are met: ;; ;; * Redistributions of source code must retain the above copyright ...
[ { "context": ":in {:source \"worker\", :data-key \"test\"}, :email \"apple@pair.com\",\n :test \"gt\", :value 23})\n ))\n\n(defn proc", "end": 8418, "score": 0.9998974800109863, "start": 8404, "tag": "EMAIL", "value": "apple@pair.com" } ]
data/test/clojure/51d6320be316f23bdc1ee39be570a8399d14bdd7hive_controller.clj
harshp8l/deep-learning-lang-detection
84
(ns hivewing-web.hive-controller (:require [hivewing-web.session :as session] [hivewing-web.controller-core :refer :all] [hivewing-web.paths :as paths] [hivewing-core.beekeeper :as bk] [hivewing-core.hive-manager :as hm] [hivewing-core.hive-logs :as hive-log...
54856
(ns hivewing-web.hive-controller (:require [hivewing-web.session :as session] [hivewing-web.controller-core :refer :all] [hivewing-web.paths :as paths] [hivewing-core.beekeeper :as bk] [hivewing-core.hive-manager :as hm] [hivewing-core.hive-logs :as hive-log...
true
(ns hivewing-web.hive-controller (:require [hivewing-web.session :as session] [hivewing-web.controller-core :refer :all] [hivewing-web.paths :as paths] [hivewing-core.beekeeper :as bk] [hivewing-core.hive-manager :as hm] [hivewing-core.hive-logs :as hive-log...
[ { "context": "-c/map->Personnel\n {:last-name \"John Smith\"\n :roles [\"pointOfContact\"]})\n", "end": 16097, "score": 0.9997783899307251, "start": 16087, "tag": "NAME", "value": "John Smith" }, { "context": "-c/map->Personnel\n ...
umm-lib/test/cmr/umm/test/iso_mends/iso_mends_collection_tests.clj
eereiter/Common-Metadata-Repository
0
(ns cmr.umm.test.iso-mends.iso-mends-collection-tests "Tests parsing and generating ISO Collection XML." (:require [clojure.java.io :as io] [clojure.string :as s] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [clojure.test.check.properties :refer [for-all]] [cmr.common.date-ti...
1561
(ns cmr.umm.test.iso-mends.iso-mends-collection-tests "Tests parsing and generating ISO Collection XML." (:require [clojure.java.io :as io] [clojure.string :as s] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [clojure.test.check.properties :refer [for-all]] [cmr.common.date-ti...
true
(ns cmr.umm.test.iso-mends.iso-mends-collection-tests "Tests parsing and generating ISO Collection XML." (:require [clojure.java.io :as io] [clojure.string :as s] [clojure.test :refer :all] [clojure.test.check.generators :as gen] [clojure.test.check.properties :refer [for-all]] [cmr.common.date-ti...
[ { "context": ";;\n;;\n;; Copyright 2013-2015 Netflix, Inc.\n;;\n;; Licensed under the Apache Lic", "end": 33, "score": 0.9332128763198853, "start": 30, "tag": "NAME", "value": "Net" } ]
pigpen-core/src/test/clojure/pigpen/functional_test.clj
ombagus/Netflix
327
;; ;; ;; Copyright 2013-2015 Netflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required ...
24290
;; ;; ;; Copyright 2013-2015 <NAME>flix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless requir...
true
;; ;; ;; Copyright 2013-2015 PI:NAME:<NAME>END_PIflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; ...
[ { "context": "annedPdf.dir/DrinkingPhil.pdf\n;;\n;; Copyright 2015 Prajna Inc.\n;;\n;; Licensed under the Apache License, Ver", "end": 164, "score": 0.9189598560333252, "start": 158, "tag": "NAME", "value": "Prajna" } ]
test/diningphils/c_m_async/tests.clj
wizardpb/diningphils
0
;; ;; Dining philosophers solution using Chandy-Misra algorithm ;; https://www.cs.utexas.edu/users/misra/scannedPdf.dir/DrinkingPhil.pdf ;; ;; Copyright 2015 Prajna Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may o...
8819
;; ;; Dining philosophers solution using Chandy-Misra algorithm ;; https://www.cs.utexas.edu/users/misra/scannedPdf.dir/DrinkingPhil.pdf ;; ;; Copyright 2015 <NAME> Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may o...
true
;; ;; Dining philosophers solution using Chandy-Misra algorithm ;; https://www.cs.utexas.edu/users/misra/scannedPdf.dir/DrinkingPhil.pdf ;; ;; Copyright 2015 PI:NAME:<NAME>END_PI Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License...
[ { "context": " :request-method :post\n :req-key [1 2 3]} [1 2 3]\n {:uri \"rest\"\n :req", "end": 1763, "score": 0.5992968678474426, "start": 1762, "tag": "KEY", "value": "2" } ]
test/restfn/test.clj
MichaelBlume/restfn
1
(ns restfn.test (:import (java.util ArrayList)) (:use (clojure test) (clojure [string :only [split-lines]]) (restfn core) (cheshire [core :only [parse-string]]))) (extend-type java.util.regex.Pattern RestSerializable (rest-serialize [r] #(re-matches r %))) (def delay-calls (atom 0)) (...
20412
(ns restfn.test (:import (java.util ArrayList)) (:use (clojure test) (clojure [string :only [split-lines]]) (restfn core) (cheshire [core :only [parse-string]]))) (extend-type java.util.regex.Pattern RestSerializable (rest-serialize [r] #(re-matches r %))) (def delay-calls (atom 0)) (...
true
(ns restfn.test (:import (java.util ArrayList)) (:use (clojure test) (clojure [string :only [split-lines]]) (restfn core) (cheshire [core :only [parse-string]]))) (extend-type java.util.regex.Pattern RestSerializable (rest-serialize [r] #(re-matches r %))) (def delay-calls (atom 0)) (...
[ { "context": "stgresql://localhost/postgres?user=orbis&password=orbis\"\r\n ;;optional, will use internal table otherwise", "end": 104, "score": 0.9993428587913513, "start": 99, "tag": "PASSWORD", "value": "orbis" } ]
profiles.clj
Orbisnetworkadmin/orbis-grcmanager
0
{:profiles/dev {:env {:database-url "jdbc:postgresql://localhost/postgres?user=orbis&password=orbis" ;;optional, will use internal table otherwise }}}
58688
{:profiles/dev {:env {:database-url "jdbc:postgresql://localhost/postgres?user=orbis&password=<PASSWORD>" ;;optional, will use internal table otherwise }}}
true
{:profiles/dev {:env {:database-url "jdbc:postgresql://localhost/postgres?user=orbis&password=PI:PASSWORD:<PASSWORD>END_PI" ;;optional, will use internal table otherwise }}}
[ { "context": " :username (System/getenv \"CLOJARS_USER\")\n :password (", "end": 584, "score": 0.6606954336166382, "start": 575, "tag": "USERNAME", "value": "JARS_USER" }, { "context": " :password (System/g...
build.boot
johan-sports/busboy
2
(set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "test"] [org.clojure/clojurescript "1.9.542"] [org.clojure/core.async "0.2.385"] [adzerk/boot-cljs "1.7.228-1" :scope "test"] [crisptru...
13984
(set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "test"] [org.clojure/clojurescript "1.9.542"] [org.clojure/core.async "0.2.385"] [adzerk/boot-cljs "1.7.228-1" :scope "test"] [crisptru...
true
(set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "test"] [org.clojure/clojurescript "1.9.542"] [org.clojure/core.async "0.2.385"] [adzerk/boot-cljs "1.7.228-1" :scope "test"] [crisptru...
[ { "context": "tp://test.test/data\"\n :username \"dude\"\n :password \"sweet\"}]\n (wit", "end": 666, "score": 0.9996689558029175, "start": 662, "tag": "USERNAME", "value": "dude" }, { "context": " :username \"dude\"\n :passw...
test/birthday_bot/parser_test.clj
MarinoPoletine/birthday_slack_bot
0
(ns birthday_slack_bot.parser-test (:require [clojure.test :refer :all] [birthday_slack_bot.parser :refer :all] [clj-http.client :as client]) (:use clj-http.fake)) (deftest get-day-test (testing "get-day returns in proper format" (is (re-matches (re-pattern (str "(?:Jan|Feb|Mar|Apr|M...
119867
(ns birthday_slack_bot.parser-test (:require [clojure.test :refer :all] [birthday_slack_bot.parser :refer :all] [clj-http.client :as client]) (:use clj-http.fake)) (deftest get-day-test (testing "get-day returns in proper format" (is (re-matches (re-pattern (str "(?:Jan|Feb|Mar|Apr|M...
true
(ns birthday_slack_bot.parser-test (:require [clojure.test :refer :all] [birthday_slack_bot.parser :refer :all] [clj-http.client :as client]) (:use clj-http.fake)) (deftest get-day-test (testing "get-day returns in proper format" (is (re-matches (re-pattern (str "(?:Jan|Feb|Mar|Apr|M...
[ { "context": " \"passing a vector as a function argument\")\n (m \"Michael Fogus, Chris Houser: The Joy of Clojure, 2nd, 7.1 Funct", "end": 690, "score": 0.9998307228088379, "start": 677, "tag": "NAME", "value": "Michael Fogus" }, { "context": "ctor as a function argument\")\n (m \...
src/test/clojure/pl/tomaszgigiel/quizzes/packs/joc/joc_07_01_test.clj
tomaszgigiel/quizzes
1
(ns pl.tomaszgigiel.quizzes.packs.joc.joc-07-01-test (:require [clojure.test :as tst]) (:require [uncomplicate.fluokitten.core :as fluokitten]) (:require [pl.tomaszgigiel.quizzes.test-config :as test-config]) (:require [pl.tomaszgigiel.quizzes.quiz :refer [qam q a at m]]) (:require [pl.tomaszgigiel.utils.misc...
91074
(ns pl.tomaszgigiel.quizzes.packs.joc.joc-07-01-test (:require [clojure.test :as tst]) (:require [uncomplicate.fluokitten.core :as fluokitten]) (:require [pl.tomaszgigiel.quizzes.test-config :as test-config]) (:require [pl.tomaszgigiel.quizzes.quiz :refer [qam q a at m]]) (:require [pl.tomaszgigiel.utils.misc...
true
(ns pl.tomaszgigiel.quizzes.packs.joc.joc-07-01-test (:require [clojure.test :as tst]) (:require [uncomplicate.fluokitten.core :as fluokitten]) (:require [pl.tomaszgigiel.quizzes.test-config :as test-config]) (:require [pl.tomaszgigiel.quizzes.quiz :refer [qam q a at m]]) (:require [pl.tomaszgigiel.utils.misc...
[ { "context": "t\n (deal-among 4 (shuffle deck))\n\n (def names [\"allan\" \"adi\" \"quan\" \"lucy\"])\n (def players (-> names i", "end": 6265, "score": 0.9996861219406128, "start": 6260, "tag": "NAME", "value": "allan" }, { "context": "l-among 4 (shuffle deck))\n\n (def names [\...
src/hearts/core.cljs
jiangts/hearts-clojure
0
(ns hearts.core (:require [cljs.core.match :refer-macros [match]] [hearts.utils :as utils :refer [spy]] [cljs.pprint :refer [pprint]] [goog.string :as gstr]) (:require-macros [hearts.macros :refer [spy2]])) ;; ===== CREATE DATA ===== ;; (def suits #{"H" "D" "S" "C"}) (def ranks ...
74921
(ns hearts.core (:require [cljs.core.match :refer-macros [match]] [hearts.utils :as utils :refer [spy]] [cljs.pprint :refer [pprint]] [goog.string :as gstr]) (:require-macros [hearts.macros :refer [spy2]])) ;; ===== CREATE DATA ===== ;; (def suits #{"H" "D" "S" "C"}) (def ranks ...
true
(ns hearts.core (:require [cljs.core.match :refer-macros [match]] [hearts.utils :as utils :refer [spy]] [cljs.pprint :refer [pprint]] [goog.string :as gstr]) (:require-macros [hearts.macros :refer [spy2]])) ;; ===== CREATE DATA ===== ;; (def suits #{"H" "D" "S" "C"}) (def ranks ...
[ { "context": "very-grace-period]} opts]\n {:name \"Apache Flink\"\n :os debian/os\n ", "end": 2127, "score": 0.5602487921714783, "start": 2121, "tag": "NAME", "value": "Apache" }, { "context": "ce-period]} opts]\n {:name \"Apach...
flink-jepsen/src/jepsen/flink/flink.clj
Noctune/flink
2
;; Licensed to the Apache Software Foundation (ASF) under one ;; or more contributor license agreements. See the NOTICE file ;; distributed with this work for additional information ;; regarding copyright ownership. The ASF licenses this file ;; to you under the Apache License, Version 2.0 (the ;; "License"); you may...
76446
;; Licensed to the Apache Software Foundation (ASF) under one ;; or more contributor license agreements. See the NOTICE file ;; distributed with this work for additional information ;; regarding copyright ownership. The ASF licenses this file ;; to you under the Apache License, Version 2.0 (the ;; "License"); you may...
true
;; Licensed to the Apache Software Foundation (ASF) under one ;; or more contributor license agreements. See the NOTICE file ;; distributed with this work for additional information ;; regarding copyright ownership. The ASF licenses this file ;; to you under the Apache License, Version 2.0 (the ;; "License"); you may...
[ { "context": " :typ [\"M\" \"L\" \"S\"]\n :p-token 0.05})\n\n(defonce traders [{:i 0 :v \"geojit\" :n \"Geojit", "end": 877, "score": 0.9965846538543701, "start": 873, "tag": "PASSWORD", "value": "0.05" } ]
src/bulk_trader/cljs/globals.cljs
spradnyesh/bulk-trader
0
(ns ^:figwheel-always bulk-trader.cljs.globals) (enable-console-print!) ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:trader nil :logged-in? false :data []})) (defonce overlay-state (atom {:data nil ...
98837
(ns ^:figwheel-always bulk-trader.cljs.globals) (enable-console-print!) ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:trader nil :logged-in? false :data []})) (defonce overlay-state (atom {:data nil ...
true
(ns ^:figwheel-always bulk-trader.cljs.globals) (enable-console-print!) ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:trader nil :logged-in? false :data []})) (defonce overlay-state (atom {:data nil ...
[ { "context": " once dependencies have been met.\"\n :author \"Sam Aaron & Jeff Rose\"}\n overtone.libs.deps\n (:require [c", "end": 147, "score": 0.9998752474784851, "start": 138, "tag": "NAME", "value": "Sam Aaron" }, { "context": "dencies have been met.\"\n :author \"Sa...
src/overtone/libs/deps.clj
samaaron/overtone
2
(ns ^{:doc "A basic dependency system for specifying the execution of fns once dependencies have been met." :author "Sam Aaron & Jeff Rose"} overtone.libs.deps (:require [clojure.set :as set])) (defonce dep-state* (agent {:satisfied #{} :todo [] ...
18571
(ns ^{:doc "A basic dependency system for specifying the execution of fns once dependencies have been met." :author "<NAME> & <NAME>"} overtone.libs.deps (:require [clojure.set :as set])) (defonce dep-state* (agent {:satisfied #{} :todo [] ...
true
(ns ^{:doc "A basic dependency system for specifying the execution of fns once dependencies have been met." :author "PI:NAME:<NAME>END_PI & PI:NAME:<NAME>END_PI"} overtone.libs.deps (:require [clojure.set :as set])) (defonce dep-state* (agent {:satisfied #{} :todo [...
[ { "context": ";\n; Copyright 2020 AppsFlyer\n;\n; Licensed under the Apache License, Versi", "end": 23, "score": 0.5943925380706787, "start": 19, "tag": "NAME", "value": "Apps" }, { "context": ";\n; Copyright 2020 AppsFlyer\n;\n; Licensed under the Apache License, Version 2.", "e...
src/test/clojure/com/appsflyer/donkey/test_helper.clj
svanburen/donkey
1
; ; Copyright 2020 AppsFlyer ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, ...
54562
; ; Copyright 2020 <NAME>Flyer ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing...
true
; ; Copyright 2020 PI:NAME:<NAME>END_PIFlyer ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed...
[ { "context": " :node/display-name (or display-name \"HTN\")\n ;; NOTE: for this \"synthetic\"", "end": 34268, "score": 0.5766932964324951, "start": 34265, "tag": "NAME", "value": "HTN" } ]
src/plan_schema/core.clj
dollabs/plan-schema
2
;; Copyright © 2016 Dynamic Object Language Labs Inc. ;; ;; This software is licensed under the terms of the ;; Apache License, Version 2.0 which can be found in ;; the file LICENSE at the root of this distribution. (ns plan-schema.core "Temporal Planning Network schema utilities" (:require [clojure.string :as str...
96058
;; Copyright © 2016 Dynamic Object Language Labs Inc. ;; ;; This software is licensed under the terms of the ;; Apache License, Version 2.0 which can be found in ;; the file LICENSE at the root of this distribution. (ns plan-schema.core "Temporal Planning Network schema utilities" (:require [clojure.string :as str...
true
;; Copyright © 2016 Dynamic Object Language Labs Inc. ;; ;; This software is licensed under the terms of the ;; Apache License, Version 2.0 which can be found in ;; the file LICENSE at the root of this distribution. (ns plan-schema.core "Temporal Planning Network schema utilities" (:require [clojure.string :as str...
[ { "context": "))\n\n(deftest test-possible-moves\n (let [my-name \"AI\" opponent \"opponent-name\"\n state (-> game/", "end": 241, "score": 0.6261703968048096, "start": 239, "tag": "USERNAME", "value": "AI" }, { "context": "g \"static evaluation of state\"\n (let [my-name ...
test/bidpitch/test/ai.clj
tlicata/bidpitch
1
(ns bidpitch.test.ai (:use clojure.test bidpitch.ai) (:require [clojure.core.async :refer [<!! >!! chan]] [clojure.set :refer [subset?]] [bidpitch.game :as game])) (deftest test-possible-moves (let [my-name "AI" opponent "opponent-name" state (-> game/empty-state ...
96254
(ns bidpitch.test.ai (:use clojure.test bidpitch.ai) (:require [clojure.core.async :refer [<!! >!! chan]] [clojure.set :refer [subset?]] [bidpitch.game :as game])) (deftest test-possible-moves (let [my-name "AI" opponent "opponent-name" state (-> game/empty-state ...
true
(ns bidpitch.test.ai (:use clojure.test bidpitch.ai) (:require [clojure.core.async :refer [<!! >!! chan]] [clojure.set :refer [subset?]] [bidpitch.game :as game])) (deftest test-possible-moves (let [my-name "AI" opponent "opponent-name" state (-> game/empty-state ...
[ { "context": "le\",\n \"error_key\" \"TUTORIAL_ERROR\"},\n \"extra_data\" {\"error_key\"", "end": 346, "score": 0.935981035232544, "start": 332, "tag": "KEY", "value": "TUTORIAL_ERROR" }, { "context": ",\n \"extra...
data-edn/report_34c3ecc5-624a-49a5-bab8-4fdc5e51a26b.clj
RedHatInsights/insights-results-aggregator-moc
2
{"reports" {"meta" {"count" 7, "last_checked_at" "2020-05-27T14:15:35Z"}, "data" [{"tags" [], "total_risk" 1, "risk_of_change" 0, "user_vote" 0, "details" {"type" "rule", "...
28224
{"reports" {"meta" {"count" 7, "last_checked_at" "2020-05-27T14:15:35Z"}, "data" [{"tags" [], "total_risk" 1, "risk_of_change" 0, "user_vote" 0, "details" {"type" "rule", "...
true
{"reports" {"meta" {"count" 7, "last_checked_at" "2020-05-27T14:15:35Z"}, "data" [{"tags" [], "total_risk" 1, "risk_of_change" 0, "user_vote" 0, "details" {"type" "rule", "...
[ { "context": ";; Copyright (c) Nicola Mometto, Rich Hickey & contributors.\n;; The use and dis", "end": 33, "score": 0.9998555779457092, "start": 19, "tag": "NAME", "value": "Nicola Mometto" }, { "context": ";; Copyright (c) Nicola Mometto, Rich Hickey & contributors.\n;; The...
server/target/clojure/tools/analyzer/passes/jvm/annotate_branch.clj
OctavioBR/healthcheck
0
;; Copyright (c) Nicola Mometto, Rich Hickey & contributors. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this distribution. ;; By using this s...
81683
;; Copyright (c) <NAME>, <NAME> & contributors. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this distribution. ;; By using this software in an...
true
;; Copyright (c) PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI & contributors. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this distribution. ;; ...
[ { "context": "\"localhost\"\n :port \"5439\"\n :user \"postgres\"\n :password \"postgres\"})\n\n (defn eval-mut-in", "end": 3128, "score": 0.697109580039978, "start": 3120, "tag": "USERNAME", "value": "postgres" }, { "context": " \"5439\"\n :user \"postgr...
src/bxb/core.clj
KGOH/bxb
1
(ns bxb.core (:require [bxb.misc :as misc] [bxb.mutate.hmap :as hmap] [bxb.mutate.sql :as sql] [bxb.mutate.debug :as debug] [honeysql.core :as hsql] [bxb.honey])) (defn- walk-path [const-fn search-fn path] (loop [[first-p & rest-p :as path] ...
77807
(ns bxb.core (:require [bxb.misc :as misc] [bxb.mutate.hmap :as hmap] [bxb.mutate.sql :as sql] [bxb.mutate.debug :as debug] [honeysql.core :as hsql] [bxb.honey])) (defn- walk-path [const-fn search-fn path] (loop [[first-p & rest-p :as path] ...
true
(ns bxb.core (:require [bxb.misc :as misc] [bxb.mutate.hmap :as hmap] [bxb.mutate.sql :as sql] [bxb.mutate.debug :as debug] [honeysql.core :as hsql] [bxb.honey])) (defn- walk-path [const-fn search-fn path] (loop [[first-p & rest-p :as path] ...
[ { "context": "! *unchecked-math* :warn-on-boxed)\n(ns ^{:author \"John Alan McDonald\" :date \"2017-10-21\"\n :doc \"Text input.\" }\n ", "end": 105, "score": 0.999867856502533, "start": 87, "tag": "NAME", "value": "John Alan McDonald" } ]
src/main/clojure/zana/data/textin.clj
wahpenayo/zana
2
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "John Alan McDonald" :date "2017-10-21" :doc "Text input." } zana.data.textin (:require [clojure.string :as s] [clojure.pprint :as pp] [zana.commons.core :as cc] [zana.io.gz :as ...
4644
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "<NAME>" :date "2017-10-21" :doc "Text input." } zana.data.textin (:require [clojure.string :as s] [clojure.pprint :as pp] [zana.commons.core :as cc] [zana.io.gz :as gz] ...
true
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "PI:NAME:<NAME>END_PI" :date "2017-10-21" :doc "Text input." } zana.data.textin (:require [clojure.string :as s] [clojure.pprint :as pp] [zana.commons.core :as cc] [zana.io.gz :a...