- Двоичная система и логические операции
- Представление данных в двоичном виде (биты, байты)
- Логические вентили: AND, OR, NOT, XOR, NAND
- Булева алгебра и её применение в схемах процессора
- Триггеры и регистры
- Как хранится бит информации (RS-триггер, D-триггер)
- Роль регистров в процессоре
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"hasReport": [ | |
{ | |
"type": "INFO", | |
"created": "2021-03-03T16:41:47.628Z", | |
"message": "Vendor package successfully received", | |
"event": { | |
"id": "5c98ca8b-b700-4639-9a1c-45c7a914eb0f", | |
"modelType": "WorkflowEvent" | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workflow": { | |
"phase": "wwfl:ArticleProduction", | |
"id": "wwfl:ArticleStandardWorkflow", | |
"modelType": "Workflow" | |
}, | |
"payload": [ | |
{ | |
"requiresPayment": [ | |
{ |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@UtilityClass | |
public class XPathUtils { | |
public Map<String, Object> extractValue(@NonNull String json, @NonNull String xPath) { | |
Map<String, Object> jsonValue = U.fromXmlMap(json); | |
return extractValue(jsonValue, xPath); | |
} | |
@SuppressWarnings("unchecked") | |
public Map<String, Object> extractValue(@NonNull Map<String, Object> jsonMap, @NonNull String xPath) { |
NewerOlder