上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 187 下一页
摘要: CHARIOT测试网络吞吐量 阅读全文
posted @ 2019-11-22 00:53 papering 阅读(302) 评论(0) 推荐(0)
摘要: 1 阅读全文
posted @ 2019-11-22 00:52 papering 阅读(147) 评论(0) 推荐(0)
摘要: https://docs.python.org/zh-cn/3/library/multiprocessing.html 在 3.8 版更改: 对于 macOS,spawn 启动方式是默认方式。 因为 fork 可能导致subprocess崩溃,被认为是不安全的,查看 bpo-33725 。 阅读全文
posted @ 2019-11-21 12:52 papering 阅读(256) 评论(0) 推荐(0)
摘要: 静态 动态 cell 阅读全文
posted @ 2019-11-20 22:42 papering 阅读(161) 评论(0) 推荐(0)
摘要: // https://python3-cookbook.readthedocs.io/zh_CN/latest/c15/p02_write_simple_c_extension_module.html // http://book.pythontips.com/en/latest/python_c_ 阅读全文
posted @ 2019-11-20 21:33 papering 阅读(558) 评论(0) 推荐(0)
摘要: https://suchprogramming.com/epoll-in-3-easy-steps/ https://www.quora.com/What-are-the-key-differences-between-edge-triggered-and-level-triggered-inter 阅读全文
posted @ 2019-11-20 21:01 papering 阅读(208) 评论(0) 推荐(0)
摘要: 实践: 1、 package main func main() { var a string = func() string { return "a" }() var b string = "b" f := func() string { return "c" } f1 := func() stri 阅读全文
posted @ 2019-11-20 09:32 papering 阅读(383) 评论(0) 推荐(0)
摘要: 源码 修改Python源码 阅读全文
posted @ 2019-11-19 23:55 papering 阅读(597) 评论(0) 推荐(0)
摘要: https://www.infoq.cn/article/EaC4c6yiJrzZ_Gtaf9Ne 阅读全文
posted @ 2019-11-19 21:05 papering 阅读(236) 评论(0) 推荐(0)
摘要: json5 阅读全文
posted @ 2019-11-19 21:05 papering 阅读(115) 评论(0) 推荐(0)
摘要: 百分号编码 https://zh.wikipedia.org/wiki/百分号编码 阅读全文
posted @ 2019-11-19 21:05 papering 阅读(166) 评论(0) 推荐(0)
摘要: https://python3-cookbook.readthedocs.io/zh_CN/latest/c08/p23_managing_memory_in_cyclic_data_structures.html https://design-patterns.readthedocs.io/zh_ 阅读全文
posted @ 2019-11-19 21:05 papering 阅读(182) 评论(0) 推荐(0)
摘要: https://zh.wikipedia.org/wiki/流式接口 阅读全文
posted @ 2019-11-19 21:05 papering 阅读(163) 评论(0) 推荐(0)
摘要: 空指针异常 空指针异常是指java中的异常类。 空指针异常是指java中的异常类。 中文名空指针异常外文名NullPointerException 当应用程序试图在需要对象的地方使用 null 时,抛出该异常。这种情况包括: 调用 null 对象的实例方法。 访问或修改 null 对象的字段。 将 阅读全文
posted @ 2019-11-18 13:19 papering 阅读(1973) 评论(0) 推荐(0)
摘要: https://github.com/latel/logline Logline 中文 | English logline是一个轻量,实用和客户端级的前端日志记录工具。 为何前端定位问题很困难 前端同学对此肯定深有体会,代码发出去之后,犹如脱缰的野马,运行在万千的客户终端上,等到产品和后台反馈问题到 阅读全文
posted @ 2019-11-18 13:14 papering 阅读(997) 评论(0) 推荐(0)
摘要: https://cloud.google.com/apis/design/ 阅读全文
posted @ 2019-11-18 11:40 papering 阅读(221) 评论(0) 推荐(0)
摘要: https://wiki.open.qq.com/wiki/技术优化原则#1._.E7.A8.8B.E5.BA.8F.E8.AE.BE.E8.AE.A1.E6.97.B6.E9.9C.80.E8.A6.81.E8.80.83.E8.99.91.E7.9A.84.E4.BA.8B.E9.A1.B9 阅读全文
posted @ 2019-11-18 11:34 papering 阅读(226) 评论(0) 推荐(0)
摘要: 人们就可以专注于”你在说什么”, 而不是”你在怎么说”. https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/parting_words/ 阅读全文
posted @ 2019-11-18 11:16 papering 阅读(177) 评论(0) 推荐(0)
摘要: http://alloyteam.github.io/CodeGuide/ http://sideeffect.kr/popularconvention#javascript 阅读全文
posted @ 2019-11-18 11:02 papering 阅读(126) 评论(0) 推荐(0)
摘要: http://hbyepei.github.io/2016/03/13/设置默认换行符/ 阅读全文
posted @ 2019-11-18 10:31 papering 阅读(534) 评论(0) 推荐(0)
摘要: http://blog.sina.com.cn/s/blog_48d4cf2d0101859x.html 谈谈网络编程中应用层(基于TCP/UDP)的协议设计 (2013-04-27 19:11:00) 对于初涉网络编程的开发人员来说,在通信协议的设计上一般会有所困惑。一般的网络编程书籍上也较少涉及 阅读全文
posted @ 2019-11-16 17:36 papering 阅读(498) 评论(0) 推荐(0)
摘要: h256 阅读全文
posted @ 2019-11-16 17:29 papering 阅读(312) 评论(0) 推荐(0)
摘要: Linux性能分析工具与图形化方法 https://cloud.tencent.com/developer/article/1063652 阅读全文
posted @ 2019-11-16 14:56 papering 阅读(446) 评论(0) 推荐(0)
摘要: https://zh.cppreference.com/w/cpp/memory/shared_ptr 引用计数 阅读全文
posted @ 2019-11-16 10:06 papering 阅读(245) 评论(0) 推荐(0)
摘要: 内存保护机制及绕过方案——通过覆盖虚函数表绕过/GS机制 阅读全文
posted @ 2019-11-14 13:18 papering 阅读(431) 评论(0) 推荐(0)
摘要: https://www.swansontec.com/sregisters.html I wrote this article for an online magazine called Scene Zine. Scene Zine caters to the Demo Scene, which i 阅读全文
posted @ 2019-11-14 09:27 papering 阅读(276) 评论(0) 推荐(0)
摘要: GDB查看内存命令(x命令) - super119 - 博客园 https://www.cnblogs.com/super119/archive/2011/11/18/2254382.html 可以使用examine命令(简写是x)来查看内存地址中的值。x命令的语法如下所示:x/<n/f/u> <a 阅读全文
posted @ 2019-11-13 21:30 papering 阅读(3759) 评论(0) 推荐(0)
摘要: Class as decorator in python . https://www.geeksforgeeks.org/class-as-decorator-in-python/ http://code.activestate.com/recipes/412719/ http://wiki.c2. 阅读全文
posted @ 2019-11-13 09:13 papering 阅读(207) 评论(0) 推荐(0)
摘要: <!--StartFragment-->https://www.cnblogs.com/alisecurity/p/5486458.html<!--EndFragment--> 阅读全文
posted @ 2019-11-13 09:11 papering 阅读(201) 评论(0) 推荐(0)
摘要: https://zh.wikipedia.org/wiki/健全性测试 Modules\_threadmodule.c /* Lock objects */ typedef struct { PyObject_HEAD PyThread_type_lock lock_lock; PyObject * 阅读全文
posted @ 2019-11-13 09:10 papering 阅读(235) 评论(0) 推荐(0)
摘要: https://wooyun.js.org/drops/深入理解%20glibc%20malloc.html https://sploitfun.wordpress.com/2015/02/10/understanding-glibc-malloc/comment-page-1/ 阅读全文
posted @ 2019-11-13 09:08 papering 阅读(221) 评论(0) 推荐(0)
摘要: https://github.com/python/cpython/blob/master/Doc/library/contextlib.rst https://github.com/python/cpython/blob/master/Doc/library/contextlib.rst#reen 阅读全文
posted @ 2019-11-11 20:55 papering 阅读(425) 评论(0) 推荐(0)
摘要: Python\ceval.c #define NAME_ERROR_MSG \ "name '%.200s' is not defined XL" #define NAME_ERROR_MSG \ "name '%.200s' is not defined XL" 修改 Python 源代码 htt 阅读全文
posted @ 2019-11-11 17:51 papering 阅读(344) 评论(0) 推荐(0)
摘要: tmp 阅读全文
posted @ 2019-11-09 20:03 papering 阅读(169) 评论(0) 推荐(0)
摘要: gcov—a Test Coverage Program https://coverage.readthedocs.io/en/v4.5.x/cmd.html 覆盖率测试 阅读全文
posted @ 2019-11-09 17:51 papering 阅读(210) 评论(0) 推荐(0)
摘要: https://www.frida.re/docs/home/ 阅读全文
posted @ 2019-11-09 17:39 papering 阅读(322) 评论(0) 推荐(0)
摘要: a 阅读全文
posted @ 2019-11-09 17:24 papering 阅读(189) 评论(0) 推荐(0)
摘要: 研发测试运维一体化 阅读全文
posted @ 2019-11-09 17:16 papering 阅读(557) 评论(0) 推荐(0)
摘要: https://pingcap.com/blog-cn/flame-graph/ 因为 TiKV 是自己内部使用了 jemalloc,并没有用系统的 malloc,所以我们不能直接用 perf 来探查系统的 malloc 函数。幸运的是,perf 能支持动态添加探针,我们将 TiKV 的 mallo 阅读全文
posted @ 2019-11-09 17:02 papering 阅读(288) 评论(0) 推荐(0)
摘要: https://software.intel.com/sites/landingpage/pintool/docs/97998/Pin/html/ http://www.brendangregg.com/perf.html 阅读全文
posted @ 2019-11-09 16:37 papering 阅读(244) 评论(0) 推荐(0)
上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 187 下一页