HomeSort by relevance Sort by last modified time
    Searched full:responses (Results 126 - 150 of 1150) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/g3doc/
README.md 5 Smart Replies are contextually relevant, one-touch responses that help the user
53 response intents observed in chat conversations. Some of the fallback responses
95 returning the appropriate responses.
98 returns back to Android app. Responses are sorted in descending order of
  /external/volley/src/test/java/com/android/volley/
ResponseDeliveryTest.java 39 // Make the delivery just run its posted responses immediately.
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestPredicate.java 32 * Test {@link Predicate} that can be used to spy on, control responses from,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmlec.h 87 * For mapping LE_ARP requests to responses. Filled by
ipmi.h 52 * send commands, receive responses, etc. The driver keeps track of
53 * commands the user sends and tracks the responses. The responses
119 * requests and responses from the same device would have different
157 * commands and responses. The completion code is always the first
234 * responses back. You can use the msgid value to correlate commands
235 * and responses, the driver will take care of figuring out which
  /system/tpm/trunks/
command_transceiver.h 27 // receives responses. It can operate synchronously or asynchronously.
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
BasicOCSPRespBuilder.java 235 ASN1EncodableVector responses = new ASN1EncodableVector(); local
241 responses.add(((ResponseObject)it.next()).toResponse());
249 ResponseData tbsResp = new ResponseData(responderID.toASN1Primitive(), new ASN1GeneralizedTime(producedAt), new DERSequence(responses), responseExtensions);
  /external/curl/docs/libcurl/opts/
CURLOPT_HEADERFUNCTION.3 62 all responses received after initiating a request and not just the final
63 response. This includes all responses which occur during authentication
77 called with the server responses to the commands that libcurl sends.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 50 * Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and
61 * responses were served by the cache.
67 * is still valid. Such responses increment both the network count and hit count.
70 * cacheable responses. Although this client honors all <a
72 * partial responses.
116 * To permit stale cached responses, use the {@code max-stale} directive with the maximum staleness
222 // Don't cache non-GET responses. We're technically allowed to cache
304 * complete normally, but the corresponding responses will not be stored.
312 * ConcurrentModificationException}, but if new responses are added while iterating, their URLs
313 * will not be returned. If existing responses are evicted during iteration, they will be absen
    [all...]
  /external/python/cpython3/Lib/test/
test_urllib2_localnet.py 394 def GetRequestHandler(responses):
418 response_code, headers, body = responses.pop(0)
471 def start_server(self, responses=None):
472 if responses is None:
473 responses = [(200, [], b"we don't care")]
474 handler = GetRequestHandler(responses)
484 def start_https_server(self, responses=None, **kwargs):
488 if responses is None:
489 responses = [(200, [], b"we care a bit")]
490 handler = GetRequestHandler(responses)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisCounter.cpp 44 errs() << " " << Val << " " << Desc << " responses ("
106 // the number of responses...
120 "Count Alias Analysis Query Responses", false, true, false)
  /external/volley/src/main/java/com/android/volley/
NetworkResponse.java 39 * cannot handle server responses containing multiple headers with the same name.
68 * cannot handle server responses containing multiple headers with the same name.
90 * cannot handle server responses containing multiple headers with the same name.
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsEditQuickResponsesFragment.java 45 * Lists quick responses associated with the specified email account. Allows users to create,
46 * edit, and delete quick responses. Owning activity must:
49 * <li>Provide an Account as an argument named "account". This account's quick responses
  /external/opencv/ml/src/
mlknearest.cpp 97 CvMat* responses = 0; local
111 // Treat categorical responses as ordered - to prevent class label compression and
115 &_count, &_dims, &_dims_all, &responses, 0, 0 ));
139 memcpy( _samples + 1, responses->data.fl, _rsize );
346 "The neighbor responses (if present) must be floating-point matrix of <num_samples> x <k> size" );
  /external/python/cpython2/Doc/library/
