码迷,mamicode.com
首页 >  
搜索关键字:zabbix_server functions    ( 2506个结果
Fusioncharts图表组件API参考方法(Functions)汇总篇(续)
[摘要]: chartType()FusionCharts的JavaScript类API提供了大量的功能。下面的列表显示在每个功能的详细信息: 一、FusionCharts的类 - 实例功能 1、configure(name:string , value:string) or configure(....
分类:Windows程序   时间:2014-09-01 13:48:23    阅读次数:415
libeXosip2(3-1) -- eXosip2 INVITE and Call Management
eXosip2 INVITE and Call Management SIP messages and call control API Functions int eXosip_call_set_reference (struct eXosip_t *excontext, int id, void...
分类:其他好文   时间:2014-08-29 20:00:48    阅读次数:607
libeXosip2(2-2) -- eXosip2 network API
eXosip2 network API General purpose API. Functions int eXosip_transport_set (osip_message_t *msg, const char *transport) int eXosip_guess_localip (str...
分类:Windows程序   时间:2014-08-29 19:48:38    阅读次数:257
jQuery Event add [ 源码分析 ]
/* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { add: function( elem, types, han...
分类:Web程序   时间:2014-08-28 16:19:39    阅读次数:214
lua学习之表达式
3.1 算术运算符 二元运算符:+-*/ ^ (加减乘除幂) 一元运算符:-(负值) 这些运算符的操作数都是实数。 3.2 关系运算符 = == ~= ==,~=如果两个值d类型不同,则不等 lua通过引用比较tables,userdata,functions,也就是当且仅当表示同一个对象时才相等。 3.3 逻辑运算符 and or not a and b -- ...
分类:其他好文   时间:2014-08-27 14:49:38    阅读次数:176
STL vector方法总结(一)Member functions(34)
这里是vector的所有构造方法,成员方法的一些总结,具体的可以详看后面的链接。 容器:Vector 原型: template > class vector;  描述:vector是一种顺序容器,其行为类似于大小可以改变的array数组。 跟array一样,vector使用连续的存储单元来存储里面的元素。这意味着vector可以使用正常的指针的偏移量来访问其元素。它跟array一样的高...
分类:其他好文   时间:2014-08-27 13:07:08    阅读次数:289
黄聪:wordpress后台导致fonts.googleapis.com、ajax.googleapis.com加载慢的解决方法
在functions.php文件里面添加下面的代码就行了。if(is_admin()){ function hcsem_cdn_callback($buffer) {return str_replace('googleapis.com', 'useso.com', $buffer);} ...
分类:Windows程序   时间:2014-08-26 18:57:36    阅读次数:191
Communicating with Hardware 《LDD3 学习笔记》
Communicating with Hardware Using I/O Ports I/O ports are the means by which drivers communicate with many devices, at least part of the time. This section covers the various functions...
分类:其他好文   时间:2014-08-26 15:36:16    阅读次数:363
《Programming in Lua 3》读书笔记(二十四)
Techniques for Writing C Functions...
分类:其他好文   时间:2014-08-25 21:17:14    阅读次数:340
Python学习笔记_每天一小时 8.24
8.24 函数 要调用一个函数,需要知道函数的名称和参数,比如求绝对值的函数abs,只有一个参数。可以直接从Python的官方网站查看文档: http://docs.python.org/2/library/functions.html#abs 也可以在交互式命令行通过help(abs)查看abs函数的帮助信息。 比较函数cmp(x, y)就需要两个参数,如果x,返回-1,如果x...
分类:编程语言   时间:2014-08-24 18:08:02    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!