码迷,mamicode.com
首页 >  
搜索关键字:misc    ( 833个结果
FreeBSD系统下如何查看CPU信息
dmesg最简单的方法freebsd#cat/var/run/dmesg.boot|grepCPU可以查看cpu信息sysctlhw.model看cpuidsysctlmachdep.tsc_freq看cpu频率或者直接通过portscd/usr/ports/misc/cpuidmakeinstallclean然后可以直接通过cpuid来查看/usr/local/bin/cpuidTags:cpu,freebsd
分类:其他好文   时间:2015-02-06 19:06:18    阅读次数:244
md5工具类
import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;import sun.misc.BASE64Encoder;publicstaticStringmd5(String str){ Mess...
分类:其他好文   时间:2015-02-04 16:13:21    阅读次数:126
misc类型的gpio驱动模版-linu
还是闲着没事,丢个模版就跑 #include #include #include #include #include #include #include #include #include #include #include #include #include #define DEVICE_NAME "av5260-leds" #define LED_DEFAU...
分类:其他好文   时间:2015-02-03 17:16:48    阅读次数:190
misc设备驱动模板-linux
闲来无事,丢个misc驱动模板就跑  #include #include #include #include #include #include #include #include #include #include #include #include #include #define DEVICE_NAME "misc_dev0" static lo...
分类:系统相关   时间:2015-02-02 18:03:55    阅读次数:231
Scipy - science python
Scipy中引入包错误: ... scipy.misc.imsave(filename, numpy.kron(doc, zoom)) ... AttributeError: 'module' object has no attribute 'misc' 发生错误的原因: Most possibly because scipy is a library (package...
分类:编程语言   时间:2015-01-29 21:07:54    阅读次数:697
Misc. - Lowest common ancestor - post-order traversal solution
Details not refined yet..struct Ret{ Ret(TreeNode *p, Mask rm) : pVal(p), m(rm){} TreeNode *pVal; Mask m;};class Solution {public: Ret lca...
分类:其他好文   时间:2015-01-27 07:03:07    阅读次数:193
三大类加载器 经典例子
import java.net.URL;import sun.misc.Launcher;/** * 演示 * appClassLoader * extClassloader * bootstrapLoader * 所加载的文件 * @author JoyoungZhang@gmail.com * ...
分类:其他好文   时间:2015-01-22 17:25:55    阅读次数:206
LVS+Keepalived监控UDP
Keepalived监控后端TCP协议的配置很好写,直接用TCP_CHECK就行了.而监控UDP协议就没有UDP_CHECK了,需要用到MISC_CHECK来调用外部的脚本去判断UDP端口是否开启来做到UDP健康状态检查.首先我们知道检测UDP端口是否开启可以使用linux下的nc命令.例子:12[root@lvs-proxy2-1~]#nc-zu-..
分类:其他好文   时间:2015-01-22 15:53:01    阅读次数:423
Oracle正则表达式实战
原文链接:http://oracle-base.com/articles/misc/regular-expressions-support-in-oracle.php Introduction   Example 1 : REGEXP_SUBSTR Example 2 : REGEXP_SUBSTR Example 3 : REGEXP_SUBSTR Example 4 : REGE...
分类:数据库   时间:2015-01-22 13:25:46    阅读次数:329
java中base64
// 将 s 进行 BASE64 编码 public static String getBASE64(String s) { if (s == null) return null; return (new sun.misc.BASE64Encoder()).encode( s.getBytes() ...
分类:编程语言   时间:2015-01-22 12:53:07    阅读次数:220
833条   上一页 1 ... 73 74 75 76 77 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!