Last active
May 30, 2021 20:11
-
-
Save mattwelke/b826907a1ff65645dcecad3e214b2e4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── CONTRIBUTING.md | |
├── LICENSE.txt | |
├── NOTICE.txt | |
├── README.md | |
├── build.gradle | |
├── core | |
│ ├── java8 | |
│ │ ├── CHANGELOG.md | |
│ │ ├── Dockerfile | |
│ │ ├── build.gradle | |
│ │ ├── delete-build-run.sh | |
│ │ └── proxy | |
│ │ ├── build.gradle | |
│ │ ├── compileClassCache.sh | |
│ │ ├── gradle | |
│ │ │ └── wrapper | |
│ │ │ ├── gradle-wrapper.jar | |
│ │ │ └── gradle-wrapper.properties | |
│ │ ├── gradlew | |
│ │ ├── gradlew.bat | |
│ │ └── src | |
│ │ └── main | |
│ │ └── java | |
│ │ └── org | |
│ │ └── apache | |
│ │ └── openwhisk | |
│ │ └── runtime | |
│ │ └── java | |
│ │ └── action | |
│ │ ├── JarLoader.java | |
│ │ ├── Proxy.java | |
│ │ └── WhiskSecurityManager.java | |
│ └── java8actionloop | |
│ ├── CHANGELOG.md | |
│ ├── Dockerfile | |
│ ├── Makefile | |
│ ├── bin | |
│ │ └── compile | |
│ ├── build.gradle | |
│ └── lib | |
│ └── src | |
│ └── Launcher.java | |
├── gradle | |
│ ├── README.md | |
│ ├── docker.gradle | |
│ └── wrapper | |
│ ├── gradle-wrapper.jar | |
│ └── gradle-wrapper.properties | |
├── gradlew | |
├── gradlew.bat | |
├── settings.gradle | |
├── tests | |
│ ├── build.gradle | |
│ └── src | |
│ └── test | |
│ ├── resources | |
│ │ └── application.conf | |
│ └── scala | |
│ └── actionContainers | |
│ ├── JavaActionContainerTests.scala | |
│ ├── JavaActionLoopContainerTests.scala | |
│ └── JavaActionLoopSourceTests.scala | |
└── tools | |
├── invoke.py | |
└── travis | |
├── build.sh | |
├── publish.sh | |
├── setup.sh | |
└── test.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment