在Ubuntu上面搭建caffe环境,搭建完成之后运行sudo make runtest -j8失败,提示错误为:.build_release/tools/caffe: error while loading shared libraries: libcudart.so.10.0: cannot o ...
分类:
系统相关 时间:
2020-03-03 13:16:34
阅读次数:
178
Flume: source: Avro是一个轻量级的rpc框架,可以解决单点故障。 Thrift少用。 Exec:类似 tail -f spooling Directory:目录 Tail dir多个目录里面动态变化的数据 kafka sosurce netcat source 图中红色用法较多。 ...
分类:
Web程序 时间:
2020-03-03 10:33:19
阅读次数:
61
在github上已经注册了账号。 特别注意: 括号内均为提示信息 1、常用命令行工具: ①cmd ②powershell ③git bash 2、命令行常用命令(在git bash上生效,部分在cmd无用) ? pwd (print working directory) 查看当前所在路径 绝对路径 ...
分类:
其他好文 时间:
2020-03-02 18:54:38
阅读次数:
80
C#常用文件操作在 System.IO 命名类库中有:File、Directory; 一、 1、文件(File) 操作: 文件创建:File.Create(filePath); 在指定路径中创建或覆盖文件 文件删除:File.Delete(filePath); 判断文件是否存在:File.Exist ...
出现这个错误时,这多半是你所编译的项目是在64位机器上生成32位的项目,你需要安装对应的gcc 32位的库;此时检查gcc一定有-m32的存在; 你系统中gcc没有安装multilib 库;使用这个库可以在64位的机器上产生32位的程序或者库文件; 你可以选择:apt install gcc-mul ...
分类:
其他好文 时间:
2020-03-01 00:16:22
阅读次数:
109
因为SpringCloudConfig相关的配置信息在程序启动时进行配置信息查询,这个动作发生在application.yml加载之前。 因此需要把springcloudconfig相关的配置信息配置到bootstrap.yml中。例:bootstrap.yml中配置如下信息:spring: clo ...
分类:
编程语言 时间:
2020-02-28 22:54:15
阅读次数:
73
unlock the shadow system UNIX: cd /<update directory>/abap/bin (e.g. /usr/sap/PRD/SUM/abap/bin)./SAPup unlockshd WINDOWS: <drive> cd \<update director ...
分类:
其他好文 时间:
2020-02-28 22:44:39
阅读次数:
84
解决方法:设置跳过ssl校验spring: cloud: config: server: git: uri: https://github.com/xxx/spring-cloud-config-repository.git username: xxx password: yyyy default- ...
分类:
编程语言 时间:
2020-02-28 22:42:10
阅读次数:
423
查看D目录下的文件: 使用os模块创建目录,代码如下: path = r"D:\a\b" isExists = os.path.exists(path) print(isExists) if not isExists: # 路径不存在,即文件名不存在 os.mkdir(path) View Code ...
分类:
其他好文 时间:
2020-02-28 22:21:52
阅读次数:
351
1 先看oracle的监听和oracle的服务是否都启动了。启动oracle监听:cmd的命令行窗口下,输入lsnrctl start,回车即启动监听。2 查看oracle的sid叫什么,比如创建数据库的时候,实例名叫“abc”,那么先手工设置一下oralce的sid,cmd命令窗口中,setORA ...
分类:
其他好文 时间:
2020-02-28 20:24:50
阅读次数:
104