码迷,mamicode.com
首页 >  
搜索关键字:handling    ( 365个结果
iOS Hit-Test应用
最近又看了遍苹果的官方文档《Event Handling Guide for iOS》,对事件响应链中的hit-test view 又多了些理解,个人觉的官方文档对这块讲的非常简单,很多东西都是点到为止,hit-test view的知识在项目的任何地方都用到了,但自己反而感知不到,接下来我会给大家讲 ...
分类:移动开发   时间:2016-12-07 09:43:58    阅读次数:397
Google C++单元测试框架---Google TestExtending Google Test by Handling Test Events
Google TestExtending Google Test by Handling Test Events Google测试提供了一个事件侦听器API,让您接收有关测试程序进度和测试失败的通知。 可以监听的事件包括测试程序的开始和结束,测试用例或测试方法等。 您可以使用此API来扩充或替换标准 ...
分类:编程语言   时间:2016-11-28 00:57:36    阅读次数:270
有用的.NET库
1. Polly Polly is a .NET 3.5 / 4.0 / 4.5 / PCL library that allows developers to express transient exception and fault handling policies such as Retry ...
分类:Web程序   时间:2016-11-13 11:24:34    阅读次数:181
jQuery.ajax 根据不同的Content-Type做出不同的响应
使用H5+ASP.NET General Handler开发项目,使用ajax进行前后端的通讯。有一个场景需求是根据服务器返回的不同数据类型,前端进行不同的响应,这里记录下如何使用$.ajax实现该需求。 参考文章: Ajax Content Type Handling in jQueryjQuer ...
分类:Web程序   时间:2016-11-03 16:10:20    阅读次数:215
pycharm 单元测试失败 not found while handling absolute import
pycharm 单元测试运行错误 Pycharm import RuntimeWarning after updating to 2016.2. 用老版本的utrunner.py替换新版本的utrunner.py ...
分类:其他好文   时间:2016-10-29 14:23:07    阅读次数:618
Contiki clock模块
一、functions for handling system time 这些函数都是platform dependent的,我们是在stm8中实现的。 其中我们的clock_time_t是unsigned long型的,在stm8中unsigned long是32bit,最大数值是42949672 ...
分类:其他好文   时间:2016-10-12 13:24:14    阅读次数:251
Linux------Performance and Tuning
Linux操作系统的基本架构 一. Linux process management 进程管理包括:process scheduling, interrupt handling, signaling, process prioritization, process switching,process... ...
分类:系统相关   时间:2016-10-09 16:48:01    阅读次数:232
C++异常处理(Exception Handling)
在C++中引入了三种操作符来处理程序的出错情况,分别是:try , throw , catch 1.基本的用法如下: 操作过程为: (1)try语句块中的代码正常执行,当有异常发生时,代码使用关键字 throw 和一个参数来抛出一个异常,这个参数可以是任何有效的数据类型,它反映了异常的特征; (2) ...
分类:编程语言   时间:2016-10-06 17:30:08    阅读次数:180
Introduction to the Service Provider Interfaces--官方文档
地址:https://docs.oracle.com/javase/tutorial/sound/SPI-intro.html What Are Services? Services are units of sound-handling functionality that are automat ...
分类:其他好文   时间:2016-09-22 13:19:48    阅读次数:202
Java 异常处理 (Exception Handling)
1. Never return in a finally statement. If you return in a finally block then any Throwables that aren't caught will be completely lost. e.g. 2. If re ...
分类:编程语言   时间:2016-09-16 14:09:54    阅读次数:157
365条   上一页 1 ... 13 14 15 16 17 ... 37 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!