Home
last modified time | relevance | path

Searched refs:is_table (Results 1 – 25 of 842) sorted by relevance

12345678910>>...34

/dports/devel/lua-luacheck/luacheck-4e5774169fa/spec/
H A Dconfig_spec.lua31 local conf = assert.is_table(config.load_config())
32 local config_stack = assert.is_table(config.stack_configs({conf}))
35 local nested_conf = assert.is_table(config.load_config())
36 local nested_config_stack = assert.is_table(config.stack_configs({nested_conf}))
45 local empty_config = assert.is_table(config.table_to_config({}))
46 local config_stack = assert.is_table(config.stack_configs({empty_config}))
47 assert.is_table(config_stack)
64 local config_stack = assert.is_table(config.stack_configs({conf}))
69 local nested_config_stack = assert.is_table(config.stack_configs({nested_conf}))
165 local config_stack = assert.is_table(config.stack_configs({conf}))
[all …]
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/
H A Ddb_table_exists.inc.php57 if (empty($is_table)
64 $is_table = $GLOBALS['dbi']->getCachedTableContent(array($db, $table), false); variable
66 if (! $is_table) {
73 $is_table = @$GLOBALS['dbi']->numRows($_result); variable
77 $is_table = false; variable
80 if (! $is_table) {
97 $is_table = ($_result && @$GLOBALS['dbi']->numRows($_result)); variable
101 if (! $is_table) {
107 if (! $is_table) {
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/
H A DDbTableExists.php72 global $containerBuilder, $db, $table, $dbi, $is_table;
74 if (! empty($is_table)
81 $is_table = false;
83 $is_table = $dbi->getCache()->getCachedTableContent([$db, $table], false);
84 if ($is_table) {
93 $is_table = @$dbi->numRows($_result);
97 if ($is_table) {
115 $is_table = ($_result && @$dbi->numRows($_result));
119 if ($is_table) {
/dports/www/luakit-devel/luakit-2.3-20-g4b10e55/tests/async/
H A Dtest_clib_sqlite3.lua10 assert.is_table(sqlite3)
40 assert.is_table(ret)
47 assert.is_table(ret)
51 assert.is_table(ret)
61 assert.is_table(ret)
65 assert.is_table(ret)
102 assert.is_table(ret)
105 assert.is_table(ret[1])
108 assert.is_table(ret[2])
117 assert.is_table(ret)
[all …]
/dports/www/luakit/luakit-2.3/tests/async/
H A Dtest_clib_sqlite3.lua10 assert.is_table(sqlite3)
40 assert.is_table(ret)
47 assert.is_table(ret)
51 assert.is_table(ret)
61 assert.is_table(ret)
65 assert.is_table(ret)
102 assert.is_table(ret)
105 assert.is_table(ret[1])
108 assert.is_table(ret[2])
117 assert.is_table(ret)
[all …]
/dports/textproc/p5-Text-MarkdownTable/Text-MarkdownTable-0.3.1/t/
H A Dsimple.t8 sub is_table(@) {
17 is_table [ ], columns => "foo,bar", '', "empty table";
19 is_table [{a => 'moose', b => '1'},
30 is_table [{ a => 'Hello', b => 'World' }],
38 is_table [{ a => 'Hello', b => 'happy', c => 'World', d => '!' }],
46 is_table [{ aa => 'Hi', b => 'World', c => 'long value' }],
54 is_table [{ aa => 'Hi', b => 'World', c => 'long value' }],
82 is_table [{a => 7},{a => 8}],
86 is_table [{a => 7, b=> 1},{a => 8}],
90 is_table([{foo => 1, bar => 2}], edges => 0, <<TABLE, "edges disabled");
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/public/templates/
H A Dshow_songs.inc.php45 $is_table = $browse->is_grid_view(); variable
53 $cel_song = ($is_table) ? "cel_song" : 'grid_song';
54 $cel_album = ($is_table) ? "cel_album" : 'grid_album';
55 $cel_artist = ($is_table) ? "cel_artist" : 'grid_artist';
56 $cel_tags = ($is_table) ? "cel_tags" : 'grid_tags';
57 $cel_time = ($is_table) ? "cel_time" : 'grid_time';
58 $cel_license = ($is_table) ? "cel_license" : 'grid_license';
59 $cel_counter = ($is_table) ? "cel_counter" : 'grid_counter'; ?>
143 ->setContext('IS_TABLE_VIEW', $is_table)
144 ->setContext('IS_SHOW_TRACK', (!empty($argument) && $is_table))
H A Dshow_artists.inc.php43 $is_table = $browse->is_grid_view(); variable
49 $cel_cover = ($is_table) ? "cel_cover" : 'grid_cover';
50 $cel_album = ($is_table) ? "cel_album" : 'grid_album';
51 $cel_artist = ($is_table) ? "cel_artist" : 'grid_artist';
52 $cel_tags = ($is_table) ? "cel_tags" : 'grid_tags';
53 $cel_time = ($is_table) ? "cel_time" : 'grid_time';
54 $cel_counter = ($is_table) ? "cel_counter" : 'grid_counter'; ?>
H A Dshow_albums.inc.php41 $is_table = $browse->is_grid_view(); variable
55 $cel_cover = ($is_table) ? "cel_cover" : 'grid_cover';
56 $cel_album = ($is_table) ? "cel_album" : 'grid_album';
57 $cel_artist = ($is_table) ? "cel_artist" : 'grid_artist';
58 $cel_tags = ($is_table) ? "cel_tags" : 'grid_tags';
59 $cel_counter = ($is_table) ? "cel_counter" : 'grid_counter';
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/markdown/extensions/
H A Dtables.py46 is_table = False
57 is_table = row0_len > 1
60 if not is_table and row0_len == 1 and self.border:
62 is_table = rows[index].startswith('|')
63 if not is_table:
64 is_table = self.RE_END_BORDER.search(rows[index]) is not None
65 if not is_table:
68 if is_table:
70 is_table = (len(row) == row0_len) and set(''.join(row)) <= set('|:- ')
71 if is_table:
[all …]
/dports/textproc/py-markdown/Markdown-3.3.4/markdown/extensions/
H A Dtables.py44 is_table = False
55 is_table = row0_len > 1
58 if not is_table and row0_len == 1 and self.border:
60 is_table = rows[index].startswith('|')
61 if not is_table:
62 is_table = self.RE_END_BORDER.search(rows[index]) is not None
63 if not is_table:
66 if is_table:
68 is_table = (len(row) == row0_len) and set(''.join(row)) <= set('|:- ')
69 if is_table:
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/ng/
H A Dng_absolute_utils.cc91 bool is_table, in ComputeShrinkToFitSize() argument
99 if (is_table) in ComputeShrinkToFitSize()
125 bool is_table, in ComputeAbsoluteSize() argument
280 if (is_table) { in ComputeAbsoluteSize()
301 is_block_direction, is_table, constrained_size, size_out, in ComputeAbsoluteSize()
408 const bool is_table = node.IsTable(); in ComputeOutOfFlowInlineDimensions() local
409 if (is_table) in ComputeOutOfFlowInlineDimensions()
441 false /* is_block_direction */, is_table, inline_size, in ComputeOutOfFlowInlineDimensions()
475 const bool is_table = node.IsTable(); in ComputeOutOfFlowBlockDimensions() local
476 if (is_table) in ComputeOutOfFlowBlockDimensions()
[all …]
/dports/games/exult/exult-snapshot-v1.7.0.20211128/files/
H A DTable.cc41 if (!is_table(data.get())) { // Not a table file we recognise in index_file()
63 bool Table::is_table(IDataSource *in) { in is_table() function in Table
92 bool Table::is_table(const std::string& fname) { in is_table() function in Table
94 return ds.good() && is_table(&ds); in is_table()
/dports/databases/percona56-server/percona-server-5.6.51-91.0/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/percona56-client/percona-server-5.6.51-91.0/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/mysql57-client/mysql-5.7.36/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/funcs_1/datadict/
H A Dis_table_query.inc7 # The variable $is_table must be set before sourcing this script.
19 eval CREATE VIEW test.v1 AS SELECT * FROM information_schema.$is_table;
20 eval CREATE PROCEDURE test.p1() SELECT * FROM information_schema.$is_table;
25 SELECT COUNT(*) INTO counter FROM information_schema.$is_table;
34 eval SELECT * FROM information_schema.$is_table;

12345678910>>...34