Searched refs:memoize (Results 1 - 22 of 22) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/ |
H A D | array_confusion.t | 4 use Memoize 'memoize', 'unmemoize'; 17 memoize 'reff', LIST_CACHE => 'MERGE'; 19 memoize 'listf'; 31 memoize 'reff', LIST_CACHE => 'MERGE'; 33 memoize 'listf';
|
H A D | errors.t | 10 eval { memoize({}) }; 13 eval { memoize([]) }; 16 eval { my $x; memoize(\$x) }; 33 memoize(sub {}, LIST_CACHE => [HASH => \%cache ]); 44 memoize(sub {}, LIST_CACHE => ['TIE', 'WuggaWugga']) 49 eval { memoize(sub {}, LIST_CACHE => 'YOB GORGLE') }; 53 eval { memoize(sub {}, SCALAR_CACHE => ['YOB GORGLE']) };
|
H A D | prototype.t | 17 memoize 'q1'; 21 memoize 'q2'; 25 memoize 'q3';
|
H A D | unmemoize.t | 4 use Memoize qw(memoize unmemoize); 14 memoize('u');
|
H A D | tiefeatures.t | 4 use Memoize 0.45 qw(memoize unmemoize); 20 memoize 'xx', LIST_CACHE => MERGE; 30 memoize 'ns', SCALAR_CACHE => FAULT; 31 memoize 'na', LIST_CACHE => FAULT; 41 memoize 'nul', SCALAR_CACHE => [HASH => \%s], LIST_CACHE => [HASH => \%l];
|
H A D | normalize.t | 23 my $a_normal = memoize('a1', INSTALL => undef); 24 my $a_nomemo = memoize('a2', INSTALL => undef, NORMALIZER => 'n_diff'); 25 my $a_allmemo = memoize('a3', INSTALL => undef, NORMALIZER => 'n_null'); 44 memoize('parity', NORMALIZER => 'main::parnorm'); 52 memoize('par2', NORMALIZER => \&parnorm);
|
H A D | array.t | 13 memoize('timelist'); 44 memoize('con'); 65 memoize('f', NORMALIZER => 'n');
|
H A D | correctness.t | 19 memoize('no_args'); 29 $fm = memoize($f); 38 $fm = memoize($f, INSTALL => 'another'); 67 memoize('mt1'); 101 &memoize('f1'); 102 &memoize('f2', NORMALIZER => 'fake_normalize'); 103 &memoize('f3', NORMALIZER => \&fake_normalize); 118 my $um = memoize('u1', INSTALL => undef);
|
H A D | flush.t | 4 use Memoize 'flush_cache', 'memoize'; 13 memoize 'VAL';
|
H A D | tie.t | 4 use Memoize 0.52 qw(memoize unmemoize); 54 memoize 'c5', 66 # Now something tricky---we'll memoize c23 with the wrong table that 68 memoize 'c23',
|
H A D | tie_ndbm.t | 4 use Memoize 0.45 qw(memoize unmemoize); 50 memoize 'c5', 62 # Now something tricky---we'll memoize c23 with the wrong table that 64 memoize 'c23',
|
H A D | tie_sdbm.t | 4 use Memoize 0.45 qw(memoize unmemoize); 49 memoize 'c5', 61 # Now something tricky---we'll memoize c23 with the wrong table that 63 memoize 'c23',
|
H A D | tie_storable.t | 5 use Memoize 0.45 qw(memoize unmemoize); 54 memoize 'c5', 68 # Now something tricky---we'll memoize c23 with the wrong table that 70 memoize 'c23',
|
H A D | expire.t | 21 memoize 'id',
|
H A D | expmod_n.t | 26 memoize 'call',
|
H A D | expfile.t | 43 memoize 'readfile',
|
H A D | expmod_t.t | 67 memoize 'now',
|
H A D | speed.t | 36 # to execute. Then we memoize fib() and run the same call cagain. If 85 &memoize('fib');
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/ |
H A D | ExpireTest.pm | 17 to mjd-perl-memoize+@plover.com.
|
H A D | Expire.pm | 17 # Usage: memoize func 135 memoize 'function', SCALAR_CACHE => [HASH => \%cache ]; 195 memoize 'function', SCALAR_CACHE => [ HASH => \%cache ]; 243 memoize 'function', SCALAR_CACHE => [HASH => \%cache]; 304 memoize 'function', SCALAR_CACHE => [HASH => \%cache10sec]; 347 Mark-Jason Dominus (mjd-perl-memoize+@plover.com) 363 mjd-perl-memoize-request@Plover.com.
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | Memoize.pm | 9 # write to mjd-perl-memoize+@plover.com for a license. 22 # Usage memoize(functionname/ref, 32 @EXPORT = qw(memoize); 46 sub memoize { subroutine 53 croak "Usage: memoize 'functionname'|coderef {OPTIONS}"; 179 carp("TIE option to memoize() is deprecated; use HASH instead") 366 memoize('slow_function'); 372 memoize(function, options...); 393 If you call the function again with the same arguments, C<memoize> 418 This function is a good candidate for memoization. If you memoize th [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/ |
H A D | Memoize.pm | 125 Ilya Zakharevich L<mailto:perl-module-hash-memoize@ilyaz.org>.
|
Completed in 49 milliseconds