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) 2012 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. import collections import os import gyp import gyp.common import gyp.msvs_emulation import json import sys generator_supports_multiple_toolsets = True generator_wants_static_library_dependencies_adjusted = False generator_default_variables = { } for dirname in ['INTERMEDIATE_DIR', 'SHARED_INTERMEDIATE_DIR', 'PRODUCT_DIR', 'LIB_DIR', 'SHARED_LIB_DIR']: # Some gyp steps fail if these are empty(!). generator_default_variables[dirname] = 'dir' for unused in ['RULE_INPUT_PATH', 'RULE_INPUT_ROOT', 'RULE_INPUT_NAME', 'RULE_INPUT_DIRNAME', 'RULE_INPUT_EXT', 'EXECUTABLE_PREFIX', 'EXECUTABLE_SUFFIX', 'STATIC_LIB_PREFIX', 'STATIC_LIB_SUFFIX', 'SHARED_LIB_PREFIX', 'SHARED_LIB_SUFFIX', 'CONFIGURATION_NAME']: generator_default_variables[unused] = '' def CalculateVariables(default_variables, params): generator_flags = params.get('generator_flags', {}) for key, val in generator_flags.items(): default_variables.setdefault(key, val) default_variables.setdefault('OS', gyp.common.GetFlavor(params)) flavor = gyp.common.GetFlavor(params) if flavor =='win': # Copy additional generator configuration data from VS, which is shared # by the Windows Ninja generator. import gyp.generator.msvs as msvs_generator generator_additional_non_configuration_keys = getattr(msvs_generator, 'generator_additional_non_configuration_keys', []) generator_additional_path_sections = getattr(msvs_generator, 'generator_additional_path_sections', []) # Set a variable so conditions can be based on msvs_version. msvs_version = gyp.msvs_emulation.GetVSVersion(generator_flags) default_variables['MSVS_VERSION'] = msvs_version.ShortName() # To determine processor word size on Windows, in addition to checking # PROCESSOR_ARCHITECTURE (which reflects the word size of the current # process), it is also necessary to check PROCESSOR_ARCHITEW6432 (which # contains the actual word size of the system when running thru WOW64). if ('64' in os.environ.get('PROCESSOR_ARCHITECTURE', '') or '64' in os.environ.get('PROCESSOR_ARCHITEW6432', '')): default_variables['MSVS_OS_BITS'] = 64 else: default_variables['MSVS_OS_BITS'] = 32 def CalculateGeneratorInputInfo(params): """Calculate the generator specific info that gets fed to input (called by gyp).""" generator_flags = params.get('generator_flags', {}) if generator_flags.get('adjust_static_libraries', False): global generator_wants_static_library_dependencies_adjusted generator_wants_static_library_dependencies_adjusted = True def GenerateOutput(target_list, target_dicts, data, params): # Map of target -> list of targets it depends on. edges = {} # Queue of targets to visit. targets_to_visit = target_list[:] while len(targets_to_visit) > 0: target = targets_to_visit.pop() if target in edges: continue edges[target] = [] for dep in target_dicts[target].get('dependencies', []): edges[target].append(dep) targets_to_visit.append(dep) filename = 'dump.json' f = open(filename, 'w') json.dump(edges, f) f.close() print 'Wrote json to %s.' % filename