Takeo Sawada
Takeo Sawada
I would like to run a precompiled binary that depends on precompiled `.so` libraries distributed together. I tried putting it in runfiles via `data` dependency using `filegroup(srcs = ["*.so"])` but...
### Preflight Checklist - [X] I agree to follow the [Code of Conduct](https://github.com/dexidp/dex/blob/master/.github/CODE_OF_CONDUCT.md) that this project adheres to. - [X] I have searched the [issue tracker](https://www.github.com/dexidp/dex/issues) for an issue that...
It'd be great if `java_export` can push to `artifactregistry://`, in addition to S3 (#545) and GCS(#458) https://github.com/GoogleCloudPlatform/artifact-registry-maven-tools
``` $ bazel build --worker_sandboxing //examples/simple:ts ... ERROR: examples/simple/BUILD.bazel:15:11: Compiling TypeScript project //examples/simple:ts [tsc -p examples/simple/tsconfig.json] failed: (Exit 1): tsc_worker.sh failed: error executing command bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/npm_typescript/tsc_worker.sh @bazel-out/darwin_arm64-fastbuild/bin/examples/simple/foo.js-0.params error TS2688: Cannot find...
``` $ curl -s https://jitpack.io/com/github/lzyzsd/circleprogress/1.2.1/circleprogress-1.2.1.aar | sha1sum eba204ef7eb75c26ae9a0eef979782a67a21999b - $ curl https://jitpack.io/com/github/lzyzsd/circleprogress/1.2.1/circleprogress-1.2.1.aar.sha1 8a5df8d876a5fc8e210894c481ce25351a26ad53% ``` md5 also differs for circleprogress-1.2.1.aar. This makes the package unusable when checksum verification is turned on,...
Currently, setup-java requires `distribution` field. However, one can specify a distribution in `.java-version` thus the distribution input field can be redundant or even confusing when these two disagree. It'd be...
# Pull Request Checklist * [ ] Have you read [How to write the perfect pull request](https://github.blog/2015-01-21-how-to-write-the-perfect-pull-request/)? * [x] Have you read through the [contributor guidelines](https://www.playframework.com/contributing)? * [ ] Have...
I am not well-versed in the HTTP standards but I find some CDNs do the following: * Do not compress when `Cache-Control: no-transform`. I'm sure Play should follow this. *...
I propose enhancing the routes compiler by adding support for type parameters. For example, consider the following controller: ```scala trait MyBackend { def doSomething(req: Request) } class MyBackendWithMySQL extends MyBackend...