- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 271 - 280 of 335 for timestamp:[now/d-1d TO *] (0.02 sec)
-
sleep.txt
=over =item sleep EXPR X<sleep> X<pause> =item sleep Causes the script to sleep for (integer) EXPR seconds, or forever if no argument is given. Returns the integer number of seconds actually slept....perldoc.perl.org/functions/sleep.txtRegistered: Sat Apr 19 10:01:52 UTC 2025 - 1.9K bytes - Viewed (0) -
scalar.txt
=over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...perldoc.perl.org/functions/scalar.txtRegistered: Sat Apr 19 09:53:21 UTC 2025 - 1K bytes - Viewed (0) -
pipe.txt
=over =item pipe READHANDLE,WRITEHANDLE X<pipe> Opens a pair of connected pipes like the corresponding system call. Note that if you set up a loop of piped processes, deadlock can occur unless you ...perldoc.perl.org/functions/pipe.txtRegistered: Sat Apr 19 07:04:45 UTC 2025 - 831 bytes - Viewed (0) -
recv.txt
=over =item recv SOCKET,SCALAR,LENGTH,FLAGS X<recv> Receives a message on a socket. Attempts to receive LENGTH characters of data into variable SCALAR from the specified SOCKET filehandle. SCALAR w...perldoc.perl.org/functions/recv.txtRegistered: Sat Apr 19 06:42:17 UTC 2025 - 809 bytes - Viewed (0) -
socket.txt
=over =item socket SOCKET,DOMAIN,TYPE,PROTOCOL X<socket> Opens a socket of the specified kind and attaches it to filehandle SOCKET. DOMAIN, TYPE, and PROTOCOL are specified the same as for the sysc...perldoc.perl.org/functions/socket.txtRegistered: Sat Apr 19 08:14:46 UTC 2025 - 561 bytes - Viewed (0) -
field.txt
=over =item field VARNAME X<field> Declares a new field variable within the current class. Methods and C<ADJUST> blocks of the class will have access to this variable as if it was a lexical in scop...perldoc.perl.org/functions/field.txtRegistered: Sat Apr 19 09:31:56 UTC 2025 - 223 bytes - Viewed (0) -
ADJUST.txt
=over =item ADJUST This class-related phaser block is documented in L<perlclass>. =back 90perldoc.perl.org/functions/ADJUST.txtRegistered: Sat Apr 19 08:39:58 UTC 2025 - 90 bytes - Viewed (0) -
defined.txt
=over =item defined EXPR X<defined> X<undef> X<undefined> =item defined Returns a Boolean value telling whether EXPR has a value other than the undefined value L<C<undef>|/undef EXPR>. If EXPR is n...perldoc.perl.org/functions/defined.txtRegistered: Sat Apr 19 12:50:48 UTC 2025 - 2.8K bytes - Viewed (0) -
my.txt
=over =item my VARLIST X<my> =item my TYPE VARLIST =item my VARLIST : ATTRS =item my TYPE VARLIST : ATTRS A L<C<my>|/my VARLIST> declares the listed variables to be local (lexically) to the enclosi...perldoc.perl.org/functions/my.txtRegistered: Sat Apr 19 12:58:11 UTC 2025 - 1.8K bytes - Viewed (0) -
next.txt
=over =item next LABEL X<next> X<continue> =item next EXPR =item next The L<C<next>|/next LABEL> command is like the C<continue> statement in C; it starts the next iteration of the loop: LINE: whil...perldoc.perl.org/functions/next.txtRegistered: Sat Apr 19 12:43:11 UTC 2025 - 1.4K bytes - Viewed (0)