Searched refs:multicall (Results 1 - 10 of 10) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_multicall.py | 1 "Test multicall, coverage 33%." 3 from idlelib import multicall namespace 16 cls.mc = multicall.MultiCallCreator(Text) 29 self.assertIs(multicall._multicall_dict[Text], mc) 31 mc2 = multicall.MultiCallCreator(Text)
|
/third_party/rust/crates/clap/tests/builder/ |
H A D | subcommands.rs | 447 .multicall(true) in busybox_like_multicall() 469 .multicall(true) in hostname_like_multicall() 498 .multicall(true) in bad_multicall_command_error() 546 #[should_panic = "Command repl: Arguments like oh-no cannot be set on a multicall command"] 551 .multicall(true) in cant_have_args_with_multicall() 573 .multicall(true) in multicall_help_flag() 593 .multicall(true) in multicall_help_subcommand() 613 .multicall(true) in multicall_render_help()
|
/third_party/rust/crates/clap/examples/ |
H A D | multicall-hostname.rs | 5 .multicall(true) in main()
|
H A D | multicall-busybox.rs | 15 .multicall(true) in main()
|
H A D | repl.rs | 65 .multicall(true) in cli()
|
/third_party/python/Lib/test/ |
H A D | test_xmlrpc.py | 863 'system.methodSignature', 'system.multicall', 918 multicall = xmlrpclib.MultiCall(p) 919 multicall.add(2,3) 920 multicall.pow(6,8) 921 multicall.div(127,42) 922 add_result, pow_result, div_result = multicall() 935 multicall = xmlrpclib.MultiCall(p) 936 multicall.this_is_not_exists() 937 result = multicall()
|
/third_party/python/Lib/idlelib/ |
H A D | autocomplete_w.py | 10 from idlelib.multicall import MC_SHIFT
|
H A D | editor.py | 24 from idlelib.multicall import MultiCallCreator
|
/third_party/python/Lib/xmlrpc/ |
H A D | client.py | 50 # 2003-10-31 mvl Add multicall support 845 """Iterates over the results of a multicall. Exceptions are 858 raise ValueError("unexpected type in multicall result") 868 multicall = MultiCall(server_proxy) 869 multicall.add(2,3) 870 multicall.get_address("Guido") 872 To execute the multicall, call the MultiCall object e.g.: 874 add_result, address = multicall() 892 return MultiCallIterator(self.__server.system.multicall(marshalled_list))
|
/third_party/rust/crates/clap/src/builder/ |
H A D | command.rs | 923 /// [`Command::multicall`][Command::multicall]. 2958 /// A "multicall" executable is a single executable 2970 /// Setting `multicall` will cause 2981 /// - Disable `multicall` and re-parse it 2982 /// - Disable `multicall` and re-parse it with a specific subcommand 2992 /// **NOTE:** The multicall command cannot have arguments. 3000 /// `hostname` is an example of a multicall executable. 3020 /// .multicall(true) 3030 /// Busybox is another common example of a multicall executabl 3072 pub fn multicall(self, yes: bool) -> Self { multicall() functions [all...] |
Completed in 13 milliseconds