码迷,mamicode.com
首页 >  
搜索关键字:swiss coordinate sys    ( 21294个结果
python读取文本、配对、插入数据脚本
#-*- coding:UTF-8 -*-#-*- author:Zahoor Wang -*-import codecs, os, sys, platform, stringdef env():return platform.system()def read_file(uri, charset =...
分类:编程语言   时间:2014-05-16 04:30:50    阅读次数:306
通过libvirt 控制vCPU使用,为了缓解CPU资源争抢
#!/usr/bin/envpython #-*-coding:UTF-8-*- """ @Item:IOCtl @Author:VilliamSheng @Group:PythonDEVGroup @Date:2013-05-29 @Funtion: CPUcontrol: TocontrolforCPU """ importos,sys,time,libvirt,traceback,commands ‘‘‘ Func:Recorderrormessage path:Messagesavepath form..
分类:其他好文   时间:2014-05-16 02:46:57    阅读次数:504
Oracle下ORA-00119错误的解决
Oracle在修改参数后启动时报下列错误SYS@PROD>startupORA-00119:invalidspecificationforsystemparameterDISPATCHERSORA-00111:invalidattributeDISPPATCHERS解决方法1.创建pfileSYS@PROD>createpfilefromspfile;Filecreated.2.修改pfile[oracle@edbjr2p1dbs]$viminitPRO..
分类:数据库   时间:2014-05-16 02:07:35    阅读次数:360
Python重写C语言程序100例--Part5
''' 程序31】 题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续    判断第二个字母。 1.程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。 2.程序源代码: ''' from sys import stdin letter = stdin.read(1) stdin.flush() while letter != 'Y...
分类:编程语言   时间:2014-05-16 01:47:37    阅读次数:272
LeetCode 011 Container With Most Water
【题目】 Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a contain...
分类:其他好文   时间:2014-05-16 01:32:47    阅读次数:406
python 地址簿
创建你自己的命令行 地址簿 程序。在这个程序中,你可以添加、修改、删除和搜索你的联系人(朋友、家人和同事等等)以及它们的信息(诸如电子邮件地址和/或电话号码) #!/usr/bin/python # Filename : var.py import cPickle as p import os import sys filename = 'contacts.data' class memb...
分类:编程语言   时间:2014-05-15 23:44:49    阅读次数:462
ftrace 使用方法
1. 追蹤Kernel function (以schedule()示範)先至/sys/kernel/debug/tracing# cat available_tracers確定有無 函式追蹤器(function)blk mmiotrace function_graph wakeup_rt wakeu...
分类:其他好文   时间:2014-05-15 17:50:00    阅读次数:339
oracle 命令行
sqlplus /nolog 使用字符创方式登陆 conn sys/mima@fuwuming as sysdbasqlplus 输入用户名及密码登陆 用户名:sipc@fuwuming 密码 :不可见输入shutdown immediatestartup
分类:数据库   时间:2014-05-15 14:17:43    阅读次数:270
符号与源码
符号与源码是调试过程中的重要因素,它们使得枯燥生硬的调试内容更容易地让调试人员读懂。在可能的情况下,应该尽量加载符号和源码,大部分情况下源码难以得到,但符号却总能以符号文件的形式易于得到。 什么是符号文件呢?编译器和链接器在创建二进制镜像文件(诸如exe、dll、sys)时,伴生的后缀名为.d...
分类:其他好文   时间:2014-05-15 11:44:39    阅读次数:277
大并发需要调的几个参数
/proc/sys/net/ipv4/tcp_max_tw_buckets 默认的太小了net.ipv4.tcp_syncookies = 0这个参数是怎么得来的?其实是通过ab 简单的压力测试,/var/log/message 里面会有内核的报错信息。
分类:其他好文   时间:2014-05-14 22:56:49    阅读次数:349
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!