上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 82 下一页
摘要: nm基本用法命令 nm用来列出目标文件的符号清单。下面是nm命令的格式: nm [-a|--debug-syms] [-g|--extern-only] [-B][-C|--demangle] [-D|--dynamic] [-s|--print-armap][-o|--print-file-name] [-n|--numeric-sort][-p|--no-sort] [-r|--reverse-sort] [--size-sort][-u|--undefined-only] [-l|--line-numbers] [--help][--version] [-t radix|--radix= 阅读全文
posted @ 2011-05-27 22:29 greencolor 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1.ar基本用法 ar命令可以用来创建、修改库,也可以从库中提出单个模块。库是一单独的文件,里面包含了按照特定的结构组织起来的其它的一些文件(称做此库文件的member)。原始文件的内容、模式、时间戳、属主、组等属性都保留在库文件中。 下面是ar命令的格式: ar [-]{dmpqrtx}[abcfilNoPsSuvV] [membername] [count] archive files... 例如我们可以用ar rv libtest.a hello.o hello1.o来生成一个库,库名字是test,链接时可以用-ltest链接。该库中存放了两个模块hello.o和hello1.o。选项前 阅读全文
posted @ 2011-05-27 22:28 greencolor 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Here is a list of 'vi' commands to move the cursor on text area of the screen: [n]h Move left n times [n]l Move right n times [n]j Move down n times [n]k Move up n times [n]w Move to next word n times [n]b Move to previous word n times $ Move to the end of the line ^ Move to the beginning of 阅读全文
posted @ 2011-05-26 20:59 greencolor 阅读(247) 评论(0) 推荐(0) 编辑
摘要: usingSystem.Text.RegularExpressions;stringstr="aaajsbbbjsccc";string[]sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);foreach(stringiinsArray)Response.Write(i.ToString()+"<br>"); 阅读全文
posted @ 2011-05-24 14:10 greencolor 阅读(143) 评论(0) 推荐(0) 编辑
摘要: setStandardOptionsgetBluIceDirectoriesDCS::Config config (set NickName)loadConfig $beamlinecreateControlSystemInterfacestartBluIce ::config::iwidgets::panedwindow .pw.pw add BluIce.pw add Logger -minimum 10set statusBar [StatusBar .sb]set bluice [BluIce .pw.childsite.0.bluice]set logView [DCS::LogVi 阅读全文
posted @ 2011-05-23 22:07 greencolor 阅读(131) 评论(0) 推荐(0) 编辑
摘要: objectMediator mediator mediator announceDestruction object mediator announceExistence object mediator cget -option mediator configure ?-option? ?value -option value...? mediator getUniqueInitiatorId mediator isa className mediator printStatus mediator register lstnr target attribute callback ?alias 阅读全文
posted @ 2011-05-22 14:42 greencolor 阅读(142) 评论(0) 推荐(0) 编辑
摘要: proc getMachineType { } { global env if {[info exists env(OS)]} { return nt } else { set os [exec uname] switch -exact -- $os { OSF1 { return decunix } IRIX64 { return irix } Linux { set mach [exec uname -m] switch -exact -- $mach { i686 { return linux } x86_64 { return linux64 } ia64 { return ia64 阅读全文
posted @ 2011-05-20 21:57 greencolor 阅读(116) 评论(0) 推荐(0) 编辑
摘要: DCS::DcssUserProtocol dcss \ |---> no space $dcssHostName \ $dcssPort \ -useSSL [::config getDcssUseSSL] \ -authProtocol $authProtocol \ -_reconnectTime 1000 \ -callback "" \ -networkErrorCallback "" 阅读全文
posted @ 2011-05-19 16:13 greencolor 阅读(136) 评论(0) 推荐(0) 编辑
摘要: class ::DCS::Set {# public methodspublic method constructor {} {}public method add { member }public method remove { member }public method get {}public method clear {}public method isMember { member }# private dataprivate variable memberList {}}body ::DCS::Set::clear {} {# set the list of current mem 阅读全文
posted @ 2011-05-18 22:53 greencolor 阅读(201) 评论(0) 推荐(0) 编辑
摘要: ::iwidgets::panedwindow .pw class TimeWidget { inherit ::itk::Widget private common midhighlight #e0e0f0 private common smallFont *-helvetica-bold-r-normal--34-*-*-*-*-*-*-* public method updateTime constructor {args} { # the time widget itk_component add time { iwidgets::timefield $itk_interior.t \ 阅读全文
posted @ 2011-05-17 22:52 greencolor 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 82 下一页