Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 4601 - 4610 of 6,339 for content_length:[0 TO 9999] (0.38 sec)

  1. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS C<our> makes a lexical alias to a package (i.e. global) variable of the same...
    perldoc.perl.org/functions/our.txt
    Registered: Thu Nov 06 21:35:12 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The C<exec> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of C<exec> if you want it...
    perldoc.perl.org/functions/exec.txt
    Registered: Thu Nov 06 23:29:12 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  3. 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 Nov 06 21:22:23 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. 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 Nov 06 21:30:00 UTC 2025
    - 1013 bytes
    - Viewed (0)
  5. 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: Fri Nov 07 00:03:12 UTC 2025
    - 604 bytes
    - Viewed (0)
  6. 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: Fri Nov 07 02:40:29 UTC 2025
    - 426 bytes
    - Viewed (0)
  7. 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: Fri Nov 07 12:08:36 UTC 2025
    - 550 bytes
    - Viewed (0)
  8. autouse.txt

    package autouse; #use strict; # debugging only use 5.006; # use warnings $autouse::VERSION = '1.11'; $autouse::DEBUG ||= 0; sub vet_import ($); sub croak { require Carp; Carp::croak(@_); } sub impo...
    perldoc.perl.org/autouse.txt
    Registered: Sun Nov 09 23:22:22 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. Search::Dict.txt

    package Search::Dict; use strict; use Exporter; BEGIN { if ("$]" >= 5.015008) { require feature; 'feature'->import('fc'); # string avoids warning on old Perls <sigh> } else { # ($) prototype, not (...
    perldoc.perl.org/Search::Dict.txt
    Registered: Sun Nov 09 21:31:42 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. lc.txt

    =over =item lc EXPR X<lc> X<lowercase> =item lc Returns a lowercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = lc("Perl is GREAT"); # "perl is great" What gets return...
    perldoc.perl.org/functions/lc.txt
    Registered: Thu Nov 06 02:45:03 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top