码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
Tracing java execution (copy from http://zvikico.typepad.com/problog/2007/11/five-ways-for-t.html)
Five ways for tracing Java executionI'm often faced with a situation where I need to dig into code that I didn't write. Most of it is poorly documente...
分类:编程语言   时间:2014-09-03 09:31:16    阅读次数:390
Entity Framework 6连接Postgresql、SQLite、LocalDB的注意事项和配置文件
PostgresqlPostgresql支持Code First的方式自动生成表,不过默认的模式是dbo而不是public,而且还可以自动生成自增主键。 SQLiteSQLite不支持Code First的方式自动生成表,所以可能会报找不到相应的ta...
分类:数据库   时间:2014-09-03 01:30:05    阅读次数:389
MVC5 Entity Framework学习之Code First迁移和部署
到目前为止,应用程序一直在本地IIS Express 上运行。为了让其他人能够通过互联网访问你的应用程序,您需要将它部署到WEB服务器。 本文章包含以下内容: 启用Code First迁移,迁移功能能够让你不必重建数据库就可以更改数据模型并将其部署到生产环境。将应用程序部署到Windows Azure,该步骤是可选的。 启用Code First迁移 当你在开发应用程序时,你会对...
分类:Web程序   时间:2014-09-02 22:56:35    阅读次数:447
POJ 1734.Sightseeing trip 解题报告
Floyd 最小环模板题code/* floyd最小环,记录路径,时间复杂度O(n^3) 不能处理负环*/#include #include using namespace std;const int INF = 109, maxn = 252645135;int g[INF...
分类:其他好文   时间:2014-09-02 22:43:55    阅读次数:195
Implementing a java agent to instrument code (copy from http://chimpler.wordpress.com/2013/11/05/implementing-a-java-agent-to-instrument-code/)
With a system running 24/7, you have to make sure that it performs well at any time of the day. Several commercial solutions exist to monitor the perf...
分类:编程语言   时间:2014-09-02 21:08:15    阅读次数:338
.NET工具集合
工具(1) 代码分析.NET Memory Profiler -http://memprofiler.com/ANTS Profiler -http://www.red-gate.com/code_profiling.htmdotTrace Profiler -http://www.jetbrain...
分类:Web程序   时间:2014-09-02 19:25:45    阅读次数:356
CSS——如何清除浮动
众所周知,平时在写HTML代码时,难免少不了使用Float样式,这样一来,假使您没有清除浮动,那么有浮动元素的父元素容器将元素将无法自动撑开。换句简单好理解的话来说,假如你在写CODE时,其中div.A(这个就是说页面中有一个div,并且把其命名为class="A")中包含了两个或多个子元素div....
分类:Web程序   时间:2014-09-02 17:32:35    阅读次数:328
Go語言系統編程如何取得命令行參數或系統環境變量
首先取得命令行參數: 用法如下: root@centos:~/code/go/self$ ./sum 1 2 4 package main import "fmt" import "os" import "strconv" func main() int{ arg_num := len(os.Args) fmt.Printf("the num of input is ...
分类:其他好文   时间:2014-09-02 14:17:44    阅读次数:120
Android4.2如何禁止锁屏左右滑动功能?
1、请修改frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java,将 onFinishInflate()方法中的      addDefaultWidgets();      这行code注释掉; 2、请修改frameworks/base/policy/src/com...
分类:移动开发   时间:2014-09-02 12:22:05    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!