Home
last modified time | relevance | path

Searched refs:dialect (Results 201 – 225 of 10036) sorted by relevance

12345678910>>...402

/dports/audio/festival-freebsoft-utils/festival-freebsoft-utils-0.10/
H A Dvoice-select.scm51 (dialect nil)
73 (dialect (avalue-get dialect-code (cdr spec))))
74 (list language dialect))))
96 (define (select-voice-internal voices dialect gender age variant name)
106 (let* ((dialect-voices (voice-select-subset 'dialect dialect voices))
148 (dialect (voice-property voice 'dialect))
154 (dialect-code (second (assoc dialect dialects))))
158 (define (select-voice language dialect gender age variant name)
160 (dialect* (voice-select-parameter 'dialect dialect))
171 (dialect ,dialect*)
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/sql/
H A Dddl.py25 def _compiler(self, dialect, **kw): argument
29 return dialect.ddl_compiler(dialect, self, **kw)
68 dialect = None variable in DDLElement
219 self.dialect = dialect
728 self.dialect = dialect
823 if not self.dialect.supports_alter:
841 if self.dialect.supports_comments and not self.dialect.inline_comments:
858 if not self.dialect.supports_alter:
879 self.dialect = dialect
991 or self.dialect.has_sequence(
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/sql/
H A Dddl.py25 def _compiler(self, dialect, **kw): argument
29 return dialect.ddl_compiler(dialect, self, **kw)
68 dialect = None variable in DDLElement
218 self.dialect = dialect
720 self.dialect = dialect
815 if not self.dialect.supports_alter:
833 if self.dialect.supports_comments and not self.dialect.inline_comments:
850 if not self.dialect.supports_alter:
871 self.dialect = dialect
979 or self.dialect.has_sequence(
[all …]
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/www/
H A Dchange_hook.py113 def makeHandler(self, dialect): argument
115 if dialect not in self.dialects:
122 if dialect not in self._dialect_handlers:
123 if dialect not in self._plugins:
128 options = self.dialects[dialect]
132 klass = self._plugins.get(dialect)
133 self._dialect_handlers[dialect] = klass(self.master, self.dialects[dialect])
135 return self._dialect_handlers[dialect]
163 dialect = uriRE.group(1)
165 dialect = 'base'
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/module_utils/
H A Dcsv.py28 def initialize_dialect(dialect, **kwargs): argument
41 if dialect not in csv.list_dialects():
42 …aise DialectNotAvailableError("Dialect '%s' is not supported by your version of python." % dialect)
48 csv.register_dialect('custom', dialect, **dialect_params)
51 dialect = 'custom'
53 return dialect
56 def read_csv(data, dialect, fieldnames=None): argument
65 reader = csv.DictReader(fake_fh, fieldnames=fieldnames, dialect=dialect)
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/sql/
H A Dsqltypes.py169 def literal_processor(self, dialect): argument
175 def bind_processor(self, dialect): argument
366 def literal_processor(self, dialect): argument
532 def literal_processor(self, dialect): argument
544 def bind_processor(self, dialect): argument
562 'storage.' % (dialect.name, dialect.driver))
826 def bind_processor(self, dialect): argument
827 if dialect.dbapi is None:
1229 def bind_processor(self, dialect): argument
1325 def bind_processor(self, dialect): argument
[all …]
H A Dddl.py22 def _compiler(self, dialect, **kw): argument
26 return dialect.ddl_compiler(dialect, self, **kw)
64 dialect = None variable in DDLElement
209 self.dialect = dialect
219 if self.dialect != bind.engine.name:
677 self.dialect = dialect
757 if not self.dialect.supports_alter:
778 if not self.dialect.supports_alter:
799 self.dialect = dialect
895 self.dialect.has_sequence(
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/test/dialect/mssql/
H A Dtest_types.py277 dialect = mssql.dialect()
315 dialect = mssql.dialect()
387 dialect = mssql.dialect()
440 dialect = pyodbc.dialect()
444 dialect = pymssql.dialect()
487 eq_(str(Text().compile(dialect=dialect)), "VARCHAR(max)")
492 eq_(str(Text().compile(dialect=dialect)), "TEXT")
511 dialect = mssql.dialect()
547 dialect = mssql.dialect()
1032 col.type.compile(dialect=mssql.dialect()),
[all …]
H A Dtest_reflection.py554 dialect = mssql.dialect()
559 dialect = mssql.dialect()
565 dialect=dialect,
569 dialect = mssql.dialect()
576 dialect=dialect,
617 dialect = mssql.dialect()
629 dialect = mssql.dialect()
635 dialect=dialect,
653 dialect = mssql.dialect()
659 dialect=dialect,
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/
H A Dinsert_dataset.go13 dialect SQLDialect member
26 dialect: GetDialect(d),
53 ds.dialect = GetDialect(dl)
59 return id.dialect
65 cd.dialect = dialect
86 dialect: id.dialect,
149 if sds.dialect != GetDialect("default") && id.Dialect() != sds.dialect {
153 id.dialect.Dialect(), sds.dialect.Dialect(),
157 sds.dialect = id.dialect
241 id.dialect.ToInsertSQL(b, id.GetClauses())
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/engine/
H A Dtest_parseconnect.py22 dialect = None variable
190 eq_(dialect.name, name)
286 global dialect
287 dialect = MyDialect
298 eq_(e.dialect.foobar, 5)
475 global dialect
476 dialect = MockDialect
507 assert isinstance(e.dialect, sqlite.dialect)
550 assert isinstance(e.dialect, sqlite.dialect)
598 assert isinstance(e.dialect, sqlite.dialect)
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/engine/
H A Dtest_parseconnect.py23 dialect = None variable
205 eq_(dialect.name, name)
282 global dialect
283 dialect = MyDialect
294 eq_(e.dialect.foobar, 5)
471 global dialect
472 dialect = MockDialect
503 assert isinstance(e.dialect, sqlite.dialect)
546 assert isinstance(e.dialect, sqlite.dialect)
594 assert isinstance(e.dialect, sqlite.dialect)
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/engine/
H A Ddefault.py490 self.dialect = connection.dialect
509 if dialect.positional:
524 self.dialect = connection.dialect
540 self.dialect.encoding)
579 if dialect.positional:
626 self.dialect = connection.dialect
633 if self.dialect.positional:
670 self.dialect = connection.dialect
723 if self.dialect.positional:
733 self.dialect,
[all …]
H A Dreflection.py111 self.dialect = self.engine.dialect
133 if hasattr(bind.dialect, 'inspector'):
134 return bind.dialect.inspector(bind)
150 return self.dialect.default_schema_name
200 tnames = self.dialect.get_table_names(
238 tnames = self.dialect.get_table_names(
280 return self.dialect.get_temp_table_names(
292 return self.dialect.get_temp_view_names(
334 return self.dialect.get_view_definition(
530 dialect = self.bind.dialect
[all …]
/dports/devel/py-cffi/cffi-1.15.0/demo/
H A Dfastcsv.py8 dialect = csv.get_dialect(dialect_name)
16 d = {'quotechar': ord(dialect.quotechar),
17 'quoting': int(dialect.quoting),
18 'skipinitialspace': int(dialect.skipinitialspace),
19 'delimiter': ord(dialect.delimiter),
20 'doublequote': int(dialect.doublequote),
21 'strict': int(dialect.strict),
23 if dialect.escapechar is not None:
24 d['is_escape_char'] = '== %d' % ord(dialect.escapechar)
/dports/www/grafana8/core/
H A Dfilter.go14 Do(sql string, dialect Dialect, table *Table) string
21 func (s *QuoteFilter) Do(sql string, dialect Dialect, table *Table) string {
22 dummy := dialect.Quote("")
46 dialect Dialect member
49 func NewQuoter(dialect Dialect) *Quoter {
50 return &Quoter{dialect}
54 return q.dialect.Quote(content)
57 func (i *IdFilter) Do(sql string, dialect Dialect, table *Table) string {
58 quoter := NewQuoter(dialect)
91 func (s *SeqFilter) Do(sql string, dialect Dialect, table *Table) string {
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/sql/
H A Dtest_cte.py120 "GROUP BY anon_1.sub_part", dialect=mssql.dialect())
329 dialect.positional = True
339 dialect=dialect)
347 'x', 'y', 'y'), dialect=dialect)
357 'x', 'y'), dialect=dialect)
366 dialect.positional = True
392 checkpositional=('x', 'y', 'z'), dialect=dialect)
401 dialect.positional = True
429 checkpositional=(), dialect=dialect,
485 dialect='oracle'
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/test/
H A Drequirements.py661 config.db.dialect._is_mariadb
1050 and config.db.dialect._is_mariadb,
1511 return config.db.dialect.is_async
1615 and not config.db.dialect._is_mariadb
1624 and config.db.dialect._is_mysql
1631 and config.db.dialect._is_mariadb
1638 and config.db.dialect._is_mariadb
1646 if config.db.dialect._is_mariadb:
1671 not config.db.dialect._is_mariadb
1677 not config.db.dialect._is_mariadb
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/engine/
H A Dbase.py80 self.dialect = engine.dialect
1329 dialect = self.dialect
1376 dialect = self.dialect
1463 dialect = self.dialect
1474 dialect=dialect,
1532 dialect = self.dialect
1577 dialect = self.dialect
1935 dialect=self.dialect,
2758 self.dialect = dialect
3241 dialect = self.dialect
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/sql/
H A Dddl.py22 def _compiler(self, dialect, **kw): argument
26 return dialect.ddl_compiler(dialect, self, **kw)
64 dialect = None variable in DDLElement
209 self.dialect = dialect
219 if self.dialect != bind.engine.name:
677 self.dialect = dialect
760 if not self.dialect.supports_alter:
781 if not self.dialect.supports_alter:
802 self.dialect = dialect
900 self.dialect.has_sequence(
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/engine/
H A Ddefault.py528 self.dialect = connection.dialect
547 if dialect.positional:
562 self.dialect = connection.dialect
580 self.dialect.encoding)
618 if dialect.positional:
665 self.dialect = connection.dialect
672 if self.dialect.positional:
709 self.dialect = connection.dialect
767 if self.dialect.positional:
777 self.dialect,
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/dialect/postgresql/
H A Dtest_dialect.py34 dialect = postgresql.dialect()
67 is_(dialect, postgresql.dialect)
76 eq_(e.dialect.use_native_unicode, False)
83 eq_(e.dialect.use_native_unicode, True)
106 v = testing.db.dialect.psycopg2_version
113 psycopg2 = testing.db.dialect.dbapi
269 def load_dialect_impl(self, dialect): argument
270 if dialect.name == 'postgresql':
298 dialect = postgresql.dialect()
302 dialect = testing.db.dialect
[all …]
/dports/www/py-spyne/spyne-2.13.16/spyne/store/relational/
H A Dutil.py86 dialect = mixed
88 dialect = get_bind(mixed).dialect
89 return dialect.preparer(dialect).quote(ident)
122 if engine.dialect.name == 'postgresql':
126 elif engine.dialect.name == 'mysql':
131 elif engine.dialect.name == 'sqlite':
180 if engine.dialect.name == 'postgresql':
194 elif engine.dialect.name == 'mysql':
201 elif engine.dialect.name == 'sqlite' and database != ':memory:':
233 if engine.dialect.name == 'sqlite' and url.database != ':memory:':
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/dialects/sqlite/
H A Dpysqlite.py418 def bind_processor(self, dialect): argument
419 if dialect.native_datetime:
422 return DATETIME.bind_processor(self, dialect)
424 def result_processor(self, dialect, coltype): argument
425 if dialect.native_datetime:
432 def bind_processor(self, dialect): argument
433 if dialect.native_datetime:
436 return DATE.bind_processor(self, dialect)
438 def result_processor(self, dialect, coltype): argument
439 if dialect.native_datetime:
[all …]
/dports/dns/blocky/blocky-0.17/vendor/gorm.io/gorm/tests/
H A Dtests_all.sh18 for dialect in "${dialects[@]}" ; do
19 if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
21 echo "testing ${dialect}..."
25 GORM_DIALECT=${dialect} go test -race -count=1 ./...
29 GORM_DIALECT=${dialect} go test -race -count=1 ./...
33 GORM_DIALECT=${dialect} go test -race -count=1 -v ./...
37 GORM_DIALECT=${dialect} go test -race -count=1 -v ./...

12345678910>>...402