Seunghyun Hwang
Seunghyun Hwang
# Error ``` error: unknown argument: '-fprofile-abs-path' [clang-diagnostic-error] ``` # Environment: ```sh $ clang-11 --version Debian clang version 11.0.1-2 Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /usr/bin ``` ```sh $ g++...
- [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Current...
## Motivation There is a pitfall in existing `FromPtrOr` that fallback value must be provided even if it is expensive to create. For example, assume `SecureRandStr` that generates secure random...
fixes https://github.com/ent/ent/issues/3843
I got the same problem described in #13 in Go 1.21. These changes fix the problem. I simply updated the Go version in the `go.mod` and ran `go mod tidy`.
fixes https://github.com/ent/ent/issues/4069 I omit the check for the method "Update" because there is no way to identify given zero value is intentional.
`.EntEdge.StructField` has string value with pascal case so "Children" is stored which cannot be singulerized by the `sigular` function that only takes lower case. `.EntEdge.Name` has same string with `.EntEdge.StructField`...
These updates enable the output of generated code into another package where the pb codes (generated by `protoc-gen-go` and `protoc-gen-go-grpc`) exist. I added the following two options: - `package` Import...
- [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Current...
I understand that `reference.Named` may not contains the domain part according to its implementation. However, the function [`ParseNamed(s string) (Named, error)`](https://github.com/distribution/distribution/blob/ede90db01c18cc8c3148e227b7242ac3efba370b/reference/reference.go#L242) requires given `s` to be canonical which conatins the...