HomeSort by relevance Sort by last modified time
    Searched refs:response (Results 126 - 150 of 2246) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium-trace/catapult/dashboard/dashboard/
debug_alert_test.py 44 response = self.testapp.get('/debug_alert?test_path=foo')
45 self.assertIn('<form', response.body)
46 self.assertIn('class="error"', response.body)
51 response = self.testapp.get('/debug_alert?test_path=%s' % test_path)
52 self.assertIn('id="plot"', response.body)
63 response = self.testapp.get('/debug_alert')
64 self.assertIn('<form', response.body)
65 self.assertNotIn('id="plot"', response.body)
70 response = self.testapp.get(
75 self.GetEmbeddedVariable(response, 'LOOKUP')
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/rules/
rule.py 28 def ApplyRule(self, return_value, request, response):
34 response: the httparchive ArchivedHttpResponse, which may be None.
36 A (should_stop, return_value) tuple. Typically the request and response
38 return_value (e.g., set response fields).
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_response.py 1 from paste.response import *
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/cloudhsm/
test_cloudhsm.py 34 response = self.cloudhsm.create_hapg(label=label)
35 hapg_arn = response['HapgArn']
38 response = self.cloudhsm.list_hapgs()
39 self.assertIn(hapg_arn, response['HapgList'])
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/configservice/
test_configservice.py 33 response = self.configservice.describe_configuration_recorders()
34 self.assertIn('ConfigurationRecorders', response)
43 response = self.configservice.describe_configuration_recorders()
44 self.assertIn('ConfigurationRecorders', response)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/opsworks/
test_layer1.py 36 response = self.api.describe_stacks()
37 self.assertIn('Stacks', response)
49 response = regions()
50 self.assertIsInstance(response[0], RegionInfo)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ses/
test_connection.py 14 response = self.ses.get_identity_dkim_attributes(['example.com'])
17 self.assertTrue('GetIdentityDkimAttributesResponse' in response)
19 response['GetIdentityDkimAttributesResponse'])
21 'DkimAttributes' in response['GetIdentityDkimAttributesResponse']
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_snapshot.py 40 response = self.service_connection.get_all_snapshots(['snap-1a2b3c4d', 'snap-9f8e7d6c'],
59 self.assertEqual(len(response), 1)
60 self.assertIsInstance(response[0], Snapshot)
61 self.assertEqual(response[0].id, 'snap-1a2b3c4d')
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
status_ui.py 82 self.response.out.write('Forbidden')
83 self.response.set_status(403)
88 self.response.set_status(404)
89 self.response.out.write("Resource not found.")
90 self.response.headers['Content-Type'] = 'text/plain'
96 self.response.headers["Cache-Control"] = "public, max-age=300"
97 self.response.headers["Content-Type"] = content_type
102 self.response.out.write(data or open(path, 'rb').read())
117 self.response.out.write('Forbidden')
118 self.response.set_status(403
    [all...]
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
SimpleComponent.java 23 ListenableFuture<Response> response(); method in interface:SimpleComponent
  /external/jetty/src/java/org/eclipse/jetty/server/
RequestLog.java 29 public void log(Request request, Response response);
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketHandler.java 41 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
43 if (_webSocketFactory.acceptWebSocket(request,response) || response.isCommitted())
48 super.handle(target,baseRequest,request,response);
  /external/libmicrohttpd/doc/examples/
hellobrowser.c 24 struct MHD_Response *response; local
27 response =
30 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
31 MHD_destroy_response (response);
  /external/libmicrohttpd/src/examples/
chunked_example.c 49 struct MHD_Response *response; local
61 response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN,
66 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
67 MHD_destroy_response (response);
dual_stack_example.c 40 struct MHD_Response *response; local
52 response = MHD_create_response_from_buffer (strlen (me),
55 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
56 MHD_destroy_response (response);
minimal_example.c 40 struct MHD_Response *response; local
52 response = MHD_create_response_from_buffer (strlen (me),
55 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
56 MHD_destroy_response (response);
minimal_example_comet.c 47 struct MHD_Response *response; local
59 response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN,
62 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
63 MHD_destroy_response (response);
  /external/nist-sip/java/javax/sip/
ServerTransaction.java 3 import javax.sip.message.Response;
6 void sendResponse(Response response)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Callback.java 30 * Called when the HTTP response was successfully returned by the remote
31 * server. The callback may proceed to read the response body with {@link
32 * Response#body}. The response is still live until its response body is
33 * closed with {@code response.body().close()}. The recipient of the callback
34 * may even consume the response body on another thread.
36 * <p>Note that transport-layer success (receiving a HTTP response code,
38 * success: {@code response} may still indicate an unhappy HTTP response
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
GetExample.java 5 import com.squareup.okhttp.Response;
16 Response response = client.newCall(request).execute(); local
17 return response.body().string();
22 String response = example.run("https://raw.github.com/square/okhttp/master/README.md"); local
23 System.out.println(response);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CertificatePinning.java 21 import com.squareup.okhttp.Response;
44 Response response = client.newCall(request).execute(); local
45 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
47 for (Certificate certificate : response.handshake().peerCertificates()) {
PostFile.java 22 import com.squareup.okhttp.Response;
40 Response response = client.newCall(request).execute(); local
41 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
43 System.out.println(response.body().string());
PostForm.java 22 import com.squareup.okhttp.Response;
37 Response response = client.newCall(request).execute(); local
38 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
40 System.out.println(response.body().string());
PostString.java 22 import com.squareup.okhttp.Response;
45 Response response = client.newCall(request).execute(); local
46 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
48 System.out.println(response.body().string());
  /external/selinux/libsepol/include/sepol/
roles.h 9 const char *role, int *response);

Completed in 1264 milliseconds

1 2 3 4 56 7 8 91011>>