码迷,mamicode.com
首页 >  
搜索关键字:argument    ( 2191个结果
把张量计算放到GPU上进行计算
先设置环境 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】react新特性实例详解(memo、lazy、suspense、hooks)
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
lua os.time和os.data详解
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
centos8 设置 redis 开机自启动
编写脚本文件 #!/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
RabbitMq
一、连接和通道 @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()备忘
用途 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多线程,由于之前没有接触这块,这下可吃下苦头了 python多线程传参并不像C++/java那么方便,虽然定义了args 和 kargs参数,但总体感觉还是觉得没有其它 语言灵活,废话不多说踩过的坑说一下 比如我们开一个线程,免不了要传递一些参数 self._thread = ...
分类:编程语言   时间:2020-07-11 17:18:04    阅读次数:74
NSThread的main方法内部做了什么?
NSThread当调用start方法的时候,start方法就会调用main方法。那么这个main方法内部做了什么呢?下面是汇编码: 1 ;Foundation`-[NSThread main]: 2 -> 0x7fff2594fa69 <+0>: push rbp 3 0x7fff2594fa6a ...
分类:其他好文   时间:2020-07-11 17:11:22    阅读次数:78
RF-定义/使用 用户关键字
参数的支持: *** Settings ***Library SeleniumLibraryLibrary Collections*** Test Cases ***case1 loginwebsite auto sdfsdfsdf sleep 2 ${lessonses} getLessions ...
分类:其他好文   时间:2020-07-11 00:23:55    阅读次数:98
2191条   上一页 1 ... 6 7 8 9 10 ... 220 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!