05 2022 档案

摘要:https://programming.guide/normal-vs-subnormal-floats.html int __fpclassifyf(float x) { union {float f; uint32_t i;} u = {x}; int e = u.i>>23 & 0xff; i 阅读全文
posted @ 2022-05-30 14:09 zJanly 阅读(858) 评论(0) 推荐(0) 编辑
摘要:https://github.com/rcore-os/os-lectures 阅读全文
posted @ 2022-05-30 10:17 zJanly 阅读(8) 评论(0) 推荐(0) 编辑
摘要:ip https://blog.csdn.net/Wu000999/article/details/88617237 在计算机网络中,当主机通过适配器接收到一个MAC帧的时候,会先用硬件检测MAC帧中的目的地址。如果是发往本站的帧则收下,若否则丢失。一般,接收到的MAC帧有以下三种: 单播帧(一对一 阅读全文
posted @ 2022-05-26 17:09 zJanly 阅读(398) 评论(0) 推荐(0) 编辑
摘要:github.com/lucas-clemente/quic-go https://pkg.go.dev/github.com/lucas-clemente/quic-go/http3 阅读全文
posted @ 2022-05-26 10:15 zJanly 阅读(106) 评论(0) 推荐(0) 编辑
摘要:Go gRPC使用demo 准备工作: 1. 安装protobuf 编译环境 https://github.com/protocolbuffers/protobuf/releases 2. 安装go语言的protobuf代码转换工具protoc-gen-go go get -u github.com 阅读全文
posted @ 2022-05-23 14:49 zJanly 阅读(38) 评论(0) 推荐(0) 编辑
摘要:安装NVIDIA驱动时禁用自带nouveau驱动 lsmod |grep nouveau https://blog.csdn.net/wf19930209/article/details/81877822?utm_medium=distribute.pc_relevant.none-task-blo 阅读全文
posted @ 2022-05-21 06:59 zJanly 阅读(72) 评论(0) 推荐(0) 编辑
摘要:.global _ff_ff: movl $0x7fffffff, %eax movl $-2, %ebx xorl %ecx, %ecx xorl %edx, %edx imull %ebx ret.global _fe_fe: movl $1, %eax movl $1, %edx movl $ 阅读全文
posted @ 2022-05-18 11:31 zJanly 阅读(18) 评论(0) 推荐(0) 编辑
摘要:在go程序中调用c语言代码的场景中,有时候会出现more stack on g0的错误,这个错误十分常见,比如下面这个程序就可以触发。 /*static int increase(int a) { return goIncrease(a++);}*/import "C"func main() { g 阅读全文
posted @ 2022-05-12 16:18 zJanly 阅读(707) 评论(0) 推荐(1) 编辑
摘要:https://blog.csdn.net/weixin_43871182/article/details/104788143 阅读全文
posted @ 2022-05-11 10:48 zJanly 阅读(4) 评论(0) 推荐(0) 编辑
摘要:https://github.com/aminueza/sgx-docker in the container: git clone https://github.com/intel/linux-sgx.git apt-get install build-essential ocaml ocamlb 阅读全文
posted @ 2022-05-07 10:55 zJanly 阅读(267) 评论(0) 推荐(0) 编辑
摘要:yum install gcc yum install gcc-c++ scl enable devtoolset-8 bash https://github.com/ocaml/ocamlbuild clone make configure makemake install yum install 阅读全文
posted @ 2022-05-07 10:55 zJanly 阅读(40) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示