- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 141 - 150 of 225 for timestamp:[now/d-1d TO *] (0.04 sec)
-
perlfaq1.txt
=head1 NAME perlfaq1 - General Questions About Perl =head1 VERSION version 5.20240218 =head1 DESCRIPTION This section of the FAQ answers very general, high-level questions about Perl. =head2 What i...perldoc.perl.org/perlfaq1.txtRegistered: Tue Dec 17 01:54:23 UTC 2024 - 13.2K bytes - Viewed (0) -
perlnewmod.txt
=head1 NAME perlnewmod - preparing a new module for distribution =head1 DESCRIPTION This document gives you some suggestions about how to go about writing Perl modules, preparing them for distribut...perldoc.perl.org/perlnewmod.txtRegistered: Tue Dec 17 02:07:36 UTC 2024 - 10.7K bytes - Viewed (0) -
perllol.txt
=head1 NAME perllol - Manipulating Arrays of Arrays in Perl =head1 DESCRIPTION =head2 Declaration and Access of Arrays of Arrays The simplest two-level data structure to build in Perl is an array o...perldoc.perl.org/perllol.txtRegistered: Tue Dec 17 00:48:31 UTC 2024 - 9.1K bytes - Viewed (0) -
fileno.txt
=over =item fileno FILEHANDLE X<fileno> =item fileno DIRHANDLE Returns the file descriptor for a filehandle or directory handle, or undefined if the filehandle is not open. If there is no real file...perldoc.perl.org/functions/fileno.txtRegistered: Tue Dec 17 03:49:29 UTC 2024 - 1.5K bytes - Viewed (0) -
uc.txt
=over =item uc EXPR X<uc> X<uppercase> X<toupper> =item uc Returns an uppercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = uc("Perl is GREAT"); # "PERL IS GREAT" This...perldoc.perl.org/functions/uc.txtRegistered: Tue Dec 17 03:42:31 UTC 2024 - 599 bytes - Viewed (0) -
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.txtRegistered: Tue Dec 17 11:17:03 UTC 2024 - 4.7K bytes - Viewed (0) -
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.txtRegistered: Tue Dec 17 13:54:33 UTC 2024 - 2K bytes - Viewed (0) -
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.txtRegistered: Tue Dec 17 11:51:18 UTC 2024 - 787 bytes - Viewed (0) -
msgrcv.txt
=over =item msgrcv ID,VAR,SIZE,TYPE,FLAGS X<msgrcv> Calls the System V IPC function msgrcv to receive a message from message queue ID into variable VAR with a maximum message size of SIZE. Note tha...perldoc.perl.org/functions/msgrcv.txtRegistered: Tue Dec 17 12:17:57 UTC 2024 - 615 bytes - Viewed (0) -
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.txtRegistered: Tue Dec 17 14:07:03 UTC 2024 - 604 bytes - Viewed (0)