Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.107
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
IO /
[ HOME SHELL ]
Name
Size
Permission
Action
%3c%3c-i.yaml
560
B
-rw-r--r--
binmode-i.yaml
383
B
-rw-r--r--
block_scanf-i.yaml
201
B
-rw-r--r--
bytes-i.yaml
568
B
-rw-r--r--
cdesc-IO.yaml
7.74
KB
-rw-r--r--
chars-i.yaml
617
B
-rw-r--r--
close-i.yaml
612
B
-rw-r--r--
close_read-i.yaml
720
B
-rw-r--r--
close_write-i.yaml
767
B
-rw-r--r--
closed%3f-i.yaml
689
B
-rw-r--r--
each-i.yaml
815
B
-rw-r--r--
each_byte-i.yaml
637
B
-rw-r--r--
each_char-i.yaml
625
B
-rw-r--r--
each_line-i.yaml
825
B
-rw-r--r--
eof%3f-i.yaml
1.15
KB
-rw-r--r--
eof-i.yaml
1.15
KB
-rw-r--r--
fcntl-i.yaml
665
B
-rw-r--r--
fileno-i.yaml
470
B
-rw-r--r--
flush-i.yaml
598
B
-rw-r--r--
for_fd-c.yaml
259
B
-rw-r--r--
foreach-c.yaml
673
B
-rw-r--r--
fsync-i.yaml
591
B
-rw-r--r--
getbyte-i.yaml
458
B
-rw-r--r--
getc-i.yaml
452
B
-rw-r--r--
gets-i.yaml
895
B
-rw-r--r--
inspect-i.yaml
269
B
-rw-r--r--
ioctl-i.yaml
586
B
-rw-r--r--
isatty-i.yaml
525
B
-rw-r--r--
lineno%3d-i.yaml
748
B
-rw-r--r--
lineno-i.yaml
816
B
-rw-r--r--
lines-i.yaml
679
B
-rw-r--r--
new-c.yaml
655
B
-rw-r--r--
open-c.yaml
599
B
-rw-r--r--
pid-i.yaml
712
B
-rw-r--r--
pipe-c.yaml
1.27
KB
-rw-r--r--
popen-c.yaml
2.03
KB
-rw-r--r--
pos%3d-i.yaml
432
B
-rw-r--r--
pos-i.yaml
475
B
-rw-r--r--
print-i.yaml
902
B
-rw-r--r--
printf-i.yaml
384
B
-rw-r--r--
putc-i.yaml
600
B
-rw-r--r--
puts-i.yaml
787
B
-rw-r--r--
read-c.yaml
782
B
-rw-r--r--
read-i.yaml
974
B
-rw-r--r--
read_nonblock-i.yaml
999
B
-rw-r--r--
readbyte-i.yaml
321
B
-rw-r--r--
readbytes-i.yaml
473
B
-rw-r--r--
readchar-i.yaml
321
B
-rw-r--r--
readline-i.yaml
331
B
-rw-r--r--
readlines-c.yaml
537
B
-rw-r--r--
readlines-i.yaml
695
B
-rw-r--r--
readpartial-i.yaml
3.72
KB
-rw-r--r--
reopen-i.yaml
749
B
-rw-r--r--
rewind-i.yaml
549
B
-rw-r--r--
scanf-i.yaml
1.24
KB
-rw-r--r--
seek-i.yaml
1.01
KB
-rw-r--r--
select-c.yaml
323
B
-rw-r--r--
soak_up_spaces-i.yaml
179
B
-rw-r--r--
stat-i.yaml
542
B
-rw-r--r--
sync%3d-i.yaml
630
B
-rw-r--r--
sync-i.yaml
544
B
-rw-r--r--
sysopen-c.yaml
421
B
-rw-r--r--
sysread-i.yaml
649
B
-rw-r--r--
sysseek-i.yaml
624
B
-rw-r--r--
syswrite-i.yaml
614
B
-rw-r--r--
tell-i.yaml
477
B
-rw-r--r--
to_i-i.yaml
214
B
-rw-r--r--
to_io-i.yaml
237
B
-rw-r--r--
tty%3f-i.yaml
521
B
-rw-r--r--
ungetc-i.yaml
828
B
-rw-r--r--
write-i.yaml
734
B
-rw-r--r--
write_nonblock-i.yaml
636
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readpartial-i.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Reads at most <em>maxlen</em> bytes from the I/O stream. It blocks only if <em>ios</em> has no data immediately available. It doesn't block if some data available. If the optional <em>outbuf</em> argument is present, it must reference a String, which will receive the data. It raises <tt>EOFError</tt> on end of file. - !ruby/struct:SM::Flow::P body: readpartial is designed for streams such as pipe, socket, tty, etc. It blocks only when no data immediately available. This means that it blocks only when following all conditions hold. - !ruby/object:SM::Flow::LIST contents: - !ruby/struct:SM::Flow::LI label: "*" body: the buffer in the IO object is empty. - !ruby/struct:SM::Flow::LI label: "*" body: the content of the stream is empty. - !ruby/struct:SM::Flow::LI label: "*" body: the stream is not reached to EOF. type: :BULLET - !ruby/struct:SM::Flow::P body: When readpartial blocks, it waits data or EOF on the stream. If some data is reached, readpartial returns with the data. If EOF is reached, readpartial raises EOFError. - !ruby/struct:SM::Flow::P body: When readpartial doesn't blocks, it returns or raises immediately. If the buffer is not empty, it returns the data in the buffer. Otherwise if the stream has some content, it returns the data in the stream. Otherwise if the stream is reached to EOF, it raises EOFError. - !ruby/struct:SM::Flow::VERB body: " r, w = IO.pipe # buffer pipe content\n w << "abc" # "" "abc".\n r.readpartial(4096) #=> "abc" "" ""\n r.readpartial(4096) # blocks because buffer and pipe is empty.\n\n r, w = IO.pipe # buffer pipe content\n w << "abc" # "" "abc"\n w.close # "" "abc" EOF\n r.readpartial(4096) #=> "abc" "" EOF\n r.readpartial(4096) # raises EOFError\n\n r, w = IO.pipe # buffer pipe content\n w << "abc\\ndef\\n" # "" "abc\\ndef\\n"\n r.gets #=> "abc\\n" "def\\n" ""\n w << "ghi\\n" # "def\\n" "ghi\\n"\n r.readpartial(4096) #=> "def\\n" "" "ghi\\n"\n r.readpartial(4096) #=> "ghi\\n" "" ""\n" - !ruby/struct:SM::Flow::P body: "Note that readpartial behaves similar to sysread. The differences are:" - !ruby/object:SM::Flow::LIST contents: - !ruby/struct:SM::Flow::LI label: "*" body: If the buffer is not empty, read from the buffer instead of "sysread for buffered IO (IOError)". - !ruby/struct:SM::Flow::LI label: "*" body: It doesn't cause Errno::EAGAIN and Errno::EINTR. When readpartial meets EAGAIN and EINTR by read system call, readpartial retry the system call. type: :BULLET - !ruby/struct:SM::Flow::P body: The later means that readpartial is nonblocking-flag insensitive. It blocks on the situation IO#sysread causes Errno::EAGAIN as if the fd is blocking mode. full_name: IO#readpartial is_singleton: false name: readpartial params: | ios.readpartial(maxlen) => string ios.readpartial(maxlen, outbuf) => outbuf visibility: public
Close