Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1231 - 1240 of 1,302 for label:perl (0.03 sec)

  1. evalbytes.txt

    =over =item evalbytes EXPR X<evalbytes> =item evalbytes This function is similar to a L<string eval|/eval EXPR>, except it always parses its argument (or L<C<$_>|perlvar/$_> if EXPR is omitted) as ...
    perldoc.perl.org/functions/evalbytes.txt
    Registered: Tue Feb 18 15:04:29 UTC 2025
    - 859 bytes
    - Viewed (0)
  2. shutdown.txt

    =over =item shutdown SOCKET,HOW X<shutdown> Shuts down a socket connection in the manner indicated by HOW, which has the same interpretation as in the syscall of the same name. shutdown($socket, 0)...
    perldoc.perl.org/functions/shutdown.txt
    Registered: Tue Feb 18 12:52:33 UTC 2025
    - 813 bytes
    - Viewed (0)
  3. setsockopt.txt

    =over =item setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL X<setsockopt> Sets the socket option requested. Returns L<C<undef>|/undef EXPR> on error. Use integer constants provided by the L<C<Socket>|Socket...
    perldoc.perl.org/functions/setsockopt.txt
    Registered: Tue Feb 18 14:45:03 UTC 2025
    - 604 bytes
    - Viewed (0)
  4. shmctl.txt

    =over =item shmctl ID,CMD,ARG X<shmctl> Calls the System V IPC function shmctl. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>, then...
    perldoc.perl.org/functions/shmctl.txt
    Registered: Tue Feb 18 16:02:45 UTC 2025
    - 534 bytes
    - Viewed (0)
  5. getpriority.txt

    =over =item getpriority WHICH,WHO X<getpriority> X<priority> X<nice> Returns the current priority for a process, a process group, or a user. (See L<getpriority(2)>.) Will raise a fatal exception if...
    perldoc.perl.org/functions/getpriority.txt
    Registered: Tue Feb 18 14:36:48 UTC 2025
    - 426 bytes
    - Viewed (0)
  6. times.txt

    =over =item times X<times> Returns a four-element list giving the user and system times in seconds for this process and any exited children of this process. my ($user,$system,$cuser,$csystem) = tim...
    perldoc.perl.org/functions/times.txt
    Registered: Tue Feb 18 13:32:55 UTC 2025
    - 372 bytes
    - Viewed (0)
  7. __PACKAGE__.txt

    =over =item __PACKAGE__ X<__PACKAGE__> A special token that returns the name of the package in which it occurs. =back 120
    perldoc.perl.org/functions/__PACKAGE__.txt
    Registered: Tue Feb 18 14:30:49 UTC 2025
    - 120 bytes
    - Viewed (0)
  8. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS L<C<our>|/our VARLIST> makes a lexical alias to a package (i.e. global) vari...
    perldoc.perl.org/functions/our.txt
    Registered: Tue Feb 18 19:24:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. warn.txt

    =over =item warn LIST X<warn> X<warning> X<STDERR> Emits a warning, usually by printing it to C<STDERR>. C<warn> interprets its operand LIST in the same way as C<die>, but is slightly different in ...
    perldoc.perl.org/functions/warn.txt
    Registered: Tue Feb 18 17:35:18 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. break.txt

    =over =item break Break out of a C<given> block. L<C<break>|/break> is available only if the L<C<"switch"> feature|feature/The 'switch' feature> is enabled or if it is prefixed with C<CORE::>. The ...
    perldoc.perl.org/functions/break.txt
    Registered: Tue Feb 18 19:20:25 UTC 2025
    - 349 bytes
    - Viewed (0)
Back to top