Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.201.190
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
gyp /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
0
B
-rw-r--r--
2013-02-12 09:57
__init__.pyc
145
B
-rw-r--r--
2014-03-07 02:31
__init__.pyo
145
B
-rw-r--r--
2014-03-07 02:31
android.py
43.02
KB
-rw-r--r--
2013-02-12 09:57
android.pyc
31.03
KB
-rw-r--r--
2014-03-07 02:31
android.pyo
30.29
KB
-rw-r--r--
2014-03-07 02:31
dump_dependency_json.py
3.34
KB
-rw-r--r--
2013-02-12 09:57
dump_dependency_json.pyc
3.02
KB
-rw-r--r--
2014-03-07 02:31
dump_dependency_json.pyo
3.02
KB
-rw-r--r--
2014-03-07 02:31
eclipse.py
10.25
KB
-rw-r--r--
2013-04-23 10:06
eclipse.pyc
8.84
KB
-rw-r--r--
2014-03-07 02:31
eclipse.pyo
8.84
KB
-rw-r--r--
2014-03-07 02:31
gypd.py
3.25
KB
-rw-r--r--
2013-02-12 09:57
gypd.pyc
2.86
KB
-rw-r--r--
2014-03-07 02:31
gypd.pyo
2.86
KB
-rw-r--r--
2014-03-07 02:31
gypsh.py
1.63
KB
-rw-r--r--
2013-02-12 09:57
gypsh.pyc
1.45
KB
-rw-r--r--
2014-03-07 02:31
gypsh.pyo
1.45
KB
-rw-r--r--
2014-03-07 02:31
make.py
86.51
KB
-rw-r--r--
2014-03-07 02:31
make.pyc
64.25
KB
-rw-r--r--
2014-03-07 02:31
make.pyo
63.16
KB
-rw-r--r--
2014-03-07 02:31
msvs.py
114.22
KB
-rw-r--r--
2013-04-23 10:06
msvs.pyc
85.76
KB
-rw-r--r--
2014-03-07 02:31
msvs.pyo
85.73
KB
-rw-r--r--
2014-03-07 02:31
msvs_test.py
996
B
-rw-r--r--
2013-02-12 09:57
msvs_test.pyc
1.31
KB
-rw-r--r--
2014-03-07 02:31
msvs_test.pyo
1.31
KB
-rw-r--r--
2014-03-07 02:31
ninja.py
73.61
KB
-rw-r--r--
2013-04-23 10:06
ninja.pyc
49.38
KB
-rw-r--r--
2014-03-07 02:31
ninja.pyo
48.85
KB
-rw-r--r--
2014-03-07 02:31
ninja_test.py
1.61
KB
-rw-r--r--
2013-02-12 09:57
ninja_test.pyc
1.86
KB
-rw-r--r--
2014-03-07 02:31
ninja_test.pyo
1.86
KB
-rw-r--r--
2014-03-07 02:31
xcode.py
53.53
KB
-rw-r--r--
2013-02-12 09:57
xcode.pyc
23.03
KB
-rw-r--r--
2014-03-07 02:31
xcode.pyo
22.83
KB
-rw-r--r--
2014-03-07 02:31
Save
Rename
# Copyright (c) 2011 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """gypsh output module gypsh is a GYP shell. It's not really a generator per se. All it does is fire up an interactive Python session with a few local variables set to the variables passed to the generator. Like gypd, it's intended as a debugging aid, to facilitate the exploration of .gyp structures after being processed by the input module. The expected usage is "gyp -f gypsh -D OS=desired_os". """ import code import sys # All of this stuff about generator variables was lovingly ripped from gypd.py. # That module has a much better description of what's going on and why. _generator_identity_variables = [ 'EXECUTABLE_PREFIX', 'EXECUTABLE_SUFFIX', 'INTERMEDIATE_DIR', 'PRODUCT_DIR', 'RULE_INPUT_ROOT', 'RULE_INPUT_DIRNAME', 'RULE_INPUT_EXT', 'RULE_INPUT_NAME', 'RULE_INPUT_PATH', 'SHARED_INTERMEDIATE_DIR', ] generator_default_variables = { } for v in _generator_identity_variables: generator_default_variables[v] = '<(%s)' % v def GenerateOutput(target_list, target_dicts, data, params): locals = { 'target_list': target_list, 'target_dicts': target_dicts, 'data': data, } # Use a banner that looks like the stock Python one and like what # code.interact uses by default, but tack on something to indicate what # locals are available, and identify gypsh. banner='Python %s on %s\nlocals.keys() = %s\ngypsh' % \ (sys.version, sys.platform, repr(sorted(locals.keys()))) code.interact(banner, local=locals)