Home
last modified time | relevance | path

Searched refs:domain_ref (Results 1 – 15 of 15) sorted by relevance

/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/command_lib/active_directory/
H A Ddomains_update_util.py46 def GetExistingDomain(domain_ref): argument
48 client = util.GetClientForResource(domain_ref)
49 messages = util.GetMessagesForResource(domain_ref)
51 name=domain_ref.RelativeName())
55 def UpdatePatchRequest(domain_ref, unused_args, patch_request): argument
57 patch_request.domain = GetExistingDomain(domain_ref)
72 def UpdateLabels(domain_ref, args, patch_request): argument
77 messages = util.GetMessagesForResource(domain_ref)
85 def ProcessPfxFile(domain_ref, args, request): argument
90 messages = util.GetMessagesForResource(domain_ref)
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/functional/v3/
H A Dtest_domains.py22 def check_domain(self, domain, domain_ref=None): argument
27 if domain_ref:
28 self.assertEqual(domain_ref['name'], domain.name)
29 self.assertEqual(domain_ref['enabled'], domain.enabled)
32 if hasattr(domain_ref, 'description'):
33 self.assertEqual(domain_ref['description'], domain.description)
40 domain_ref = {
44 domain = self.client.domains.create(**domain_ref)
45 self.check_domain(domain, domain_ref)
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/data/tests/
H A Dtest_owneighbors.py299 domain_ref = Domain([ContinuousVariable("b")])
302 domain_ref, np.random.rand(1, len(domain_ref.variables)))
326 reference = Table(domain_ref, np.random.rand(1, len(domain_ref.variables)))
365 domain_ref = Domain(domain.attributes,
368 domain_ref, np.random.rand(1, len(domain_ref.attributes)),
377 domain_ref = Domain(domain.attributes[::-1])
379 domain_ref, np.random.rand(1, len(domain_ref.attributes)))
387 domain_ref = Domain(
391 domain_ref, np.random.rand(1, len(domain_ref.attributes)),
392 metas=np.random.rand(1, len(domain_ref.metas)))
[all …]
/dports/mail/p5-Email-Address-Loose/Email-Address-Loose-0.10/lib/Email/Address/Loose/
H A DEmailValidLoose.pm34 my $domain_ref = $atom;
36 my $sub_domain = qq<(?:$domain_ref|$domain_lit)>;
/dports/mail/p5-Email-Find/Email-Find-0.10/lib/Email/Find/
H A Daddrspec.pm32 my $domain_ref = qq<$label(?:$period$label)*>;
34 my $domain = qq<(?:$domain_ref|$domain_lit)>;
/dports/mail/p5-Email-Valid-Loose/Email-Valid-Loose-0.05/lib/Email/Valid/
H A DLoose.pm25 my $domain_ref = $atom;
27 my $sub_domain = qq<(?:$domain_ref|$domain_lit)>;
/dports/sysutils/openipmi/OpenIPMI-2.0.29/swig/
H A DOpenIPMI.i445 swig_ref domain_ref; in handle_domain_cb() local
461 swig_ref domain_ref; in domain_connect_change_handler() local
485 swig_ref domain_ref; in domain_iterate_connections_handler() local
496 swig_ref domain_ref; in domain_event_handler() local
522 swig_ref domain_ref; in domain_mc_updated_handler() local
549 swig_ref domain_ref; in domain_entity_update_handler() local
575 swig_ref domain_ref; in domain_fully_up() local
606 swig_ref domain_ref; in domain_iterate_entities_handler() local
621 swig_ref domain_ref; in ipmb_mc_scan_handler() local
634 swig_ref domain_ref; in domain_reread_sels_handler() local
[all …]
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/cloud/
H A D_identity.py788 domain_ref = {'name': name, 'enabled': enabled}
790 domain_ref['description'] = description
793 '/domains', json={'domain': domain_ref}, error_message=msg)
812 domain_ref = {}
813 domain_ref.update({'name': name} if name else {})
814 domain_ref.update({'description': description} if description else {})
815 domain_ref.update({'enabled': enabled} if enabled is not None else {})
820 json={'domain': domain_ref}, error_message=error_msg)
/dports/mail/faces/faces-1.7.7/faces/
H A Daddress.y81 %type <yString> word domain_ref sub_domain local_part phrase
257 sub_domain: domain_ref {
265 domain_ref: ATOM {
/dports/mail/mailutils/mailutils-3.13/include/mailutils/
H A Dparse822.h183 char **domain_ref);
/dports/net/py-python-keystoneclient/python-keystoneclient-4.3.0/keystoneclient/tests/unit/v3/
H A Dtest_roles.py48 domain_ref = self._new_domain_ref()
49 domain_ref['id'] = uuid.uuid4().hex
50 ref['domain_id'] = domain_ref['id']
54 domain=domain_ref)
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/test/mesquite/unit/
H A DMakefile.am159 domain_ref.vtk \
/dports/devel/p5-CPANPLUS/CPANPLUS-0.9912/lib/CPANPLUS/Configure/
H A DSetup.pm1596 my $domain_ref = $atom;
1598 my $sub_domain = qq< (?: $domain_ref | $domain_lit) $X >;
/dports/mail/mailutils/mailutils-3.13/libmailutils/address/
H A Dparse822.c1308 mu_parse822_domain_ref (const char **p, const char *e, char **domain_ref) in mu_parse822_domain_ref() argument
1312 return mu_parse822_atom (p, e, domain_ref); in mu_parse822_domain_ref()
/dports/security/maia/maia_mailguard-7f20bd4/scripts/
H A Dmaiadbtool.pl504 my($domain_ref, $quiet) = @_;
507 foreach my $domain (@$domain_ref) {
519 @$domain_ref = @valid;