Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 271 - 280 of 335 for timestamp:[now/d-1d TO *] (0.02 sec)

  1. 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.txt
    Registered: Sat Apr 19 10:01:52 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. 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.txt
    Registered: Sat Apr 19 09:53:21 UTC 2025
    - 1K bytes
    - Viewed (0)
  3. 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.txt
    Registered: Sat Apr 19 07:04:45 UTC 2025
    - 831 bytes
    - Viewed (0)
  4. 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.txt
    Registered: Sat Apr 19 06:42:17 UTC 2025
    - 809 bytes
    - Viewed (0)
  5. 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.txt
    Registered: Sat Apr 19 08:14:46 UTC 2025
    - 561 bytes
    - Viewed (0)
  6. 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.txt
    Registered: Sat Apr 19 09:31:56 UTC 2025
    - 223 bytes
    - Viewed (0)
  7. ADJUST.txt

    =over =item ADJUST This class-related phaser block is documented in L<perlclass>. =back 90
    perldoc.perl.org/functions/ADJUST.txt
    Registered: Sat Apr 19 08:39:58 UTC 2025
    - 90 bytes
    - Viewed (0)
  8. 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.txt
    Registered: Sat Apr 19 12:50:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. 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.txt
    Registered: Sat Apr 19 12:58:11 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. 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.txt
    Registered: Sat Apr 19 12:43:11 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top