/**
  * Sets the setting with the provided setting key and the size value.
  *
  * @param setting The setting key
  * @param value The size value
  * @return The builder
  */
 public Builder put(String setting, long value, ByteSizeUnit sizeUnit) {
   put(setting, sizeUnit.toBytes(value));
   return this;
 }