Searched refs:can (Results 26 - 50 of 2425) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/Test-Deep/lib/Test/Deep/
H A DNoTest.pm17 my $import = Test::Deep->can("import");
41 Test::Builder so it can be used in ordinary non-test situations.
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dnw_export.inc1 /* Must include ap_config.h first so that we can redefine
8 them to pass untouched so that the AWK script can pick
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/bin/
H A DSOAPsh.pl12 my %can;
19 $can{$method} = $soap->can($method) unless exists $can{$method};
22 $can{$method} && !UNIVERSAL::isa($res => 'SOAP::SOM')
56 if you try to run it). Additional commands can follow.
59 readable, encoding, etc. You can run it the same way as you do it in
67 see processed results. You can even switch on debugging (with call
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/bin/
H A DSOAPsh.pl12 my %can;
19 $can{$method} = $soap->can($method) unless exists $can{$method};
22 $can{$method} && !UNIVERSAL::isa($res => 'SOAP::SOM')
56 if you try to run it). Additional commands can follow.
59 readable, encoding, etc. You can run it the same way as you do it in
67 see processed results. You can even switch on debugging (with call
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/bin/
H A DSOAPsh.pl12 my %can;
19 $can{$method} = $soap->can($method) unless exists $can{$method};
22 $can{$method} && !UNIVERSAL::isa($res => 'SOAP::SOM')
56 if you try to run it). Additional commands can follow.
59 readable, encoding, etc. You can run it the same way as you do it in
67 see processed results. You can even switch on debugging (with call
/macosx-10.9.5/CPANInternal-140/DateTime/lib/DateTime/
H A DHelpers.pm11 sub can subroutine
17 return $object->can($method);
48 program is free software; you can redistribute it and/or modify it
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/IO/
H A DSessionData.pm21 (eval {require Errno} ? map {Errno->can($_)->() => 1} grep {Errno->can($_)} @names : ()),
22 (eval {require POSIX} ? map {POSIX->can($_)->() => 1} grep {POSIX->can($_)} @names : ());
35 $handle->blocking(0) if $handle->can('blocking');
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/IO/
H A DSessionData.pm23 (eval {require Errno} ? map {Errno->can($_)->() => 1} grep {Errno->can($_)} @names : ()),
24 (eval {require POSIX} ? map {POSIX->can($_)->() => 1} grep {POSIX->can($_)} @names : ());
37 $handle->blocking(0) if $handle->can('blocking');
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm41 sub can { subroutine
45 : UNIVERSAL::can( $self, $method );
68 HTTP::Proxy::HeaderFilter::simple can create BodyFilter without going
109 =item can()
113 it calls UNIVERSAL::can() instead.
131 This module is free software; you can redistribute it or modify it under
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/lib/HTTP/Proxy/HeaderFilter/
H A Dsimple.pm41 sub can { subroutine
45 : UNIVERSAL::can( $self, $method );
68 HTTP::Proxy::HeaderFilter::simple can create BodyFilter without going
109 =item can()
113 it calls UNIVERSAL::can() instead.
131 This module is free software; you can redistribute it or modify it under
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dnamespace.test26 test namespace-1.1 {same class name can be used in different namespaces} {
75 test namespace-1.5 {can find classes wrapped in a namespace} {
80 test namespace-1.6 {can't create an object that clobbers a command in this namespace} {
84 test namespace-1.7 {can create an object that shadows a command in the global namespace} {
H A Dbasic.test84 test basic-1.8 {objects can be deleted} {
88 test basic-1.9 {objects can be recreated with the same name} {
92 test basic-1.10 {objects can be destroyed by deleting their access command} {
129 test basic-1.19 {classes can be unicode} {
133 test basic-1.20 {classes can be unicode} {
203 test basic-3.3 {built-in configure can query public variables} {
207 test basic-3.4 {built-in configure can query one public variable} {
211 test basic-3.5 {built-in configure can set public variable} {
219 test basic-3.7 {class procs can be accessed} {
231 # Classes can b
[all...]
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/
H A DLDAPI.pm3 # software; you can redistribute it and/or modify it under the same
42 All the normal C<Net::LDAP> methods can be used with a C<Net::LDAPI>
51 Create a new connection. SOCKPATH can optionally be specified, to
73 rights reserved. This library is free software; you can redistribute
/macosx-10.9.5/CPANInternal-140/Sub-Name/lib/Sub/
H A DName.pm29 the sub itself) you can name each instance of the closure differently, which
30 can be very useful for debugging.
37 This program is free software; you can redistribute it and/or modify
/macosx-10.9.5/CPANInternal-140/Class-C3-XS/t/
H A D31_next_method_skip.t49 sub woz { 'Diamond_D::woz can => ' . ((shift)->next::can() ? 1 : 0) }
50 sub noz { 'Diamond_D::noz can => ' . ((shift)->next::can() ? 1 : 0) }
64 is(Diamond_D->woz, 'Diamond_D::woz can => 1', '... can re-dispatch figured out correctly');
65 is(Diamond_D->noz, 'Diamond_D::noz can => 0', '... cannot re-dispatch figured out correctly');
H A D36_next_goto.t15 sub can_proxy { goto &next::can }
35 is(TTop->quux, 242, 'proxy next::can via goto');
/macosx-10.9.5/CPANInternal-140/Class-C3-XS-0.13/t/
H A D31_next_method_skip.t49 sub woz { 'Diamond_D::woz can => ' . ((shift)->next::can() ? 1 : 0) }
50 sub noz { 'Diamond_D::noz can => ' . ((shift)->next::can() ? 1 : 0) }
64 is(Diamond_D->woz, 'Diamond_D::woz can => 1', '... can re-dispatch figured out correctly');
65 is(Diamond_D->noz, 'Diamond_D::noz can => 0', '... cannot re-dispatch figured out correctly');
H A D36_next_goto.t15 sub can_proxy { goto &next::can }
35 is(TTop->quux, 242, 'proxy next::can via goto');
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DComponentised.pm26 my $cref = $_->can ('store_column')
/macosx-10.9.5/CPANInternal-140/Sub-Exporter/t/lib/Test/SubExporter/
H A DObjGen.pm9 my $code = $class->can(shift);
/macosx-10.9.5/iodbc-42.5/iodbc/debian/
H A DREADME.Debian5 According to the upstream authors the library can safely be installed
11 can be dropped alltogether.
/macosx-10.9.5/perl-92/fix/
H A Ddummy.pl7 You can try appending the appropriate perl version number. See perlmacosx.pod
17 perl version $Config::Config{version} can't run $0. Try the alternative(s):
/macosx-10.9.5/vim-53/src/xxd/
H A DMake_bc3.mak2 # 3.1 can NOT be used, it has problems with the fileno() define.
22 # The following compile options can be changed for better machines.
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Unix/
H A DPath.inc106 // LLVM manipulates Paths with fixed-sizes arrays, and if the OS can't
142 std::string(pathname) + ": can't create temporary directory");
147 // If no mkdtemp is available, mkstemp can be used to create a temporary file
156 std::string(pathname) + ": can't create temporary directory");
163 std::string(pathname) + ": can't create temporary directory");
172 // twenty six temporary files that can be generated.
177 std::string(TmpName) + ": can't create unique directory name");
182 std::string(TmpName) + ": can't create temporary directory");
203 std::string(pathname) + ": can't create temporary directory");
455 // Get the status so we can determin
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DAccessorMapping.pm38 if ($class->can('accessor_name')) {
47 if ($class->can('mutator_name')) {

Completed in 467 milliseconds

1234567891011>>