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. """ Unit tests for the ninja.py file. """ import gyp.generator.ninja as ninja import unittest import StringIO import sys import TestCommon class TestPrefixesAndSuffixes(unittest.TestCase): if sys.platform in ('win32', 'cygwin'): def test_BinaryNamesWindows(self): writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'ninja.build', 'win') spec = { 'target_name': 'wee' } self.assertTrue(writer.ComputeOutputFileName(spec, 'executable'). endswith('.exe')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). endswith('.dll')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). endswith('.lib')) if sys.platform == 'linux2': def test_BinaryNamesLinux(self): writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'ninja.build', 'linux') spec = { 'target_name': 'wee' } self.assertTrue('.' not in writer.ComputeOutputFileName(spec, 'executable')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). startswith('lib')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). startswith('lib')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). endswith('.so')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). endswith('.a')) if __name__ == '__main__': unittest.main()