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
/
home /
www /
3 /
react /
event-loop /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
Timer
[ DIR ]
drwxr-xr-x
2018-07-11 09:00
AbstractLoopTest.php
17.24
KB
-rw-r--r--
2018-07-11 09:00
CallableStub.php
107
B
-rw-r--r--
2018-07-11 09:00
ExtEvLoopTest.php
355
B
-rw-r--r--
2018-07-11 09:00
ExtEventLoopTest.php
2.33
KB
-rw-r--r--
2018-07-11 09:00
ExtLibevLoopTest.php
454
B
-rw-r--r--
2018-07-11 09:00
ExtLibeventLoopTest.php
1.38
KB
-rw-r--r--
2018-07-11 09:00
SignalsHandlerTest.php
1.33
KB
-rw-r--r--
2018-07-11 09:00
StreamSelectLoopTest.php
3.96
KB
-rw-r--r--
2018-07-11 09:00
TestCase.php
1.11
KB
-rw-r--r--
2018-07-11 09:00
bootstrap.php
118
B
-rw-r--r--
2018-07-11 09:00
Save
Rename
<?php namespace React\Tests\EventLoop; use React\EventLoop\ExtLibeventLoop; class ExtLibeventLoopTest extends AbstractLoopTest { private $fifoPath; public function createLoop() { if ('Linux' === PHP_OS && !extension_loaded('posix')) { $this->markTestSkipped('libevent tests skipped on linux due to linux epoll issues.'); } if (!function_exists('event_base_new')) { $this->markTestSkipped('libevent tests skipped because ext-libevent is not installed.'); } return new ExtLibeventLoop(); } public function tearDown() { if (file_exists($this->fifoPath)) { unlink($this->fifoPath); } } public function createStream() { if ('Linux' !== PHP_OS) { return parent::createStream(); } $this->fifoPath = tempnam(sys_get_temp_dir(), 'react-'); unlink($this->fifoPath); // Use a FIFO on linux to get around lack of support for disk-based file // descriptors when using the EPOLL back-end. posix_mkfifo($this->fifoPath, 0600); $stream = fopen($this->fifoPath, 'r+'); return $stream; } public function writeToStream($stream, $content) { if ('Linux' !== PHP_OS) { return parent::writeToStream($stream, $content); } fwrite($stream, $content); } }