码迷,mamicode.com
首页 >  
搜索关键字:zabbix_server functions    ( 2506个结果
zabbix 自动发现与指定动作处理
一般zabbix服务器跟客户端部署好之后,都是通过建主机,然后添加主机到主机组这样的一个过程如果主机过多的话这样手动添加就比较繁琐了。今天介绍一下zabbix的自动发现功能1、配置自动发现之前服务器端需要修改以下配置[root@lw-02~]#vim/usr/local/zabbix/etc/zabbix_server.c..
分类:其他好文   时间:2014-10-30 19:27:23    阅读次数:265
quick-cocos2d-x transition用法
Functions transition.newEasing(action, easingName, more) 为图像创造效果 transition.execute(target, action, args) 执行一个动作效果 transition.rotateTo(target, args) 将显示对象旋转到指...
分类:其他好文   时间:2014-10-30 15:24:28    阅读次数:298
poj 1080 Human Gene Functions (dp,LCS)
题意:给定两个字符串,求它们对齐匹配的最大值 要求:可以两个字符匹配,也可以一个字符和‘-’匹配, 但是不能两个‘-’匹配...
分类:其他好文   时间:2014-10-30 15:21:24    阅读次数:227
caffe源代码分析--math_functions.cu代码研究
当中用到一个宏定义CUDA_KERNEL_LOOP在common.hpp中有。#defineCUDA_KERNEL_LOOP(i,n) \for(inti = blockIdx.x * blockDim.x + threadIdx.x; \i __global__void mul_kernel(co...
分类:其他好文   时间:2014-10-29 21:02:10    阅读次数:1037
exercise.tour.go google的go官方教程答案
/* Exercise: Loops and Functions #43 */package main import ( "fmt" "math") func Sqrt(x float64) float64 { z := float64(2.) s := float64(0)...
分类:其他好文   时间:2014-10-29 01:48:06    阅读次数:282
Using the built-in functions of PHP
PHP has a huge range of built-in functions designed to perform predefined tasks such as converting a string to upper case, getting the dimensions of a...
分类:Web程序   时间:2014-10-28 17:36:24    阅读次数:150
A Tour of Go Function closures
Go functions may be closures. A closure is a function value that references variables from outside its body. The function may access and assign to the...
分类:其他好文   时间:2014-10-28 00:39:06    阅读次数:191
A Tour of Go Exercise: Fibonacci closure
Let's have some fun with functions.Implement afibonaccifunction that returns a function (a closure) that returns successive fibonacci numbers.package ...
分类:其他好文   时间:2014-10-28 00:37:06    阅读次数:129
基于Android的ELF PLT/GOT符号重定向过程及ELF Hook实现
基于Android的ELF PLT/GOT符号重定向过程及ELF Hook实现——by 低端码农 2014.10.27 引言 写这篇技术文的原因,主要有两个: 其一是发现网上大部分描述PLT/GOT符号重定向过程的文章都是针对x86的,比如《Redirecting functions in shared ELF libraries》就写得非常不错。虽然其过程跟ARM非常类似,但由于C...
分类:移动开发   时间:2014-10-27 15:43:25    阅读次数:255
A Tour of Go Exercise: Loops and Functions
As a simple way to play with functions and loops, implement the square root function using Newton's method.In this case, Newton's method is to approxi...
分类:其他好文   时间:2014-10-27 00:18:38    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!