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
阅读全文
摘要:https://github.com/rcore-os/os-lectures
阅读全文
摘要:ip https://blog.csdn.net/Wu000999/article/details/88617237 在计算机网络中,当主机通过适配器接收到一个MAC帧的时候,会先用硬件检测MAC帧中的目的地址。如果是发往本站的帧则收下,若否则丢失。一般,接收到的MAC帧有以下三种: 单播帧(一对一
阅读全文
摘要:github.com/lucas-clemente/quic-go https://pkg.go.dev/github.com/lucas-clemente/quic-go/http3
阅读全文
摘要:Go gRPC使用demo 准备工作: 1. 安装protobuf 编译环境 https://github.com/protocolbuffers/protobuf/releases 2. 安装go语言的protobuf代码转换工具protoc-gen-go go get -u github.com
阅读全文
摘要:安装NVIDIA驱动时禁用自带nouveau驱动 lsmod |grep nouveau https://blog.csdn.net/wf19930209/article/details/81877822?utm_medium=distribute.pc_relevant.none-task-blo
阅读全文
摘要:.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 $
阅读全文
摘要:在go程序中调用c语言代码的场景中,有时候会出现more stack on g0的错误,这个错误十分常见,比如下面这个程序就可以触发。 /*static int increase(int a) { return goIncrease(a++);}*/import "C"func main() { g
阅读全文
摘要:https://blog.csdn.net/weixin_43871182/article/details/104788143
阅读全文
摘要: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
阅读全文
摘要:yum install gcc yum install gcc-c++ scl enable devtoolset-8 bash https://github.com/ocaml/ocamlbuild clone make configure makemake install yum install
阅读全文