chiichen
chiichen
It seems that the dependencies of this crate all support no_std. It seems that it is possible for this crate to support no_std. Is there any hidden problem? If it...
[syzkaller](https://github.com/google/syzkaller)是一个内核模糊测试框架,文档挺丰富的,在DragonOS上跑起来可以大大提高可靠性,还不知道它的具体原理,所以有几个需要确认的点 1. DragonOS需要额外支持什么才能跑起来 2. 在DragonOS之外需要怎么搭一套测试框架来跑这个东西,希望把它作为DragonOS测试框架的一个Option,而不是一个单独的框架
希望能提供一个简单而标准化的标准化的贡献流程,我建议以`CONTRIBUTING.md`文档的形式置于根目录下,来指引开发者进行开发
## 简介 | Brief Introduction 现有的启动流程中,无法便捷的进行系统的自定义,比如在未来可能引入的测试框架中,选择是否开启某些测试、选择默认加载哪些用户程序、选择启动模式、是否开启gdb等等。现在这些都是要通过一些手动配置,或者通过make参数指定。这里我希望可以通过一种结构化的配置文件(toml会是一个不错的选择,后文会描述优点),来完整描述系统的启动行为 ## 想法 | Ideas 以下是目前设想的一套启动流程,欢迎大家在issue下讨论,基本想法是,把现有的dadk从一个用户程序加载工具,变成启动配置加载+启动命令生成+用户程序加载+测试套件(可选),把现有的`make run`系列命令,迁移为`cargo dadk run` ### 工作 | Jobs 1. 将现有dadk改写为cargo插件的形式便于集成 2. 将现有dadk 用户程序配置从json迁移为toml配置(可选) 3. 在dadk中集成启动模块,可以用dadk作为入口进入,简单理解就是把启动流程中的 make 命令替换成 cargo dadk 命令...
### System Info ```shell optimum version: 1.20.0 system: OSX X64 dependencies: sentence_transformers==2.2.2 ``` ### Who can help? @michaelbenayoun The location that throws this error is [tasks.py#L209](https://github.com/huggingface/optimum/blob/main/optimum/exporters/tasks.py#L2097). I think this error...
Added a set of methods to implement something similar to `no_default_flags` in the `cc` crate. Issue here #198
If you'd like to put out an incentive for fixing this bug, you can do so at https://issuehunt.io/r/LibVNC/libvncserver **Describe the bug** [This issue](https://github.com/Chiichen/libvnc-rs/issues/1) describes a failure while I'm trying to...
Enable uploading assets to the target release associated with the given tagName (if exist). ## TL;DR The basic motivation is that I'm using [googleapis/release-please](https://github.com/googleapis/release-please) github action to release automatically. However,...
目前项目中大量使用gcc,目前看来存在两个缺点 1. 交叉编译需要下载多个不同的gcc,而clang不需要,可以简化开发bootstrap和开发工具链维护( nix 里有的工具链不好搞) 2. clang编译速度与编译内存占用较gcc更低