#ALL

mockito中两种部分mock的实现,spy、callRealMethod

什么是类的部分mock(partialmock)?A:部分mock是说一个类的方法有些是实际调用,有些是使用mockito的stubbing(桩实现)。 为什么需要部分mock?A:当需要测试一个组合方法(一个方法需要其它多个方法协作)的时候,某个叶子方法(只供别人调用,自己不依赖其它反复)已经被测试过,我们...

Ubuntu18.04 instsall XMind_8 and crack

wgethttps://www.xmind.cn/xmind/downloads/xmind-8-update8-linux.zip#downloadxmind8linuxtarballwgethttps://eastasia1-mediap.svc.ms/transform/zipcontent?provider=s...

ubuntu18.04 install rar

sudoapt-getupdate#如果好久没有更新资源建议update一次sudoapt-getinstallrar#安装rarsudoapt-getinstallunrar#安装unrarsudoapt-getinstallp7zip-rar#安装p7zip-rarsudoapt-getinstallp7zip*#...
代码星球 ·2020-04-05

make install 时指定安装路径

The makeinstalltargetdirisrepresentationedbyvar: DESTDIR,ifwesetthisvartothelocationwhichwewanttoinstalledto,thenwecanhavethebuildresultinstalledaccro...

poj 3190 Stall Reservations 贪心 + 优先队列

题意:给定N头奶牛,每头牛有固定的时间[a,b]让农夫去挤牛奶,农夫也只能在对应区间对指定奶牛进行挤奶,    求最少要多少个奶牛棚,使得在每个棚内的奶牛的挤奶时间不冲突。 思路:1、第一个想法就是贪心,对每头牛的挤奶时间[a,b]按a和b都从小排序,接着从左边开始找地一头牛,    然后再往右边找能够不冲突...

poj 1328 Radar Installation 贪心

题意:给出岛屿个数n和地雷的范围c,然后再给出n个岛屿的xy坐标,在x轴上放置地雷,求出能覆盖所有岛屿的地雷最小数    否则输出-1 思路:1、一开始,我第一个想法就是对岛屿进行排序,x从小到大,接着在x轴上放置地雷,尽可能靠右边并且能够覆盖左边的岛屿    ,接着筛选右边同时也处于该地雷之内的岛屿,再不断...

jemalloc内存分配器详解

C中动态内存分配malloc函数的背后实现有诸派:dlmalloc之于bionic;ptmalloc之于glibc;allocationzones之于macosx/ios;以及jemalloc之于FreeBSD/NetBSD/Firefox。malloc实现对性能有较大影响,而jemalloc似乎是目前诸实现中最强的,...

Installation of Scylla on CentOS 7

UsethesestepstoinstallScyllausingYumrepositoriesonCentOS.PrerequisitesCentOS7.2orlater,forthe64-bitx86_64architecture.Yumpackagemanagementapplicationinstalled.A...

windows hbase installation

Inthepreviouspost, Ihaveintroducedhowtoinstallhadooponwindowsbasedsystem.Now,Iwillintroducehowtoinstallhbaseonwindows.1.Preparation:beforetheinstallation,l...
代码星球 ·2020-04-05

Install hadoop on windows(non-virtual machine, such cygwin)

DownloadBeforestartingmakesureyouhavethistwosoftwaresHadoop2.7.1Java–Jdk1.7+ExtractdownloadedtarfileConfigurationStep1– Windowspathconfiguratio...

Parallel I/O and Columnar Storage

Webeginwithahighleveloverviewofthesystemwhilefollowuppostswilldiscussspecificcomponentsinmoredetail.Thetargetaudiencearesoftwareandsystemsengineerswithaninteres...
代码星球 ·2020-04-05

InterlliJ Debug方式启动:method breakpoints may dramatically show down debugging

 使用idea在DEBUG的时候出现Methodbreakpointsmaydramaticallyslowdowndebugging,如图:根据语义可能是断点打在方法上面了,导致在某个断点卡住了。 重启服务器和重启idea已然无解。打开Breakpoints面板看看,(快捷键:Ctrl-Shift...

mysql [索引优化] -- in or替换为union all

一个文章库,里面有两个表:category和article。category里面有10条分类数据。article里面有20万条。article里面有一个"article_category"字段是与category里的"category_id"字段相对应的。article表里面已经把article_category字义为...
代码星球 ·2020-04-04

replaceAll的一个bug

StringreplaceAll(regex,replacement)函数,由于第一个参数支持正则表达式,replacement中出现“$”,会按照$1$2的分组模式进行匹配,当编译器发现“$”后跟的不是整数的时候,就会抛出“非法的组引用”的异常。...
代码星球 ·2020-04-04

List和set集合:交集、差集、合集的区别retainAll,removeAll、addAll

 set、list集合的交集(retainAll)、差集(removeAll)是没有区别的都是一样的.set、list集合的合集addAll是有区别的:set可以去重复;list不去重复 publicstaticvoidmain(String[]args){   &nb...
首页上一页...118119120121122...下一页尾页