Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2751 - 2760 of 3,598 for filetype:txt (0.08 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: Sat Dec 13 04:12:25 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. rename.txt

    =over =item rename OLDNAME,NEWNAME X<rename> X<move> X<mv> X<ren> Changes the name of a file; an existing file NEWNAME will be clobbered. Returns true for success; on failure returns false and sets...
    perldoc.perl.org/functions/rename.txt
    Registered: Sat Dec 13 02:40:59 UTC 2025
    - 787 bytes
    - Viewed (0)
  3. break.txt

    =over =item break Break out of a C<given> block. C<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 L<C<"switc...
    perldoc.perl.org/functions/break.txt
    Registered: Sat Dec 13 04:25:21 UTC 2025
    - 339 bytes
    - Viewed (0)
  4. feature.txt

    # -*- mode: Perl; buffer-read-only: t -*- # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! # This file is built by regen/feature.pl. # Any changes made here will be lost! package feature; our $VERSION = '1....
    perldoc.perl.org/feature.txt
    Registered: Fri Dec 12 18:06:36 UTC 2025
    - 34.2K bytes
    - Viewed (0)
  5. 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: Sat Dec 13 13:45:10 UTC 2025
    - 813 bytes
    - Viewed (0)
  6. 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: Sat Dec 13 13:34:28 UTC 2025
    - 604 bytes
    - Viewed (0)
  7. 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: Sat Dec 13 12:38:18 UTC 2025
    - 362 bytes
    - Viewed (0)
  8. 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: Sat Dec 13 13:06:51 UTC 2025
    - 308 bytes
    - Viewed (0)
  9. 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: Sat Dec 13 10:32:14 UTC 2025
    - 297 bytes
    - Viewed (0)
  10. Benchmark.txt

    package Benchmark; use strict; =head1 NAME Benchmark - Benchmark running times of Perl code =head1 SYNOPSIS use Benchmark qw(:all); timethis($count, "code"); # Use Perl code in strings... timethese...
    perldoc.perl.org/Benchmark.txt
    Registered: Mon Dec 15 06:58:54 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top