Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
js /
jquery /
src /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax
[ DIR ]
drwxrwxr-x
attributes
[ DIR ]
drwxrwxr-x
core
[ DIR ]
drwxrwxr-x
css
[ DIR ]
drwxrwxr-x
data
[ DIR ]
drwxrwxr-x
deferred
[ DIR ]
drwxrwxr-x
effects
[ DIR ]
drwxrwxr-x
event
[ DIR ]
drwxrwxr-x
exports
[ DIR ]
drwxrwxr-x
manipulation
[ DIR ]
drwxrwxr-x
queue
[ DIR ]
drwxrwxr-x
traversing
[ DIR ]
drwxrwxr-x
var
[ DIR ]
drwxrwxr-x
.eslintrc.json
360
B
-rwxrwxr-x
ajax.js
21.73
KB
-rwxrwxr-x
attributes.js
217
B
-rwxrwxr-x
callbacks.js
5.37
KB
-rwxrwxr-x
core.js
11.08
KB
-rwxrwxr-x
css.js
11.21
KB
-rwxrwxr-x
data.js
4.2
KB
-rwxrwxr-x
deferred.js
10.48
KB
-rwxrwxr-x
deprecated.js
596
B
-rwxrwxr-x
dimensions.js
1.69
KB
-rwxrwxr-x
effects.js
16.88
KB
-rwxrwxr-x
event.js
18.94
KB
-rwxrwxr-x
jquery.js
640
B
-rwxrwxr-x
manipulation.js
12.15
KB
-rwxrwxr-x
offset.js
6.2
KB
-rwxrwxr-x
queue.js
3.02
KB
-rwxrwxr-x
selector.js
66
B
-rwxrwxr-x
selector-native.js
6.24
KB
-rwxrwxr-x
selector-sizzle.js
411
B
-rwxrwxr-x
serialize.js
3.1
KB
-rwxrwxr-x
traversing.js
4.07
KB
-rwxrwxr-x
wrap.js
1.42
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : callbacks.js
define( [ "./core", "./var/rnothtmlwhite" ], function( jQuery, rnothtmlwhite ) { "use strict"; // Convert String-formatted options into Object-formatted ones function createOptions( options ) { var object = {}; jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { object[ flag ] = true; } ); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? createOptions( options ) : jQuery.extend( {}, options ); var // Flag to know if list is currently firing firing, // Last fire value for non-forgettable lists memory, // Flag to know if list was already fired fired, // Flag to prevent firing locked, // Actual callback list list = [], // Queue of execution data for repeatable lists queue = [], // Index of currently firing callback (modified by add/remove as needed) firingIndex = -1, // Fire callbacks fire = function() { // Enforce single-firing locked = options.once; // Execute callbacks for all pending executions, // respecting firingIndex overrides and runtime changes fired = firing = true; for ( ; queue.length; firingIndex = -1 ) { memory = queue.shift(); while ( ++firingIndex < list.length ) { // Run callback and check for early termination if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && options.stopOnFalse ) { // Jump to end and forget the data so .add doesn't re-fire firingIndex = list.length; memory = false; } } } // Forget the data if we're done with it if ( !options.memory ) { memory = false; } firing = false; // Clean up if we're done firing for good if ( locked ) { // Keep an empty list if we have data for future add calls if ( memory ) { list = []; // Otherwise, this object is spent } else { list = ""; } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // If we have memory from a past run, we should fire after adding if ( memory && !firing ) { firingIndex = list.length - 1; queue.push( memory ); } ( function add( args ) { jQuery.each( args, function( _, arg ) { if ( jQuery.isFunction( arg ) ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { // Inspect recursively add( arg ); } } ); } )( arguments ); if ( memory && !firing ) { fire(); } } return this; }, // Remove a callback from the list remove: function() { jQuery.each( arguments, function( _, arg ) { var index; while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( index <= firingIndex ) { firingIndex--; } } } ); return this; }, // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { return fn ? jQuery.inArray( fn, list ) > -1 : list.length > 0; }, // Remove all callbacks from the list empty: function() { if ( list ) { list = []; } return this; }, // Disable .fire and .add // Abort any current/pending executions // Clear all callbacks and values disable: function() { locked = queue = []; list = memory = ""; return this; }, disabled: function() { return !list; }, // Disable .fire // Also disable .add unless we have memory (since it would have no effect) // Abort any pending executions lock: function() { locked = queue = []; if ( !memory && !firing ) { list = memory = ""; } return this; }, locked: function() { return !!locked; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { if ( !locked ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; queue.push( args ); if ( !firing ) { fire(); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; return jQuery; } );
Close