1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Client { /** * A helper class of the AdaptiveRetryStrategy * representing a (send) token bucket with a dynamically changing fill rate and capacity. */ class AWS_CORE_API RetryTokenBucket { public: /** * C-tor */ RetryTokenBucket() = default; /** * Acquire tokens from the bucket. If the bucket contains enough capacity * to satisfy the request, this method will return immediately, otherwise * the method will block the calling thread until enough tokens are refilled * unless fast fail is provided as an argument. */ bool Acquire(size_t amount = 1, bool fastFail = false); /** * Update limiter's client sending rate during the request bookkeeping process * based on a service response. */ void UpdateClientSendingRate(bool throttlingResponse, const Aws::Utils::DateTime& now = Aws::Utils::DateTime::Now()); protected: /** * Internal C-tor for unit testing */ RetryTokenBucket(double fillRate, double maxCapacity, double currentCapacity, const Aws::Utils::DateTime& lastTimestamp, double measuredTxRate, double lastTxRateBucket, size_t requestCount, bool enabled, double lastMaxRate, const Aws::Utils::DateTime& lastThrottleTime); /** * Internal method to update the token bucket's fill rate when we receive a response from the service. * The update amount will depend on whether or not a throttling response is received from a service. * The request rate is measured using an exponentially smoothed average, * with the rate being updated in half second buckets. */ void UpdateMeasuredRate(const Aws::Utils::DateTime& now = Aws::Utils::DateTime::Now()); /** * Internal method to enable rate limiting. */ void Enable(); /** * Internal method to refill and update refill rate with a new refill rate. */ void UpdateRate(double newRps, const Aws::Utils::DateTime& now = Aws::Utils::DateTime::Now()); /** * Internal method to refill send tokens based on a current fill rate. */ void Refill(const Aws::Utils::DateTime& now = Aws::Utils::DateTime::Now()); /** * Internal method to compute time window for a last max fill rate. */ double CalculateTimeWindow() const; /** * Internal method with a modified CUBIC algorithm to compute new max sending rate for a successful response. */ double CUBICSuccess(const Aws::Utils::DateTime& timestamp, const double timeWindow) const; /** * Internal method with a modified CUBIC algorithm to compute new max sending rate for a throttled response. */ double CUBICThrottle(const double rateToUse) const; // The rate at which token are replenished. double m_fillRate = 0.0; // The maximum capacity allowed in the token bucket. double m_maxCapacity = 0.0; // The current capacity of the token bucket. double m_currentCapacity = 0.0; // The last time the token bucket was refilled. Aws::Utils::DateTime m_lastTimestamp; // The smoothed rate which tokens are being retrieved. double m_measuredTxRate = 0.0; // The last half second time bucket used. double m_lastTxRateBucket = 0.0; // The number of requests seen within the current time bucket. size_t m_requestCount = 0; // Boolean indicating if the token bucket is enabled. bool m_enabled = false; // The maximum rate when the client was last throttled. double m_lastMaxRate = 0.0; // The last time when the client was throttled. Aws::Utils::DateTime m_lastThrottleTime; // TokenBucket's mutex to synchronize read/write operations std::recursive_mutex m_mutex; }; /** * A retry strategy that builds on the standard strategy and introduces congestion control through * client side rate limiting. */ class AWS_CORE_API AdaptiveRetryStrategy : public StandardRetryStrategy { public: /** * C-tors */ AdaptiveRetryStrategy(long maxAttempts = 3); AdaptiveRetryStrategy(std::shared_ptr retryQuotaContainer, long maxAttempts = 3); /** * Retrieve and consume a send token. * Returns true if send token is available. * * If there is not sufficient capacity, HasSendToken() will either sleep a certain amount of time until the rate * limiter can retrieve a token from its token bucket or return false indicating there is insufficient capacity. */ virtual bool HasSendToken() override; /** * Update status, like the information of retry quota when receiving a response. */ virtual void RequestBookkeeping(const HttpResponseOutcome& httpResponseOutcome) override; virtual void RequestBookkeeping(const HttpResponseOutcome& httpResponseOutcome, const AWSError& lastError) override; const char* GetStrategyName() const override { return "adaptive";} protected: RetryTokenBucket m_retryTokenBucket; bool m_fastFail = false; private: /** * An internal helper function to check if a given service response is classified as a throttled one. */ static bool IsThrottlingResponse(const HttpResponseOutcome& httpResponseOutcome); }; } // namespace Client } // namespace Aws