pods: TCP_NODELAY
This commit is contained in:
parent
9566a7d1f1
commit
1631349fb6
2 changed files with 9 additions and 5 deletions
2
pods
2
pods
|
|
@ -1 +1 @@
|
||||||
Subproject commit 8bc0852799c7ae36ade12bacb7c6ede2fc91c6dc
|
Subproject commit 53f79da09d5da542204f3cb0161724221276dfcb
|
||||||
|
|
@ -147,7 +147,8 @@
|
||||||
:parameterTypes ["org.hsqldb.Database"]}]}
|
:parameterTypes ["org.hsqldb.Database"]}]}
|
||||||
`java.util.ResourceBundle
|
`java.util.ResourceBundle
|
||||||
{:methods [{:name "getBundle"
|
{:methods [{:name "getBundle"
|
||||||
:parameterTypes ["java.lang.String","java.util.Locale","java.lang.ClassLoader"]}]})))
|
:parameterTypes ["java.lang.String","java.util.Locale",
|
||||||
|
"java.lang.ClassLoader"]}]})))
|
||||||
|
|
||||||
(def java-net-http-classes
|
(def java-net-http-classes
|
||||||
"These classes must be initialized at run time since GraalVM 22.1"
|
"These classes must be initialized at run time since GraalVM 22.1"
|
||||||
|
|
@ -536,7 +537,8 @@
|
||||||
clojure.lang.Sequential
|
clojure.lang.Sequential
|
||||||
clojure.lang.Seqable
|
clojure.lang.Seqable
|
||||||
clojure.lang.Volatile
|
clojure.lang.Volatile
|
||||||
;; the only way to check if something is a channel is to call instance? on this...
|
;; the only way to check if something is a channel is to
|
||||||
|
;; call instance? on this...
|
||||||
clojure.core.async.impl.channels.ManyToManyChannel
|
clojure.core.async.impl.channels.ManyToManyChannel
|
||||||
java.lang.AbstractMethodError
|
java.lang.AbstractMethodError
|
||||||
java.lang.ExceptionInInitializerError
|
java.lang.ExceptionInInitializerError
|
||||||
|
|
@ -628,7 +630,8 @@
|
||||||
|
|
||||||
|
|
||||||
(def class-map*
|
(def class-map*
|
||||||
"This contains mapping of symbol to class of all classes that are allowed to be initialized at build time."
|
"This contains mapping of symbol to class of all classes that are
|
||||||
|
allowed to be initialized at build time."
|
||||||
(gen-class-map))
|
(gen-class-map))
|
||||||
|
|
||||||
(def class-map
|
(def class-map
|
||||||
|
|
@ -724,7 +727,8 @@
|
||||||
(let [all-entries (reflection-file-entries)]
|
(let [all-entries (reflection-file-entries)]
|
||||||
(spit (or
|
(spit (or
|
||||||
(first args)
|
(first args)
|
||||||
"resources/META-INF/native-image/babashka/babashka/reflect-config.json") (json/generate-string all-entries {:pretty true}))))
|
"resources/META-INF/native-image/babashka/babashka/reflect-config.json")
|
||||||
|
(json/generate-string all-entries {:pretty true}))))
|
||||||
|
|
||||||
(defn public-declared-method? [c m]
|
(defn public-declared-method? [c m]
|
||||||
(and (= c (.getDeclaringClass m))
|
(and (= c (.getDeclaringClass m))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue