先设置环境 parser = argparse.ArgumentParser()parser.add_argument('--gpu',type=str,default='7')opt=parser.parse_args()print(opt)os.environ["CUDA_VISIBLE_DEV ...
分类:
其他好文 时间:
2020-07-17 13:40:24
阅读次数:
103
react新特性实例详解(memo、lazy、suspense、hooks) 1.memo 其实react.memo的实现很简单,就几行代码。 export default function memo<Props>( type: React$ElementType, compare?: (oldPr ...
分类:
其他好文 时间:
2020-07-14 18:19:34
阅读次数:
55
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:
其他好文 时间:
2020-07-14 12:59:15
阅读次数:
223
编写脚本文件 #!/bin/bash #chkconfig: 22345 10 90 #description: Start and Stop redis REDISPORT=6379 EXEC=/usr/local/soft/redis5/bin/redis-server CLIEXEC=/usr ...
分类:
其他好文 时间:
2020-07-14 00:34:31
阅读次数:
331
一、连接和通道 @Configuration public class RabbirnqConfig { private static final String RABBIT_HOST = "localhost"; private static final String RABBIT_USERNAM ...
分类:
其他好文 时间:
2020-07-13 19:58:40
阅读次数:
58
用途 getopt_long()用于解析类似于 --version --config configfile 这样的长选项。 如何使用 1、定义struct option数组 struct option { cosnt char* name; //长选项的名称。 比如 ./xx --config de ...
分类:
其他好文 时间:
2020-07-13 09:43:18
阅读次数:
80
ArithmeticException(算术异常)ClassCastException (类转换异常)IllegalArgumentException (非法参数异常)IndexOutOfBoundsException (下标越界异常)NullPointerException (空指针异常)Secu ...
分类:
其他好文 时间:
2020-07-12 19:13:17
阅读次数:
109
最近在学习python多线程,由于之前没有接触这块,这下可吃下苦头了 python多线程传参并不像C++/java那么方便,虽然定义了args 和 kargs参数,但总体感觉还是觉得没有其它 语言灵活,废话不多说踩过的坑说一下 比如我们开一个线程,免不了要传递一些参数 self._thread = ...
分类:
编程语言 时间:
2020-07-11 17:18:04
阅读次数:
74
NSThread当调用start方法的时候,start方法就会调用main方法。那么这个main方法内部做了什么呢?下面是汇编码: 1 ;Foundation`-[NSThread main]: 2 -> 0x7fff2594fa69 <+0>: push rbp 3 0x7fff2594fa6a ...
分类:
其他好文 时间:
2020-07-11 17:11:22
阅读次数:
78
参数的支持: *** Settings ***Library SeleniumLibraryLibrary Collections*** Test Cases ***case1 loginwebsite auto sdfsdfsdf sleep 2 ${lessonses} getLessions ...
分类:
其他好文 时间:
2020-07-11 00:23:55
阅读次数:
98