Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4,572 changes: 4,572 additions & 0 deletions deployment/25.10.3/404.html

Large diffs are not rendered by default.

4,692 changes: 4,692 additions & 0 deletions deployment/25.10.3/architecture/concepts/automatic-rebalancing/index.html

Large diffs are not rendered by default.

4,697 changes: 4,697 additions & 0 deletions deployment/25.10.3/architecture/concepts/disaggregated/index.html

Large diffs are not rendered by default.

4,694 changes: 4,694 additions & 0 deletions deployment/25.10.3/architecture/concepts/erasure-coding/index.html

Large diffs are not rendered by default.

4,697 changes: 4,697 additions & 0 deletions deployment/25.10.3/architecture/concepts/hyper-converged/index.html

Large diffs are not rendered by default.

4,685 changes: 4,685 additions & 0 deletions deployment/25.10.3/architecture/concepts/index.html

Large diffs are not rendered by default.

4,707 changes: 4,707 additions & 0 deletions deployment/25.10.3/architecture/concepts/logical-volumes/index.html

Large diffs are not rendered by default.

4,692 changes: 4,692 additions & 0 deletions deployment/25.10.3/architecture/concepts/persistent-volumes/index.html

Large diffs are not rendered by default.

4,839 changes: 4,839 additions & 0 deletions deployment/25.10.3/architecture/concepts/simplyblock-cluster/index.html

Large diffs are not rendered by default.

4,787 changes: 4,787 additions & 0 deletions deployment/25.10.3/architecture/concepts/snapshots-clones/index.html

Large diffs are not rendered by default.

4,693 changes: 4,693 additions & 0 deletions deployment/25.10.3/architecture/concepts/storage-pooling/index.html

Large diffs are not rendered by default.

4,878 changes: 4,878 additions & 0 deletions deployment/25.10.3/architecture/high-availability-fault-tolerance/index.html

Large diffs are not rendered by default.

4,685 changes: 4,685 additions & 0 deletions deployment/25.10.3/architecture/index.html

Large diffs are not rendered by default.

4,990 changes: 4,990 additions & 0 deletions deployment/25.10.3/architecture/simplyblock-architecture/index.html

Large diffs are not rendered by default.

5,029 changes: 5,029 additions & 0 deletions deployment/25.10.3/architecture/storage-performance-and-qos/index.html

Large diffs are not rendered by default.

4,827 changes: 4,827 additions & 0 deletions deployment/25.10.3/architecture/what-is-simplyblock/index.html

Large diffs are not rendered by default.

Binary file added deployment/25.10.3/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deployment/25.10.3/assets/images/social/index.png
16 changes: 16 additions & 0 deletions deployment/25.10.3/assets/javascripts/bundle.f1b6f286.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions deployment/25.10.3/assets/javascripts/cpumask-calculator.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
document$.subscribe(function() {
const elNumCores = document.getElementById("cpuc-cores");
const elCoresWrapper = document.getElementById("cpuc-cores-wrapper");
const elResult = document.getElementById("cpuc-result");
if (!elNumCores) return;

function clear_cpu_cores_wrapper() {
elCoresWrapper.innerHtml = '';
}

function calculate_cpu_mask() {
const cores = [...elCoresWrapper.querySelectorAll("input[type=checkbox]")].map(checkbox => {
return checkbox.checked ? 1 : 0
});

let cpumask_low = 0;
let cpumask_high = 0;
for (let i = 0; i < Math.min(cores.length, 32); i++) {
if (cores[i] === 0) continue;
cpumask_low |= cores[i] << i;
}
if (cores.length > 32) {
for (let i = 32; i < cores.length; i++) {
if (cores[i] === 0) continue;
cpumask_high |= cores[i] << i;
}
}
const hex = long2hex(cpumask_high) + long2hex(cpumask_low);
const cut = hex.replace(/^0+(?=\d\d\d\d)/, '')
elResult.innerText = `0x${cut.toUpperCase()}`;
}

function pad0(num, width) {
let zeros = "";
for (let i = 0; i < width; i++) {
zeros += "0";
}
return (zeros + num).substr(-width);
}

function long2hex(num) {
return (pad0((num >>> 24).toString(16), 2) +
pad0((num >> 16 & 255).toString(16), 2) +
pad0((num >> 8 & 255).toString(16), 2) +
pad0((num & 255).toString(16), 2));
}

function render_checkboxes() {
let value = parseInt(elNumCores.value);
if (value < 0) value = 0;
if (value > 64) value = 64;

clear_cpu_cores_wrapper();

const elements = [];
for (let i = 0; i < value; i++) {
const disabled = i === 0 ? "disabled" : "";
elements.push(`<div style="display: flex; align-items: center;"><input ${disabled} type="checkbox" id="core-${i}" style="width: 30px;"/><label for="core-${i}">Core ${i}</label></div>`);
}

elCoresWrapper.innerHTML = elements.join("");
elCoresWrapper.querySelectorAll("input[type=checkbox]").forEach(element => {
element.addEventListener("click", function() {
calculate_cpu_mask();
});
});
}

elNumCores.addEventListener("input", render_checkboxes);

render_checkboxes();
});
1 change: 1 addition & 0 deletions deployment/25.10.3/assets/javascripts/glightbox.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions deployment/25.10.3/assets/javascripts/lunr/min/lunr.da.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions deployment/25.10.3/assets/javascripts/lunr/min/lunr.de.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions deployment/25.10.3/assets/javascripts/lunr/min/lunr.du.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading