Results 35 comments of wencan

好像已经没人维护了……

@WingFLY000 似乎是每次都会连接huggingface尝试下载 如果已经下载,这么不合适吧? 每次都在卡在那里

all_in_one的解压目录,和oceanbase的home目录,是同一个目录 force deploy时,部署程序清理了all_in_one目录 可重现

obd --version ``` OceanBase Deploy: 2.1.0 REVISION: a44bf47214329b0d9dcbcbed7ab827c0b6d98892 BUILD_BRANCH: HEAD BUILD_TIME: May 19 2023 10:50:39OURCE Copyright (C) 2021 OceanBase License GPLv3+: GNU GPL version 3 or later . This is...

@frf12 我看执行install.sh时,all_in_one的内容已经拷贝到用户主目录下了 执行obd,用的也是主目录下的obd文件 但是部署程序清理的是all_in_one的解压目录,没清理主目录下的all_in_one 按说,不应该file not found

这有点尴尬,我自己写代码,比对原文和分割后的列表,实现了 “还原文本”

@Tinche My current solution is the same as yours. Please try the following example: ```python d = multidict.MultiDict([("a", "111"), ("b", "2")]) obj = cattrs.structure(md_to_dict(d), Model) print(obj) ``` It will output:...

@Tinche It seems, register_structure_hook_factory can solve this problem. please review my code: ```python import dataclasses import datetime import typing import functools import cattrs import cattrs.gen import multidict @dataclasses.dataclass class Model:...