-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
executable file
·187 lines (164 loc) · 6.05 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
site_name: Notas de Aula em Sistemas Distribuídos
site_url: https://lasarojc.github.io/ds_notes
site_description: Notas de aula do curso de Sistemas Distribuídos da FACOM/UFU
repo_url: https://github.com/lasarojc/ds_notes
edit_uri: ""
extra_javascript:
- https://unpkg.com/mermaid@8.5.1/dist/mermaid.min.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/mathjaxhelper.js
extra_css:
- css/extra.css
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
accent: deep orange
primary: blue grey
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
language: pt
custom_dir: overrides
features:
- search.suggest
- search.highlight
- navigation.indexes
markdown_extensions:
- toc:
toc_depth: 5
- attr_list
- mdx_math
- admonition
- footnotes
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde
copyright: "Copyright © 2021 Lásaro Camargos"
extra:
social:
# - icon: fontawesome/brands/twitter
# link: https://twitter.com/...
- icon: fontawesome/brands/github
link: https://github.com/lasarojc/ds_notes
name: These notes on Github
# - icon: fontawesome/brands/slack
# link: https://slack.knative.dev
# name: Slack
# TODO: Replace with https://github.com/mkdocs/mkdocs/pull/2267 once mkdocs 1.2 is out.
# version_warning: !!python/object/apply:os.getenv ["VERSION_WARNING"]
# knative_version: !!python/object/apply:os.getenv ["KNATIVE_VERSION"]
# branch: !!python/object/apply:os.getenv ["SAMPLES_BRANCH", "mkdocs"]
analytics:
provider: google
property: G-65TK61CS8M
version:
provider: mike
plugins:
- search
# - bibtex:
# bib_file: "refs.bib"
# cite_style: "pandoc"
- drawio-exporter:
cache_dir: 'drawio-exporter'
drawio_executable: null
drawio_args:
- --no-sandbox
format: svg
sources: '*.drawio'
nav:
#- Início: index.html
- Prefácio: preface.md
- Introdução: intro.md
- Comunicação:
- comm/index.md
- Redes: comm/redes.md
- Internet: comm/internet.md
- Sockets: comm/sockets.md
- Representação: comm/datarep.md
- Middlewares: comm/middleware.md
- RPC: comm/rpc.md
- MOM: comm/mom.md
#TODO? - Multicast: comm/multicast.md
- Epidêmicos: comm/epidemics.md
- Referências: comm/refs.md
- Arquiteturas:
- arch/index.md
- P2P: arch/p2p.md
- Microsserviços: arch/microservices.md
- Modelos:
- models/index.md
- Tipos: models/models.md
- Processador: models/processor.md
- Coordenação:
- Concorrência: coord/concurrency.md
- Coordenação: coord/coord.md
- Tempo:
- time/index.md
- Tempo Físico: time/physical.md
- Tempo Lógico: time/logical.md
- Tolerância a Faltas:
- fault/index.md
- Falta/Erros/Falhas: fault/failures.md
- Replicação: fault/replication.md
- Detectores de Falhas: fault/failuredetector.md
- Acordo: fault/agreement.md
- Grupos: fault/reconfiguration.md
- Falhas bizantinas: fault/bizantine.md
- Dependabilidade: fault/dependability.md
- Consistência:
- consistency/index.md
- Modelos: consistency/consistency_models.md
- Centrado nos Dados: consistency/data_centric.md
- Centrado no Cliente: consistency/client_centric.md
- Gerenciamento de Réplicas: consistency/replica_management.md
- Checkpointing: consistency/checkpointing.md
- Referências: consistency/references.md
- Bancos de Dados: db/disdb.md
- Sistemas de Arquivos: filesystem/disfs.md
- Estudos de Caso:
- Introdução: cases/index.md
- Cassandra: cases/cassandra.md
- Chord: cases/chord.md
- Pastry: cases/pastry.md
- Dynamo: cases/dynamo.md
- gRPC: cases/grpc.md
- Mosquito: cases/mosquito.md
- RMI: cases/rmi.md
- Thrift: cases/thrift.md
- Kafka: cases/kafka.md
- Swim: cases/swim.md
- Copycat: cases/copycat.md
- Ratis: cases/ratis.md
- BFT-Smart: cases/bftsmart.md
- Etcd: cases/etcd.md
- Zookeeper: cases/zookeeper.md
- Referências: cases/refs.md
- Tecnologias: tech.md
- Projeto: projeto.md