Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 5021 - 5030 of 6,922 for content_length:[0 TO 9999] (0.13 sec)

  1. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Wed Apr 02 21:56:45 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. lock.txt

    =over =item lock THING X<lock> This function places an advisory lock on a shared variable or referenced object contained in I<THING> until the lock goes out of scope. The value returned is the scal...
    perldoc.perl.org/functions/lock.txt
    Registered: Wed Apr 02 23:34:32 UTC 2025
    - 565 bytes
    - Viewed (0)
  3. 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: Thu Apr 03 01:06:22 UTC 2025
    - 426 bytes
    - Viewed (0)
  4. connect.txt

    =over =item connect SOCKET,NAME X<connect> Attempts to connect to a remote socket, just like L<connect(2)>. Returns true if it succeeded, false otherwise. NAME should be a packed address of the app...
    perldoc.perl.org/functions/connect.txt
    Registered: Thu Apr 03 00:21:24 UTC 2025
    - 308 bytes
    - Viewed (0)
  5. tied.txt

    =over =item tied VARIABLE X<tied> Returns a reference to the object underlying VARIABLE (the same value that was originally returned by the L<C<tie>|/tie VARIABLE,CLASSNAME,LIST> call that bound th...
    perldoc.perl.org/functions/tied.txt
    Registered: Wed Apr 02 23:29:45 UTC 2025
    - 297 bytes
    - Viewed (0)
  6. __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: Thu Apr 03 01:59:19 UTC 2025
    - 120 bytes
    - Viewed (0)
  7. 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: Thu Apr 03 03:00:59 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The L<C<exec>|/exec LIST> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of L<C<exec...
    perldoc.perl.org/functions/exec.txt
    Registered: Thu Apr 03 05:54:53 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. fork.txt

    =over =item fork X<fork> X<child> X<parent> Does a L<fork(2)> system call to create a new process running the same program at the same point. It returns the child pid to the parent process, C<0> to...
    perldoc.perl.org/functions/fork.txt
    Registered: Thu Apr 03 06:00:32 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. return.txt

    =over =item return EXPR X<return> =item return Returns from a subroutine, L<C<eval>|/eval EXPR>, L<C<do FILE>|/do EXPR>, L<C<sort>|/sort SUBNAME LIST> block or regex eval block (but not a L<C<grep>...
    perldoc.perl.org/functions/return.txt
    Registered: Thu Apr 03 06:24:48 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top