├── .asf.yaml ├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGES.md ├── CONTRIBUTING.md ├── CREDITS.txt ├── LICENSE-testify.txt ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── actionloop ├── Dockerfile └── build.gradle ├── common ├── gobuild.py └── gobuild.py.launcher.go ├── docs ├── ACTION.md ├── BUILD.md ├── DEPLOY.md └── ENVVARS.md ├── examples ├── EXAMPLES.md ├── Makefile ├── aws-main │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── bash │ ├── Makefile │ └── hello.sh ├── module-main │ ├── Makefile │ ├── go.mod │ ├── go.sum │ └── main.go ├── package-main │ ├── Makefile │ ├── go.mod │ ├── hello │ │ ├── go.mod │ │ ├── hello.go │ │ └── hello_test.go │ └── main.go ├── single-hello │ ├── Makefile │ └── hello.go ├── single-main │ ├── Makefile │ └── main.go ├── standalone │ ├── Makefile │ └── exec.go └── test.expected ├── go.mod ├── go.sum ├── golang1.22 ├── Dockerfile ├── Makefile ├── bin │ └── compile ├── build.gradle └── lib │ └── launcher.go ├── golang1.23 ├── Dockerfile ├── Makefile ├── bin │ └── compile ├── build.gradle └── lib │ └── launcher.go ├── golang1.24 ├── Dockerfile ├── Makefile ├── bin │ └── compile ├── build.gradle └── lib │ └── launcher.go ├── gradle ├── README.md ├── docker.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── licenses └── LICENSE-testify.txt ├── main └── proxy.go ├── openwhisk ├── _test │ ├── action │ │ ├── .gitignore │ │ ├── hello.go │ │ ├── hello_test.go │ │ └── main.go │ ├── badack.sh │ ├── badack2.sh │ ├── badcompile.sh │ ├── bc.sh │ ├── build.sh │ ├── compile.py │ ├── dir │ │ └── etc │ ├── env.sh │ ├── error.src │ ├── etc │ ├── exec.src │ ├── find.sh │ ├── first │ │ └── 3 │ │ │ └── .gitkeep │ ├── hello.sh │ ├── hello.src │ ├── hello │ │ └── hello.go │ ├── hello1.src │ ├── hello2.src │ ├── hello_greeting.src │ ├── hello_message.src │ ├── helloack │ │ └── exec │ ├── hi.src │ ├── jar │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── hello.txt │ ├── postcompile.sh │ ├── precompile.sh │ ├── pysample │ │ ├── exec │ │ └── lib │ │ │ ├── action │ │ │ ├── __init__.py │ │ │ └── main.py │ │ │ └── exec.py │ ├── second │ │ ├── 3 │ │ │ └── .gitkeep │ │ ├── 8 │ │ │ └── .gitkeep │ │ └── 17 │ │ │ └── .gitkeep │ ├── src │ │ ├── hello │ │ │ └── hello.go │ │ └── main.go │ └── zips.sh ├── actionProxy.go ├── actionProxy_test.go ├── compiler.go ├── compiler_test.go ├── debug.go ├── executor.go ├── executor_test.go ├── extractor.go ├── extractor_test.go ├── filetype.go ├── filetype_test.go ├── initHandler.go ├── initHandler_test.go ├── runHandler.go ├── tar.go ├── util_test.go ├── version.go ├── zip.go └── zip_test.go ├── settings.gradle └── tests ├── build.gradle └── src └── test └── scala └── runtime └── actionContainers ├── ActionLoopBasicGo22Tests.scala ├── ActionLoopBasicGo23Tests.scala ├── ActionLoopBasicGo24Tests.scala ├── ActionLoopBasicGoTests.scala ├── ActionLoopBasicTests.scala ├── ActionLoopContainerTests.scala ├── ActionLoopGo22ContainerTests.scala ├── ActionLoopGo23ContainerTests.scala ├── ActionLoopGo24ContainerTests.scala ├── ActionLoopGoContainerTests.scala └── GoResourceHelpers.scala /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE-testify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/LICENSE-testify.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/README.md -------------------------------------------------------------------------------- /actionloop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/actionloop/Dockerfile -------------------------------------------------------------------------------- /actionloop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/actionloop/build.gradle -------------------------------------------------------------------------------- /common/gobuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/common/gobuild.py -------------------------------------------------------------------------------- /common/gobuild.py.launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/common/gobuild.py.launcher.go -------------------------------------------------------------------------------- /docs/ACTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/docs/ACTION.md -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/docs/DEPLOY.md -------------------------------------------------------------------------------- /docs/ENVVARS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/docs/ENVVARS.md -------------------------------------------------------------------------------- /examples/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/EXAMPLES.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/aws-main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/aws-main/Makefile -------------------------------------------------------------------------------- /examples/aws-main/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/aws-main/go.mod -------------------------------------------------------------------------------- /examples/aws-main/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/aws-main/go.sum -------------------------------------------------------------------------------- /examples/aws-main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/aws-main/main.go -------------------------------------------------------------------------------- /examples/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/bash/Makefile -------------------------------------------------------------------------------- /examples/bash/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/bash/hello.sh -------------------------------------------------------------------------------- /examples/module-main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/module-main/Makefile -------------------------------------------------------------------------------- /examples/module-main/go.mod: -------------------------------------------------------------------------------- 1 | module action 2 | 3 | go 1.20 4 | 5 | require github.com/rs/zerolog v1.19.0 6 | -------------------------------------------------------------------------------- /examples/module-main/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/module-main/go.sum -------------------------------------------------------------------------------- /examples/module-main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/module-main/main.go -------------------------------------------------------------------------------- /examples/package-main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/package-main/Makefile -------------------------------------------------------------------------------- /examples/package-main/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/package-main/go.mod -------------------------------------------------------------------------------- /examples/package-main/hello/go.mod: -------------------------------------------------------------------------------- 1 | module hello 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /examples/package-main/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/package-main/hello/hello.go -------------------------------------------------------------------------------- /examples/package-main/hello/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/package-main/hello/hello_test.go -------------------------------------------------------------------------------- /examples/package-main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/package-main/main.go -------------------------------------------------------------------------------- /examples/single-hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/single-hello/Makefile -------------------------------------------------------------------------------- /examples/single-hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/single-hello/hello.go -------------------------------------------------------------------------------- /examples/single-main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/single-main/Makefile -------------------------------------------------------------------------------- /examples/single-main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/single-main/main.go -------------------------------------------------------------------------------- /examples/standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/standalone/Makefile -------------------------------------------------------------------------------- /examples/standalone/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/standalone/exec.go -------------------------------------------------------------------------------- /examples/test.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/examples/test.expected -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/go.sum -------------------------------------------------------------------------------- /golang1.22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.22/Dockerfile -------------------------------------------------------------------------------- /golang1.22/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.22/Makefile -------------------------------------------------------------------------------- /golang1.22/bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.22/bin/compile -------------------------------------------------------------------------------- /golang1.22/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.22/build.gradle -------------------------------------------------------------------------------- /golang1.22/lib/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.22/lib/launcher.go -------------------------------------------------------------------------------- /golang1.23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.23/Dockerfile -------------------------------------------------------------------------------- /golang1.23/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.23/Makefile -------------------------------------------------------------------------------- /golang1.23/bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.23/bin/compile -------------------------------------------------------------------------------- /golang1.23/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.23/build.gradle -------------------------------------------------------------------------------- /golang1.23/lib/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.23/lib/launcher.go -------------------------------------------------------------------------------- /golang1.24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.24/Dockerfile -------------------------------------------------------------------------------- /golang1.24/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.24/Makefile -------------------------------------------------------------------------------- /golang1.24/bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.24/bin/compile -------------------------------------------------------------------------------- /golang1.24/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.24/build.gradle -------------------------------------------------------------------------------- /golang1.24/lib/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/golang1.24/lib/launcher.go -------------------------------------------------------------------------------- /gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradle/README.md -------------------------------------------------------------------------------- /gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradle/docker.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/gradlew.bat -------------------------------------------------------------------------------- /licenses/LICENSE-testify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/licenses/LICENSE-testify.txt -------------------------------------------------------------------------------- /main/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/main/proxy.go -------------------------------------------------------------------------------- /openwhisk/_test/action/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/action/.gitignore -------------------------------------------------------------------------------- /openwhisk/_test/action/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/action/hello.go -------------------------------------------------------------------------------- /openwhisk/_test/action/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/action/hello_test.go -------------------------------------------------------------------------------- /openwhisk/_test/action/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/action/main.go -------------------------------------------------------------------------------- /openwhisk/_test/badack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/badack.sh -------------------------------------------------------------------------------- /openwhisk/_test/badack2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/badack2.sh -------------------------------------------------------------------------------- /openwhisk/_test/badcompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/badcompile.sh -------------------------------------------------------------------------------- /openwhisk/_test/bc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/bc.sh -------------------------------------------------------------------------------- /openwhisk/_test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/build.sh -------------------------------------------------------------------------------- /openwhisk/_test/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/compile.py -------------------------------------------------------------------------------- /openwhisk/_test/dir/etc: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /openwhisk/_test/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/env.sh -------------------------------------------------------------------------------- /openwhisk/_test/error.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/error.src -------------------------------------------------------------------------------- /openwhisk/_test/etc: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /openwhisk/_test/exec.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/exec.src -------------------------------------------------------------------------------- /openwhisk/_test/find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/find.sh -------------------------------------------------------------------------------- /openwhisk/_test/first/3/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /openwhisk/_test/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello.sh -------------------------------------------------------------------------------- /openwhisk/_test/hello.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello.src -------------------------------------------------------------------------------- /openwhisk/_test/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello/hello.go -------------------------------------------------------------------------------- /openwhisk/_test/hello1.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello1.src -------------------------------------------------------------------------------- /openwhisk/_test/hello2.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello2.src -------------------------------------------------------------------------------- /openwhisk/_test/hello_greeting.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello_greeting.src -------------------------------------------------------------------------------- /openwhisk/_test/hello_message.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hello_message.src -------------------------------------------------------------------------------- /openwhisk/_test/helloack/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/helloack/exec -------------------------------------------------------------------------------- /openwhisk/_test/hi.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/hi.src -------------------------------------------------------------------------------- /openwhisk/_test/jar/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/jar/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /openwhisk/_test/jar/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/jar/hello.txt -------------------------------------------------------------------------------- /openwhisk/_test/postcompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/postcompile.sh -------------------------------------------------------------------------------- /openwhisk/_test/precompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/precompile.sh -------------------------------------------------------------------------------- /openwhisk/_test/pysample/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/pysample/exec -------------------------------------------------------------------------------- /openwhisk/_test/pysample/lib/action/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/pysample/lib/action/__init__.py -------------------------------------------------------------------------------- /openwhisk/_test/pysample/lib/action/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/pysample/lib/action/main.py -------------------------------------------------------------------------------- /openwhisk/_test/pysample/lib/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/pysample/lib/exec.py -------------------------------------------------------------------------------- /openwhisk/_test/second/17/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /openwhisk/_test/second/3/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /openwhisk/_test/second/8/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /openwhisk/_test/src/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/src/hello/hello.go -------------------------------------------------------------------------------- /openwhisk/_test/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/src/main.go -------------------------------------------------------------------------------- /openwhisk/_test/zips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/_test/zips.sh -------------------------------------------------------------------------------- /openwhisk/actionProxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/actionProxy.go -------------------------------------------------------------------------------- /openwhisk/actionProxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/actionProxy_test.go -------------------------------------------------------------------------------- /openwhisk/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/compiler.go -------------------------------------------------------------------------------- /openwhisk/compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/compiler_test.go -------------------------------------------------------------------------------- /openwhisk/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/debug.go -------------------------------------------------------------------------------- /openwhisk/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/executor.go -------------------------------------------------------------------------------- /openwhisk/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/executor_test.go -------------------------------------------------------------------------------- /openwhisk/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/extractor.go -------------------------------------------------------------------------------- /openwhisk/extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/extractor_test.go -------------------------------------------------------------------------------- /openwhisk/filetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/filetype.go -------------------------------------------------------------------------------- /openwhisk/filetype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/filetype_test.go -------------------------------------------------------------------------------- /openwhisk/initHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/initHandler.go -------------------------------------------------------------------------------- /openwhisk/initHandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/initHandler_test.go -------------------------------------------------------------------------------- /openwhisk/runHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/runHandler.go -------------------------------------------------------------------------------- /openwhisk/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/tar.go -------------------------------------------------------------------------------- /openwhisk/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/util_test.go -------------------------------------------------------------------------------- /openwhisk/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/version.go -------------------------------------------------------------------------------- /openwhisk/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/zip.go -------------------------------------------------------------------------------- /openwhisk/zip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/openwhisk/zip_test.go -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/settings.gradle -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo22Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo22Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo23Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo23Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo24Tests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGo24Tests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGoTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopBasicGoTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopBasicTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopBasicTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopGo22ContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopGo22ContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopGo23ContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopGo23ContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopGo24ContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopGo24ContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/ActionLoopGoContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/ActionLoopGoContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/GoResourceHelpers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-go/HEAD/tests/src/test/scala/runtime/actionContainers/GoResourceHelpers.scala --------------------------------------------------------------------------------