Skip to content

Commit 2645703

Browse files
authored
Merge branch 'main' into model-cli
2 parents e142b56 + 3ffa79c commit 2645703

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+14177
-294
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/.DS_Store
22
**/desktop.ini
3-
.vscode
3+
.vscode/settings.json
4+
.vscode/tasks.json
45
node_modules
56
.hugo_build.lock
67
resources

.vscode/docker.code-snippets

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"Insert Hugo Note Admonition": {
3+
"prefix": ["admonition", "note"],
4+
"body": ["> [!NOTE]", "> $1"],
5+
"description": "Insert a Hugo note admonition",
6+
},
7+
"Insert Hugo Important Admonition": {
8+
"prefix": ["admonition", "important"],
9+
"body": ["> [!IMPORTANT]", "> $1"],
10+
"description": "Insert a Hugo important admonition",
11+
},
12+
"Insert Hugo Warning Admonition": {
13+
"prefix": ["admonition", "warning"],
14+
"body": ["> [!WARNING]", "> $1"],
15+
"description": "Insert a Hugo warning admonition",
16+
},
17+
"Insert Hugo Tip Admonition": {
18+
"prefix": ["admonition", "tip"],
19+
"body": ["> [!TIP]", "> $1"],
20+
"description": "Insert a Hugo tip admonition",
21+
},
22+
"Insert Hugo Tabs": {
23+
"prefix": ["admonition", "tabs"],
24+
"body": [
25+
"",
26+
"{{< tabs >}}",
27+
"{{< tab name=\"$1\">}}",
28+
"",
29+
"$2",
30+
"",
31+
"{{< /tab >}}",
32+
"{{< tab name=\"$3\">}}",
33+
"",
34+
"$4",
35+
"",
36+
"{{< /tab >}}",
37+
"{{</tabs >}}",
38+
"",
39+
],
40+
"description": "Insert a Hugo tabs block with two tabs and snippet stops for names and content",
41+
},
42+
"Insert a Button": {
43+
"prefix": ["button"],
44+
"body": ["{{< button url=\"$1\" text=\"$2\" >}}"],
45+
"description": "Insert a Hugo button",
46+
},
47+
}

_vale/Docker/Acronyms.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ exceptions:
2020
- BIOS
2121
- BPF
2222
- BSD
23+
- CDI
2324
- CFS
2425
- CI
2526
- CIDR
@@ -28,6 +29,7 @@ exceptions:
2829
- CNCF
2930
- CORS
3031
- CPU
32+
- CSI
3133
- CSS
3234
- CSV
3335
- CUDA

_vale/config/vocabularies/Docker/accept.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Dockerize
4141
Dockerizing
4242
Entra
4343
Ethernet
44+
EPERM
4445
Fargate
4546
Fedora
4647
Flink
@@ -176,13 +177,15 @@ deserialize
176177
displayName
177178
dockerignore
178179
firewalld
180+
fluentd
179181
g?libc
180182
gRPC
181183
inotify
182184
iptables
183185
kubectl
184186
kubefwd
185187
kubelet
188+
libseccomp
186189
lookup
187190
macOS
188191
macvlan

_vendor/github.com/docker/cli/docs/deprecated.md

Lines changed: 48 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/cli/docs/reference/dockerd.md

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/moby/docs/api/v1.46.yaml

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/moby/docs/api/v1.47.yaml

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)