码迷,mamicode.com
首页 >  
搜索关键字:condition    ( 2031个结果
linux-4.1的O0编译
去除最顶层Makefile的-Os/-O2, 替换为-O0 替换include/linux/complier.h中 #if 1 //zjr #define __compiletime_assert(condition, msg, prefix, suffix) BUG_ON(!condition) ...
分类:系统相关   时间:2020-06-08 09:25:16    阅读次数:85
Condition用例、源码分析详解(上)
在前面学习 synchronized 的时候,有讲到 wait/notify 的基本使用,结合 synchronized 可以实现对线程的通信。那么这个时候我就在思考了,既然 J.U.C 里面提供了锁的实现机制,那 J.U.C 里面有没有提供类似的线程通信的工具呢? 于是找阿找,发现了一个 Cond ...
分类:其他好文   时间:2020-06-07 17:57:13    阅读次数:65
Why failover-based implementations are not enough
Distributed locks with Redis – Redis https://redis.io/topics/distlock There is an obvious race condition with this model: Client A acquires the lock i ...
分类:其他好文   时间:2020-06-01 13:33:43    阅读次数:58
python常用语法合集
判断语句 (使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块) if condition_1: statement_block_1 elif condition_2: statement_block_2 else: statement_block_3 循环: While 循环示例 coun ...
分类:编程语言   时间:2020-06-01 12:03:11    阅读次数:97
activiti流程动态创建
前言: 这些天由于一直在设计新系统的数据库表(PS:由于原型一直在改,所以表设计也改了好多版。。。。),导致了activiti的迟迟更新,原本之前是打算先分享下监听器的。结果被工作耽搁了,期间正好了解到新系统有这样的一个功能,流程的动态创建,即用户在前端界面选择任务节点,后台生成流程实例。参考了下网 ...
分类:其他好文   时间:2020-05-31 20:05:42    阅读次数:141
oracle connect by用法
1、基本语法 select * from table [start with condition1] connect by [prior] id=parentid 一般用来查找存在父子关系的数据,也就是树形结构的数据;其返还的数据也能够明确的区分出每一层的数据。 start with conditi ...
分类:数据库   时间:2020-05-27 17:06:17    阅读次数:78
充值-实体类+查询
package com.zhenshan.entity; import java.io.Serializable; import com.zhenshan.entity.BorrowCarDetail; public class BorrowCar implements Serializable{ ...
分类:其他好文   时间:2020-05-27 12:10:13    阅读次数:65
spring data jpa 动态查询(mysql)
cankao : https://stackoverflow.com/questions/45973070/spring-jpa-examplematcher-compare-date-condition 场景: 动态条件查询, (主要解决时间问题) repository public interf ...
分类:数据库   时间:2020-05-27 12:02:31    阅读次数:166
[LeetCode 621] Task Scheduler
Given a char array representing tasks CPU need to do. It contains capital letters A to Z where different letters represent different tasks. Tasks coul ...
分类:其他好文   时间:2020-05-27 09:16:52    阅读次数:74
顺序打印ABC算法题
顺序打印ABCABC...ABC,打印10组。 方法一:使用ReentrantLock和Condition实现。使用三组Condition来实现线程之间的通信。 1 public class PrintABC implements Runnable { 2 3 private int times = ...
分类:编程语言   时间:2020-05-25 19:57:23    阅读次数:89
2031条   上一页 1 ... 10 11 12 13 14 ... 204 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!