-
基于 Gitlab 进行开发团队管理的尝试——02. 成员负载可视化
2019-11-28 11:44饺子你现在是啥职位啊?
我的解决方案是尽量细化每个任务的时间,默认认为一个任务是 1 天。定时提醒开始 2 天未更新的任务。
实际开发用时?? 别想了,你又不是没做过开发
-
切面日志能这样用吗?
2019-01-12 15:28需要过滤文件参数.. 不然日志会爆掉的.. 可以看一下我之前写过的 https://hacpai.com/article/1541226397969
-
Java8 Lambda 场景示例
2018-12-22 13:28like this?
String less150 = "less 150"; String greater150 = "greater 150"; Map<String, List<Item>> map = list.stream().collect(Collectors.groupingBy(it->{ if (it.getPrice()>100) { return less150; } else { return greater150; } }, Collectors.toList()));
-
Java8 Lambda 场景示例
2018-12-21 08:20有的
@Test public void map_item_count_by_uid() { Map<String, Long> uidMapCount = list.stream() .collect(Collectors.groupingBy(Item::getUid, Collectors.mapping(Function.identity(), Collectors.counting()))); uidMapCount.forEach((k, v) -> System.out.println(String.format("key = %s : value = %s", k, v))); }