Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 11 - 20 of 233 for timestamp:[now/d-1d TO *] (0.05 sec)

  1. ne.txt

    =over =item and =item cmp =item eq =item ge =item gt =item isa =item le =item lt =item ne =item not =item or =item x =item xor These operators are documented in L<perlop>. =back 192
    perldoc.perl.org/functions/ne.txt Similar Results (12)
    Registered: Tue Nov 25 20:04:28 UTC 2025
    - 192 bytes
    - Viewed (0)
  2. eval.txt

    =over =item eval EXPR X<eval> X<try> X<catch> X<evaluate> X<parse> X<execute> X<error, handling> X<exception, handling> =item eval BLOCK =item eval C<eval> in all its forms is used to execute a lit...
    perldoc.perl.org/functions/eval.txt
    Registered: Tue Nov 25 08:22:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. bless.txt

    =over =item bless REF,CLASSNAME X<bless> =item bless REF C<bless> tells Perl to mark the item referred to by C<REF> as an object in a package. The two-argument version of C<bless> is always prefera...
    perldoc.perl.org/functions/bless.txt
    Registered: Tue Nov 25 01:51:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. local.txt

    =over =item local EXPR X<local> You really probably want to be using L<C<my>|/my VARLIST> instead, because C<local> isn't what most people think of as "local". See L<perlsub/"Private Variables via ...
    perldoc.perl.org/functions/local.txt
    Registered: Tue Nov 25 05:00:35 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. fcntl.txt

    =over =item fcntl FILEHANDLE,FUNCTION,SCALAR X<fcntl> Implements the L<fcntl(2)> function. You'll probably have to say use Fcntl; first to get the correct constant definitions. Argument processing ...
    perldoc.perl.org/functions/fcntl.txt
    Registered: Tue Nov 25 07:25:56 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. undef.txt

    =over =item undef EXPR X<undef> X<undefine> =item undef Undefines the value of EXPR, which must be an lvalue. Use only on a scalar value, an array (using C<@>), a hash (using C<%>), a subroutine (u...
    perldoc.perl.org/functions/undef.txt
    Registered: Tue Nov 25 05:08:32 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. unlink.txt

    =over =item unlink LIST X<unlink> X<delete> X<remove> X<rm> X<del> =item unlink Deletes a list of files. On success, it returns the number of files it successfully deleted. On failure, it returns f...
    perldoc.perl.org/functions/unlink.txt
    Registered: Tue Nov 25 01:23:57 UTC 2025
    - 1008 bytes
    - Viewed (0)
  8. accept.txt

    =over =item accept NEWSOCKET,GENERICSOCKET X<accept> Accepts an incoming socket connect, just as L<accept(2)> does. Returns the packed address if it succeeded, false otherwise. See the example in L...
    perldoc.perl.org/functions/accept.txt
    Registered: Tue Nov 25 03:42:37 UTC 2025
    - 445 bytes
    - Viewed (0)
  9. getsockname.txt

    =over =item getsockname SOCKET X<getsockname> Returns the packed sockaddr address of this end of the SOCKET connection, in case you don't know the address because you have several different IPs tha...
    perldoc.perl.org/functions/getsockname.txt
    Registered: Tue Nov 25 06:38:25 UTC 2025
    - 464 bytes
    - Viewed (0)
  10. bind.txt

    =over =item bind SOCKET,NAME X<bind> Binds a network address to a socket, just as L<bind(2)> does. Returns true if it succeeded, false otherwise. NAME should be a packed address of the appropriate ...
    perldoc.perl.org/functions/bind.txt
    Registered: Tue Nov 25 09:32:53 UTC 2025
    - 300 bytes
    - Viewed (0)
Back to top