-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add pre-commit configuration and update keyterm definitions wi…
…th citations
- Loading branch information
1 parent
b309397
commit e3b3755
Showing
4 changed files
with
54 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
ci: | ||
skip: [pylint] | ||
|
||
repos: | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
|
||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.7.3 | ||
hooks: | ||
- id: ruff | ||
args: ["--fix"] | ||
- id: ruff-format | ||
|
||
- repo: https://github.com/PyCQA/pylint | ||
rev: v3.3.1 | ||
hooks: | ||
- id: pylint | ||
fail_fast: false | ||
|
||
- repo: https://github.com/PyCQA/bandit | ||
rev: 1.7.4 | ||
hooks: | ||
- id: bandit | ||
args: ["--severity-level", "all", "--exclude", "tests/"] | ||
fail_fast: false |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
Abbreviation,Term,Definition | ||
ACI,Autonomic Computing Initiative,Todo. | ||
AEs,Autonomic Elements,Todo. | ||
AM,Autonomic Manager,Todo. | ||
ACI,Autonomic Computing Initiative,A framework to develop self-managing computing systems :cite:`chatgpt2024`. | ||
AEs,Autonomic Elements,Independent components that implement self-management functions :cite:`chatgpt2024`. | ||
AM,Autonomic Manager,A system component that manages resources automatically :cite:`chatgpt2024`. | ||
FHE,Fully Homomorphic Encryption,An encryption scheme that allows computation on encrypted data. | ||
FaaS,Function As A Service,Provide a virtual environment for computer systems that can be dynamically scaled up and down. | ||
IaaS,Infrastructure As A Service,Todo. | ||
IoE,Internet Of Everything,Todo. | ||
MAPE,Monitor Analyse Plan Execute,Todo. | ||
PaaS,Platform As A Service,Todo. | ||
QoE,Quality Of Experience,Todo. | ||
QoS,Quality Of Service,Todo. | ||
SARSA,State Action Reward State Action,Todo. | ||
SLOs,Service Level Objectives,Todo. | ||
SaaS,Software As A Service,Todo. | ||
TEE,Trusted Execution Environment,Todo. | ||
V2X,Vehicle To Everything,Todo. | ||
X,Autonomous Computing,Todo. | ||
IaaS,Infrastructure As A Service,Cloud-based virtualized computing resources such as servers and storage :cite:`chatgpt2024`. | ||
IoE,Internet Of Everything,"A network connecting people, devices, and data for smarter interactions :cite:`chatgpt2024`." | ||
MAPE,Monitor Analyse Plan Execute,A loop process used for autonomic computing systems :cite:`chatgpt2024`. | ||
PaaS,Platform As A Service,A cloud service model that provides a platform for app development :cite:`chatgpt2024`. | ||
QoE,Quality Of Experience,User satisfaction with a service's overall performance :cite:`chatgpt2024`. | ||
QoS,Quality Of Service,The performance standard for a network or service :cite:`chatgpt2024`. | ||
SARSA,State Action Reward State Action,An algorithm for reinforcement learning :cite:`chatgpt2024`. | ||
SLOs,Service Level Objectives,Specific targets for service performance within slas :cite:`chatgpt2024`. | ||
SaaS,Software As A Service,A cloud model delivering software via the internet :cite:`chatgpt2024`. | ||
TEE,Trusted Execution Environment,A secure area of a processor for trusted operations :cite:`chatgpt2024`. | ||
V2X,Vehicle To Everything,Communication between vehicles and external systems :cite:`chatgpt2024`. | ||
X,Autonomous Computing,Computing systems capable of managing themselves :cite:`chatgpt2024`. |