Mitsuru Kariya
Mitsuru Kariya
### Why: Since the value of `user.signingkey` is passed unchanged to gpg's `--local-user` parameter, the fingerprint needs to be suffixed with an exclamation mark (`!`). If a fingerprint is specified...
[`sprout::enabler_if`](https://github.com/bolero-MURAKAMI/Sprout/blob/master/sprout/type_traits/enabler_if.hpp#L31) を使用する場合は以下のような感じになるので、[`sprout::enabler`](https://github.com/bolero-MURAKAMI/Sprout/blob/master/sprout/type_traits/enabler_if.hpp#L25) は ODR-used になると思うのですが、[`sprout::enabler`](https://github.com/bolero-MURAKAMI/Sprout/blob/master/sprout/type_traits/enabler_if.hpp#L25) は GCC や clang では定義されません。 ``` cpp #include template void f() {} int main() { f(); } ``` ODR-used のオブジェクトが定義されていないと ill-formed になるので(ただし、no diagnostic required)、GCC や...
`recudeprint.c` By changing the output count per iteration from 15 to 30, reduce the number of `myitoa` calls from 8/15 to 3/30. (The last digit is always the same for...
Add `relabelings`/`metricRelabelings` to `ServiceMonitor` configuration
#### What this PR does / why we need it Add resources and SLIs metrics support. - [KEP-1748: Expose Pod Resource Request Metrics](https://features.k8s.io/1748) - kube-scheduler - [KEP-3466: Kubernetes Component SLIs](https://features.k8s.io/3466)...
In the current implementation, macros have their own namespaces. I think this behavior is consistent perfectly, but the common lisp has no macro's own namespaces, it shares namespaces with functions...
When a self-signed certificate is specified in `buildkitd.toml`, the current implementation registers the certificate as a `ConfigMap`, but the `volumes` and `volumeMounts` in `Deployment` are incorrect, so the `Deploymetnt` cannot...
After updating to 1.2.0, the following error message appeared and CSRs were not approved. ``` Denying kubelet-serving CSR. DNS checks failed. Reason:One of the SAN IP addresses, xxx.xxx.xxx.xxx, is not...
# Comprehensive Summary of your change Do following actions to reduce the size of the generated images. - Change `COPY` command + `chown`/`chmod` command to `COPY` command + `--chown`/`--chmod` option....
# Comprehensive Summary of your change 1. `Makefile` - Remove `-e` option since it is unnecessary when passing variables as command line arguments to `make -f make/photon/Makefile`. (The `-e` option...