码迷,mamicode.com
首页 >  
搜索关键字:message    ( 9417个结果
Django(part4)
一个简单的form表单:#polls/templates/polls/detail.html {{ question.question_text }}{% if error_message %}{{ error_message }}{% endif %} {% csrf_token %} {% fo...
分类:其他好文   时间:2014-09-24 18:19:47    阅读次数:241
CAN总线过滤规则
奇怪的设计 If (AFMR & Message_ID) == (AFMR & AFIR) then Capture Message AFIR 1 接收 AFMR 0 接收 设置某接收滤波寄存器AFIR00000000001(11位),接收屏蔽寄存器AFMR11111111101(11位),则该对组...
分类:其他好文   时间:2014-09-24 14:01:36    阅读次数:212
MVAPICH
from:https://developer.nvidia.com/mvapichMVAPICH2 is an open source implementation of Message Passing Interface (MPI) that delivers the best performan...
分类:Windows程序   时间:2014-09-24 12:37:36    阅读次数:281
数据库临时表的用法
CREATE PROCEDURE [dbo].[SP_SelectProcessID]@ProcessID INT,@Message nvarchar(max) OUTPUTAS create table #TmpProcessID (id int identity(1,1), tmpStr ...
分类:数据库   时间:2014-09-24 12:04:26    阅读次数:296
linux消息队列相关操作
/* 发送消息队列 */#include #include #include #include #include #include #include #include struct mymsg { long mtype; /* message type, must be > 0...
分类:系统相关   时间:2014-09-23 22:07:35    阅读次数:276
bash脚本编程之字符串操作
字符串操作之一:测试变量存在性${varname:-word}如果varname存在且非null,返回其值,否则返回word${varname:=word}如果varname存在且非null,返回其值,否则将其设置为word,然后返回其值${varname:?message}如果varname存在且非null,返回其值,否则打印varname:后跟message,并..
分类:其他好文   时间:2014-09-23 20:20:35    阅读次数:219
Android Handler机制 (一个Thead中可以建立多个Hander,通过msg.target保证MessageQueue中的每个msg交由发送message的handler进行处理 ,但是 每个线程中最多只有一个Looper,肯定也就一个MessageQuque)
转载自http://blog.csdn.net/stonecao/article/details/6417364在android中提供了一种异步回调机制Handler,使用它,我们可以在完成一个很长时间的任务后做出相应的通知 handler基本使用: 在主线程中,使用handler很简单,new一个...
分类:移动开发   时间:2014-09-23 12:13:04    阅读次数:344
Faye,Simple pub/sub messaging for the web
参考资料 http://faye.jcoglan.com/        Faye is a publish-subscribe messaging system based on the Bayeux protocol/CometD. It provides message servers for Node.js and Ruby, and clients for use on...
分类:Web程序   时间:2014-09-23 12:12:24    阅读次数:192
跨文档消息
跨文档消息传送1.想从其他窗口接收到消息必须对窗口对象的message事件进行监听 window.addEventListener("message",function(){},false);使用window对象的otherwindow.postMessage(message,targetOrigi...
分类:其他好文   时间:2014-09-23 01:30:13    阅读次数:340
JMS
Most of the communications between components that you have seen so far are synchronous: one class calls another, a managed bean invokes an EJB, which calls an entity, and so on.? ? ?Message...
分类:其他好文   时间:2014-09-22 17:36:33    阅读次数:216
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!