上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页
摘要: http://blog.chinaunix.net/uid-9688646-id-3476132.html https://my.oschina.net/u/2381372/blog/802844 阅读全文
posted @ 2017-06-15 18:56 soul.stone 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 引言 一、线程 1.1 普通的多线程1.2 自定义线程类1.3 线程锁1.3.1 未使用锁1.3.2 普通锁Lock和RLock1.3.3 信号量(Semaphore)1.3.4 事件(Event)1.3.5 条件(condition)1.3 全局解释器锁(GIL)1.4 定时器(Timer)1.5 阅读全文
posted @ 2017-05-28 21:03 soul.stone 阅读(386) 评论(0) 推荐(0) 编辑
摘要: # coding=utf-8 import time import tkinter as tk ######################################################################## class Window: def __init__(self, title='nms', width=300, height=120, s... 阅读全文
posted @ 2017-05-28 20:50 soul.stone 阅读(306) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/hjslovewcl/archive/2011/03/16/2314330.html http://blog.csdn.net/lingfengtengfei/article/details/12392449 http://blog.csdn.net/t 阅读全文
posted @ 2017-05-28 13:32 soul.stone 阅读(230) 评论(0) 推荐(0) 编辑
摘要: #include union { int number; char s; } test; int SYS_IS_BIGENDIAN() { test.number = 0x01000002; return (test.s == 0x01); } int main(int argc, char **argv) { if (SYS_IS_BI... 阅读全文
posted @ 2017-05-28 13:31 soul.stone 阅读(131) 评论(0) 推荐(0) 编辑
摘要: http://server.zol.com.cn/240/2400564.html 1、 主板信息 查看主板的序列号 dmidecode | grep -i 'serial number' 2,、cpu信息 #通过/proc文件系统 1) cat /proc/cpuinfo #通过查看开机信息 2) 阅读全文
posted @ 2017-05-28 13:16 soul.stone 阅读(302) 评论(0) 推荐(0) 编辑
摘要: git config --global user.name "HanShuliang" //设置用户名 git config --global user.email "13241153187@163.com" //设置邮箱 # clone一个版本:git clone https://github.c 阅读全文
posted @ 2017-05-24 21:51 soul.stone 阅读(1447) 评论(0) 推荐(0) 编辑
摘要: https://www.ibm.com/developerworks/cn/cloud/library/1401_zhaoyi_openswitch/index.html Open vSwitch 概述 Open vSwitch(下面简称为 OVS)是由 Nicira Networks 主导的,运行 阅读全文
posted @ 2017-05-21 22:04 soul.stone 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1, chip: barefoot: https://barefootnetworks.com/ broadcom: intel 2,NOS snaproute flexswitch 3,intergrators agema 阅读全文
posted @ 2017-05-21 21:55 soul.stone 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1,配置文件 登陆Linux系统,打开Terminal,使用Shell的时候,系统在背后读取了一大“坨”的配置文件,这些配置文件决定了你的Shell中的变量 2,变量 内部变量;系统定义,不能修改; 环境变量;系统定义,可以修改,可以利用export将用户变量转为环境变量; 用户变量;用户定义,可以 阅读全文
posted @ 2017-05-21 21:26 soul.stone 阅读(274) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页