Xiaoyao Qian
Xiaoyao Qian
Changes: 1. When instance resource requirement map is partially set, those without a specific resource allocation will no longer divide the remaining container resource. Instead, they will be allocated with...
## Problem Description I have a use case where I have a `@ComputedAttribute` getter in the model, and it return a private transient field which should be set by something...
I came across this use case where I want to index models to [Elasticsearch](https://github.com/elastic/elasticsearch) after they are created and saved(through POST/PUT/PATCH) , so that they can be exposed with richer...
It came up to me that I have a couple of boolean fields in a model with name like `isDeleted`. I could annotate the field/getter with `@Column(name = "isDeleted")` so...