Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-node-dojo /
include /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
libplatform
[ DIR ]
drwxr-xr-x
2024-04-22 09:42
openssl
[ DIR ]
drwxr-xr-x
2024-04-22 09:42
uv
[ DIR ]
drwxr-xr-x
2024-04-22 09:42
common.gypi
18.41
KB
-rw-r--r--
2023-12-13 13:12
config.gypi
3.02
KB
-rw-r--r--
2023-12-13 13:12
node.h
35.16
KB
-rw-r--r--
2023-12-13 13:12
node_api.h
36.85
KB
-rw-r--r--
2023-12-13 13:12
node_api_types.h
4.68
KB
-rw-r--r--
2023-12-13 13:12
node_buffer.h
3.4
KB
-rw-r--r--
2023-12-13 13:12
node_object_wrap.h
3.7
KB
-rw-r--r--
2023-12-13 13:12
node_version.h
3.86
KB
-rw-r--r--
2023-12-13 13:12
uv.h
62.51
KB
-rw-r--r--
2023-12-13 13:12
v8-inspector-protocol.h
513
B
-rw-r--r--
2023-12-13 13:12
v8-inspector.h
9.98
KB
-rw-r--r--
2023-12-13 13:12
v8-platform.h
15.74
KB
-rw-r--r--
2023-12-13 13:12
v8-profiler.h
35.76
KB
-rw-r--r--
2023-12-13 13:12
v8-testing.h
1.05
KB
-rw-r--r--
2023-12-13 13:12
v8-util.h
19.38
KB
-rw-r--r--
2023-12-13 13:12
v8-value-serializer-version.h
648
B
-rw-r--r--
2023-12-13 13:12
v8-version-string.h
1.12
KB
-rw-r--r--
2023-12-13 13:12
v8-version.h
772
B
-rw-r--r--
2023-12-13 13:12
v8.h
339.14
KB
-rw-r--r--
2023-12-13 13:12
v8config.h
15.09
KB
-rw-r--r--
2023-12-13 13:12
zconf.h
15.92
KB
-rw-r--r--
2023-12-13 13:12
zlib.h
93.98
KB
-rw-r--r--
2023-12-13 13:12
Save
Rename
// Copyright 2010 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_V8_TEST_H_ #define V8_V8_TEST_H_ #include "v8.h" // NOLINT(build/include) /** * Testing support for the V8 JavaScript engine. */ namespace v8 { class V8_EXPORT Testing { public: enum StressType { kStressTypeOpt, kStressTypeDeopt }; /** * Set the type of stressing to do. The default if not set is kStressTypeOpt. */ static void SetStressRunType(StressType type); /** * Get the number of runs of a given test that is required to get the full * stress coverage. */ static int GetStressRuns(); /** * Indicate the number of the run which is about to start. The value of run * should be between 0 and one less than the result from GetStressRuns() */ static void PrepareStressRun(int run); /** * Force deoptimization of all functions. */ static void DeoptimizeAll(Isolate* isolate); }; } // namespace v8 #endif // V8_V8_TEST_H_