Home
last modified time | relevance | path

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

12345678910>>...26

/dports/net/dgd-kernel/dgd-kernel-1.3.4_2/kernellib/kernel/lib/
H A Dauto.c87 driver = ::find_object(DRIVER); in _F_create()
145 rsrcd = ::find_object(RSRCD); in _F_destruct()
221 return ::find_object(path); in find_object()
318 rsrcd = ::find_object(RSRCD); in compile_object()
327 new = !::find_object(path); in compile_object()
468 obj = ::find_object(str); in new_object()
509 rsrcd = ::find_object(RSRCD); in new_object()
541 driver = ::find_object(DRIVER); in call_trace()
642 driver = ::find_object(DRIVER); in status()
944 rsrcd = ::find_object(RSRCD); in remove_event()
[all …]
/dports/games/ldmud/ldmud-3.3.720/doc/efun.de/
H A Dfind_object.de2 object find_object(string str)
10 obj = find_object("std/thing");
11 obj = find_object("std/thing.c");
12 obj = find_object("/std/thing");
13 obj = find_object("/std/thing.c");
17 obj = find_object("/std/thing#42");
/dports/games/ldmud/ldmud-3.3.720/doc/efun/
H A Dfind_object2 object find_object(string str)
10 obj = find_object("std/thing");
11 obj = find_object("std/thing.c");
12 obj = find_object("/std/thing");
13 obj = find_object("/std/thing.c");
17 obj = find_object("/std/thing#42");
/dports/net/dgd-lpmud/mud/2.4.5/dgd/lib/
H A Dsimfun.c7 static object find_object(string file) in find_object() function
9 ARGCHECK(file, find_object, 1); in find_object()
10 return ::find_object(::find_object(DRIVER)->path_object(file)); in find_object()
22 file = ::find_object(DRIVER)->path_object(file); in clone_object()
23 obj = ::find_object(file); in clone_object()
176 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in transfer()
177 obj = find_object(obj); in transfer()
181 call_other(dest = ::find_object(DRIVER)->path_object(dest), "???"); in transfer()
182 dest = find_object(dest); in transfer()
413 ::find_object(DRIVER)->set_users(); in dump_state()
[all …]
H A Dinventory.c163 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in move_object()
164 obj = find_object(obj); in move_object()
168 call_other(dest = ::find_object(DRIVER)->path_object(dest), "???"); in move_object()
169 dest = find_object(dest); in move_object()
287 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in first_inventory()
288 obj = find_object(obj); in first_inventory()
H A Dmapping.c81 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in filter_mapping()
82 obj = find_object(obj); in filter_mapping()
112 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in map_mapping()
113 obj = find_object(obj); in map_mapping()
H A Dtool.c150 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in filter_array()
151 obj = find_object(obj); in filter_array()
179 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in map_array()
180 obj = find_object(obj); in map_array()
241 call_other(obj = ::find_object(DRIVER)->path_object(obj), "???"); in sort_array()
242 obj = find_object(obj); in sort_array()
/dports/www/firefox-legacy/firefox-52.8.0esr/taskcluster/taskgraph/test/
H A Dtest_util_python_path.py20 self.assertRaises(ImportError, python_path.find_object, "no_such_module:someobj")
24 self.assertRaises(AttributeError, python_path.find_object,
29 obj = python_path.find_object(
/dports/www/firefox/firefox-99.0/taskcluster/gecko_taskgraph/test/
H A Dtest_util_python_path.py20 ImportError, python_path.find_object, "no_such_module:someobj"
27 python_path.find_object,
35 obj = python_path.find_object(
/dports/www/firefox-esr/firefox-91.8.0/taskcluster/taskgraph/test/
H A Dtest_util_python_path.py21 ImportError, python_path.find_object, "no_such_module:someobj"
28 python_path.find_object,
36 obj = python_path.find_object(
/dports/lang/spidermonkey60/firefox-60.9.0/taskcluster/taskgraph/test/
H A Dtest_util_python_path.py21 self.assertRaises(ImportError, python_path.find_object, "no_such_module:someobj")
25 self.assertRaises(AttributeError, python_path.find_object,
31 obj = python_path.find_object(
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/taskgraph/test/
H A Dtest_util_python_path.py21 ImportError, python_path.find_object, "no_such_module:someobj"
28 python_path.find_object,
36 obj = python_path.find_object(
/dports/lang/spidermonkey78/firefox-78.9.0/taskcluster/taskgraph/test/
H A Dtest_util_python_path.py21 self.assertRaises(ImportError, python_path.find_object, "no_such_module:someobj")
25 self.assertRaises(AttributeError, python_path.find_object,
31 obj = python_path.find_object(
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/network/tests/unit/plugins/module_utils/network/ftd/
H A Dtest_upsert_functionality.py143 find_object.return_value = None
151 find_object.assert_called_once_with('Foo', params)
167 find_object.return_value = existing_obj
192 find_object.return_value = existing_obj
210 def test_upsert_object_not_supported(self, edit_mock, add_mock, find_object, get_operation_mock, argument
224 find_object.assert_not_called()
246 find_object.assert_not_called()
262 find_object.return_value = existing_obj
274 find_object.assert_called_once_with('Foo', params)
288 find_object.return_value = None
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/test/units/module_utils/network/ftd/
H A Dtest_upsert_functionality.py135 find_object.return_value = None
143 find_object.assert_called_once_with('Foo', params)
159 find_object.return_value = existing_obj
184 find_object.return_value = existing_obj
202 def test_upsert_object_not_supported(self, edit_mock, add_mock, find_object, get_operation_mock, argument
216 find_object.assert_not_called()
238 find_object.assert_not_called()
254 find_object.return_value = existing_obj
266 find_object.assert_called_once_with('Foo', params)
280 find_object.return_value = None
[all …]
/dports/textproc/py-duecredit/duecredit-0.9.1/duecredit/tests/
H A Dtest_injections.py26 from ..injections.injector import DueCreditInjector, find_object, get_modules_for_injection
77 _, _, obj = find_object(mod, func)
124 _, _, obj = find_object(mod, func)
195 assert find_object(mod, 'testfunc1') == (mod, 'testfunc1', mod.testfunc1)
196 assert find_object(mod, 'TestClass1') == (mod, 'TestClass1', mod.TestClass1)
197 …assert find_object(mod, 'TestClass1.testmeth1') == (mod.TestClass1, 'testmeth1', mod.TestClass1.te…
198 assert find_object(mod, 'TestClass12.Embed.testmeth1') == (mod.TestClass12.Embed,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/graphql/resolvers/ci/
H A Drunner_setup_resolver.rb64 { project: find_object(project_id) }
70 { group: find_object(group_id) }
73 def find_object(gid) method in Resolvers.Ci.RunnerSetupResolver
/dports/multimedia/pipewire/pipewire-0.3.43/src/tools/
H A Dpw-link.c197 if ((p = find_object(data, OBJECT_PORT, peer)) == NULL) in print_port_id()
199 if ((n = find_object(data, OBJECT_NODE, p->extra[1])) == NULL) in print_port_id()
349 if ((p = find_object(data, OBJECT_PORT, l->extra[0])) == NULL) in do_unlink_ports()
351 if ((n = find_object(data, OBJECT_NODE, p->extra[1])) == NULL) in do_unlink_ports()
356 if ((p = find_object(data, OBJECT_PORT, l->extra[1])) == NULL) in do_unlink_ports()
358 if ((n = find_object(data, OBJECT_NODE, p->extra[1])) == NULL) in do_unlink_ports()
412 if ((p1 = find_object(data, OBJECT_PORT, link->extra[0])) == NULL) in do_monitor_link()
414 if ((n1 = find_object(data, OBJECT_NODE, p1->extra[1])) == NULL) in do_monitor_link()
419 if ((p2 = find_object(data, OBJECT_PORT, link->extra[1])) == NULL) in do_monitor_link()
421 if ((n2 = find_object(data, OBJECT_NODE, p2->extra[1])) == NULL) in do_monitor_link()
[all …]
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dteamcoco.py102 find_object = 'find' + object_type
105 'query': query_template % (find_object, object_id)
108 })['data'][find_object]
/dports/www/youtube_dl/youtube-dl/youtube_dl/extractor/
H A Dteamcoco.py102 find_object = 'find' + object_type
105 'query': query_template % (find_object, object_id)
108 })['data'][find_object]
/dports/net-mgmt/p5-Nagios-Object/Nagios-Object-0.21.18/t/
H A Dmulti_type_entries.t21 ok( my $service = $c->find_object('Current Load'),
25 ok( my $host = $c->find_object('anotherhost'), "Get a host to work with" );
H A Dhostgroup_hostgroups.t31 ok( my $service = $c->find_object('Current Load'),
35 ok( my $host = $c->find_object('anotherhost'), "Get a host to work with" );
H A Dnestedtemplates.t37 my $generic = $config->find_object( 'generic-service', 'Nagios::Service' );
38 my $perfdata = $config->find_object( 'perfdata-only', 'Nagios::Service' );
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/banzai/reference_parser/
H A Dcommit_range_parser_spec.rb118 expect(subject.find_object(project, '123..456')).to eq(range)
127 expect(subject.find_object(project, '123..456')).to be_nil
135 expect(subject.find_object(group, '123..456')).to be_nil
/dports/net/dgd-kernel/dgd-kernel-1.3.4_2/kernellib/doc/kernel/efun/
H A Dfind_object2 find_object - find an object
5 object find_object(string obj)

12345678910>>...26