quantpy
quantpy
* typical version: 2.0.1 * Python version: 3.7 * Operating System: CentOS 8 ### Description Hi, I like typical and I think it's more lightweight than pydantic. But add user...
* typical version: 2.0.17 * Python version: 3.7.4 * Operating System: ### Description Iterable can be infinitely. ```py from typing import Iterable import typic def infinite_numbers(): i = 0 while...
* typical version: 2.0.15 * Python version: 3.7.4 * Operating System: Centos ### Description Hey, @seandstewart . There's some cases which user want to define custom `transmute`: ```py import json...
* typical version: 2.0.1 * Python version: 3.7.4 * Operating System: ### Description Hey, @seandstewart . I have another feature request. For data model, there is `default_factory` which can be...
A function with `Field` parameter wrapped by `pydantic.validate_arguments`, can not been exeuted from the command line. ```py from datetime import datetime from pydantic import Field, validate_arguments @validate_arguments() def foo(dt: datetime...
Is it possible to support sequence interface (an object with `__getitem__` and `__len__`) in DMatrix without copying data.
先简单说下我的场景。我用PowerJob主要是为了工作流,实现跨机器任务依赖调度。就几台服务器,每台机器执行不同的shell脚本任务,一般不涉及多台机器同时执行同样的任务。 1、新建任务时,每次都需要复制粘贴执行器,能否提供下来菜单选择已经安装的执行器? 2、如果要在集群配置中指定执行机器地址,也需要复制粘贴,如果某个节点位置改了,就需要逐个修改任务。 3、节点能否增加标签或者别名,这样的话,如果节点地址改了,只需设置节点标签或者别称,而不涉及相关任务的修改。 4、节点在执行具体任务时,执行期间如果有输出内容,有没有可能提前获取,而不必等到任务结束(不管成功还是失败),这个想法跑题了。
**Describe the bug** 工作流中的任务需要从任务管理中导入,但导入后可以修改任务名称、任务节点、节点参数,但不会同步到原始任务去。或者原始任务修改后,工作流中的任务不会同步更新。感觉上导入过程是在做复制而不引用。这是设计缺陷 还是 有别的初衷?