Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 4511 - 4520 of 6,206 for content_length:[0 TO 9999] (0.09 sec)

  1. File::Spec::Epoc.txt

    package File::Spec::Epoc; use strict; our $VERSION = '3.91'; $VERSION =~ tr/_//d; require File::Spec::Unix; our @ISA = qw(File::Spec::Unix); =head1 NAME File::Spec::Epoc - methods for Epoc file spe...
    perldoc.perl.org/File::Spec::Epoc.txt
    Registered: Fri Nov 08 15:47:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. JSON::PP::Boolean.txt

    package JSON::PP::Boolean; use strict; use warnings; use overload (); overload::unimport('overload', qw(0+ ++ -- fallback)); overload::import('overload', "0+" => sub { ${$_[0]} }, "++" => sub { $_[...
    perldoc.perl.org/JSON::PP::Boolean.txt
    Registered: Fri Nov 08 17:45:49 UTC 2024
    - 852 bytes
    - Viewed (0)
  3. quotemeta.txt

    =over =item quotemeta EXPR X<quotemeta> X<metacharacter> =item quotemeta Returns the value of EXPR with all the ASCII non-"word" characters backslashed. (That is, all ASCII characters not matching ...
    perldoc.perl.org/functions/quotemeta.txt
    Registered: Mon Nov 04 15:01:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. flock.txt

    =over =item flock FILEHANDLE,OPERATION X<flock> X<lock> X<locking> Calls L<flock(2)>, or an emulation of it, on FILEHANDLE. Returns true for success, false on failure. Produces a fatal error if use...
    perldoc.perl.org/functions/flock.txt
    Registered: Mon Nov 04 19:18:19 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. 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: Tue Nov 05 05:23:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. 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: Tue Nov 05 03:54:47 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. 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: Tue Nov 05 08:09:47 UTC 2024
    - 809 bytes
    - Viewed (0)
  8. 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 Nov 05 05:13:48 UTC 2024
    - 815 bytes
    - Viewed (0)
  9. 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: Tue Nov 05 09:42:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. 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 Nov 05 08:47:55 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top