HomeSort by relevance Sort by last modified time
    Searched refs:endpoints (Results 1 - 25 of 59) sorted by null

1 2 3

  /test/vti/test_serving/gae/script/
deploy-endpoint.sh 30 gcloud endpoints services deploy build_infov1openapi.json
31 gcloud endpoints services deploy host_infov1openapi.json
32 gcloud endpoints services deploy lab_infov1openapi.json
33 gcloud endpoints services deploy schedule_infov1openapi.json
34 gcloud endpoints configs list --service=$SERVICE
build.sh 30 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.build_info.BuildInfoApi --hostname $SERVICE
31 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.host_info.HostInfoApi --hostname $SERVICE
32 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.schedule_info.ScheduleInfoApi --hostname $SERVICE
33 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.lab_info.LabInfoApi --hostname $SERVICE
  /external/mesa3d/src/mesa/main/
texcompress_bptc.c 360 uint8_t endpoints[][4])
372 endpoints[subset * 2 + endpoint][component] =
383 endpoints[subset * 2 + endpoint][3] =
393 endpoints[subset * 2 + endpoint][3] = 255;
406 endpoints[subset * 2 + endpoint][component] <<= 1;
407 endpoints[subset * 2 + endpoint][component] |= pbit;
418 endpoints[subset * 2 + endpoint][component] <<= 1;
419 endpoints[subset * 2 + endpoint][component] |= pbit;
429 endpoints[subset * 2 + endpoint][component] =
430 expand_component(endpoints[subset * 2 + endpoint][component]
554 uint8_t endpoints[3 * 2][4]; local
856 int32_t endpoints[2 * 2][3]; local
1212 uint8_t endpoints[2][4]; local
1526 float endpoints[2][3]; local
    [all...]
  /test/vti/test_serving/gae/webapp/src/
endpoint_main.py 18 import endpoints
26 api = endpoints.api_server([
  /test/vti/test_serving/gae/webapp/src/endpoint/
lab_info.py 15 """Lab Info APIs implemented using Google Cloud Endpoints."""
18 import endpoints
28 SCHEDULE_INFO_RESOURCE = endpoints.ResourceContainer(
32 @endpoints.api(name='lab_info', version='v1')
36 @endpoints.method(
51 @endpoints.method(
schedule_info.py 15 """Schedule Info APIs implemented using Google Cloud Endpoints."""
18 import endpoints
27 SCHEDULE_INFO_RESOURCE = endpoints.ResourceContainer(
31 @endpoints.api(name="schedule_info", version="v1")
35 @endpoints.method(
51 @endpoints.method(
90 @endpoints.api(name="green_schedule_info", version="v1")
94 @endpoints.method(
110 @endpoints.method(
build_info.py 15 """Build Info APIs implemented using Google Cloud Endpoints."""
18 import endpoints
26 BUILD_INFO_RESOURCE = endpoints.ResourceContainer(
30 @endpoints.api(name="build_info", version="v1")
34 @endpoints.method(
host_info.py 14 """Host Info APIs implemented using Google Cloud Endpoints."""
17 import endpoints
26 HOST_INFO_RESOURCE = endpoints.ResourceContainer(model.HostInfoMessage)
59 @endpoints.api(name='host_info', version='v1')
63 @endpoints.method(
job_queue.py 14 """Job Queue Info APIs implemented using Google Cloud Endpoints."""
17 import endpoints
26 JOB_QUEUE_RESOURCE = endpoints.ResourceContainer(model.JobMessage)
32 @endpoints.api(name='job_queue', version='v1')
36 @endpoints.method(
117 @endpoints.method(
  /frameworks/base/core/java/android/hardware/usb/
UsbInterface.java 46 /** All endpoints of this interface, only null during creation */
127 * @return the number of endpoints
146 public void setEndpoints(Parcelable[] endpoints) {
147 mEndpoints = Preconditions.checkArrayElementsNotNull(endpoints, "endpoints");
174 Parcelable[] endpoints = in.readParcelableArray(UsbEndpoint.class.getClassLoader());
176 intf.setEndpoints(endpoints);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
PatternStringParser.java 96 long endpoints = getEndpoints(flags); local
97 int left = (int) (endpoints & 0xffffffff);
98 int right = (int) (endpoints >>> 32);
110 public static int getLengthFromEndpoints(long endpoints) {
111 int left = (int) (endpoints & 0xffffffff);
112 int right = (int) (endpoints >>> 32);
117 long endpoints = getEndpoints(flags); local
118 int left = (int) (endpoints & 0xffffffff);
119 int right = (int) (endpoints >>> 32);
283 long endpoints = state.offset local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
PatternStringParser.java 94 long endpoints = getEndpoints(flags); local
95 int left = (int) (endpoints & 0xffffffff);
96 int right = (int) (endpoints >>> 32);
108 public static int getLengthFromEndpoints(long endpoints) {
109 int left = (int) (endpoints & 0xffffffff);
110 int right = (int) (endpoints >>> 32);
115 long endpoints = getEndpoints(flags); local
116 int left = (int) (endpoints & 0xffffffff);
117 int right = (int) (endpoints >>> 32);
281 long endpoints = state.offset local
    [all...]
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbInterfaceDescriptor.java 38 protected byte mNumEndpoints; // 4:1 Number of Endpoints used for this interface
101 + " " + mEndpointDescriptors.size() + " endpoints.");
106 UsbEndpoint[] endpoints = new UsbEndpoint[mEndpointDescriptors.size()]; local
108 endpoints[index] = mEndpointDescriptors.get(index).toAndroid(parser);
110 ntrface.setEndpoints(endpoints);
133 canvas.writeListItem("Endpoints: " + getNumEndpoints());
  /external/icu/icu4c/source/i18n/
number_patternstring.cpp 35 const Endpoints &endpoints = getEndpoints(flags); local
36 if (index < 0 || index >= endpoints.end - endpoints.start) {
39 return pattern.charAt(endpoints.start + index);
46 int32_t ParsedPatternInfo::getLengthFromEndpoints(const Endpoints &endpoints) {
47 return endpoints.end - endpoints.start;
51 const Endpoints &endpoints = getEndpoints(flags) local
    [all...]
number_patternstring.h 26 struct U_I18N_API Endpoints {
54 Endpoints prefixEndpoints;
55 Endpoints suffixEndpoints;
56 Endpoints paddingEndpoints;
69 static int32_t getLengthFromEndpoints(const Endpoints &endpoints);
115 const Endpoints &getEndpoints(int32_t flags) const;
124 void consumeAffix(Endpoints &endpoints, UErrorCode &status);
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentSkipListSetTest.java 831 int[] endpoints = new int[2]; local
832 endpoints[0] = min + rnd.nextInt(rangeSize);
833 endpoints[1] = min + rnd.nextInt(rangeSize);
834 Arrays.sort(endpoints);
839 endpoints[0], lowIncl, endpoints[1], highIncl);
841 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
842 endpoints[1] - (highIncl ? 0 : 1), true, bs);
844 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
845 endpoints[1] - (highIncl ? 0 : 1), false, bs)
    [all...]
TreeSetTest.java 833 int[] endpoints = new int[2]; local
834 endpoints[0] = min + rnd.nextInt(rangeSize);
835 endpoints[1] = min + rnd.nextInt(rangeSize);
836 Arrays.sort(endpoints);
841 endpoints[0], lowIncl, endpoints[1], highIncl);
843 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1),
844 endpoints[1] - (highIncl ? 0 : 1), true);
846 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1),
847 endpoints[1] - (highIncl ? 0 : 1), false)
    [all...]
ConcurrentSkipListMapTest.java     [all...]
TreeMapTest.java 940 int[] endpoints = new int[2];
941 endpoints[0] = min + rnd.nextInt(rangeSize);
942 endpoints[1] = min + rnd.nextInt(rangeSize);
943 Arrays.sort(endpoints);
948 endpoints[0], lowIncl, endpoints[1], highIncl);
950 bashSubMap(sm, endpoints[0] + (lowIncl ? 0 : 1),
951 endpoints[1] - (highIncl ? 0 : 1), true);
953 bashSubMap(sm.descendingMap(), endpoints[0] + (lowIncl ? 0 : 1),
954 endpoints[1] - (highIncl ? 0 : 1), false)
    [all...]
  /external/adhd/cras/src/server/
cras_bt_endpoint.c 517 /* Available endpoints */
518 static struct cras_bt_endpoint *endpoints; variable in typeref:struct:cras_bt_endpoint
525 DL_FOREACH(endpoints, endpoint)
542 DL_APPEND(endpoints, endpoint);
578 DL_DELETE(endpoints, endpoint);
585 DL_FOREACH(endpoints, endpoint)
593 DL_FOREACH(endpoints, endpoint) {
  /external/autotest/client/cros/chameleon/
audio_board.py 99 def __init__(self, endpoints):
102 @param endpoints: A set of endpoints to keep a copy.
105 self._endpoints = endpoints.copy()
186 """Disconnects all endpoints from this audio bus."""
  /external/libusb/libusb/os/
netbsd_usb.c 44 int endpoints[USB_MAX_ENDPOINTS]; member in struct:handle_priv
349 hpriv->endpoints[i] = -1;
361 if (hpriv->endpoints[i] >= 0)
362 close(hpriv->endpoints[i]);
626 if (hpriv->endpoints[endpt] < 0) {
637 hpriv->endpoints[endpt] = fd;
640 return (hpriv->endpoints[endpt]);
openbsd_usb.c 44 int endpoints[USB_MAX_ENDPOINTS]; member in struct:handle_priv
383 hpriv->endpoints[i] = -1;
395 if (hpriv->endpoints[i] >= 0)
396 close(hpriv->endpoints[i]);
706 if (hpriv->endpoints[endpt] < 0) {
716 hpriv->endpoints[endpt] = fd;
719 return (hpriv->endpoints[endpt]);
  /external/google-breakpad/src/common/windows/
omap.cc 414 // Get the unique set of interval endpoints.
415 std::set<DWORD> endpoints; local
417 endpoints.insert(mapping[i].rva_original);
418 endpoints.insert(mapping[i].rva_original +
423 // Use the endpoints to initialize the secondary search structure for the
425 eim.resize(endpoints.size());
426 std::set<DWORD>::const_iterator it = endpoints.begin();
427 for (size_t i = 0; it != endpoints.end(); ++it, ++i) {
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
inception_v1_test.py 72 endpoints = [
78 for index, endpoint in enumerate(endpoints):
85 self.assertItemsEqual(endpoints[:index + 1], end_points)

Completed in 487 milliseconds

1 2 3