Peace

Results 18 issues of Peace

这样就相当于增加了嵌入结构体的支持了 #[derive(Serialize, Deserialize)] pub struct One{ pub name: String, pub code: String, } #[derive(Serialize, Deserialize, Clone, Debug, Default, CRUDEnable)] pub struct Two { #[serde(flatten)] pub one: One, pub id: String,...

question

## Describe the feature supported the generate code, reduce the refactor code ## Motivation sample ```go func (d *DO) Updates(value interface{}) (info ResultInfo, err error) ``` to ```go func (d...

## Describe the feature add Optimisticlock in gen ## Motivation ## Related Issues

下面是运行代码: int main(){ std::list data = {5,1,2,9,100,8}; auto sorted_data = parallel_quick_sort(data); for(auto it: sorted_data ){ printf("%d", it); } } 出错信息: terminate called after throwing an instance of 'EmptyStack' what(): empty...

error message: gRPC Error (code: 14, codeName: UNAVAILABLE, message: Error connecting: HandshakeException: Connection terminated during handshake, details: null, rawResponse: null, trailers: {}) grpc: ^3.1.0 ## Repro steps ## Details

下面的代码运行不正常: import FontCarrier from 'font-carrier'; const t = FontCarrier.transfer('t.ttf'); const s = '𠀀'; const newFont = t.min(s); newFont.get(s) === undefined; 出错的原因在函中 function toUnicode(str) { var uArray = [] var u...

advice as follow: func addPrivKeys(k1, k2 []byte) []byte { i1 := big.NewInt(0).SetBytes(k1) i2 := big.NewInt(0).SetBytes(k2) i1.Add(i1, i2) i1.Mod(i1, curve.Params().N) k := i1.Bytes() k = append(make([]byte, 33 - len(k)), k...) return...