码迷,mamicode.com
首页 >  
搜索关键字:dumps    ( 540个结果
[MAT]使用MAT比较多个heap dump文件
使用MAT比较多个heap dump文件 调试内存泄露时,有时候适时比较2个或多个heap dump文件是很有用的。这时需要生成多个单独的HPROF文件。下面是一些关于如何在MAT里比较多个heap dumps的内容(有一点复杂):1.     第一个HPROF 文件(usingFile > Open Heap Dump ).2.     打开Histogram view.图1. Histogra...
分类:其他好文   时间:2014-08-12 13:39:24    阅读次数:183
Master Note for Diagnosing ORA-7445 and Related Core Dumps (文档 ID 1092855.1)
In this DocumentDetailsActionsConcepts/DefinitionsDiagnosing (starting point is Note 7445.1)Additional ResourcesCommunity: Incident (600-7445) Analysi...
分类:其他好文   时间:2014-08-06 18:25:41    阅读次数:339
python tips(持续更新)
1. 引用上一层目录import syssys.path.append('..')import xx2. python jsonJSON是一种轻量级的数据交换格式。可以解决数据库中文存储问题,对象序列化问题,等等。import jsonencodedjson = json.dumps(obj)d.....
分类:编程语言   时间:2014-08-04 10:50:16    阅读次数:232
How to Analyze Problems Related to Internal Errors (ORA-600) and Core Dumps (ORA-7445) using My Oracle Support (文档 ID 260459.1)
Oracle Database - Enterprise Edition - Version 8.1.7.4 and later Information in this document applies to any platform. **Checked for relevance 06-Apr-...
分类:数据库   时间:2014-08-04 10:45:27    阅读次数:363
[转发]Dumps of system information with Apple computers
In this article, I gathered up all the dumps, who found. If you see something new table will be updated.If you want to replenish the base - write in c...
分类:移动开发   时间:2014-07-19 23:12:35    阅读次数:867
Tornado/Python 学习笔记(二)
部分ssrpc.py代码分析 -- 服务端: 1 #!/usr/bin/python3 2 3 from xmlrpc.client import Fault, dumps, loads 4 import sys 5 from socketserver import ForkingMixIn 6 ....
分类:编程语言   时间:2014-07-16 18:14:43    阅读次数:296
python中json.dumps使用的坑以及字符编码
我们知道,python中的字符串分普通字符串和unicode字符串,一般从数据库中读取的字符串会自动被转换为unicode字符串下面回到重点,使用json.dumps时,一般的用法为:>>> obj={"name":"测试"}>>> json.dumps(obj)'{"name": "\\u6d4b...
分类:编程语言   时间:2014-07-03 06:51:34    阅读次数:544
[Erlang]如何在Erlang中将对list进行json编码?
Json编码,在python里就是一句话: json.dumps(user_data) 但是Erlang没有自带的Json模块,只能自己造轮子: 先下载mochijson2: https://github.com/mochi/mochiweb/blob/master/src/mochijson2.erl 用erlc编译 然后,上代码: get_json_data() -> ...
分类:Web程序   时间:2014-06-10 06:46:21    阅读次数:309
Python怎么读写json格式文件
python:json文件读写...
分类:编程语言   时间:2014-06-05 04:42:18    阅读次数:402
【Error】Python:ascii codec can't decode byte 0xe8 in position 0:ordinal not in range(128)
最近编写Python程序时经常遇见中文相关的问题,这里说一个问题的解决方法。 我在使用json模块的dumps()函数时,因为涉及到中文,报出如下错误: ascii codec can't decode byte 0xe8 in position 0:ordinal not in range(128) 这是编码相关的问题,在该程序中加入如下代码: import sys reload(sys) sys.setdefaultencoding('utf-8') 这样就可以解决该问题了,希望对大家有所帮助。...
分类:编程语言   时间:2014-05-21 09:47:21    阅读次数:323
540条   上一页 1 ... 52 53 54
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!