1、卸载旧版本(如果安装过旧版本的话) sudo yum remove docker docker-common docker-selinux docker-engine 2、安装需要的软件包 yum install -y yum-utils device-mapper-persistent-dat ...
分类:
其他好文 时间:
2020-07-28 14:18:19
阅读次数:
83
语义化标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Doc ...
分类:
其他好文 时间:
2020-07-28 00:27:24
阅读次数:
92
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0 ...
分类:
移动开发 时间:
2020-07-28 00:01:53
阅读次数:
111
rm删目录的时候报错: .nfs8b65f38121ce6cf0004cf28f': Device or resource busy 解决方法: lsof .nfs8b65f38121ce6cf0004cf28f kill -9 78742 报错解决 ...
分类:
其他好文 时间:
2020-07-27 16:04:28
阅读次数:
134
链接伪类 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http- ...
分类:
Web程序 时间:
2020-07-27 09:30:49
阅读次数:
79
原因一:找到错误点,增加以下语句: with torch.no_grad(): outputs = Net_(inputs) 错误代码的位置。 原因二:GPU没有选对 os.environ["CUDA_VISIBLE_DEVICES"] = "0, 2, 3" 查看性能,发现nVidia的只有GPU ...
分类:
其他好文 时间:
2020-07-26 22:55:56
阅读次数:
297
1.let <script> //1.声明变量 let a; let b,c,d; let e =100; let f=521,g='iloveyou',h=[]; //2.let变量不能重复定义 例 // let peope = 'bill' // let peope = 'jom' //会报错: ...
分类:
其他好文 时间:
2020-07-26 19:49:20
阅读次数:
86
cuda是Compute Unified Device Architecture的缩写。中文叫统一计算架构。是为了让nvidia gpu可以完成通用计算任务的一种集成技术。我们通常可以使用的cuda框架有c,c++,fortran,python,java的,可以为数据大吞吐量的工作提供很好的加速功能 ...
分类:
其他好文 时间:
2020-07-26 15:10:23
阅读次数:
140
与RFCOMM一样,L2CAP通信是围绕套接字编程构建的。例4-4和例4-5演示了如何建立L2CAP信道并传输短串数据。为了简单起见,客户端被硬编码为连接到“01:23:45:67:89:AB”。 l2cap-server.c 代码 #include <stdio.h> #include <stri ...
分类:
其他好文 时间:
2020-07-26 01:09:41
阅读次数:
80