码迷,mamicode.com
首页 >  
搜索关键字:condition variable    ( 5846个结果
windbg bp condition
0:000> bp 0012f2fc "j @ecx == 0 '';'gc'"0:000> g j代表judgement,与c++中的condition?A:B类似。如果断点处ecx是0,则停下;否则go until next breakpoint(gc).
分类:数据库   时间:2014-07-16 22:51:13    阅读次数:218
《java.util.concurrent 包源码阅读》03 锁
Condition接口应用场景:一个线程因为某个condition不满足被挂起,直到该Condition被满足了。类似与Object的wait/notify,因此Condition对象应该是被多线程共享的,需要使用锁保护其状态的一致性示例代码:class BoundedBuffer { fi...
分类:编程语言   时间:2014-07-16 21:41:15    阅读次数:252
SEH
When SEH is used there is a registration process where an exception structure is created for every function as a local variable. The last field of the...
分类:其他好文   时间:2014-07-11 10:52:10    阅读次数:734
div 导航自适应浏览器宽度
<!DOCTYPEhtml><html><head> <title>自适应宽度</title> <style> #condition{float:left;text-align:center;} #conditionul{margin-top:0px;display:inline-block;} #conditionulli{float:left;list-style:none;} </style><..
分类:其他好文   时间:2014-07-10 18:34:27    阅读次数:243
iOS开发OC基础:Xcode中常见英文总结,OC常见英文错误
在开发的过程中难免会遇到很多的错误,可是当看到系统给出的英文时,又不知道是什么意思。所以这篇文章总结了Xcode中常见的一些英文单词及词组,可以帮助初学的人快速了解给出的提示。多练习,就肯定能基本掌握。expression:表达式assignable:赋值variable:变量redefinition..
分类:移动开发   时间:2014-07-09 08:07:19    阅读次数:215
php之foreach遍历数组
foreach (PHP 4, PHP 5) The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable w...
分类:Web程序   时间:2014-07-08 19:52:38    阅读次数:291
从命令行执行django数据库操作
从命令行执行django数据库操作,报错: django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before acce...
分类:数据库   时间:2014-07-08 17:57:04    阅读次数:495
葡萄城页面报表通过表达式来改变字体大小
如题,做报表时候,有时候要根据是否是合计行,来改变合计行的粗细,大小。可以通过字体的表达式来实现:表达式的通用写法: =iif( Fields!YourFieldName.Value operator "Value to compare", "If condition is met, use thi...
分类:其他好文   时间:2014-07-07 00:28:07    阅读次数:201
Welcome to Swift (苹果官方Swift文档初译与注解二十六)---181~188页(第四章-- 流程控制)
Do-While while循环的另一个版本是do-while循环,它在判断条件之前,先执行一遍循环体,然后再次执行循环体,直到条件成为false. do-while循环的通过格式: do { statements } while condition 我们再用蛇和梯子...
分类:移动开发   时间:2014-07-06 18:18:24    阅读次数:252
VS2010 基本运行时检查 和“Stack around the variable XX was corrupted”之间的关系
下午在重新整理一份代码,中间遇到这么一个问题:要么出现内存访问冲突,要么出现“Stack around the variable XX was corrupted”错误。很是恼火!先出现的是“Stack around the variable XX was corrupted”错误,网上查到的第一种...
分类:其他好文   时间:2014-07-05 17:38:49    阅读次数:399
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!