From c68df1ef448f88ae86e1b32e7e8e1cfe051f0439 Mon Sep 17 00:00:00 2001 From: moralok Date: Sat, 18 Nov 2023 13:53:47 +0000 Subject: [PATCH] Update tags --- ...07-how-to-setup-OpenVPN-connect-client-on-iOS-and-macOS.md | 3 ++- .../2023-06-07-how-to-setup-OpenVPN-server-on-windows-10.md | 3 ++- .../2023-06-07-how-to-use-OpenVPN-to-access-home-network.md | 3 ++- ...-04-not-all-disk-space-was-allocated-after-installation.md | 2 +- .../2023-07-14-Java-class-loader-source-code-analysis.md | 4 ++-- source/_posts/2023-08-10-how-does-Spring-load-beans.md | 2 +- source/_posts/2023-11-01-testing-and-analysis-of-jvm-gc.md | 2 +- .../_posts/2023-11-03-testing-and-analysis-of-StringTable.md | 2 +- .../2023-11-04-testing-and-analysis-of-jvm-memory-area.md | 2 +- source/_posts/2023-11-07-garbage-collection-in-Java.md | 2 +- ...-09-some-examples-of-Java-bytecode-instruction-analysis.md | 2 +- 11 files changed, 15 insertions(+), 12 deletions(-) diff --git a/source/_posts/2023-06-07-how-to-setup-OpenVPN-connect-client-on-iOS-and-macOS.md b/source/_posts/2023-06-07-how-to-setup-OpenVPN-connect-client-on-iOS-and-macOS.md index 9c379758..04f9bf8a 100644 --- a/source/_posts/2023-06-07-how-to-setup-OpenVPN-connect-client-on-iOS-and-macOS.md +++ b/source/_posts/2023-06-07-how-to-setup-OpenVPN-connect-client-on-iOS-and-macOS.md @@ -1,7 +1,8 @@ --- title: 在 iOS 和 macOS 上安装 OpenVPN 客户端 date: 2023-06-07 17:04:23 -tags: OpenVPN +tags: + - openvpn --- ## 安装 OpenVPN Connect diff --git a/source/_posts/2023-06-07-how-to-setup-OpenVPN-server-on-windows-10.md b/source/_posts/2023-06-07-how-to-setup-OpenVPN-server-on-windows-10.md index e5baef61..2dc5c96f 100644 --- a/source/_posts/2023-06-07-how-to-setup-OpenVPN-server-on-windows-10.md +++ b/source/_posts/2023-06-07-how-to-setup-OpenVPN-server-on-windows-10.md @@ -1,7 +1,8 @@ --- title: 在 Windows 10 上安装 OpenVPN 服务器 date: 2023-06-07 15:18:02 -tags: OpenVPN +tags: + - openvpn --- ## 安装 OpenVPN server diff --git a/source/_posts/2023-06-07-how-to-use-OpenVPN-to-access-home-network.md b/source/_posts/2023-06-07-how-to-use-OpenVPN-to-access-home-network.md index 753d17d6..e3c45d4c 100644 --- a/source/_posts/2023-06-07-how-to-use-OpenVPN-to-access-home-network.md +++ b/source/_posts/2023-06-07-how-to-use-OpenVPN-to-access-home-network.md @@ -1,7 +1,8 @@ --- title: 使用 OpenVPN 访问家庭内网 date: 2023-06-07 22:19:17 -tags: OpenVPN +tags: + - openvpn --- ## 网络概况 diff --git a/source/_posts/2023-06-25-Ubuntu-server-20-04-not-all-disk-space-was-allocated-after-installation.md b/source/_posts/2023-06-25-Ubuntu-server-20-04-not-all-disk-space-was-allocated-after-installation.md index 59c76379..728d51c2 100644 --- a/source/_posts/2023-06-25-Ubuntu-server-20-04-not-all-disk-space-was-allocated-after-installation.md +++ b/source/_posts/2023-06-25-Ubuntu-server-20-04-not-all-disk-space-was-allocated-after-installation.md @@ -2,7 +2,7 @@ title: Ubuntu server 20.04 安装后没有分配全部磁盘空间 date: 2023-06-25 00:04:43 tags: - - Ubuntu + - ubuntu --- 最近在本地测试 Kubesphere 和 Minikube,使用 Ubuntu server 20.04 搭建了多个虚拟机,磁盘空间紧张。注意到安装后,磁盘空间仅占据分配的一半左右。 diff --git a/source/_posts/2023-07-14-Java-class-loader-source-code-analysis.md b/source/_posts/2023-07-14-Java-class-loader-source-code-analysis.md index f59007ec..da4e5071 100644 --- a/source/_posts/2023-07-14-Java-class-loader-source-code-analysis.md +++ b/source/_posts/2023-07-14-Java-class-loader-source-code-analysis.md @@ -2,8 +2,8 @@ title: Java 类加载器源码分析 date: 2023-07-14 04:08:11 tags: - - Java - - ClassLoader + - java + - class loader --- ### 组织类加载工作:loadClass diff --git a/source/_posts/2023-08-10-how-does-Spring-load-beans.md b/source/_posts/2023-08-10-how-does-Spring-load-beans.md index fb3ee8ee..235e529f 100644 --- a/source/_posts/2023-08-10-how-does-Spring-load-beans.md +++ b/source/_posts/2023-08-10-how-does-Spring-load-beans.md @@ -1,6 +1,6 @@ --- title: Spring Bean 加载过程 -date: 2023-11-17 14:56:51 +date: 2023-08-10 14:56:51 tags: - java - spring diff --git a/source/_posts/2023-11-01-testing-and-analysis-of-jvm-gc.md b/source/_posts/2023-11-01-testing-and-analysis-of-jvm-gc.md index c7048009..e2bcfe66 100644 --- a/source/_posts/2023-11-01-testing-and-analysis-of-jvm-gc.md +++ b/source/_posts/2023-11-01-testing-and-analysis-of-jvm-gc.md @@ -2,7 +2,7 @@ title: JVM GC 的测试和分析 date: 2023-11-01 11:42:50 tags: - - Java + - java - jvm --- diff --git a/source/_posts/2023-11-03-testing-and-analysis-of-StringTable.md b/source/_posts/2023-11-03-testing-and-analysis-of-StringTable.md index 2cf63e3f..3b0fa8e8 100644 --- a/source/_posts/2023-11-03-testing-and-analysis-of-StringTable.md +++ b/source/_posts/2023-11-03-testing-and-analysis-of-StringTable.md @@ -2,7 +2,7 @@ title: 字符串常量池的测试和分析 date: 2023-11-03 15:57:47 tags: - - Java + - java - jvm --- diff --git a/source/_posts/2023-11-04-testing-and-analysis-of-jvm-memory-area.md b/source/_posts/2023-11-04-testing-and-analysis-of-jvm-memory-area.md index 848812db..754bdc15 100644 --- a/source/_posts/2023-11-04-testing-and-analysis-of-jvm-memory-area.md +++ b/source/_posts/2023-11-04-testing-and-analysis-of-jvm-memory-area.md @@ -2,7 +2,7 @@ title: JVM 内存区域的测试和分析 date: 2023-11-04 19:21:25 tags: - - Java + - java - jvm --- diff --git a/source/_posts/2023-11-07-garbage-collection-in-Java.md b/source/_posts/2023-11-07-garbage-collection-in-Java.md index 24eef1cf..6e3abc81 100644 --- a/source/_posts/2023-11-07-garbage-collection-in-Java.md +++ b/source/_posts/2023-11-07-garbage-collection-in-Java.md @@ -2,7 +2,7 @@ title: Java 垃圾收集 date: 2023-11-08 00:44:21 tags: - - Java + - java - jvm --- diff --git a/source/_posts/2023-11-09-some-examples-of-Java-bytecode-instruction-analysis.md b/source/_posts/2023-11-09-some-examples-of-Java-bytecode-instruction-analysis.md index bac43031..36c22bc9 100644 --- a/source/_posts/2023-11-09-some-examples-of-Java-bytecode-instruction-analysis.md +++ b/source/_posts/2023-11-09-some-examples-of-Java-bytecode-instruction-analysis.md @@ -2,7 +2,7 @@ title: 关于 Java 字节码指令的一些例子分析 date: 2023-11-09 23:13:11 tags: - - Java + - java - bytecode ---