Aurelian Tutuianu
Aurelian Tutuianu
You should import java.util.stream in order to make that code work. ```java import java.util.stream.*; List list = new ArrayList(); list.add(1); list.add(2); Stream stream = list.stream(); ```
https://bugs.openjdk.java.net/browse/JDK-8186876 It looks like there is a bug in JShell and it is able to load only jdk javadocs. What you can get is only the signature of the methods,...
@mrcalvin A comment related with `%open` magic: there is already a `%load` magic which loads and executes a given notebook. I use this approach to set up a notebook for...
There is none, as far as I am aware. For example DJL book site advertise also using the local gradle build on a github fork. https://github.com/awslabs/djl/blob/master/jupyter/README.md
You need the library dependency to be loaded in you jvm in order to be used. I do not know what library are you using, but on a google search...
Hi. This is because of how JShell, the Java REPL works. It has nothing to do with the notebook. Short story is that jshell splits the code in block instructions...