basehttpserver.rst 139 values can found in the *responses* class variable.
144 Specifies the Content-Type HTTP header of error responses sent to the
153 This specifies the HTTP protocol version used in responses. If set to
156 header (using :meth:`send_header`) in all of its responses to clients.
169 .. attribute:: responses
  /prebuilts/go/darwin-x86/src/net/http/
response.go 30 // The Client and Transport return Responses from servers once
58 // non-nil, even on responses without a body or responses with
112 // response was received. It is nil for unencrypted responses.
113 // The pointer is shared between responses and should not be
  /prebuilts/go/linux-x86/src/net/http/
response.go 30 // The Client and Transport return Responses from servers once
58 // non-nil, even on responses without a body or responses with
112 // response was received. It is nil for unencrypted responses.
113 // The pointer is shared between responses and should not be
  /system/nfc/src/nfc/nci/
nci_hrcv.cc 47 ** Description Process NCI responses in the CORE group
157 ** Description Process NCI responses in the RF Management group
305 ** Description Process NCI responses in the NFCEE Management group
456 ** Description Process NCI responses in the Proprietary group
483 ** Description Process RAW VS responses
  /external/python/cpython2/Lib/idlelib/
rpc.py 136 self.responses = {}
298 # this thread does all reading of requests or responses
307 while myseq not in self.responses:
309 response = self.responses[myseq]
312 del self.responses[myseq]
390 and some may be responses for other threads.
397 request_queue by self.localcall(). Responses to queued requests are
405 sequence number is received, and will save other responses in
406 self.responses and notify the owning thread.
454 self.responses[seq] = res
    [all...]
  /external/python/cpython3/Lib/idlelib/
rpc.py 137 self.responses = {}
306 # this thread does all reading of requests or responses
315 while myseq not in self.responses:
317 response = self.responses[myseq]
320 del self.responses[myseq]
398 and some may be responses for other threads.
405 request_queue by self.localcall(). Responses to queued requests are
413 sequence number is received, and will save other responses in
414 self.responses and notify the owning thread.
462 self.responses[seq] = res
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
rpc.py 136 self.responses = {}
298 # this thread does all reading of requests or responses
307 while myseq not in self.responses:
309 response = self.responses[myseq]
312 del self.responses[myseq]
393 and some may be responses for other threads.
400 request_queue by self.localcall(). Responses to queued requests are
408 sequence number is received, and will save other responses in
409 self.responses and notify the owning thread.
457 self.responses[seq] = res
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
rpc.py 136 self.responses = {}
298 # this thread does all reading of requests or responses
307 while myseq not in self.responses:
309 response = self.responses[myseq]
312 del self.responses[myseq]
393 and some may be responses for other threads.
400 request_queue by self.localcall(). Responses to queued requests are
408 sequence number is received, and will save other responses in
409 self.responses and notify the owning thread.
457 self.responses[seq] = res
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 136 self.responses = {}
298 # this thread does all reading of requests or responses
307 while myseq not in self.responses:
309 response = self.responses[myseq]
312 del self.responses[myseq]
393 and some may be responses for other threads.
400 request_queue by self.localcall(). Responses to queued requests are
408 sequence number is received, and will save other responses in
409 self.responses and notify the owning thread.
457 self.responses[seq] = res
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 136 self.responses = {}
298 # this thread does all reading of requests or responses
307 while myseq not in self.responses:
309 response = self.responses[myseq]
312 del self.responses[myseq]
393 and some may be responses for other threads.
400 request_queue by self.localcall(). Responses to queued requests are
408 sequence number is received, and will save other responses in
409 self.responses and notify the owning thread.
457 self.responses[seq] = res
    [all...]
  /external/kernel-headers/original/uapi/linux/
ipmi.h 53 * send commands, receive responses, etc. The driver keeps track of
54 * commands the user sends and tracks the responses. The responses
112 * requests and responses from the same device would have different
150 * commands and responses. The completion code is always the first
227 * responses back. You can use the msgid value to correlate commands
228 * and responses, the driver will take care of figuring out which

Completed in 1718 milliseconds

1 2 3 4 56 7 8 91011>>