You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rssversion="2.0"xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on A Hugo website</title><link>https://yanhj93.github.io/categories/</link><description>Recent content in Categories on A Hugo website</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:linkhref="https://yanhj93.github.io/categories/index.xml"rel="self"type="application/rss+xml"/></channel></rss>
1
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rssversion="2.0"xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on A Hugo website</title><link>https://yanhj93.github.io/categories/</link><description>Recent content in Categories on A Hugo website</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Sun, 02 Oct 2022 21:36:07 +0800</lastBuildDate><atom:linkhref="https://yanhj93.github.io/categories/index.xml"rel="self"type="application/rss+xml"/><item><title>reference</title><link>https://yanhj93.github.io/categories/reference/</link><pubDate>Sun, 02 Oct 2022 21:36:07 +0800</pubDate><guid>https://yanhj93.github.io/categories/reference/</guid><description/></item></channel></rss>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rssversion="2.0"xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>reference on A Hugo website</title><link>https://yanhj93.github.io/categories/reference/</link><description>Recent content in reference on A Hugo website</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Sun, 02 Oct 2022 21:36:07 +0800</lastBuildDate><atom:linkhref="https://yanhj93.github.io/categories/reference/index.xml"rel="self"type="application/rss+xml"/><item><title>Blog_setup</title><link>https://yanhj93.github.io/blog_setup/</link><pubDate>Sun, 02 Oct 2022 21:36:07 +0800</pubDate><guid>https://yanhj93.github.io/blog_setup/</guid><description>hugo quick start 跟着 quick start doc 初始化站点, theme 选择 hugo-lithium
2
+
theme config 替换 config.toml 为主题example site 的config. 修改如下:
hugo new posts/demo/_index.md, 作为系列文章首页包含概述和文章索引. 发布后的URL为demo posts 间的引用语法link. hugo new posts/demo/Java.md. 发布后的URL为 /java hugo new posts/demo/Go.md. 发布后的URL为 /Go 添加菜单 [[menu.main]] name = &quot;demo&quot; url = &quot;/pl/&quot; deploy use github action and github pages.</description></item></channel></rss>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rssversion="2.0"xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>A Hugo website</title><link>https://yanhj93.github.io/</link><description>Recent content on A Hugo website</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Sun, 02 Oct 2022 21:36:07 +0800</lastBuildDate><atom:linkhref="https://yanhj93.github.io/index.xml"rel="self"type="application/rss+xml"/><item><title>Blog_setup</title><link>https://yanhj93.github.io/blog_setup/</link><pubDate>Sun, 02 Oct 2022 21:36:07 +0800</pubDate><guid>https://yanhj93.github.io/blog_setup/</guid><description>hugo quick start 跟着 quick start doc 初始化站点, theme 选择 hugo-lithium
1
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>A Hugo website</title><link>https://yanhj93.github.io/</link><description>Recent content on A Hugo website</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Thu, 20 Feb 2025 00:01:43 +0800</lastBuildDate><atom:link href="https://yanhj93.github.io/index.xml" rel="self" type="application/rss+xml"/><item><title>Java_gc</title><link>https://yanhj93.github.io/java_gc/</link><pubDate>Thu, 20 Feb 2025 00:01:43 +0800</pubDate><guid>https://yanhj93.github.io/java_gc/</guid><description>measure throughput indicate percentage of time used in application against gc. the more frequent gc work, the more resource it take away from application which affect throughput even if with concurrent. If reduce the frequency of gc and don&rsquo;t gc before garbage has accumulate to large amount, it will decrease total cpu and footprint cost on gc but may increase the paused time in this big gc work round.
2
+
response time, as what said above, gc more frequent with short pause time, with small effect to user interactive application.</description></item><item><title>Java 方法执行</title><link>https://yanhj93.github.io/java-%E6%96%B9%E6%B3%95%E6%89%A7%E8%A1%8C/</link><pubDate>Sun, 09 Jun 2024 20:44:02 +0800</pubDate><guid>https://yanhj93.github.io/java-%E6%96%B9%E6%B3%95%E6%89%A7%E8%A1%8C/</guid><description>从源码到cpu执行的过程梳理 common method execution scenarios such as main method, constructor, static method, polymorphism, reflection, lambda expression beyond java how source code execute to cpu JVM load class file and interpret/execute the bytecode.
3
+
class file contains byte sequence, which is platform neutral.
4
+
Java source code was compiled to platform neutral byte code, wellknowed as class file. java class file is with strict format, define every thing of java class.</description></item><item><title>Blog_setup</title><link>https://yanhj93.github.io/blog_setup/</link><pubDate>Sun, 02 Oct 2022 21:36:07 +0800</pubDate><guid>https://yanhj93.github.io/blog_setup/</guid><description>hugo quick start 跟着 quick start doc 初始化站点, theme 选择 hugo-lithium
2
5
theme config 替换 config.toml 为主题example site 的config. 修改如下:
hugo new posts/demo/_index.md, 作为系列文章首页包含概述和文章索引. 发布后的URL为demo posts 间的引用语法link. hugo new posts/demo/Java.md. 发布后的URL为 /java hugo new posts/demo/Go.md. 发布后的URL为 /Go 添加菜单 [[menu.main]] name = &quot;demo&quot; url = &quot;/pl/&quot; deploy use github action and github pages.</description></item><item><title>Go</title><link>https://yanhj93.github.io/go/</link><pubDate>Sat, 01 Oct 2022 12:24:46 +0800</pubDate><guid>https://yanhj93.github.io/go/</guid><description>Go</description></item><item><title>Java</title><link>https://yanhj93.github.io/java/</link><pubDate>Sat, 01 Oct 2022 12:24:46 +0800</pubDate><guid>https://yanhj93.github.io/java/</guid><description>Java</description></item></channel></rss>
7
+
hugo new posts/demo/_index.md, 作为系列文章首页包含概述和文章索引. 发布后的URL为demo posts 间的引用语法link. hugo new posts/demo/Java.md. 发布后的URL为 /java hugo new posts/demo/Go.md. 发布后的URL为 /Go 添加菜单 [[menu.main]] name = &quot;demo&quot; url = &quot;/pl/&quot; deploy use github action and github pages.</description></item><item><title>卡片笔记写作法</title><link>https://yanhj93.github.io/%E5%8D%A1%E7%89%87%E7%AC%94%E8%AE%B0%E5%86%99%E4%BD%9C%E6%B3%95/</link><pubDate>Sun, 02 Oct 2022 21:36:07 +0800</pubDate><guid>https://yanhj93.github.io/%E5%8D%A1%E7%89%87%E7%AC%94%E8%AE%B0%E5%86%99%E4%BD%9C%E6%B3%95/</guid><description>书评
0 commit comments