Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 361 - 370 of 403 for timestamp:[now/d-1d TO *] (0.02 sec)

  1. 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: Tue Feb 18 07:26:40 UTC 2025
    - 831 bytes
    - Viewed (0)
  2. semop.txt

    =over =item semop KEY,OPSTRING X<semop> Calls the System V IPC function L<semop(2)> for semaphore operations such as signalling and waiting. OPSTRING must be a packed array of semop structures. Eac...
    perldoc.perl.org/functions/semop.txt
    Registered: Tue Feb 18 08:47:18 UTC 2025
    - 815 bytes
    - Viewed (0)
  3. wait.txt

    =over =item wait X<wait> Behaves like L<wait(2)> on your system: it waits for a child process to terminate and returns the pid of the deceased process, or C<-1> if there are no child processes. The...
    perldoc.perl.org/functions/wait.txt
    Registered: Tue Feb 18 07:42:36 UTC 2025
    - 754 bytes
    - Viewed (0)
  4. 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: Tue Feb 18 06:44:21 UTC 2025
    - 561 bytes
    - Viewed (0)
  5. sqrt.txt

    =over =item sqrt EXPR X<sqrt> X<root> X<square root> =item sqrt Return the positive square root of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. Works only for non-negative operands unless yo...
    perldoc.perl.org/functions/sqrt.txt
    Registered: Tue Feb 18 05:09:39 UTC 2025
    - 325 bytes
    - Viewed (0)
  6. vec.txt

    =over =item vec EXPR,OFFSET,BITS X<vec> X<bit> X<bit vector> Treats the string in EXPR as a bit vector made up of elements of width BITS and returns the value of the element specified by OFFSET as ...
    perldoc.perl.org/functions/vec.txt
    Registered: Tue Feb 18 16:16:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. package.txt

    =over =item package NAMESPACE =item package NAMESPACE VERSION X<package> X<module> X<namespace> X<version> =item package NAMESPACE BLOCK =item package NAMESPACE VERSION BLOCK X<package> X<module> X...
    perldoc.perl.org/functions/package.txt
    Registered: Tue Feb 18 12:38:21 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. tie.txt

    =over =item tie VARIABLE,CLASSNAME,LIST X<tie> This function binds a variable to a package class that will provide the implementation for the variable. VARIABLE is the name of the variable to be en...
    perldoc.perl.org/functions/tie.txt
    Registered: Tue Feb 18 11:23:37 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. formline.txt

    =over =item formline PICTURE,LIST X<formline> This is an internal function used by L<C<format>|/format>s, though you may call it, too. It formats (see L<perlform>) a list of values according to the...
    perldoc.perl.org/functions/formline.txt
    Registered: Tue Feb 18 14:51:41 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  10. 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: Tue Feb 18 15:47:25 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top