码迷,mamicode.com
首页 >  
搜索关键字:use case    ( 38996个结果
【转】Python version 2.7 required, which was not found in the registry
安装setuptools的时候,不能再注册表中识别出来python2.7在网上找了方法,仅作笔记,供下次使用方法:新建一个register.py 文件,把一下代码贴进去,保存(G盘) 1 # 2 # script to register Python 2.0 or later for use wit...
分类:编程语言   时间:2014-06-29 14:45:14    阅读次数:312
Keil 4 与Proteus 7.8联调
实验环境:windows 8.1 pro with Keil 4 and Proteus 7.8 both cracked。步骤:下载联调工具Vdmagdi,安装。keil下Option/Debug,将右侧的单选框点上。proteus 下Debug/Use remote debug monitor点...
分类:其他好文   时间:2014-06-07 04:20:40    阅读次数:318
UML for Java Programmers之dx实战
dx是一套简单的开发规则。它说白了就是迭代开发,在短周期内迭代处理”所有事情“,这里所指的”所有事情“包括需求、分析、设计、实现、测试和文档等等。它的大概流程是这样:1. 初始探索 跟客户坐下来一起讨论系统到底是做什么的。在这个过程中,识别出系统的use-case也就是我们所说的user-stor....
分类:编程语言   时间:2014-05-30 11:07:43    阅读次数:338
mysql密码忘记或者不知道,怎么办?
运行cmd;输入mysql回车,如果成功,将出现MySQL提示符 >连接权限数据库>use mysql; (>是本来就有的提示符,别忘了最后的分号)修改改密码:> update user set password=password("123456") where user="root"; (别忘了最...
分类:数据库   时间:2014-05-30 06:03:00    阅读次数:256
如何收缩表空间大小
转摘:oracle数据库表空间文件收缩实例 1.查看数据文件的使用情况包括内容:数据文件大小,已经used空间,free空间,hwm信息 1 select /*+ ordered use_hash(a,b,c) */ 2 a.file_id,a.file_name,a.filesize, b.fre...
分类:其他好文   时间:2014-05-30 05:45:38    阅读次数:342
Oracle Parameter使用
string sqlStr = "update sys_case t set t.content =:CONTENT,t.property=:PROPERTY where id=:ID"; OracleParameter[] parameterValue = { ...
分类:数据库   时间:2014-05-29 12:18:04    阅读次数:283
delphi基本语法
本文参考自《delphi2010语法手册》1. 工程文件结构源文件联系着unit单元,delphi主模块源文件格式为.dpr,其他模块为.pas,一个完整程序由一个.dpr和若干.pas组成。2..dpr 程序结构一个.dpr由程序头、[use从句]、主程序块组成。一个典型工程文件如下:1 prog...
分类:其他好文   时间:2014-05-29 10:26:47    阅读次数:272
Summary of HashMap in Java
The tricky thing is how to decide the key for a hashmap. Especially when you intend to use self-defined objects as key.The simple rule is you have to ...
分类:编程语言   时间:2014-05-29 09:08:40    阅读次数:362
Flex 文本编辑类控件 强制失去焦点问题
TextInput, RichEditableText, NumericStepper等类型的控件在获得焦点后.有时需要他失去焦点时stage.focus=null;不能完全做到,因为focusmanager里还保存着个lastFocus,程序再次激活时会自动把它重新设置为焦点.解决方法:use n...
分类:其他好文   时间:2014-05-29 09:03:34    阅读次数:346
sed use case: Filter without editing
if we want to filter with sed pattern and just print the filtered lines without any further editing , we can do it like thisls -a1 ~ | sed -ne "/^\./p...
分类:其他好文   时间:2014-05-28 22:58:56    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!