Home
last modified time | relevance | path

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

12

/dports/finance/beancount/beancount-2.3.3/experiments/docs/
H A Dbean-transaction-types98 for group_accounts, group_entries in groups_list:
99 print('** {} entries with ({})'.format(len(group_entries), ', '.join(group_accounts)))
103 for entry in random.sample(group_entries, min(len(group_entries), opts.num_entries)):
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/clusters/agents/
H A Drefresh_authorization_service.rb69 group_entries = extract_config_entries(entity: 'groups')
71 if group_entries
72 allowed_groups.where_full_path_in(group_entries.keys).map do |group|
73 { group_id: group.id, config: group_entries[group.full_path] }
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dissue-7447.rs7 fn group_entries(s: &()) -> BTreeMap<Cow<'_, str>, Vec<Cow<'_, str>>> { in group_entries() function
24 group_entries(panic!()); in main()
H A Dissue-7447.stderr13 LL | group_entries(panic!());
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/
H A Dpydevd_suspended_frames.py106 group_entries = []
140 group_entries.append((scope, grouper, None))
142 return new_lst, group_entries
175 lst, group_entries = self._group_entries(lst, handle_return_values=False)
176 if group_entries:
177 lst = group_entries + lst
277 …lst, group_entries = self._group_entries([(x[0], x[1], None) for x in dict_items(dct) if x[0] != '…
280 for key, val, _ in group_entries:
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydevd_bundle/
H A Dpydevd_suspended_frames.py106 group_entries = []
140 group_entries.append((scope, grouper, None))
142 return new_lst, group_entries
175 lst, group_entries = self._group_entries(lst, handle_return_values=False)
176 if group_entries:
177 lst = group_entries + lst
277 …lst, group_entries = self._group_entries([(x[0], x[1], None) for x in dict_items(dct) if x[0] != '…
280 for key, val, _ in group_entries:
/dports/www/flexget/Flexget-3.2.18/flexget/plugins/filter/
H A Dbest_quality.py6 from flexget.utils.tools import group_entries
47 grouped_entries = group_entries(task.accepted + task.undecided, identified_by)
H A Dtimeframe.py12 from flexget.utils.tools import group_entries, parse_timedelta
68 grouped_entries = group_entries(task.accepted, identified_by)
172 grouped_entries = group_entries(task.accepted, identified_by)
H A Dupgrade.py12 from flexget.utils.tools import group_entries, parse_timedelta
110 grouped_entries = group_entries(task.accepted + task.undecided, identified_by)
191 grouped_entries = group_entries(task.accepted, identified_by)
/dports/cad/uranium/Uranium-3ed9c4de/UM/
H A DPreferences.py127 for group, group_entries in self._parser.items():
134 for key, value in group_entries.items():
143 for group, group_entries in self._preferences.items():
145 for key, pref in group_entries.items():
/dports/lang/ruby26/ruby-2.6.9/lib/rdoc/parser/
H A Dchangelog.rb104 def group_entries entries method in ChangeLog
194 grouped_entries = group_entries entries
/dports/x11/apwal/apwal/src/
H A Dproperty.c194 GtkSizeGroup *group_entries; in property_build_interface() local
202 group_entries = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); in property_build_interface()
225 gtk_size_group_add_widget(group_entries, label_cmdline); in property_build_interface()
259 gtk_size_group_add_widget(group_entries, label_path); in property_build_interface()
294 gtk_size_group_add_widget(group_entries, label_icon); in property_build_interface()
/dports/textproc/py-sphinx/Sphinx-3.5.2/sphinx/environment/adapters/
H A Dindexentries.py30 def create_index(self, builder: Builder, group_entries: bool = True,
120 if group_entries:
/dports/textproc/py-sphinx/Sphinx-3.5.2/build/lib/sphinx/environment/adapters/
H A Dindexentries.py30 def create_index(self, builder: Builder, group_entries: bool = True,
120 if group_entries:
/dports/textproc/py-sphinx/stage/usr/local/lib/python3.8/site-packages/sphinx/environment/adapters/
H A Dindexentries.py30 def create_index(self, builder: Builder, group_entries: bool = True,
120 if group_entries:
/dports/x11/lightdm/lightdm-1.30.0/tests/src/
H A Dlibsystem.c44 static GList *group_entries = NULL; variable
778 g_list_free_full (group_entries, free_group); in load_group_file()
779 group_entries = NULL; in load_group_file()
804 group_entries = g_list_append (group_entries, entry); in load_group_file()
814 for (GList *link = group_entries; link; link = link->next) in getgrnam()
829 for (GList *link = group_entries; link; link = link->next) in getgrgid()
/dports/devel/glib20/glib-2.70.4/glib/tests/
H A Doption-context.c39 static GOptionEntry group_entries[] = { variable
64 g_option_group_add_entries (group, group_entries); in make_options()
1843 GOptionEntry group_entries [] = in triple_dash_test() local
1852 g_option_group_add_entries (group, group_entries); in triple_dash_test()
2090 GOptionEntry group_entries[] = { in test_help() local
2102 g_option_group_add_entries (group, group_entries); in test_help()
2169 GOptionEntry group_entries[] = { in test_help_no_help_options() local
2184 g_option_group_add_entries (group, group_entries); in test_help_no_help_options()
2310 GOptionEntry group_entries[] = { in test_group_parse() local
2324 g_option_group_add_entries (group, group_entries); in test_group_parse()
/dports/lang/ruby26/ruby-2.6.9/test/rdoc/
H A Dtest_rdoc_parser_changelog.rb197 assert_equal expected, parser.group_entries(entries)
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DiscIO/
H A DWIABlob.cpp230 Chunk& group_entries = in Initialize() local
234 if (!group_entries.ReadAll(&m_group_entries)) in Initialize()
1751 std::vector<GroupEntry> group_entries; in Convert() local
1766 group_entries.resize(total_groups); in Convert()
1770 const size_t group_entries_size = group_entries.size() * sizeof(GroupEntry); in Convert()
1828 &group_entries[parameters.group_index], &bytes_written); in Convert()
1944 Compress(compressor.get(), reinterpret_cast<u8*>(group_entries.data()), group_entries_size); in Convert()
2002 header_2.number_of_group_entries = Common::swap32(static_cast<u32>(group_entries.size())); in Convert()
/dports/sysutils/logstalgia/Logstalgia-logstalgia-1.1.2/src/
H A Dsettings.cpp501 ConfEntryList* group_entries = settings->getEntries("group"); in importLogstalgiaSettings() local
503 for(ConfEntry* entry : *group_entries) { in importLogstalgiaSettings()
/dports/textproc/py-sphinxcontrib-qthelp/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/
H A D__init__.py111 index = IndexEntries(self.env).create_index(self, group_entries=False)
/dports/textproc/py-sphinxcontrib-qthelp/stage/usr/local/lib/python3.8/site-packages/sphinxcontrib/qthelp/
H A D__init__.py111 index = IndexEntries(self.env).create_index(self, group_entries=False)
/dports/textproc/py-sphinxcontrib-qthelp/sphinxcontrib-qthelp-1.0.3/build/lib/sphinxcontrib/qthelp/
H A D__init__.py111 index = IndexEntries(self.env).create_index(self, group_entries=False)
/dports/www/flexget/Flexget-3.2.18/flexget/utils/
H A Dtools.py466 def group_entries(entries: Iterable['Entry'], identifier: str) -> Dict[str, List['Entry']]: function
/dports/editors/poke/poke-1.0/pickles/
H A Delf.pk723 var group_entries
727 for (entry in group_entries)

12