Skip to content
Merged
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,548 changes: 4,548 additions & 0 deletions deployment/25.10.4/404.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4,661 changes: 4,661 additions & 0 deletions deployment/25.10.4/architecture/concepts/index.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4,661 changes: 4,661 additions & 0 deletions deployment/25.10.4/architecture/index.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

Binary file added deployment/25.10.4/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.4/assets/images/social/index.png
16 changes: 16 additions & 0 deletions deployment/25.10.4/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.4/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.4/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.4/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.4/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.4/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
Loading