r12f.com
ChakraCore学习笔记(三):使用JSRT API (一) | Soul Orbit
http://r12f.com/posts/learning-chakracore-3-using-jsrt-api-1
I'll take a quiet life. A handshake of carbon monoxide. ChakraCore学习笔记 三 使用JSRT API 一. ChakraCore学习笔记 三 使用JSRT API 一. JsCreateContext(runtime, &context);. JsSetCurrentContext(JS INVALID REFERENCE);. 现在让我们先来实现一个非常简单的API吧 从KeyValue存储中获取一个值 storage.get(key, callback)。 JsValueRef jsObject, const. PropertyName, JsValueRef propertyValue). JsGetPropertyIdFromName(propertyName, &propertyId);. JsSetProperty(jsObject, propertyId, propertyValue, false. Ret maybenull JsValueRef CHAKRA CALLBACK StorageGet. 123; undef...
r12f.com
All tags | Soul Orbit
http://r12f.com/tags
I'll take a quiet life. A handshake of carbon monoxide. 70 tags in total. Theme - NexT.Mist.
r12f.com
Archive | Soul Orbit
http://r12f.com/archives
I'll take a quiet life. A handshake of carbon monoxide. 37 posts in total. Keep on posting. ChakraCore学习笔记 四 使用JSRT API 二. ChakraCore学习笔记 三 使用JSRT API 一. ChakraCore学习笔记 二 从Hello World看ChakraCore顶层数据结构. Theme - NexT.Mist.
r12f.com
WPA入门 (三) —— 千变万化的图表 | Soul Orbit
http://r12f.com/posts/introduction-to-wpa-3-graphs
I'll take a quiet life. A handshake of carbon monoxide. 1 数据表 Data table. 关键字 Key Area 这部分在黄线之前,放在这个区域里面的列,如果具有相同的值,会被聚合起来变成一条记录,方便我们查看到底有多少类记录,其数据总量是多少,当然,我们也可以展开被聚合的记录来看里面都有哪些具体的记录。 数据区 Data Area 这部分在黄线和蓝线的中间,放在这个区域里面的列不会被聚合,展开时所有的记录会和普通的表一样被平铺开来。 绘图区 Graphing Element Area 这部分在蓝线之后,放在这个区域里面的列会被用来绘制当前表格对应的图形。 11 重新组织数据 View Editor. 每一个打开的数据表叫做一个视图 View ,而每一种列的排列叫一个预设 preset。 如果还是不够用呢 没关系,我们还有最后一招 视图编辑器 View Editor。 可以看到,View Editor分成三个大部分,左侧是所有可以使用的列的类型,中间是当前正在使用的所有的列 不一定是显示的 ,右侧是当前选中的列的详细信息。
r12f.com
Category: 01 Binary Life | Soul Orbit
http://r12f.com/categories/01-Binary-Life
I'll take a quiet life. A handshake of carbon monoxide. 01 Binary Life Category. ChakraCore学习笔记 四 使用JSRT API 二. ChakraCore学习笔记 三 使用JSRT API 一. ChakraCore学习笔记 二 从Hello World看ChakraCore顶层数据结构. Theme - NexT.Mist.
r12f.com
ChakraCore学习笔记(四):使用JSRT API (二) | Soul Orbit
http://r12f.com/posts/learning-chakracore-4-using-jsrt-api-2
I'll take a quiet life. A handshake of carbon monoxide. ChakraCore学习笔记 四 使用JSRT API 二. ChakraCore学习笔记 四 使用JSRT API 二. 11 修改storage.get的polyfill script. Wchar t * GetPolyFillScript. L" = {". L" var executeAPI = apiUtils.executeAPI;". L" try { storage = storage } catch(err) { storage = {} } ". L" storage.get = function() { ". L" return new Promise(function(resolve) {". L" var apiArguments = [ arguments[0], function (data) { resolve(data); } ];". L" executeAPI('storage.get', apiArguments);". L" });". Chakra...
r12f.com
Hello World | Soul Orbit
http://r12f.com/posts/hello-world
I'll take a quiet life. A handshake of carbon monoxide. Theme - NexT.Mist.
r12f.com
Soul Orbit
http://r12f.com/page/2
I'll take a quiet life. A handshake of carbon monoxide. 通过CPU Sampling Graph和Disk IO Graph,我们很快的定位到了记事本打开大文件缓慢的真正原因。 Read more ». 它包含在Windows Assessment and Deployment Kit (Windows ADK)中,最新的版本是8.1,你可以通过MSDN来下载并随意使用它 http:/ www.microsoft.com/en-US/download/details.aspx? WPT主要包含两个部分 Windows Performance Recorder (WPR)和Windows Performance Analyzer (WPA)。 和其他的性能分析工具不同,它是由Windows本身的事件机制来提供支持的 Event Tracing for Windows (ETW)。 21 Event Tracing for Windows (ETW). Read more ». 前往Go语言的官方网站 http:/ golang.org/.