-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
47 lines (39 loc) · 2.6 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Even - A super concise theme for Hugo</title>
<link>http://ywdxz.github.io/</link>
<description>Recent content on Even - A super concise theme for Hugo</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Thu, 17 Dec 2020 14:10:03 +0800</lastBuildDate><atom:link href="http://ywdxz.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>redis 源码 内部数据结构</title>
<link>http://ywdxz.github.io/post/2020-12-17-1/</link>
<pubDate>Thu, 17 Dec 2020 14:10:03 +0800</pubDate>
<guid>http://ywdxz.github.io/post/2020-12-17-1/</guid>
<description>redis - 动态字符串 sdshdr 数据结构 1 2 3 4 5 6 7 8 9 10 11 12 13 struct sdshdr { // buf 已占用长度 int len; // buf 剩余可用长度 int free; // 实际保存字符串数据的地方 // 利用c99(C99</description>
</item>
<item>
<title>关于math.NaN() 问题记录</title>
<link>http://ywdxz.github.io/post/2020-12-11-3/</link>
<pubDate>Fri, 11 Dec 2020 14:40:49 +0800</pubDate>
<guid>http://ywdxz.github.io/post/2020-12-11-3/</guid>
<description>问题 看 map 源码看到一个测试case,为什么 k == k 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 func testMapNan(t *testing.T, m map[float64]int) { if len(m) != 3 { t.Error(&#34;length wrong&#34;) } s := 0</description>
</item>
<item>
<title>环境变量整理</title>
<link>http://ywdxz.github.io/post/2020-12-11-1/</link>
<pubDate>Fri, 11 Dec 2020 11:38:25 +0800</pubDate>
<guid>http://ywdxz.github.io/post/2020-12-11-1/</guid>
<description>经常会用到需要手工设置linux环境变量的情况,每次都是google一下,这边把结果整理一下作为知识储备。 临时设置 直接执行 export GOBACTRA</description>
</item>
<item>
<title>浮点数整理</title>
<link>http://ywdxz.github.io/post/2020-12-11-2/</link>
<pubDate>Mon, 30 Nov 2020 23:18:10 +0800</pubDate>
<guid>http://ywdxz.github.io/post/2020-12-11-2/</guid>
<description>标准 根据国际标准IEEE 754,任意一个二进制浮点数可以表示成下面科学计数的形式: 1 value = (-1)^sign * fraction * 2^exponent 内存布局 1 2 3 ----------------------- | sign|exponent|fraction| ----------------------- sign 符号位,1 byte</description>
</item>
</channel>
</rss>