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,596 changes: 4,596 additions & 0 deletions deployment/25.10.5/404.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4,709 changes: 4,709 additions & 0 deletions deployment/25.10.5/architecture/concepts/index.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4,709 changes: 4,709 additions & 0 deletions deployment/25.10.5/architecture/index.html

Large diffs are not rendered by default.

5,014 changes: 5,014 additions & 0 deletions deployment/25.10.5/architecture/simplyblock-architecture/index.html

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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