HomeSort by relevance Sort by last modified time
    Searched full:server (Results 451 - 475 of 7791) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 1 r"""Simple XML-RPC Server.
4 by creating a server and either installing functions, a
15 server = SimpleXMLRPCServer(("localhost", 8000))
16 server.register_function(pow)
17 server.register_function(lambda x,y: x+y, 'add')
18 server.serve_forever()
36 server = SimpleXMLRPCServer(("localhost", 8000))
37 server.register_introspection_functions()
38 server.register_instance(MyFuncs())
39 server.serve_forever(
704 server = SimpleXMLRPCServer(("localhost", 8000)) variable in class:CGIXMLRPCRequestHandler
    [all...]
smtplib.py 69 """Not connected to any SMTP server.
71 This exception is raised when the server unexpectedly disconnects,
73 connecting it to a server.
80 server returns an error code. The error code is stored in the
117 """The SMTP server didn't accept the data."""
123 """The server refused our HELO reply."""
128 Most probably the server didn't accept the username/password
198 """This class manages a connection to an SMTP or ESMTP server.
202 This is the message given by the server in response to the
206 This is the message given by the server in response to th
855 server = SMTP('localhost') variable
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 48 import org.mortbay.jetty.Server;
105 // by server
166 .println("---- Server got request: ----\n"
171 // Act as Server (not Proxy) side
177 .println("---- Server read client's data: ----");
282 private Server server = null;
315 server = new Server(0);
316 server.setHandler(handler)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 69 """Not connected to any SMTP server.
71 This exception is raised when the server unexpectedly disconnects,
73 connecting it to a server.
80 server returns an error code. The error code is stored in the
117 """The SMTP server didn't accept the data."""
123 """The server refused our HELO reply."""
128 Most probably the server didn't accept the username/password
198 """This class manages a connection to an SMTP or ESMTP server.
202 This is the message given by the server in response to the
206 This is the message given by the server in response to th
855 server = SMTP('localhost') variable
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
firewallsocketserver.h 39 // This SocketServer shim simulates a rule-based firewall server.
46 FirewallSocketServer(SocketServer * server,
52 void set_socketserver(SocketServer* server) {
58 server_ = server;
118 void AddServer(FirewallSocketServer * server);
119 void RemoveServer(FirewallSocketServer * server);
  /external/chromium_org/android_webview/native/
aw_dev_tools_server.cc 149 AwDevToolsServer* server = new AwDevToolsServer(); local
150 return reinterpret_cast<jint>(server);
153 static void DestroyRemoteDebugging(JNIEnv* env, jobject obj, jint server) {
154 delete reinterpret_cast<AwDevToolsServer*>(server);
159 jint server,
162 reinterpret_cast<AwDevToolsServer*>(server);
  /external/chromium_org/base/win/
windows_version.cc 42 // Treat XP Pro x64, Home Server, and Server 2003 R2 as Server 2003.
47 // Treat Windows Server 2008 the same as Windows Vista.
51 // Treat Windows Server 2008 R2 the same as Windows 7.
56 // Treat Windows Server 2012 the same as Windows 8.
  /external/chromium_org/chrome/browser/chromeos/
proxy_cros_settings_parser.cc 59 return proxy.server.is_valid() ?
60 new base::StringValue(proxy.server.host_port_pair().host()) :
65 return proxy.server.is_valid() ?
66 base::Value::CreateIntegerValue(proxy.server.host_port_pair().port()) :
77 // Check if host is a valid URL or a string of valid format <server>::<port>.
81 if (host_port_pair.host().empty()) // See if host is <server>::<port>.
83 if (host_port_pair.host().empty()) // Host is not URL or <server>::<port>.
95 if (proxy.server.is_valid())
96 port = proxy.server.host_port_pair().port();
105 if (proxy.server.is_valid()
    [all...]
  /external/chromium_org/net/tools/quic/
quic_server.h 5 // A toy server, which listens on a specified address for QUIC traffic and
40 // Server deletion is imminent. Start cleaning up the epoll server.
77 // Initialize the internal state of the server.
85 // The port the server is listening on.
92 // during the lifetime of the server. This may overflow if enough packets
  /external/chromium_org/remoting/base/
breakpad_win_unittest.cc 21 // The name of the environment variable used to pass the crash server pipe name
25 // The prefix string used to generate a unique crash server pipe name.
38 // a thread pool thread, the crashing process will wait until the server
93 // dump server.
98 // a dummy crash dump server.
121 // Setup a dummy crash dump server.
  /external/chromium_org/sync/internal_api/public/test/
test_entry_factory.h 43 // local ID, it will be treated as a create-new. Otherwise, if it's a server
44 // ID, we'll fake the server data so that it looks like it exists on the
45 // server. Returns the methandle of the created item in |metahandle_out| if
59 // IS_UNAPPLIED_UPDATE. The item is known to both the server and client.
70 // the server specifics with |specifics|, sets
84 // the server specifics into |specifics| and returns true. Else, return false.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
run-blink-httpd 30 """A utility script for starting and stopping the HTTP server with the
49 if not options.server:
50 print ('Usage: %s --server {start|stop} [--root=root_dir]'
68 if options.server == 'start':
76 option_parser.add_option('-k', '--server',
77 help='Server action (start|stop)')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http_server_unittest.py 56 server = LayoutTestApacheHttpd(test_port, "/mock/output_dir", number_of_servers=4)
57 server._check_that_all_ports_are_available = lambda: True
58 server._is_server_running_on_all_ports = lambda: True
59 server._wait_for_action = fake_pid
63 server.start()
64 server.stop()
lighttpd.conf 0 server.tag = "LightTPD/1.4.19 (Win32)"
2 server.modules = ( "mod_accesslog",
8 server.document-root = "."
43 server.bind = "localhost"
44 server.port = 8001
59 #ssl.pemfile = "server.pem"
  /external/chromium_org/third_party/libjingle/source/talk/base/
firewallsocketserver.h 39 // This SocketServer shim simulates a rule-based firewall server.
46 FirewallSocketServer(SocketServer * server,
52 void set_socketserver(SocketServer* server) {
58 server_ = server;
122 void AddServer(FirewallSocketServer * server);
123 void RemoveServer(FirewallSocketServer * server);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver_main.cc 89 cricket::TurnServer server(main);
91 server.set_realm(argv[3]);
92 server.set_software(kSoftware);
93 server.set_auth_hook(&auth);
94 server.AddInternalSocket(int_socket, cricket::PROTO_UDP);
95 server.SetExternalSocketFactory(new talk_base::BasicPacketSocketFactory(),
  /external/clang/tools/scan-view/
scan-view 13 # How long to wait for server to start.
17 # Default server parameters
38 # Wait for server to start...
40 sys.stderr.write('%s: Waiting for server.' % sys.argv[0])
50 print >>sys.stderr,'WARNING: Unable to detect that server started.'
123 # Kick off thread to wait for server and start web browser, if
ScanView.py 19 # Various patterns matched or replaced by server.
86 def __init__(self, report, reporter, parameters, server):
89 self.server = server
98 if self.server.options.debug:
99 print >>sys.stderr, "%s: SERVER: submitting bug."%(sys.argv[0],)
103 if self.server.options.debug:
104 print >>sys.stderr, "%s: SERVER: submission complete."%(sys.argv[0],)
158 print >>sys.stderr, "%s: SERVER: halting." % (sys.argv[0],)
163 print >>sys.stderr, "%s: SERVER: waiting..." % (sys.argv[0],
    [all...]
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSResultCode.java 25 * Server Failure [RFC1035]
27 ServFail("Server Failure", 2),
53 * Server Not Authoritative for zone [RFC2136]]
55 NotAuth("Server Not Authoritative for zone", 9),
65 // 2 ServFail Server Failure [RFC1035]
72 // 9 NotAuth Server Not Authoritative for zone [RFC2136]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Agent.java 54 throw new XMPPException("No response from server on status set.");
98 throw new XMPPException("No response from server on status set.");
107 * Changes the name of the agent in the server. The server may have this functionality
114 * obtained from the server.
131 throw new XMPPException("No response from server on status set.");
TranscriptSearchManager.java 47 * Returns the Form to use for searching transcripts. It is unlikely that the server
53 * @throws XMPPException if an error occurs while sending the request to the server.
70 throw new XMPPException("No response from server on status set.");
80 * will include all the data returned from the server so be careful with the amount of
86 * @throws XMPPException if an error occurs while submiting the search to the server.
102 throw new XMPPException("No response from server on status set.");
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLEngineTest.java 34 assertConnected(e.client, e.server);
38 assertNotConnected(e.client, e.server);
114 void beforeBeginHandshake(SSLEngine client, SSLEngine server) {
116 server.setEnabledCipherSuites(cipherSuiteArray);
236 // TODO Fix KnownFailure AlertException "NO SERVER CERTIFICATE FOUND"
260 // client is client, server is server
263 // client is server, server is client
269 // both are server
    [all...]
  /external/chromium/net/base/
net_error_list.h 105 // The server requested a client certificate for SSL client authentication.
114 // The client and server don't support a common SSL protocol version or
118 // The server requested a renegotiation (rehandshake).
125 // During SSL renegotiation (rehandshake), the server sent a certificate with
142 // Failed establishing a connection to the SOCKS proxy server for a target host.
145 // The SOCKS proxy server failed establishing connection to the target host
171 // A known TLS strict server didn't offer the renegotiation extension.
174 // The SSL server attempted to use a weak ephemeral Diffie-Hellman key.
177 // Could not create a connection to the proxy server. An error occurred
236 // The server responded with a certificate whose common name did not matc
    [all...]
  /external/chromium_org/chrome/browser/policy/proto/cloud/
device_management_backend.proto 11 // Request from device to server to register device.
13 // Reregister device without erasing server state. It can be used
19 // When a client requests for policies, server should verify the
44 // enrollment candidate on the client and the server can use it to verify
49 // Indicates a requisition of the registering entity that the server can act
55 // Response from server to device register request.
59 // device to server.
62 // Device display name. By default, server generates the name in
82 // Request from device to server to unregister device.
87 // Response from server to device for unregister request
    [all...]
  /packages/apps/Email/res/values-it/
strings.xml 90 <string name="account_password_spaces_error" msgid="8928309156658903257">"Questa password inizia o termina con uno o più spazi. Molti server non supportano le password contenenti spazi."</string>
92 <string name="account_setup_check_settings_check_incoming_msg" msgid="2869198335297585862">"Convalida impostazioni del server?"</string>
104 <string name="account_setup_incoming_headline" msgid="6183711037633407184">"Impostazioni server Posta in arrivo"</string>
107 <string name="account_setup_incoming_server_label" msgid="1480342966630002638">"Server"</string>
115 <string name="account_setup_incoming_delete_policy_label" msgid="9213590134693857912">"Elimina email da server"</string>
121 <string name="account_setup_outgoing_headline" msgid="2025001060935366394">"Impostazioni server Posta in uscita"</string>
122 <string name="account_setup_outgoing_smtp_server_label" msgid="6035137446691195177">"Server SMTP"</string>
161 <string name="account_setup_failed_dlg_certificate_message" msgid="3836152264696108805">"Impossibile connettersi in modo sicuro al server."</string>
162 <string name="account_setup_failed_dlg_certificate_message_fmt" msgid="2121921642915593041">"Impossibile connettersi in modo sicuro al server.\n(<xliff:g id="ERROR">%s</xliff:g>)"</string>
163 <string name="account_setup_failed_certificate_required" msgid="2689944595775206006">"È necessario un certificato client. Vuoi connetterti al server con un certificato client?"</string
    [all...]

Completed in 816 milliseconds

<<11121314151617181920>>