-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
532 lines (221 loc) · 19.1 KB
/
Copy pathatom.xml
File metadata and controls
532 lines (221 loc) · 19.1 KB
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>lucky</title>
<subtitle>保持对优秀的热情</subtitle>
<link href="https://luwanglin.github.io/atom.xml" rel="self"/>
<link href="https://luwanglin.github.io/"/>
<updated>2021-07-19T15:14:18.134Z</updated>
<id>https://luwanglin.github.io/</id>
<author>
<name>luwanglin</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>IDEA中运行java程序的一直打印GC日志信息</title>
<link href="https://luwanglin.github.io/2021/07/19/idea-zhong-yun-xing-java-cheng-xu-de-yi-zhi-da-yin-gc-ri-zhi-xin-xi/"/>
<id>https://luwanglin.github.io/2021/07/19/idea-zhong-yun-xing-java-cheng-xu-de-yi-zhi-da-yin-gc-ri-zhi-xin-xi/</id>
<published>2021-07-19T23:04:38.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h1 id="问题复现"><a href="#问题复现" class="headerlink"</summary>
<category term="开发工具" scheme="https://luwanglin.github.io/categories/%E5%BC%80%E5%8F%91%E5%B7%A5%E5%85%B7/"/>
<category term="IDEA" scheme="https://luwanglin.github.io/tags/IDEA/"/>
</entry>
<entry>
<title>MySQL中的锁总结</title>
<link href="https://luwanglin.github.io/2021/07/19/mysql-zhong-de-suo-zong-jie/"/>
<id>https://luwanglin.github.io/2021/07/19/mysql-zhong-de-suo-zong-jie/</id>
<published>2021-07-19T22:41:10.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><p>锁是计算机协调多个进程或线程并发访问某一资源的机制。锁保证数据并发访问的一致性、有效性;锁冲突也是影响数据库并发访问性能的一个重要因素。锁是Mysql在服务器层和存储引擎层的的并发控制。</p>
<p>加锁是消耗资源的,锁的各种操作,包括获得锁、检测锁是否是否已解除、释放锁</summary>
<category term="数据库" scheme="https://luwanglin.github.io/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/"/>
<category term="MySQL" scheme="https://luwanglin.github.io/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/MySQL/"/>
<category term="锁" scheme="https://luwanglin.github.io/tags/%E9%94%81/"/>
</entry>
<entry>
<title>显存占用但查不到异常情况</title>
<link href="https://luwanglin.github.io/2021/07/12/xian-cun-zhan-yong-dan-cha-bu-dao-yi-chang-qing-kuang/"/>
<id>https://luwanglin.github.io/2021/07/12/xian-cun-zhan-yong-dan-cha-bu-dao-yi-chang-qing-kuang/</id>
<published>2021-07-12T10:09:48.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><p>今天遇到<code>nvidia-smi</code> 查不到显存占用的程序,但是显存一直被占用无法释放。</p>
<p><a</summary>
<category term="服务器环境配置" scheme="https://luwanglin.github.io/categories/%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE/"/>
<category term="问题记录和解决" scheme="https://luwanglin.github.io/categories/%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE/%E9%97%AE%E9%A2%98%E8%AE%B0%E5%BD%95%E5%92%8C%E8%A7%A3%E5%86%B3/"/>
</entry>
<entry>
<title>Thread.join()原理</title>
<link href="https://luwanglin.github.io/2021/04/29/thread-join-yuan-li/"/>
<id>https://luwanglin.github.io/2021/04/29/thread-join-yuan-li/</id>
<published>2021-04-29T17:12:53.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h1 id="0-Join"><a href="#0-Join" class="headerlink" title="0.Join()"></a>0.Join()</h1><p>线程的合并的含义就是 <strong>将几个并行线程的线程合并为一个单线程执行</strong></summary>
<category term="java学习笔记" scheme="https://luwanglin.github.io/categories/java%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="多线程" scheme="https://luwanglin.github.io/tags/%E5%A4%9A%E7%BA%BF%E7%A8%8B/"/>
<category term="thread.join()" scheme="https://luwanglin.github.io/tags/thread-join/"/>
</entry>
<entry>
<title>从ReentrantLock的实现看AQS的原理及应用</title>
<link href="https://luwanglin.github.io/2021/04/28/cong-reentrantlock-de-shi-xian-kan-aqs-de-yuan-li-ji-ying-yong-zhuan-zai/"/>
<id>https://luwanglin.github.io/2021/04/28/cong-reentrantlock-de-shi-xian-kan-aqs-de-yuan-li-ji-ying-yong-zhuan-zai/</id>
<published>2021-04-28T17:49:04.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><blockquote>
<p>转载自美团技术团队博客文章,原文 <a</summary>
<category term="AQS" scheme="https://luwanglin.github.io/tags/AQS/"/>
<category term="ReentrantLock" scheme="https://luwanglin.github.io/tags/ReentrantLock/"/>
</entry>
<entry>
<title>磁盘分区和双系统安装原理—鸟哥的Linux私房菜</title>
<link href="https://luwanglin.github.io/2021/04/26/ci-pan-fen-qu-he-shuang-xi-tong-an-zhuang-yuan-li-niao-ge-de-linux-si-fang-cai/"/>
<id>https://luwanglin.github.io/2021/04/26/ci-pan-fen-qu-he-shuang-xi-tong-an-zhuang-yuan-li-niao-ge-de-linux-si-fang-cai/</id>
<published>2021-04-26T15:26:52.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h1 id="磁盘分区和双系统安装原理—鸟哥的Linux私房菜"><a href="#磁盘分区和双系统安装原理—鸟哥的Linux私房菜" class="headerlink"</summary>
<category term="Linux学习" scheme="https://luwanglin.github.io/categories/Linux%E5%AD%A6%E4%B9%A0/"/>
<category term="分区" scheme="https://luwanglin.github.io/tags/%E5%88%86%E5%8C%BA/"/>
<category term="双系统" scheme="https://luwanglin.github.io/tags/%E5%8F%8C%E7%B3%BB%E7%BB%9F/"/>
</entry>
<entry>
<title>Java泛型</title>
<link href="https://luwanglin.github.io/2020/08/19/java-fan-xing/"/>
<id>https://luwanglin.github.io/2020/08/19/java-fan-xing/</id>
<published>2020-08-19T11:06:03.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h2 id="C-泛型"><a href="#C-泛型" class="headerlink"</summary>
<category term="java学习笔记" scheme="https://luwanglin.github.io/categories/java%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="泛型" scheme="https://luwanglin.github.io/tags/%E6%B3%9B%E5%9E%8B/"/>
<category term="类型擦除" scheme="https://luwanglin.github.io/tags/%E7%B1%BB%E5%9E%8B%E6%93%A6%E9%99%A4/"/>
</entry>
<entry>
<title>服务器搭建远程docker深度学习环境</title>
<link href="https://luwanglin.github.io/2020/08/18/fu-wu-qi-da-jian-yuan-cheng-docker-shen-du-xue-xi-huan-jing/"/>
<id>https://luwanglin.github.io/2020/08/18/fu-wu-qi-da-jian-yuan-cheng-docker-shen-du-xue-xi-huan-jing/</id>
<published>2020-08-18T11:34:41.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h1 id="服务器搭建远程docker深度学习环境"><a href="#服务器搭建远程docker深度学习环境" class="headerlink"</summary>
<category term="深度学习环境配置" scheme="https://luwanglin.github.io/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE/"/>
<category term="docker" scheme="https://luwanglin.github.io/tags/docker/"/>
<category term="pycharm" scheme="https://luwanglin.github.io/tags/pycharm/"/>
</entry>
<entry>
<title>PicGo软件搭配gitee实现图床</title>
<link href="https://luwanglin.github.io/2020/08/16/picgo-ruan-jian-da-pei-gitee-shi-xian-tu-chuang/"/>
<id>https://luwanglin.github.io/2020/08/16/picgo-ruan-jian-da-pei-gitee-shi-xian-tu-chuang/</id>
<published>2020-08-16T20:41:45.000Z</published>
<updated>2021-07-19T15:14:18.134Z</updated>
<summary type="html"><h1 id="1-安装PicGo软件,并配置gitee"><a href="#1-安装PicGo软件,并配置gitee" class="headerlink"</summary>
<category term="撰写博客" scheme="https://luwanglin.github.io/categories/%E6%92%B0%E5%86%99%E5%8D%9A%E5%AE%A2/"/>
<category term="picGo" scheme="https://luwanglin.github.io/tags/picGo/"/>
<category term="码云" scheme="https://luwanglin.github.io/tags/%E7%A0%81%E4%BA%91/"/>
</entry>
<entry>
<title>Bootstrap 4 多媒体对象</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap-4-duo-mei-ti-dui-xiang/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap-4-duo-mei-ti-dui-xiang/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap-4-多媒体对象"><a href="#Bootstrap-4-多媒体对象" class="headerlink" title="Bootstrap 4 多媒体对象"></a>Bootstrap 4 多媒体对象</h2><p>Bootstrap</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="多媒体对象" scheme="https://luwanglin.github.io/tags/%E5%A4%9A%E5%AA%92%E4%BD%93%E5%AF%B9%E8%B1%A1/"/>
</entry>
<entry>
<title>Bootstrap 滚动监听(Scrollspy)</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap-gun-dong-jian-ting-scrollspy/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap-gun-dong-jian-ting-scrollspy/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap-滚动监听-Scrollspy"><a href="#Bootstrap-滚动监听-Scrollspy" class="headerlink" title="Bootstrap 滚动监听(Scrollspy)"></a>Bootstrap</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="滚动监听" scheme="https://luwanglin.github.io/tags/%E6%BB%9A%E5%8A%A8%E7%9B%91%E5%90%AC/"/>
</entry>
<entry>
<title>Bootstrap4 Jumbotron</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-jumbotron/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-jumbotron/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-Jumbotron"><a href="#Bootstrap4-Jumbotron" class="headerlink" title="Bootstrap4 Jumbotron"></a>Bootstrap4</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="Jumbotron" scheme="https://luwanglin.github.io/tags/Jumbotron/"/>
</entry>
<entry>
<title>Bootstrap4 下拉菜单</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-xia-la-cai-dan/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-xia-la-cai-dan/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-下拉菜单"><a href="#Bootstrap4-下拉菜单" class="headerlink" title="Bootstrap4 下拉菜单"></a>Bootstrap4 下拉菜单</h2><p>Bootstrap4</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="下拉菜单" scheme="https://luwanglin.github.io/tags/%E4%B8%8B%E6%8B%89%E8%8F%9C%E5%8D%95/"/>
</entry>
<entry>
<title>Bootstrap4 信息提示框</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-xin-xi-ti-shi-kuang/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-xin-xi-ti-shi-kuang/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-信息提示框"><a href="#Bootstrap4-信息提示框" class="headerlink" title="Bootstrap4 信息提示框"></a>Bootstrap4 信息提示框</h2><p>Bootstrap 4</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="信息提示框" scheme="https://luwanglin.github.io/tags/%E4%BF%A1%E6%81%AF%E6%8F%90%E7%A4%BA%E6%A1%86/"/>
</entry>
<entry>
<title>Bootstrap4 分页</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-fen-ye/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-fen-ye/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-分页"><a href="#Bootstrap4-分页" class="headerlink" title="Bootstrap4 分页"></a>Bootstrap4</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="分页" scheme="https://luwanglin.github.io/tags/%E5%88%86%E9%A1%B5/"/>
</entry>
<entry>
<title>Bootstrap4 列表组</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-lie-biao-zu/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-lie-biao-zu/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-列表组"><a href="#Bootstrap4-列表组" class="headerlink" title="Bootstrap4 列表组"></a>Bootstrap4</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="列表组" scheme="https://luwanglin.github.io/tags/%E5%88%97%E8%A1%A8%E7%BB%84/"/>
</entry>
<entry>
<title>Bootstrap4 卡片</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-qia-pian/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-qia-pian/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-卡片"><a href="#Bootstrap4-卡片" class="headerlink" title="Bootstrap4 卡片"></a>Bootstrap4 卡片</h2><h3 id="简单的卡片"><a</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="卡片" scheme="https://luwanglin.github.io/tags/%E5%8D%A1%E7%89%87/"/>
</entry>
<entry>
<title>Bootstrap4 图像形状</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-tu-xiang-xing-zhuang/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-tu-xiang-xing-zhuang/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-图像形状"><a href="#Bootstrap4-图像形状" class="headerlink" title="Bootstrap4 图像形状"></a>Bootstrap4 图像形状</h2><h3 id="圆角图片"><a</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="图像形状" scheme="https://luwanglin.github.io/tags/%E5%9B%BE%E5%83%8F%E5%BD%A2%E7%8A%B6/"/>
</entry>
<entry>
<title>Bootstrap4 安装使用</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-an-zhuang-shi-yong/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-an-zhuang-shi-yong/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-安装使用"><a href="#Bootstrap4-安装使用" class="headerlink" title="Bootstrap4 安装使用"></a>Bootstrap4 安装使用</h2><p>我们可以通过以下两种方式来安装</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
</entry>
<entry>
<title>Bootstrap4 导航</title>
<link href="https://luwanglin.github.io/2020/08/16/bootstrap4-dao-hang/"/>
<id>https://luwanglin.github.io/2020/08/16/bootstrap4-dao-hang/</id>
<published>2020-08-16T20:36:08.000Z</published>
<updated>2021-07-19T15:14:18.130Z</updated>
<summary type="html"><h2 id="Bootstrap4-导航"><a href="#Bootstrap4-导航" class="headerlink" title="Bootstrap4 导航"></a>Bootstrap4 导航</h2><p>如果你想创建一个简单的水平导航栏,可以在</summary>
<category term="Bootstrap4 学习笔记" scheme="https://luwanglin.github.io/categories/Bootstrap4-%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="导航" scheme="https://luwanglin.github.io/tags/%E5%AF%BC%E8%88%AA/"/>
</entry>
</feed>