卸载cudnn sudo rm -rf /usr/local/cuda/include/cudnn.h sudo rm -rf /usr/local/cuda/lib64/libcudnn* 卸载cuda 第一步 sudo /usr/local/cuda-10.1/bin/cuda-uninstal ...
分类:
系统相关 时间:
2021-06-02 13:55:10
阅读次数:
0
List<Obj> test= objList.stream().filter(s -> s.getLicence() != null && s.getLicence().equals(obj.getLicence())).collect(Collectors.<Obj>toList()); ...
分类:
编程语言 时间:
2021-06-02 13:19:18
阅读次数:
0
字符相关匹配符 /**equalTo匹配符断言被测的testedValue等于expectedValue, * equalTo可以断言数值之间,字符串之间和对象之间是否相等,相当于Object的equals方法 */ assertThat(testedValue, equalTo(expectedV ...
分类:
其他好文 时间:
2021-06-02 13:15:22
阅读次数:
0
components: { editor: (resolve) => require(["../../components/editor"], resolve), }, ...
分类:
其他好文 时间:
2021-06-02 13:05:52
阅读次数:
0
##话不多说上代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" c ...
分类:
Web程序 时间:
2021-06-02 13:04:57
阅读次数:
0
C++ STL容器 —— deque 用法详解 头文件:# include < deque >动态双向数组, 与vector的区别vector头部被封住了, 不能直接进行增删操作deque两端都可以进行增删操作具体表现在常用函数和 emplace 系列函数里面 构造函数 deque <int> dv ...
分类:
编程语言 时间:
2021-06-02 12:59:29
阅读次数:
0
Ext.define('Ext.ux.form', { extend: 'Ext.form.Panel', listeners: { 'beforeadd': function(){ if (!field.allowBlank) { field.labelClsExtra = 'x-required ...
分类:
Web程序 时间:
2021-06-02 12:56:45
阅读次数:
0
父组件获取子组件的数据和执行子组件方法 调用子组件的时候定义一个 ref <v-header ref="header" /> 父组件获取子组件数据 this.$refs.header.属性 父组件执行子组件的方法 this.$refs.header.方法 子组件获取父组件的数据和执行父组件方法 子组 ...
分类:
其他好文 时间:
2021-06-02 12:26:33
阅读次数:
0
C语言定义 计算机语言的发展 编写c语言程序过程 数据类型 计算机单位 定义变量方式 变量分类 变量的使用 变量的作用域和生命周期 1.c语言定义 是一门计算机语言(人和计算机交流的语言) 2.计算机语言的发展 低级语言1.机器语言-二进制(0和1)2.符号语言(助记符,汇编语言) 高级语言 3.编 ...
分类:
编程语言 时间:
2021-06-02 12:01:56
阅读次数:
0
创建两个项目,服务提供者service-offer和服务消费者service-consumer 一、service-offer的pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot ...
分类:
其他好文 时间:
2021-06-02 11:44:54
阅读次数:
0