使用 PlantUML 绘制 UML - PlantUML 语言参考指引(Version 1.2023.11)groupInheritance 1 A1 <|-- B1 A2 <|-- B2 A2 <|-- C2 A3 <|-- B3 A3 <|-- C3 A3 <|-- D3 A4 <|-- B4 A4 <|-- C4 A4 <|-- D4 A4 <|-- E4 @enduml PlantUML 语言参考指引 (1.2023.11) 88 / 538 3.39 分组继承关系 (Grouping inheritance groupInheritance 2 A1 <|-- B1 A2 <|-- B2 A2 <|-- C2 A3 <|-- B3 A3 <|-- C3 A3 <|-- D3 A4 <|-- B4 A4 <|-- C4 A4 <|-- D4 A4 <|-- E4 @enduml 3.39.3 GroupInheritance 3 (从 3 个组开始合并) @startuml skinparam groupInheritance groupInheritance 3 A1 <|-- B1 A2 <|-- B2 A2 <|-- C2 A3 <|-- B3 A3 <|-- C3 A3 <|-- D3 A4 <|-- B4 A4 <|-- C4 A4 <|-- D4 A4 <|-- E4 PlantUML 语言参考指引 (1.2023.11) 89 / 538 3.40 Display JSON Data on Class or Object0 码力 | 539 页 | 7.74 MB | 1 年前3
使用 PlantUML 绘制 UML - PlantUML 语言参考指引(Version 1.2021.2)[Ref. QA-12056] 13.5 Using Sprites You can use all sprites (icons) from the Standard Library or any other library. Use the notation <$sprite> to use a sprite, to make a new line, or any other Creole Archimate Macros and Library A list of Archimate macros are defined Archimate-PlantUML here which simplifies the creation of Archi- Mate diagrams, and Archimate is natively on the Standard Library of PlantUML various IT areas such as architecture, cloud services, logos etc. It including AWS, Azure, Kubernetes, C4, product Logos and many others. To explore these libraries: • Browse the Github folders of PlantUML0 码力 | 381 页 | 4.05 MB | 1 年前3
PlantUML 1.2021.1 语言参考指引[Ref. QA-12056] 12.5 Using Sprites You can use all sprites (icons) from the Standard Library or any other library. Use the notation <$sprite> to use a sprite, to make a new line, or any other Creole Archimate Macros and Library A list of Archimate macros are defined Archimate-PlantUML here which simplifies the creation of Archi- Mate diagrams, and Archimate is natively on the Standard Library of PlantUML various IT areas such as architecture, cloud services, logos etc. It including AWS, Azure, Kubernetes, C4, product Logos and many others. To explore these libraries: • Browse the Github folders of PlantUML0 码力 | 376 页 | 4.00 MB | 1 年前3
PlantUML 1.2021.3 语言参考指引[Ref. QA-12056] 13.5 Using Sprites You can use all sprites (icons) from the Standard Library or any other library. Use the notation <$sprite> to use a sprite, to make a new line, or any other Creole Archimate Macros and Library A list of Archimate macros are defined Archimate-PlantUML here which simplifies the creation of Archi- Mate diagrams, and Archimate is natively on the Standard Library of PlantUML various IT areas such as architecture, cloud services, logos etc. It including AWS, Azure, Kubernetes, C4, product Logos and many others. To explore these libraries: • Browse the Github folders of PlantUML0 码力 | 398 页 | 4.22 MB | 1 年前3
全球开源发展态势洞察(2023年第八期)Mesh) 项目已停止维护 在最近举行的Open Compute Project地区峰 会上,AMD披露正计划用开源的Open-Source Silicon Initialization Library(OpenSIL)代 替AMD Generic Encapsulated Software Architecture(AGESA)固件的计划。新固件 将经历四个阶段的开发周期预计到2026年开始 ),最 终在2026年Zen6架构的六代霄龙上成为默认 值,届时AGESA则会退出。 注释:OpenSIL的全称为“Open-Source Silicon Initialization Library”(开源硅初始化库),作 为一套开源解决方案,使用标准行业语言编写, 不但可以实现AGESA的各种传统功能,还有轻量 化、简单、透明、安全、扩展灵活等优势。 全球开源态势洞察|第十期 02 的倡议开始。 14 https://eur-lex.europa.eu/eli/dir/2019/1024/oj 15 https://data.gov.cz/%C4%8Dl%C3%A1nky/implementace-sm%C4%9Brnice-o-otev%C5%99en%C3%BDch-datech 16 https://wipolex.wipo.int/en/legislation/details/212720 码力 | 22 页 | 1.99 MB | 1 年前3
Pro Git 中文版 第2版 2.1.66++ 1 file changed, 2 insertions(+) 在合并的时候,你应该注意到了“快进(fast-forward)”这个词。 由于你想要合并的分支 hotfix 所指向的提 交 C4 是你所在的提交 C2 的直接后继, 因此 Git 会直接将指针向前移动。换句话说,当你试图合并两个分支 时, 如果顺着一个分支走下去能够到达另一个分支,那么 Git 在合并两者的时候, 只会简单的将指针向前推进 始分叉开来(diverged)。 因为,master 分支所在提交并不是 iss53 分支所在提交的直接祖先,Git 不得不 76 做一些额外的工作。 出现这种情况的时候,Git 会使用两个分支的末端所指的快照(C4 和 C5 )以及这两个分支的公共祖先(C2),做一个简单的三方合并。 图表 24. 一次典型合并中所用到的三个快照 和之前将分支指针向前推进所不同的是,Git 将此次三方合并的结果做了一个新的快照并且自动创建一个新的提 它们成熟之后再合并,而不用 在乎它们建立的顺序或工作进度。 考虑这样一个例子,你在 master 分支上工作到 C1,这时为了解决一个问题而新建 iss91 分支,在 iss91 分 支上工作到 C4,然而对于那个问题你又有了新的想法,于是你再新建一个 iss91v2 分支试图用另一种方法解决 那个问题,接着你回到 master 分支工作了一会儿,你又冒出了一个不太确定的想法,你便在 C10 的时候新建0 码力 | 501 页 | 19.30 MB | 1 年前3
Pro Git 中文版 第2版 2.1.66++ 1 file changed, 2 insertions(+) 在合并的时候,你应该注意到了“快进(fast-forward)”这个词。 由于你想要 合并的分支 hotfix 所指向的提交 C4 是你所在的提交 C2 的直接后继, 因此 Git 会直接将指针向前移动。换句话说,当你试图合并两个分支时, 如果顺着 一个分支走下去能够到达另一个分支,那么 Git 在合并两者的时候, 只会简单 iverged)。 因为,master 分 支所在提交并不是 iss53 分支所在提交的直接祖先,Git 不得不做一些额外的 工作。 出现这种情况的时候,Git 会使用两个分支的末端所指的快照(C4 和 C5)以及这两个分支的公共祖先(C2),做一个简单的三方合并。 图表 24. 一次典型合并中所用到的三个快照 和之前将分支指针向前推进所不同的是,Git 将此次三方合并的结果做了一个 成熟之后再合并, 而不用在乎它们建立的顺序或工作进度。 考虑这样一个例子,你在 master 分支上工作到 C1,这时为了解决一个问题而 新建 iss91 分支,在 iss91 分支上工作到 C4,然而对于那个问题你又有了新 的想法,于是你再新建一个 iss91v2 分支试图用另一种方法解决那个问题,接 着你回到 master 分支工作了一会儿,你又冒出了一个不太确定的想法,你便 在 C100 码力 | 670 页 | 13.59 MB | 1 年前3
PlantUML 1.2020.22 语言参考指引various IT areas such as architecture, cloud services, logos etc. It including AWS, Azure, Kubernetes, C4, product Logos and many others. To explore these libraries: • Browse the Github folders of PlantUML listing is in color.) • Study the in-depth Hitchhiker’s Guide to PlantUML, eg sections Standard Library Sprites and PlantUML Stdlib Overview PlantUML 语言参考指引 (1.2020.22) 245 / 294 18.6 Listing Sprites @enduml PlantUML 语言参考指引 (1.2020.22) 268 / 294 20.17 Building custom library [!import, !include] 20 预处理 20.17 Building custom library [!import, !include] It's possible to package a set of included files0 码力 | 295 页 | 3.08 MB | 1 年前3
使用 PlantUML 绘制 UML - PlantUML 语言参考指引(Version 1.2020.23)various IT areas such as architecture, cloud services, logos etc. It including AWS, Azure, Kubernetes, C4, product Logos and many others. To explore these libraries: • Browse the Github folders of PlantUML listing is in color.) • Study the in-depth Hitchhiker’s Guide to PlantUML, eg sections Standard Library Sprites and PlantUML Stdlib Overview PlantUML 语言参考指引 (1.2020.23) 257 / 306 18.6 Listing Sprites @enduml PlantUML 语言参考指引 (1.2020.23) 280 / 306 20.17 Building custom library [!import, !include] 20 预处理 20.17 Building custom library [!import, !include] It's possible to package a set of included files0 码力 | 307 页 | 3.17 MB | 1 年前3
What's New In Apache Ozone 1.3DN1 Storage Container Manager Client RocksDB RocksDB C3 C4 C5 C6 C2 C1 C1 C2 C3 C4 C5 C6 C1 C2 C3 C4 C5 C6 DN2 DN3 DN4 C2 C4 C6 C5 发送命令 & 查询结果 发送命令 汇报⼼跳 Balancer 13 Container Balancer0 码力 | 24 页 | 2.41 MB | 1 年前3
共 431 条
- 1
- 2
- 3
- 4
- 5
- 6
- 44













