Download the files
Files starting with subpackage_ must be stored in the subpackage folder
The resulting files tree should look like
$ find
.
./myapp
./myapp/__init__.py
Download the files
Files starting with subpackage_ must be stored in the subpackage folder
The resulting files tree should look like
$ find
.
./myapp
./myapp/__init__.py
| package com.example; | |
| import org.junit.Test; | |
| import java.util.concurrent.CompletableFuture; | |
| public class ThreadLocalTest { | |
| @Test | |
| public void name() { |
| TMP=`mktemp` | |
| tail -n +2 $@ >> $TMP | |
| echo "/exit" >> $TMP | |
| $JAVA_HOME/bin/jshell -q --execution local $TMP | |
| rm $TMP | |
| #put this file in /usr/local/bin/ or somewhere in your $PATH |
| parser = require("../connection/parser") | |
| OperationTypes = require("./operation_types") | |
| class Shutdown | |
| read: (data, callback) -> | |
| status = data.readUInt8(0) | |
| if status | |
| callback(data) | |
| return |