Searched refs:Server (Results 1 - 25 of 183) sorted by relevance

12345678

/macosx-10.10/CPAN-56/Modules/Net-Server-2.006/
H A DMakefile1 NAME = Net-Server
/macosx-10.10/CPAN-56/Modules/Net-Server-2.007/
H A DMakefile1 NAME = Net-Server
/macosx-10.10/CPANInternal-159.1/JSON-RPC-0.96/ex/
H A Dserver.cgi3 # JSON-RPC Server (daemon version)
6 use JSON::RPC::Server::CGI;
8 my $server = JSON::RPC::Server::CGI->new;
H A Dserverd.pl3 # JSON-RPC Server (daemon version)
5 use JSON::RPC::Server::Daemon;
7 my $server = JSON::RPC::Server::Daemon->new(LocalPort => 8080);
H A Djsonrpc.conf7 PerlResponseHandler JSON::RPC::Server::Apache
14 PerlResponseHandler JSON::RPC::Server::Apache
/macosx-10.10/PostgreSQL-97/Support/backup_restore/
H A Dxpg_ctl2 /Applications/Server.app/Contents/ServerRoot/usr/bin/pg_ctl -p \
3 /Applications/Server.app/Contents/ServerRoot/usr/bin/xpostgres "$@"
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dpcscdserver.cpp35 Server::Server(const char *bootstrapName) : MachServer(bootstrapName), function in class:PCSCD::Server
43 Server::~Server()
48 void Server::run()
60 void Server::threadLimitReached(UInt32 limit)
66 void Server::notifyDeadName(Port port)
81 void Server::notifyNoSenders(Port port, mach_port_mscount_t)
87 void Server::notifyIfDead(MachPlusPlus::Port port, bool doNotify) const
93 void Server
[all...]
H A Dpcscdserver.h41 // There is only one Server, and its name is Server::active().
44 class Server : public MachPlusPlus::MachServer class in namespace:PCSCD
47 Server(const char *bootstrapName);
48 ~Server();
54 // Retrieve pieces of the Server's object web.
55 // These are all static methods that use the active() Server of this thread.
57 static Server &active() { return safer_cast<Server &>(MachServer::active()); }
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/server/
H A Dsoap.io8 SOAP::Transport::IO::Server
H A Dsoap.jabber8 my $server = SOAP::Transport::JABBER::Server
H A Dsoap.mq8 my $server = SOAP::Transport::MQ::Server
H A Dsoap.pop38 my $server = SOAP::Transport::POP3::Server
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D11-cgi.t12 SOAP::Test::Server::run_for(shift || 'http://localhost/cgi-bin/soap.cgi');
H A D12-cgi_https.t12 SOAP::Test::Server::run_for(shift || 'https://localhost/cgi-bin/soap.cgi');
H A D13-mod_perl.t12 SOAP::Test::Server::run_for(shift || 'http://localhost/soap')
H A D14-cgi_apache.t12 SOAP::Test::Server::run_for(shift || 'http://localhost/mod_perl/soap.mod_cgi');
H A D15-daemon.t12 SOAP::Test::Server::run_for(shift || 'http://localhost/');
H A D17-mod_soap.t12 SOAP::Test::Server::run_for(shift || 'http://localhost/mod_soap');
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sock/
H A Dsearchexample.pl20 # See: http://search.cpan.org/dist/Net-Server/
26 use Net::Server::PreFork; # any personality will do
28 @ISA = qw(Net::Server::PreFork);
/macosx-10.10/postfix-255/Postfix.ServerSetup/
H A Dset_credentials.sh6 /usr/sbin/postconf -e imap_submit_cred_file=/Library/Server/Mail/Config/postfix/submit.cred
10 if [ ! -e /Library/Server/Mail/Config/postfix/submit.cred ] ; then
11 hostname=`/usr/sbin/postconf -c /Library/Server/Mail/Config/postfix -h myhostname`
17 if [ -s /Library/Server/Mail/Config/dovecot/submit.passdb ] ; then
20 pw=`grep "^submit:" /Library/Server/Mail/Config/dovecot/submit.passdb | sed -e 's,.*},,' -e 's,:.*,,'`
30 echo "submitcred version 1" > /Library/Server/Mail/Config/postfix/submit.cred
31 echo "$hostname|submit|$pw" >> /Library/Server/Mail/Config/postfix/submit.cred
33 chmod 600 /Library/Server/Mail/Config/postfix/submit.cred
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/sslScripts/
H A DauthClient43 echo ===== Server tries authentication, client refuses
48 echo ===== Server tries authentication, client sends cert
53 echo ===== Server requires authentication, client refuses, expect error
59 echo ===== Server requires authentication, client refuses, SSL3, expect error
65 echo ===== Server requires authentication, client sends cert
H A DauthServe13 echo ===== Server tries authentication, client refuses
21 echo ===== Server tries authentication, client sends cert
29 echo ===== Server requires authentication, client refuses, expect error
41 echo ===== Server requires authentication, client refuses, SSL3, expect error
53 echo ===== Server requires authentication, client sends cert
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dserver.cpp62 Server::Server(Authority &authority, CodeSignatures &signatures, const char *bootstrapName) function in class:Server
82 Server::~Server()
91 // by calling Server::connection() [no argument] until it is released by
94 Connection &Server::connection(mach_port_t port, audit_token_t &auditToken)
96 Server &server = active();
105 Connection &Server::connection(bool tolerant)
114 void Server::requestComplete(CSSM_RETURN &rcode)
129 Process &Server
[all...]
H A Dpcscmonitor.h53 PCSCMonitor(Server &server, const char* pathToCache, ServiceLevel level = externalDaemon);
56 Server &server;
82 Watcher(Server &server, TokenCache &tokenCache, ReaderMap& readers);
88 Server &mServer;
/macosx-10.10/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/Server/
H A DDaemon.pm2 package JSON::RPC::Server::Daemon;
5 use JSON::RPC::Server; # for old Perl 5.005
6 use base qw(JSON::RPC::Server);
8 $JSON::RPC::Server::Daemon::VERSION = '0.03';
71 JSON::RPC::Server::Daemon - JSON-RPC sever for daemon
78 use JSON::RPC::Server::Daemon;
80 JSON::RPC::Server::Daemon->new(LocalPort => 8080);
91 # first argument is JSON::RPC::Server object.
116 They are inherited from the L<JSON::RPC::Server> methods basically.
117 The below methods are implemented in JSON::RPC::Server
[all...]

Completed in 140 milliseconds

12345678