码迷,mamicode.com
首页 >  
搜索关键字:asserts    ( 33个结果
httpclient源码分析之 PoolingHttpClientConnectionManager 获取连接 (转)
PoolingHttpClientConnectionManager是一个HttpClientConnection的连接池,可以为多线程提供并发请求服务。主要作用就是分配连接,回收连接等。同一个route的请求,会优先使用连接池提供的空闲长连接。 源码版本4.5.2,因为代码太多,很多不是自己关心的 ...
分类:Web程序   时间:2020-05-16 00:23:23    阅读次数:73
ubuntu 18.04 下 typora离线安装,创建快捷方式以及添加图标到开始菜单(DashBoard)
typora下载 typora不知为啥,直接下载不下来,所以在ubuntu下不能直接安装 安装方法 进入windows,下载好迅雷 进入 "官网" ,拉到最底下,点击linux 点击下载指示窗口下方 binary file,右键用迅雷下载binary file ubuntu下离线安装 下载完成后将此 ...
分类:系统相关   时间:2020-02-05 18:52:45    阅读次数:247
Using-JSONNET-for-dynamic-JSON-parsing
原文 https://weblog.west-wind.com/posts/2012/Aug/30/Using-JSONNET-for-dynamic-JSON-parsing With the release of ASP.NET Web API as part of .NET 4.5 and M ...
分类:Web程序   时间:2019-08-20 00:59:34    阅读次数:103
python用爬虫爬取一张图片
代码: import requestsresponse = requests.get('https://s1.hdslb.com/bfs/static/jinkela/video/asserts/33.png')with open('C:\\Users\\lingu\\Desktop\\1.png' ...
分类:编程语言   时间:2019-05-11 19:54:22    阅读次数:196
JUnit的各种断言
JUnit为我们提供了一些辅助函数,他们用来帮助我们确定被测试的方法是否按照预期的效果正常工作,通常,把这些辅助函数称为断言。下面我们来介绍一下JUnit的各种断言。 1、assertEquals 函数原型1:assertEquals([String message],expected,actual ...
分类:其他好文   时间:2018-10-04 11:43:52    阅读次数:148
POJ 2243 Knight Moves
POJ 2243 Knight Moves Background Mr Somurolov, fabulous chess-gamer indeed, asserts that no one else but him can move knights from one position to ano ...
分类:其他好文   时间:2018-07-12 00:34:35    阅读次数:174
@NotEmpty、@NotNull、@NotBlank 的区别
@NotEmpty 用在集合上面 @NotBlank用在String上面 @NotNull用在基本数据类型上面 1. @NotEmpty Asserts that the annotated string, collection, map or array is not {@code null} o ...
分类:其他好文   时间:2018-01-26 10:53:53    阅读次数:225
Python的unittest框架的断言总结
常用的断言方法如下: assertFalse:为假时返回True;self.assertFalse(表达式,“表达式为true时打印的message”) assertTrue:为真时返回True;self.assertTrue(表达式,“表达式为false时打印的message”) asserEqu ...
分类:编程语言   时间:2018-01-08 18:38:06    阅读次数:275
CAP Twelve Years Later: How the "Rules" Have Changed
The CAP theorem asserts that any net­worked shared-data system can have only two of three desirable properties. How­ever, by explicitly handling parti... ...
分类:其他好文   时间:2017-09-08 16:25:32    阅读次数:215
python+selenium+unitest框架断言方法详细教程
常用断言 assertLocation(判断当前是在正确的页面) assertTitle(检查当前页面的 title 是否正确) assertValue(检查 input 的值, checkbox 或 radio,有值为”on”无为”off”) assertSelected(检查 select 的下 ...
分类:编程语言   时间:2017-06-25 17:43:34    阅读次数:500
33条   1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!