Review of Lectures on Wave 2020 4 13 chs_2020 General Physics I (H) Wave Motion Linear Wave Waves that obey the superposition principle are called lin ...
分类:
其他好文 时间:
2020-04-18 00:02:44
阅读次数:
89
"PyTorch官网" "PyTorch官方教程" "PyTorch官方文档" "动手学深度学习PyTorch版" 安装 新建环境: 安装一些可能要用到的包(非必须,看自己情况): 安装PyTorch: GPU版根据CUDA版本不同命令也不同,可以去 "这里" 查看安装命令 ...
分类:
其他好文 时间:
2020-04-17 21:46:01
阅读次数:
65
单元测试框架:unittest 单元测试框架之测试报告生成 HTMLTestRunner.py """ A TestRunner for use with the Python unit testing framework. It generates a HTML report to show th ...
分类:
其他好文 时间:
2020-04-17 12:47:23
阅读次数:
73
在用thymeleaf时,遇到特殊属性不知道该怎么解决如下: 问题1:循环时,遇到特殊的属性,不知道怎么赋值 如:cate-id="" ,fid=""; 使用th:attr="自定义属性名称=值"即可,注意,这里一个元素上自定义的属性只能有一个,多个需要使用th:attrappend来追加,如果还是 ...
分类:
其他好文 时间:
2020-04-17 12:30:26
阅读次数:
74
C# Winform开发中使用了CefSharp,之前在VS2012中运行很正常,今天换了一台Windows XP 打开VS2010 运行时,发生异常:System.IO.FileNotFoundException;Coloud not load file or assembly ‘CefSharp ...
查询监控项 select * from endpoint e inner join endpoint_counter c on e.id = c.endpoint_id where c.counter = "metric_name" and endpoint = "host_name" 模拟登录获取 ...
分类:
其他好文 时间:
2020-04-16 11:43:44
阅读次数:
113
袁祎琦 201821121033 计算1812 1. 编写程序 创建命名管道是用FIFO.c文件实现,对管道进行写是FIFOwrite.c来实现的,对管道进行读是FIFOread.c来实现的。 1、如果创建成功,那么mkfifo()返回0,如果失败,那么返回-1。 2、后面的操作,把这个命名管道当作 ...
分类:
其他好文 时间:
2020-04-16 09:15:39
阅读次数:
94
vue中图片预览缩略图,在点击缩略图时弹出大图,想在查看大图的时候,在图片上显示一段文字,用来图片说明,放在图片的左下角,如何显示?用data-content没有效果。应该用什么?<div v-viewer="options" class="images"><template v-for="item ...
分类:
其他好文 时间:
2020-04-15 21:37:32
阅读次数:
99
Given two binary trees original and cloned and given a reference to a node target in the original tree. The cloned tree is a copy of the original tree ...
分类:
其他好文 时间:
2020-04-15 09:14:36
阅读次数:
74
SCP scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令, 和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且scp传输是加密的。 当你服务器硬盘变为只读 read only system时,用scp可以帮你把文件移出来。 类似的工具有rsync;scp ...
分类:
其他好文 时间:
2020-04-15 00:25:47
阅读次数:
82