Home
last modified time | relevance | path

Searched refs:endpoint_ref (Results 1 – 25 of 25) sorted by relevance

/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/api_lib/service_directory/
H A Dendpoints.py33 def Create(self, endpoint_ref, address=None, port=None, annotations=None): argument
38 parent=endpoint_ref.Parent().RelativeName(),
40 endpointId=endpoint_ref.endpointsId)
43 def Delete(self, endpoint_ref): argument
46 name=endpoint_ref.RelativeName())
49 def Describe(self, endpoint_ref): argument
52 name=endpoint_ref.RelativeName())
82 name=endpoint_ref.RelativeName(),
98 parent=endpoint_ref.Parent().RelativeName(),
100 endpointId=endpoint_ref.endpointsId)
[all …]
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/functional/v3/
H A Dtest_endpoints.py23 def check_endpoint(self, endpoint, endpoint_ref=None): argument
28 if endpoint_ref:
29 self.assertEqual(endpoint_ref['service'], endpoint.service_id)
30 self.assertEqual(endpoint_ref['url'], endpoint.url)
31 self.assertEqual(endpoint_ref['interface'], endpoint.interface)
32 self.assertEqual(endpoint_ref['enabled'], endpoint.enabled)
35 if hasattr(endpoint_ref, 'region'):
36 self.assertEqual(endpoint_ref['region'], endpoint.region)
49 endpoint_ref = {'service': service.id,
53 endpoint = self.client.endpoints.create(**endpoint_ref)
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/api_lib/ai/endpoints/
H A Dclient.py97 def Delete(self, endpoint_ref): argument
100 name=endpoint_ref.RelativeName())
103 def Get(self, endpoint_ref): argument
106 name=endpoint_ref.RelativeName())
119 def PatchBeta(self, endpoint_ref, args): argument
125 return self.Get(endpoint_ref).labels
159 name=endpoint_ref.RelativeName(),
174 endpoint=endpoint_ref.RelativeName(),
190 endpoint=endpoint_ref.RelativeName(),
194 def DeployModelBeta(self, endpoint_ref, args): argument
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/service_directory/endpoints/
H A Dcreate.py60 endpoint_ref = args.CONCEPTS.endpoint.Parse()
63 result = client.Create(endpoint_ref, args.address, args.port, annotations)
64 log.CreatedResource(endpoint_ref.endpointsId, _RESOURCE_TYPE)
97 endpoint_ref = args.CONCEPTS.endpoint.Parse()
100 result = client.Create(endpoint_ref, args.address, args.port, metadata)
101 log.CreatedResource(endpoint_ref.endpointsId, _RESOURCE_TYPE)
H A Dupdate.py54 endpoint_ref = args.CONCEPTS.endpoint.Parse()
57 result = client.Update(endpoint_ref, args.address, args.port, annotations)
58 log.UpdatedResource(endpoint_ref.endpointsId, _RESOURCE_TYPE)
85 endpoint_ref = args.CONCEPTS.endpoint.Parse()
88 result = client.Update(endpoint_ref, args.address, args.port, metadata)
89 log.UpdatedResource(endpoint_ref.endpointsId, _RESOURCE_TYPE)
H A Ddelete.py48 endpoint_ref = args.CONCEPTS.endpoint.Parse()
50 result = client.Delete(endpoint_ref)
51 log.DeletedResource(endpoint_ref.endpointsId, _RESOURCE_TYPE)
H A Ddescribe.py45 endpoint_ref = args.CONCEPTS.endpoint.Parse()
47 return client.Describe(endpoint_ref)
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/ai/endpoints/
H A Ddelete.py34 endpoint_ref = args.CONCEPTS.endpoint.Parse()
35 args.region = endpoint_ref.AsDict()['locationsId']
36 endpoint_id = endpoint_ref.AsDict()['endpointsId']
43 op = endpoints_client.Delete(endpoint_ref)
H A Ddeploy_model.py50 endpoint_ref = args.CONCEPTS.endpoint.Parse()
51 args.region = endpoint_ref.AsDict()['locationsId']
55 op = endpoints_client.DeployModelBeta(endpoint_ref, args)
63 endpoint_ref.AsDict()['endpointsId'],
H A Ddescribe.py29 endpoint_ref = args.CONCEPTS.endpoint.Parse()
30 args.region = endpoint_ref.AsDict()['locationsId']
32 return client.EndpointsClient(version=version).Get(endpoint_ref)
H A Dpredict.py31 endpoint_ref = args.CONCEPTS.endpoint.Parse()
32 args.region = endpoint_ref.AsDict()['locationsId']
38 results = endpoints_client.PredictBeta(endpoint_ref, instances_json)
H A Dundeploy_model.py33 endpoint_ref = args.CONCEPTS.endpoint.Parse()
34 args.region = endpoint_ref.AsDict()['locationsId']
38 op = endpoints_client.UndeployModelBeta(endpoint_ref, args)
H A Dexplain.py32 endpoint_ref = args.CONCEPTS.endpoint.Parse()
33 args.region = endpoint_ref.AsDict()['locationsId']
39 results = endpoints_client.ExplainBeta(endpoint_ref, instances_json, args)
H A Dupdate.py36 endpoint_ref = args.CONCEPTS.endpoint.Parse()
37 args.region = endpoint_ref.AsDict()['locationsId']
42 op = endpoints_client.PatchBeta(endpoint_ref, args)
/dports/www/firefox/firefox-99.0/third_party/rust/coremidi/src/endpoints/
H A Ddestinations.rs30 let endpoint_ref = unsafe { MIDIGetDestination(index as ItemCount) }; in from_index() localVariable
31 match endpoint_ref { in from_index()
35 object: Object(endpoint_ref), in from_index()
H A Dsources.rs33 let endpoint_ref = unsafe { MIDIGetSource(index as ItemCount) }; in from_index() localVariable
34 match endpoint_ref { in from_index()
38 object: Object(endpoint_ref), in from_index()
/dports/audio/lmms/lmms-1.2.2/src/core/midi/
H A DMidiApple.cpp555 MIDIEndpointRef endpoint_ref = (MIDIEndpointRef)msg->child ; in NotifyCallback() local
556 char * fullName = midiApple->getFullName(endpoint_ref); in NotifyCallback()
575 MIDIEndpointRef endpoint_ref = (MIDIEndpointRef)msg->child ; in NotifyCallback() local
576 char * fullName = midiApple->getFullName(endpoint_ref); in NotifyCallback()
609 char * MidiApple::getFullName(MIDIEndpointRef &endpoint_ref) in getFullName() argument
612 MIDIEndpointGetEntity(endpoint_ref, &entity); //get the entity in getFullName()
616 char * endPointName = getName(endpoint_ref); in getFullName()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DConnectionOrientedTransportBindingElement.cs171 var endpoint_ref = doc.CreateElement ( in IWsdlExportExtension.ExportEndpoint()
176 endpoint_ref.AppendChild (endpoint_addr); in IWsdlExportExtension.ExportEndpoint()
177 context.WsdlPort.Extensions.Add (endpoint_ref); in IWsdlExportExtension.ExportEndpoint()
/dports/biology/emboss/EMBOSS-6.6.0/ajax/ajaxdb/
H A Dajsoap.c123 axis2_endpoint_ref_t* endpoint_ref = NULL; in ajSoapAxis2GetClient() local
129 endpoint_ref = axis2_endpoint_ref_create(env, address); in ajSoapAxis2GetClient()
132 axis2_options_set_to(options, env, endpoint_ref); in ajSoapAxis2GetClient()
/dports/math/cgal/CGAL-5.3/include/CGAL/Partition_2/
H A DPartition_vertex_map.h201 void insert_next(Vertex_info endpoint_ref, int num) in insert_next() argument
206 for (e_it = m_list.begin(); e_it != m_list.end() && e_it->endpoint() != endpoint_ref ; e_it++) in insert_next()
216 m_list.push_back(Edge_info(endpoint_ref, num)); in insert_next()
220 void insert_prev(Vertex_info endpoint_ref, int num) in insert_prev() argument
225 for (e_it = m_list.begin(); e_it != m_list.end() && e_it->endpoint() != endpoint_ref ; e_it++) in insert_prev()
235 m_list.push_front(Edge_info(endpoint_ref, num)); in insert_prev()
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/v3/
H A Dtest_endpoint_policy.py59 endpoint_ref = self.new_endpoint_ref()
63 self.client.endpoints, endpoint_ref, loaded=True)
68 'endpoints', endpoint_ref['id']],
H A Dtest_endpoint_filter.py81 endpoint_ref = self.new_endpoint_ref()
86 endpoint_ref,
92 'endpoints', endpoint_ref['id']],
/dports/audio/lmms/lmms-1.2.2/include/
H A DMidiApple.h129 char * getFullName( MIDIEndpointRef &endpoint_ref );
/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/sc/
H A Dsc_osc_handler.cpp300 …static void fire_done_message(endpoint_ptr const& endpoint_ref, const char* cmd, osc::int32 index)… in fire_done_message()
301 if (endpoint_ref) { in fire_done_message()
303 … [=, endpoint = endpoint_ptr(endpoint_ref)]() { send_done_message(endpoint, cmd, index); }); in fire_done_message()
307 static void fire_message(endpoint_ptr const& endpoint_ref, movable_array<char>&& message) { in fire_message()
308 if (endpoint_ref) { in fire_message()
310 [=, message = std::move(message), endpoint = endpoint_ptr(endpoint_ref)]() mutable { in fire_message()
908 template <bool realtime> void handle_status(endpoint_ptr const& endpoint_ref) { in handle_status() argument
909 cmd_dispatcher<realtime>::fire_io_callback([=, endpoint = endpoint_ptr(endpoint_ref)]() { in handle_status()
967 template <bool realtime> void handle_version(endpoint_ptr const& endpoint_ref) { in handle_version() argument
968 cmd_dispatcher<realtime>::fire_io_callback([=, endpoint = endpoint_ptr(endpoint_ref)]() { in handle_version()
/dports/audio/soundgrab/soundgrab-1.0.1/src/
H A Dsoundgrab4315 my $endpoint_ref = $endpoint eq "start" ? \$new_start : \$new_end;
4317 ${$endpoint_ref} += $time_in_seconds;
4320 ${$endpoint_ref} -= $time_in_seconds;
4323 ${$endpoint_ref} = $time_in_seconds;