Searched refs:services (Results 1 - 25 of 126) sorted by relevance

123456

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
H A Dapp.yaml29 script: services.py
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/hello/server/
H A Dapp.yaml26 script: services.py
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DServiceModule.java32 static ServiceManager provideServiceManager(Set<Service> services) { argument
33 return new ServiceManager(services);
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/quotas/
H A Dmain.py38 from quotas import services namespace
50 quota.services.QuotaConfig.
53 quota.services.QuotaConfig instance with contents parsed from quota file.
57 return protojson.decode_message(services.QuotaConfig, encoded_config)
62 services.QuotaService.new_factory(load_quota_config(), {})),
H A Dservices_test.py27 from quotas import services namespace
29 SIMPLE_CONFIG = services.QuotaConfig(
31 services.QuotaConfig.Bucket(
34 services.QuotaConfig.Bucket(
50 return services.QuotaState(state, buckets)
175 self.service = services.QuotaService(SIMPLE_CONFIG, {})
178 return services.QuotaRequest(
181 services.QuotaCheck(name=bucket,
183 mode=services.QuotaCheck.Mode(mode))
189 services
[all...]
/external/selinux/policycoreutils/restorecond/
H A Drestorecond.conf1 /etc/services
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
H A Dfetch_descriptor.py85 # Get complete list of services.
86 services = remote_registry.services()
88 # Get file set for all services on server.
90 get_file_set.names = [service.name for service in services.services]
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dapp.yaml30 script: services.py
33 script: services.py
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue171/
H A DClassWithGenericMap.java23 public final Map<String, Collection<Integer>> services = new HashMap<String, Collection<Integer>>(); field in class:ClassWithGenericMap
H A DCustomRepresenter.java31 return representMapping(Tag.MAP, classX.services, false);
H A DGenericExtendsObjectTest.java32 map.services.put("wow", list);
/external/tlsdate/init/
H A Dtlsdated-cros.conf8 start on started system-services
9 stop on stopping system-services
/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DVarargsServletDispatchIntegrationTest.java50 private static int inits, services, destroys, doFilters; field in class:VarargsServletDispatchIntegrationTest
55 services = 0;
98 + services + "; destroys: " + destroys,
99 inits == 2 && services == 1 && destroys == 2);
138 + services + "; destroys: " + destroys,
139 inits == 2 && services == 1 && destroys == 2);
182 + services + "; destroys: " + destroys,
183 inits == 3 && services == 1 && destroys == 3 && doFilters == 1);
194 services++;
H A DServletDispatchIntegrationTest.java52 private static int inits, services, destroys, doFilters; field in class:ServletDispatchIntegrationTest
57 services = 0;
104 + services + "; destroys: " + destroys,
105 inits == 2 && services == 1 && destroys == 2);
151 + services + "; destroys: " + destroys + "; doFilters: " + doFilters,
152 inits == 3 && services == 1 && destroys == 3 && doFilters == 1);
163 services++;
304 assertEquals(1, services);
342 assertEquals(1, services);
/external/guice/extensions/service/src/com/google/inject/service/
H A DCompositeService.java34 * A service that composes other services together in a fixed order.
41 private final Set<Key<? extends Service>> services = Sets.newLinkedHashSet(); field in class:CompositeService
46 * words, all component services must start successfully for this
67 services.add(service);
77 final List<Key<? extends Service>> services = ImmutableList.copyOf(this.services);
82 for (Key<? extends Service> service : services) {
91 for (Key<? extends Service> service : services) {
/external/testng/src/test/resources/
H A Dcreate-serviceloader-jar.sh10 echo "test.serviceloader.TmpSuiteListener" >META-INF/services/org.testng.ITestNGListener
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/support/
H A Dtest_layer1.py40 services = self.api.describe_services()
41 self.assertTrue('services' in services)
42 service_codes = [serv['code'] for serv in services['services']]
/external/autotest/client/cros/tendo/n_faced_peerd/
H A Dpeer.py48 self.services = dict()
87 # TODO(wiley) call close on child services.
100 if service_id in self.services:
101 self.services[service_id].update(service_info, ip_info)
104 service_path = '%s/services/%d' % (self._path,
106 self.services[service_id] = service.Service(
120 removed_service = self.services.pop(service_id, None)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
H A Dservice_test.py109 response = registry_client.services()
117 ], response.services)
126 response = registry_client.services()
134 ], response.services)
147 registry_client.services)
157 services = registry_client.services()
158 self.assertTrue(isinstance(services, registry.ServicesResponse))
167 services.services)
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
H A Dregistry.py55 name: Name of service. On HTTP based services this will be the
67 """Response containing all registered services.
69 May also contain complete descriptor file-set for all services known by the
73 services: Service mappings for all registered services in registry.
74 file_set: Descriptor file-set describing all services, messages and enum
75 types needed for use with all requested services if asked for in the
79 services = messages.MessageField(ServiceMapping, 1, repeated=True) variable in class:ServicesResponse
85 Request to retrieve file sets for specific services.
88 names: Names of services t
223 def services(self, request): member in class:RegistryService
[all...]
/external/freetype/include/freetype/internal/
H A Dftserv.h5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
623 * services. It is the type of `face->internal->services'. You
646 * A magic number used within the services cache.
683 svc = FT_FACE( face )->internal->services. service_ ## id; \
690 FT_FACE( face )->internal->services. service_ ## id = \
704 svc = FT_FACE( face )->internal->services. service_ ## id; \
711 FT_FACE( face )->internal->services. service_ ## id = \
734 * The header files containing the services
[all...]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
H A Dftserv.h5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
623 * services. It is the type of `face->internal->services'. You
646 * A magic number used within the services cache.
683 svc = FT_FACE( face )->internal->services. service_ ## id; \
690 FT_FACE( face )->internal->services. service_ ## id = \
704 svc = FT_FACE( face )->internal->services. service_ ## id; \
711 FT_FACE( face )->internal->services. service_ ## id = \
734 * The header files containing the services
[all...]
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dftserv.h5 /* The FreeType services (specification only). */
20 /* Each module can export one or more `services'. Each service is */
623 * services. It is the type of `face->internal->services'. You
646 * A magic number used within the services cache.
683 svc = FT_FACE( face )->internal->services. service_ ## id; \
690 FT_FACE( face )->internal->services. service_ ## id = \
704 svc = FT_FACE( face )->internal->services. service_ ## id; \
711 FT_FACE( face )->internal->services. service_ ## id = \
734 * The header files containing the services
[all...]
/external/autotest/client/site_tests/peerd_MonitorsDBusConnections/
H A Dpeerd_MonitorsDBusConnections.py17 """Test that peerd removes services when processes disconnect from DBus."""
23 services = dbus_util.get_objects_with_interface(
30 # services is a map of object path to dicts of DBus interface to
32 for path, interfaces in services.iteritems():
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_osx.py163 services = []
168 services.append(service)
172 return services
176 services = GetIOServicesByType('IOSerialBSDClient')
179 for service in services:

Completed in 936 milliseconds

123456