-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
575 lines (400 loc) · 21.5 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
<!doctype html>
<html lang="zh-CN">
<head>
<meta name="generator" content="Hugo 0.76.0-DEV" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer-when-downgrade">
<title>听雪者的博客 | 你知道的越多,你知道不知道的就越多</title>
<meta property="og:title" content="听雪者的博客 | 你知道的越多,你知道不知道的就越多">
<meta property="og:type" content="website">
<meta name="Keywords" content="golang,go语言,go语言笔记,区块链">
<meta name="description" content="专注于IT互联网,包括但不限于Go语言(golang)、C、C++、软件架构等">
<meta property="og:url" content="https://cyberwave.github.io/">
<link rel="shortcut icon" href='/favicon.ico' type="image/x-icon">
<link rel="stylesheet" href='/css/normalize.css'>
<link rel="stylesheet" href='/css/style.css'>
<link rel="alternate" type="application/rss+xml+xml" href="https://cyberwave.github.io/index.xml" title="听雪者的博客" />
<script type="text/javascript" src="//cdn.bootcdn.net/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href='/css/douban.css'>
<link rel="stylesheet" href='/css/other.css'>
</head>
<body>
<header id="header" class="clearfix">
<div class="container">
<div class="col-group">
<div class="site-name ">
<h1>
<a id="logo" href="https://cyberwave.github.io">
听雪者的博客
</a>
</h1>
<p class="description">你知道的越多,你知道不知道的就越多</p>
</div>
<div>
<nav id="nav-menu" class="clearfix">
<a class="current" href="https://cyberwave.github.io">首页</a>
<a href="https://cyberwave.github.io/tools/" title="工具">工具</a>
<a href="https://cyberwave.github.io/archives/" title="归档">归档</a>
<a href="https://cyberwave.github.io/about/" title="关于">关于</a>
</nav>
</div>
</div>
</div>
</header>
<div id="body">
<div class="container">
<div class="col-group">
<div class="col-8" id="main">
<div class="res-cons">
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-3-gc-pacing/" title="Go语言的垃圾回收 第三部分 GC速度">Go语言的垃圾回收 第三部分 GC速度</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月21日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
[原文] Garbage Collection In Go : Part III - GC Pacing 锲子 这是由三部分构成的系列中的第二篇,它将提供Go语言垃圾回收背后的语义和机制的理解。这篇文章重点介绍GC如何自……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-3-gc-pacing/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-2-gc-traces/" title="Go语言的垃圾回收:第二部分 GC追踪">Go语言的垃圾回收:第二部分 GC追踪</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月21日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
[原文] Garbage Collection In Go : Part II - GC Traces 锲子 这是由三部分构成的系列中的第二篇,它将提供Go语言垃圾回收背后的语义和机制的理解。这篇文章重点介绍如何生成G……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-2-gc-traces/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-1-semantics/" title="Go语言的垃圾回收:第一部分 语义">Go语言的垃圾回收:第一部分 语义</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月20日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
[原文] Garbage Collection In Go : Part I - Semantics 锲子 这是由三部分构成的系列中的第一篇,它将提供Go语言垃圾回收背后的语义和机制的理解。这篇文章重点介绍有关收集者语……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-1-semantics/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-design-philosophy-data-and-semantics/" title="数据和语义的设计哲学">数据和语义的设计哲学</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月20日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
原文 Design Philosophy On Data And Semantics 楔子 这是一个由四部分组成的系列文章的终结篇,该系列文章将提供对Go中指针,栈,堆,逃逸分析和值/指针语法背后设计和机制的理解……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/Language-mechanics-design-philosophy-data-and-semantics/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-memory-profiling/" title="内存剖析的语言机制">内存剖析的语言机制</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月19日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
楔子 这是一个由四部分组成的系列文章的第三篇,该系列文章将提供对Go中指针,栈,堆,逃逸分析和值/指针语法背后设计和机制的理解。这篇文章主要关……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-memory-profiling/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-escape-analysis/" title="逃逸分析的语言机制">逃逸分析的语言机制</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月19日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
楔子 这是一个由四部分组成的系列文章的第二篇,该系列文章将提供对Go中指针,栈,堆,逃逸分析和值/指针语法背后设计和机制的理解。这篇文章主要关……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-escape-analysis/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-stacks-and-pointers/" title="栈和指针的语言机制">栈和指针的语言机制</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年4月19日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
楔子 这是一个由四部分组成的系列文章的第一篇,该系列文章将提供对Go中指针、堆栈、堆、转义分析和值/指针语义背后的机制和设计的理解。这篇文章主……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-stacks-and-pointers/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/2fa-auth-of-go/" title="2fa 双因素认证的Go实现">2fa 双因素认证的Go实现</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年3月3日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
什么是2fa? 2fa,即 two-factor authentication,双因素认证。在登录网站及计算机系统时,使用两个不同的认证因素来证明自己。双因素认证依……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/2fa-auth-of-go/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/go-known-network-collection/" title="Go知识网站集合">Go知识网站集合</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年3月1日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
语言规范 Close Channels Gracefully in Golang: 如何优雅地关闭channel? Compile-time assertions in Go: 编译时断言 Why are slices sometimes altered when passed by value in Go?: Go不是按值传递么,怎么slice传入后被更改了呢?……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/go-known-network-collection/">阅读全文</a></p>
</article>
<article class="post">
<header>
<h1 class="post-title">
<a href="https://cyberwave.github.io/post/Go-work-stealing-scheduler/" title="Go语言调度器的工作窃取">Go语言调度器的工作窃取</a>
</h1>
</header>
<date class="post-meta meta-date">
2021年3月1日
</date>
<div class="post-meta">
<span>|</span>
<span class="meta-category"><a href='/categories/golang'>golang</a></span>
</div>
<div class="post-content">
[译] Go’s work-stealing scheduler Go调度器的工作是在一个或多个处理器上运行的多个工作者OS线程上分发可运行的goroutine。在多线程计算中,调度中出现了两种……
</div>
<p class="readmore"><a href="https://cyberwave.github.io/post/Go-work-stealing-scheduler/">阅读全文</a></p>
</article>
<ol class="page-navigator">
<li class="current">
<a href="https://cyberwave.github.io/">1</a>
</li>
<li >
<a href="https://cyberwave.github.io/page/2/">2</a>
</li>
<li >
<a href="https://cyberwave.github.io/page/3/">3</a>
</li>
<li class="next">
<a href="https://cyberwave.github.io/page/2/">下一页</a>
</li>
</ol>
</div>
<footer id="footer">
<div>
© 2021 <a href="https://cyberwave.github.io">听雪者的博客 By 听雪者</a>
</div>
<br />
<div>
<div class="github-badge">
<a href="https://gohugo.io/" target="_black" rel="nofollow"><span class="badge-subject">Powered by</span><span class="badge-value bg-blue">Hugo</span></a>
</div>
<div class="github-badge">
<a href="https://www.flysnow.org/" target="_black"><span class="badge-subject">Design by</span><span class="badge-value bg-brightgreen">飞雪无情</span></a>
</div>
<div class="github-badge">
<a href="https://github.com/flysnow-org/maupassant-hugo" target="_black"><span class="badge-subject">Theme</span><span class="badge-value bg-yellowgreen">Maupassant</span></a>
</div>
</div>
</footer>
<a id="rocket" href="#top"></a>
<script type="text/javascript" src='/js/totop.js?v=0.0.0' async=""></script>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'GA ID', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<script type="text/javascript" src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js" async></script>
<script src='/js/douban.js'></script>
</div>
<div id="secondary">
<section class="widget">
<form id="search" action='https://cyberwave.github.io/search/' method="get" accept-charset="utf-8" target="_blank" _lpchecked="1">
<input type="text" name="q" maxlength="20" placeholder="Search">
<input type="hidden" name="sitesearch" value="https://cyberwave.github.io">
<button type="submit" class="submit icon-search"></button>
</form>
</section>
<section class="widget">
<h3 class="widget-title">最近文章</h3>
<ul class="widget-list">
<li>
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-3-gc-pacing/" title="Go语言的垃圾回收 第三部分 GC速度">Go语言的垃圾回收 第三部分 GC速度</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-2-gc-traces/" title="Go语言的垃圾回收:第二部分 GC追踪">Go语言的垃圾回收:第二部分 GC追踪</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/garbage-collection-in-go-part-1-semantics/" title="Go语言的垃圾回收:第一部分 语义">Go语言的垃圾回收:第一部分 语义</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-design-philosophy-data-and-semantics/" title="数据和语义的设计哲学">数据和语义的设计哲学</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-memory-profiling/" title="内存剖析的语言机制">内存剖析的语言机制</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-escape-analysis/" title="逃逸分析的语言机制">逃逸分析的语言机制</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/translate/Language-mechanics-on-stacks-and-pointers/" title="栈和指针的语言机制">栈和指针的语言机制</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/2fa-auth-of-go/" title="2fa 双因素认证的Go实现">2fa 双因素认证的Go实现</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/go-known-network-collection/" title="Go知识网站集合">Go知识网站集合</a>
</li>
<li>
<a href="https://cyberwave.github.io/post/Go-work-stealing-scheduler/" title="Go语言调度器的工作窃取">Go语言调度器的工作窃取</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title"><a href='/categories/'>分类</a></h3>
<ul class="widget-list">
<li><a href="https://cyberwave.github.io/categories/blog/">blog (1)</a></li>
<li><a href="https://cyberwave.github.io/categories/golang/">golang (25)</a></li>
<li><a href="https://cyberwave.github.io/categories/http/">http (1)</a></li>
<li><a href="https://cyberwave.github.io/categories/json/">json (1)</a></li>
<li><a href="https://cyberwave.github.io/categories/k8s/">k8s (1)</a></li>
<li><a href="https://cyberwave.github.io/categories/linux/">linux (1)</a></li>
<li><a href="https://cyberwave.github.io/categories/mysql/">mysql (2)</a></li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title"><a href='/tags/'>标签</a></h3>
<div class="tagcloud">
<a href="https://cyberwave.github.io/tags/auth/">auth</a>
<a href="https://cyberwave.github.io/tags/bit/">bit</a>
<a href="https://cyberwave.github.io/tags/blog/">blog</a>
<a href="https://cyberwave.github.io/tags/clean-architecture/">clean architecture</a>
<a href="https://cyberwave.github.io/tags/collection/">collection</a>
<a href="https://cyberwave.github.io/tags/cors/">cors</a>
<a href="https://cyberwave.github.io/tags/data/">data</a>
<a href="https://cyberwave.github.io/tags/docker/">docker</a>
<a href="https://cyberwave.github.io/tags/escape-analysis/">escape analysis</a>
<a href="https://cyberwave.github.io/tags/gc/">gc</a>
<a href="https://cyberwave.github.io/tags/golang/">golang</a>
<a href="https://cyberwave.github.io/tags/grep/">grep</a>
<a href="https://cyberwave.github.io/tags/http/">http</a>
<a href="https://cyberwave.github.io/tags/json-ld/">json-ld</a>
<a href="https://cyberwave.github.io/tags/k8s/">k8s</a>
<a href="https://cyberwave.github.io/tags/mysql/">mysql</a>
<a href="https://cyberwave.github.io/tags/os/">os</a>
<a href="https://cyberwave.github.io/tags/profiling/">profiling</a>
<a href="https://cyberwave.github.io/tags/runtime/">runtime</a>
<a href="https://cyberwave.github.io/tags/scheduler/">scheduler</a>
<a href="https://cyberwave.github.io/tags/select/">select</a>
<a href="https://cyberwave.github.io/tags/stack/">stack</a>
<a href="https://cyberwave.github.io/tags/timeout/">timeout</a>
<a href="https://cyberwave.github.io/tags/trace/">trace</a>
<a href="https://cyberwave.github.io/tags/translate/">translate</a>
<a href="https://cyberwave.github.io/tags/translation/">translation</a>
<a href="https://cyberwave.github.io/tags/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/">内存管理</a>
<a href="https://cyberwave.github.io/tags/%E6%8C%87%E9%92%88/">指针</a>
<a href="https://cyberwave.github.io/tags/%E8%B0%83%E5%BA%A6/">调度</a>
</div>
</section>
<section class="widget">
<h3 class="widget-title">友情链接</h3>
<ul class="widget-list">
<li>
<a target="_blank" href="https://www.flysnow.org/" title="飞雪无情的博客">飞雪无情的博客</a>
</li>
<li>
<a target="_blank" href="https://www.qcrao.com/" title="码农桃花源">码农桃花源</a>
</li>
<li>
<a target="_blank" href="https://draveness.me/" title="面向信仰编程">面向信仰编程</a>
</li>
<li>
<a target="_blank" href="https://blog.haohtml.com/" title="学习日志">学习日志</a>
</li>
<li>
<a target="_blank" href="https://imageslr.github.io/" title="Images' Blog">Images's Blog</a>
</li>
<li>
<a target="_blank" href="https://alim0x.gitbooks.io/awesome-linux-software-zh_cn/content/" title="超赞的 Linux 软件">超赞的 Linux 软件</a>
</li>
</ul>
</section>
<section class="widget">
<h3 class="widget-title">其它</h3>
<ul class="widget-list">
<li><a href="https://cyberwave.github.io/index.xml">文章 RSS</a></li>
</ul>
</section>
</div>
</div>
</div>
</div>
</body>
</html>