码迷,mamicode.com
首页 >  
搜索关键字:unless    ( 237个结果
【自动化测试】unitest
概念 基于断言机制来判断输入参数后函数的输出与期望结果的是否一致。 unitest.TestCase中内置的assertXxxx方法 序号断言方法断言描述 1 assertEqual(arg1, arg2, msg=None) 验证arg1=arg2,不等则fail 2 assertNotEqual ...
分类:其他好文   时间:2021-06-07 20:01:02    阅读次数:0
读者写者问题(读者优先/读写公平/写者优先)
First reader and writers problem (读者优先) no reader be kept waiting unless a writer has obtain permission to write semaphore rw=1, readcnt_m=1; int read ...
分类:其他好文   时间:2021-04-26 13:39:39    阅读次数:0
实验2
text.1 x1, y1=1.2, 3.57 x2, y2=2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1={}, y1 ={}'.format(x1, y1)) print('x2={}, y2 ={}'.format(x2,y2)) pri ...
分类:其他好文   时间:2021-04-09 13:25:16    阅读次数:0
mstream 音乐流部署
docker run -d \ --name=mstream \ -e PUID=1000 \ -e PGID=1000 \ -e USER=leander806 \ -e PASSWORD=zhangyao13! \ -e USE_JSON=true/false \ -e TZ=Asia/Shan ...
分类:其他好文   时间:2021-01-15 11:44:38    阅读次数:0
线程池
线程池:三大方法、七大参数、4种拒绝策略 线程池的好处 1、降低资源的消耗 2、提高响应速度 3、方便管理 线程复用、可以控制最大并发数、管理线程 三大方法 ExecutorService threadPool = Executors.newSingleThreadExecutor(); //创建只 ...
分类:编程语言   时间:2021-01-08 11:27:30    阅读次数:0
docker run 命令转化 docker-compose
docker run -d \ --hostname gitlab.example.com \ -p 80:80 \ -p 443:443 \ -p 22:22 \ --name gitlab \ --restart unless-stopped \ -v gitlab-config:/etc/gi ...
分类:其他好文   时间:2020-12-24 11:58:54    阅读次数:0
解决:setState() called after dispose() 内存泄漏问题
一、问题场景 网络请求成功前退出了页面,该 State 被从对象树卸载掉,而这时回调了网络请求的方法,方法中带有 setState 的调用,也就导致了该问题。 二、问题原因 State 对象被从对象数卸载释放之后再次调用 setState 就会报 setState() called after di ...
分类:其他好文   时间:2020-11-23 12:48:08    阅读次数:29
A+B Format
Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less tha ...
分类:其他好文   时间:2020-09-24 00:03:11    阅读次数:34
Springboot @Cacheable缓存过期时间
参考: SpringBoot 2.X @Cacheable,redis-cache 如何根据key设置缓存时间? @Cacheable(value = "Menus", unless = "#result == null or #result.size() == 0") public List<Sy ...
分类:编程语言   时间:2020-07-15 15:49:38    阅读次数:327
IOS active 状态失效问题
IOS active 状态失效问题 失效原因 By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or ...
分类:移动开发   时间:2020-06-29 00:21:02    阅读次数:69
237条   1 2 3 4 ... 24 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!