PlantUML 을사용해서 UML 그리기 - PlantUML 언어참조가이드(Version 1.2020.23)
this example. @startuml concise "Client" as Client concise "Server" as Server concise "Response freshness" as Cache Server is idle Client is idle @Client 0 is send Client -> Server@+25 : GET +25 is await await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : no need to re-request from server @Server 25 is recv +25 +25 is work +25 is send Server -> Client@+25 : 200 OK\nExpires: 275 +25 is idle +75 is recv +25 is send Server -> Client@+25 : 304 Not Modified +25 is idle @Cache 75 is fresh +200 is stale @enduml PlantUML0 码力 | 307 页 | 3.16 MB | 1 年前3PlantUML 1.2020.22 언어참조가이드
this example. @startuml concise "Client" as Client concise "Server" as Server concise "Response freshness" as Cache Server is idle Client is idle @Client 0 is send Client -> Server@+25 : GET +25 is await await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : no need to re-request from server @Server 25 is recv +25 +25 is work +25 is send Server -> Client@+25 : 200 OK\nExpires: 275 +25 is idle +75 is recv +25 is send Server -> Client@+25 : 304 Not Modified +25 is idle @Cache 75 is fresh +200 is stale @enduml PlantUML0 码力 | 295 页 | 3.08 MB | 1 年前3PlantUML 1.2021.1 언어참조가이드
concise "Client" as Client concise "Server" as Server PlantUML 언어참조가이드 (1.2021.1) 183 / 385 10.17 Digital Example 10 TIMING DIAGRAM concise "Response freshness" as Cache Server is idle Client is idle idle @Client 0 is send Client -> Server@+25 : GET +25 is await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : server @Server 25 is recv +25 is work +25 is send Server -> Client@+25 : 200 OK\nExpires: 275 +25 is idle +75 is recv +25 is send Server -> Client@+25 : 304 Not Modified +25 is idle @Cache 75 is fresh +2000 码力 | 386 页 | 4.12 MB | 1 年前3PlantUML 1.2021.2 언어참조가이드
concise "Client" as Client concise "Server" as Server PlantUML 언어참조가이드 (1.2021.2) 185 / 390 10.17 Digital Example 10 TIMING DIAGRAM concise "Response freshness" as Cache Server is idle Client is idle idle @Client 0 is send Client -> Server@+25 : GET +25 is await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : server @Server 25 is recv +25 is work +25 is send Server -> Client@+25 : 200 OK\nExpires: 275 +25 is idle +75 is recv +25 is send Server -> Client@+25 : 304 Not Modified +25 is idle @Cache 75 is fresh +2000 码力 | 391 页 | 4.17 MB | 1 年前3PlantUML 1.2021.3 언어참조가이드
concise "Client" as Client concise "Server" as Server PlantUML 언어참조가이드 (1.2021.2) 195 / 407 10.17 Digital Example 10 TIMING DIAGRAM concise "Response freshness" as Cache Server is idle Client is idle idle @Client 0 is send Client -> Server@+25 : GET +25 is await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : server @Server 25 is recv +25 is work +25 is send Server -> Client@+25 : 200 OK\nExpires: 275 +25 is idle +75 is recv +25 is send Server -> Client@+25 : 304 Not Modified +25 is idle @Cache 75 is fresh +2000 码力 | 408 页 | 4.32 MB | 1 年前3Comprehensive Rust(한국어) 202412
7 API 수정 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 200 34.1.8 Updating Client and Service . . . . . . . . . . . . . . . . . . . . . . . 201 5 34.2 Working With AIDL Types . 5 minutes 수명 5 minutes 연습문제: Protobuf 파싱 30 minutes 23.1 슬라이스 슬라이스는 큰 컬랙션의 일부 (혹은 전체) 를 보여주는 뷰 (view) 입니다: fn main() { let mut a: [i32; 6] = [10, 20, 30, 40, 50, 60]; println!("a: {a:?}"); let s: over trying to get character boundaries right. • For C++ programmers: think of &str as std::string_view from C++, but the one that always points to a valid string in memory. Rust String is a rough equivalent0 码力 | 369 页 | 1.29 MB | 10 月前3Comprehensive Rust
7 API 수정 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 199 34.1.8 Updating Client and Service . . . . . . . . . . . . . . . . . . . . . . . 200 5 34.2 Working With AIDL Types . 5 minutes 수명 5 minutes 연습문제: Protobuf 파싱 30 minutes 23.1 슬라이스 슬라이스는 큰 컬랙션의 일부 (혹은 전체) 를 보여주는 뷰 (view) 입니다: fn main() { let mut a: [i32; 6] = [10, 20, 30, 40, 50, 60]; println!("a: {a:?}"); let s: over trying to get character boundaries right. • For C++ programmers: think of &str as std::string_view from C++, but the one that always points to a valid string in memory. Rust String is a rough equivalent0 码力 | 368 页 | 1.29 MB | 1 年前3PlantUML 을사용해서 UML 그리기 - PlantUML 언어참조가이드(Version 1.2023.11)
a specific moment in time. It provides a snapshot of the system’s structure, capturing the static view of the instances present and their associations. PlantUML offers a simple and intuitive way to create this example. @startuml concise "Client" as Client concise "Server" as Server concise "Response freshness" as Cache Server is idle Client is idle @Client 0 is send Client -> Server@+25 : GET +25 is await await +75 is recv +25 is idle +25 is send Client -> Server@+25 : GET\nIf-Modified-Since: 150 +25 is await +50 is recv +25 is idle @100 <-> @275 : no need to re-request from server @Server 25 is recv +250 码力 | 552 页 | 7.88 MB | 1 年前3Krita 5.2 브로셔
Space or Ctrl + shortcuts allows for direct zooming with the stylus. Mirroring You can mirror the view can be quickly done via M key. Mirroring is a great technique that seasoned digital artists use to mirroring will use the cursor position as the center to mirror around instead of the middle of the view. There is also a Mirror Canvas available in the Shortcut Settings to assign a shortcut to. Rotating Shift + Space and Shift + shortcuts. To reset rotation use the 5 key. You can also find these under View ‣ Canvas. 도커 Krita subdivides many of its options into functional panels called Dockers (also known0 码力 | 1531 页 | 79.11 MB | 1 年前3PlantUML 을사용해서 UML 그리기 - PlantUML 언어참조가이드(Version 1.2019.9)
언어참조가이드 (1.2019.9) 143 / 171 18.10 List of all skinparam parameters 18 SKINPARAM COMMAND You can also view each skinparam parameters with its results displayed at https://plantuml-documentation.readthedocs0 码力 | 172 页 | 1.97 MB | 1 年前3
共 11 条
- 1
- 2