Home
last modified time | relevance | path

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

1234

/dports/devel/py-cli-helpers/cli_helpers-2.2.0/tests/tabular_output/
H A Dtest_tabulate_adapter.py21 output = tabulate_adapter.adapter(iter(data), headers, table_format="psql")
34 output = tabulate_adapter.adapter(iter(data), headers, table_format="psql_unicode")
47 output = tabulate_adapter.adapter(iter(data), headers, table_format="psql")
63 output = tabulate_adapter.adapter(iter(data), headers, table_format="mediawiki")
93 output = tabulate_adapter.adapter(iter(data), headers, table_format="psql")
H A Dtest_delimited_output_adapter.py29 iter(data), headers, table_format="csv-tab", dialect="unix"
40 iter(data), headers, table_format="foobar"
H A Dtest_tsv_output_adapter.py17 output = tsv_output_adapter.adapter(iter(data), headers, table_format="tsv")
/dports/devel/py-molecule/molecule-2.22/molecule/command/
H A Dlist.py114 table_format = 'simple'
117 table_format = format
118 _print_tabulate_data(headers, statuses, table_format)
123 def _print_tabulate_data(headers, data, table_format): # pragma: no cover argument
131 print(tabulate.tabulate(data, headers, tablefmt=table_format))
/dports/databases/py-mycli/mycli-1.23.2/mycli/packages/tabular_output/
H A Dsql_format.py19 def adapter(data, headers, table_format=None, **kwargs): argument
29 if table_format == 'sql-insert':
40 if table_format.startswith('sql-update'):
41 s = table_format.split('-')
/dports/devel/py-cli-helpers/cli_helpers-2.2.0/cli_helpers/tabular_output/
H A Dtabulate_adapter.py178 def adapter(data, headers, table_format=None, preserve_whitespace=False, **kwargs): argument
181 tkwargs = {"tablefmt": table_format}
184 if table_format in supported_markup_formats:
189 tkwargs.update(default_kwargs.get(table_format, {}))
190 if table_format in headless_formats:
H A Ddelimited_output_adapter.py26 def adapter(data, headers, table_format="csv", **kwargs): argument
38 if table_format == "csv":
40 elif table_format == "csv-tab":
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/csuite/wt1965_col_efficiency/
H A Dmain.c120 char table_format[256]; in main() local
136 table_format, sizeof(table_format), "key_format=r,value_format=")); in main()
138 strcat(table_format, "Q"); in main()
142 session, opts->uri, table_format)); in main()
160 testutil_check(session->create(session, opts->uri, table_format)); in main()
/dports/devel/py-pyface/pyface-7.2.0/pyface/ui/qt4/data_view/tests/
H A Dtest_data_view_item_model.py21 from pyface.data_view.data_formats import table_format
48 self.item_model.exporters = [RowExporter(format=table_format)]
61 data = table_format.deserialize(bytes(raw_data))
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/bq/
H A Dtable_formatter.py595 def GetFormatter(table_format): argument
597 if table_format == 'csv':
599 elif table_format == 'pretty':
601 elif table_format == 'json':
603 elif table_format == 'prettyjson':
605 elif table_format == 'sparse':
607 elif table_format == 'none':
610 raise FormatterException('Unknown format: %s' % table_format)
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/utils/fonts/sfnt/
H A Dkern.py35 table_format = version
38 table_format = coverage & 0xff
40 if table_format == 0:
/dports/devel/py-pyface/pyface-7.2.0/examples/data_view/
H A Darray_example.py21 DataViewWidget, IDataViewWidget, table_format, csv_format, npy_format
56 RowExporter(format=table_format),
H A Dcolumn_example.py19 DataViewWidget, IDataViewWidget, table_format, csv_format
146 format=table_format,
/dports/databases/py-pgcli/pgcli-3.2.0/pgcli/
H A Dmain.py206 self.table_format = c["main"]["table_format"]
336 self.table_format = pattern
342 msg += "\nCurrently set to: %s" % self.table_format
925 table_format=self.table_format,
1086 and self.table_format != "csv"
1329 settings = OutputSettings(table_format="ascii", missingval="<null>")
1414 expanded = settings.expanded or settings.table_format == "vertical"
1415 table_format = "vertical" if settings.expanded else settings.table_format
1418 formatter = TabularOutputFormatter(format_name=table_format)
1451 if table_format == "csv":
[all …]
/dports/astro/kstars/kstars-3.5.6/
H A DREADME.ephemerides42table_format=CSV&max_rows=10&format_option=full&query=Generate%20Table&.cgifields=format_option&.c…
55table_format=CSV&max_rows=10&format_option=full&query=Generate%20Table&.cgifields=format_option&.c…
/dports/devel/py-pyface/pyface-7.2.0/pyface/data_view/tests/
H A Dtest_api.py38 table_format,
/dports/science/py-pyteomics/pyteomics-4.5/pyteomics/
H A Dmztab.py638 def __init__(self, path, encoding='utf8', table_format=DATA_FRAME_FORMAT): argument
639 if table_format == DATA_FRAME_FORMAT:
646 self._table_format = table_format
653 def table_format(self): member in MzTab
/dports/devel/py-pyface/pyface-7.2.0/pyface/data_view/
H A Dapi.py22 table_format, text_column_format, text_row_format
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/command_lib/spanner/
H A Dsql.py212 table_format = ','.join('row.slice({0}).join():label="{1}"'.format(i, f)
219 resource_printer.Print(rows, 'table({0})'.format(table_format), out=out)
/dports/devel/py-pyperf/pyperf-2.3.0/pyperf/
H A D_compare.py226 self.table_format = args.table_format
318 if self.table_format == 'rest':
/dports/databases/py-pgcli/pgcli-3.2.0/tests/
H A Dutils.py81 table_format="psql", dcmlfmt="d", floatfmt="g", expanded=expanded
H A Dtest_main.py58 settings = OutputSettings(table_format="psql", dcmlfmt="d", floatfmt="g")
124 table_format="psql", dcmlfmt="d", floatfmt="g", max_width=100
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/rustybuzz-0.1.1/harfbuzz/src/
H A Dhb-ot-cff1-table.hh195 switch (table_format()) { in get_size()
210 switch (table_format()) { in get_code()
220 uint8_t table_format() const in table_format() function
242 switch (table_format()) { in sanitize()
262 switch (table_format()) { in suppEncData()
/dports/games/freeorion/freeorion-0.4.10.2/default/python/AI/
H A DResourcesAI.py159 table_format = "%34s | %17s | %17s | %13s | %13s | %17s |" variable in Reporter
169 …debug(Reporter.table_format, "Planet", "current RP/PP", "old target RP/PP", "current Focus", "newF…
225 … debug(Reporter.table_format, ("---------- " + title + " ------------------------------")[:33],
235 debug(Reporter.table_format,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/
H A Dhb-ot-cff1-table.hh246 switch (table_format ()) in get_size()
258 switch (table_format ()) in get_code()
266 uint8_t table_format () const { return format & 0x7F; } in table_format() function
282 switch (table_format ()) in sanitize()
294 switch (table_format ()) in suppEncData()

1234