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 : progress_bar.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_PROGRESS_BAR_HPP #define MAMBA_CORE_PROGRESS_BAR_HPP #include <chrono> #include <cstddef> #include <functional> #include <string> namespace mamba { class ProgressBar; // TODO: find a way to define it here without // impoorting spdlog and modst of the STL. class ProgressBarRepr; enum ProgressBarMode { multi, aggregated }; class ProgressProxy { public: ProgressProxy() = default; ProgressProxy(ProgressBar* ptr); ~ProgressProxy() = default; ProgressProxy(const ProgressProxy&) = default; ProgressProxy& operator=(const ProgressProxy&) = default; ProgressProxy(ProgressProxy&&) = default; ProgressProxy& operator=(ProgressProxy&&) = default; bool defined() const; operator bool() const; ProgressProxy& set_bar(ProgressBar* ptr); ProgressProxy& set_progress(std::size_t current, std::size_t total); ProgressProxy& update_progress(std::size_t current, std::size_t total); ProgressProxy& set_progress(double progress); ProgressProxy& set_current(std::size_t current); ProgressProxy& set_in_progress(std::size_t in_progress); ProgressProxy& update_current(std::size_t current); ProgressProxy& set_total(std::size_t total); ProgressProxy& set_speed(std::size_t speed); ProgressProxy& set_full(); ProgressProxy& activate_spinner(); ProgressProxy& deactivate_spinner(); std::size_t current() const; std::size_t in_progress() const; std::size_t total() const; std::size_t speed() const; std::size_t avg_speed(const std::chrono::milliseconds& ref_duration = std::chrono::milliseconds::max()); double progress() const; bool completed() const; ProgressProxy& set_prefix(const std::string& text); ProgressProxy& set_postfix(const std::string& text); ProgressProxy& set_repr_hook(std::function<void(ProgressBarRepr&)> f); ProgressProxy& set_progress_hook(std::function<void(ProgressProxy&)> f); ProgressProxy& mark_as_completed(const std::chrono::milliseconds& delay = std::chrono::milliseconds::zero()); std::string elapsed_time_to_str() const; std::string prefix() const; ProgressBarRepr& update_repr(bool compute_progress = true); const ProgressBarRepr& repr() const; ProgressBarRepr& repr(); ProgressProxy& print(std::ostream& stream, std::size_t width = 0, bool with_endl = true); ProgressProxy& start(); ProgressProxy& pause(); ProgressProxy& resume(); ProgressProxy& stop(); bool started() const; int width() const; private: ProgressBar* p_bar = nullptr; friend class ProgressBarManager; }; } #endif
Close