最近使用jmeter时,有部分接口一直在报错,内容如下两种 Response code:400 Response message:Bad Request Response code:Non HTTP response code: java.lang.IllegalArgumentException ...
分类:
其他好文 时间:
2020-07-17 13:48:08
阅读次数:
186
先设置环境 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
python2与python3的编码问题 无论是python2还是python3都可以理解成是Unicode编码; 但是在电脑硬盘上存储是按照不同的映射关系的。 首先了解下: python的encode和decode 首先明白一件事情,之前说过Unicode将所有的字符都对应上了相应的码点,而UTF ...
分类:
编程语言 时间:
2020-07-13 21:23:24
阅读次数:
84
一、连接和通道 @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
[CSS 中文开发手册:-moz-ui-invalid (Extensions) - CSS 中文开发手册非标准此功能是非标准的。不要在面向Web的生产站点上使用它:它并不适用于每个用户。实现之间也可能存在很大的不兼容性,而且这种行为在未来可能会发生变化。:-moz-ui-invalidCSS伪类代... ...
分类:
Web程序 时间:
2020-07-12 01:16:06
阅读次数:
94