Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
miniconda3 /
python /
include /
mamba /
specs /
[ HOME SHELL ]
Name
Size
Permission
Action
archive.hpp
1.93
KB
-rw-rw-r--
platform.hpp
1.35
KB
-rw-rw-r--
repo_data.hpp
8.2
KB
-rw-rw-r--
version.hpp
7.72
KB
-rw-rw-r--
version_spec.hpp
4.95
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : platform.hpp
// Copyright (c) 2023, QuantStack and Mamba Contributors // // Distributed under the terms of the BSD 3-Clause License. // // The full license is in the file LICENSE, distributed with this software. #ifndef MAMBA_SPECS_PLATFORM_HPP #define MAMBA_SPECS_PLATFORM_HPP #include <optional> #include <string_view> #include <nlohmann/json_fwd.hpp> namespace mamba::specs { enum class Platform { noarch, linux_32, linux_64, linux_armv6l, linux_armv7l, linux_aarch64, linux_ppc64, linux_ppc64le, linux_s390x, linux_riscv32, linux_riscv64, osx_64, osx_arm64, win_32, win_64, win_arm64, }; /** * Convert the enumeration to its conda string. */ auto platform_name(Platform p) -> std::string_view; /** * Return the enum matching the platform name. */ auto platform_parse(std::string_view str) -> std::optional<Platform>; /** * Detect the platform on which mamba was built. */ auto build_platform() -> Platform; auto build_platform_name() -> std::string_view; /** * Serialize to JSON string. */ void to_json(nlohmann::json& j, const Platform& p); /** * Deserialize from JSON string. */ void from_json(const nlohmann::json& j, Platform& p); } #endif
Close