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
"""Tests for thread-local bytecode.""" import textwrap import unittest from test import support from test.support import cpython_only, import_helper, requires_specialization_ft from test.support.script_helper import assert_python_ok from test.support.threading_helper import requires_working_threading # Skip this test if the _testinternalcapi module isn't available _testinternalcapi = import_helper.import_module("_testinternalcapi") @cpython_only @requires_working_threading() @unittest.skipUnless(support.Py_GIL_DISABLED, "only in free-threaded builds") class TLBCTests(unittest.TestCase): @requires_specialization_ft def test_new_threads_start_with_unspecialized_code(self): code = textwrap.dedent(""" import dis import queue import threading from _testinternalcapi import get_tlbc def all_opnames(bc): return {i.opname for i in dis._get_instructions_bytes(bc)} def f(a, b, q=None): if q is not None: q.put(get_tlbc(f)) return a + b for _ in range(100): # specialize f(1, 2) q = queue.Queue() t = threading.Thread(target=f, args=('a', 'b', q)) t.start() t.join() assert "BINARY_OP_ADD_INT" in all_opnames(get_tlbc(f)) assert "BINARY_OP_ADD_INT" not in all_opnames(q.get()) """) assert_python_ok("-X", "tlbc=1", "-c", code) @requires_specialization_ft def test_threads_specialize_independently(self): code = textwrap.dedent(""" import dis import queue import threading from _testinternalcapi import get_tlbc def all_opnames(bc): return {i.opname for i in dis._get_instructions_bytes(bc)} def f(a, b): return a + b def g(a, b, q=None): for _ in range(100): f(a, b) if q is not None: q.put(get_tlbc(f)) # specialize in main thread g(1, 2) # specialize in other thread q = queue.Queue() t = threading.Thread(target=g, args=('a', 'b', q)) t.start() t.join() assert "BINARY_OP_ADD_INT" in all_opnames(get_tlbc(f)) t_opnames = all_opnames(q.get()) assert "BINARY_OP_ADD_INT" not in t_opnames assert "BINARY_OP_ADD_UNICODE" in t_opnames """) assert_python_ok("-X", "tlbc=1", "-c", code) def test_reuse_tlbc_across_threads_different_lifetimes(self): code = textwrap.dedent(""" import queue import threading from _testinternalcapi import get_tlbc_id def f(a, b, q=None): if q is not None: q.put(get_tlbc_id(f)) return a + b q = queue.Queue() tlbc_ids = [] for _ in range(3): t = threading.Thread(target=f, args=('a', 'b', q)) t.start() t.join() tlbc_ids.append(q.get()) assert tlbc_ids[0] == tlbc_ids[1] assert tlbc_ids[1] == tlbc_ids[2] """) assert_python_ok("-X", "tlbc=1", "-c", code) @support.skip_if_sanitizer("gh-129752: data race on adaptive counter", thread=True) def test_no_copies_if_tlbc_disabled(self): code = textwrap.dedent(""" import queue import threading from _testinternalcapi import get_tlbc_id def f(a, b, q=None): if q is not None: q.put(get_tlbc_id(f)) return a + b q = queue.Queue() threads = [] for _ in range(3): t = threading.Thread(target=f, args=('a', 'b', q)) t.start() threads.append(t) tlbc_ids = [] for t in threads: t.join() tlbc_ids.append(q.get()) main_tlbc_id = get_tlbc_id(f) assert main_tlbc_id is not None assert tlbc_ids[0] == main_tlbc_id assert tlbc_ids[1] == main_tlbc_id assert tlbc_ids[2] == main_tlbc_id """) assert_python_ok("-X", "tlbc=0", "-c", code) def test_no_specialization_if_tlbc_disabled(self): code = textwrap.dedent(""" import dis import queue import threading from _testinternalcapi import get_tlbc def all_opnames(f): bc = get_tlbc(f) return {i.opname for i in dis._get_instructions_bytes(bc)} def f(a, b): return a + b for _ in range(100): f(1, 2) assert "BINARY_OP_ADD_INT" not in all_opnames(f) """) assert_python_ok("-X", "tlbc=0", "-c", code) def test_generator_throw(self): code = textwrap.dedent(""" import queue import threading from _testinternalcapi import get_tlbc_id def g(): try: yield except: yield get_tlbc_id(g) def f(q): gen = g() next(gen) q.put(gen.throw(ValueError)) q = queue.Queue() t = threading.Thread(target=f, args=(q,)) t.start() t.join() gen = g() next(gen) main_id = gen.throw(ValueError) assert main_id != q.get() """) assert_python_ok("-X", "tlbc=1", "-c", code) if __name__ == "__main__": unittest.main()