Home
last modified time | relevance | path

Searched refs:dialect (Results 226 – 250 of 10164) sorted by relevance

12345678910>>...407

/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/engine/
H A Dreflection.py112 self.dialect = self.engine.dialect
134 if hasattr(bind.dialect, "inspector"):
135 return bind.dialect.inspector(bind)
151 return self.dialect.default_schema_name
323 return self.dialect.get_view_names(
369 col_defs = self.dialect.get_columns(
392 return self.dialect.get_pk_constraint(
416 return self.dialect.get_pk_constraint(
451 return self.dialect.get_foreign_keys(
485 return self.dialect.get_indexes(
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/include/mlir/Conversion/
H A DPasses.td96 let summary = "Convert Complex dialect to LLVM dialect";
156 let summary = "Convert GPU dialect to SPIR-V dialect";
225 let summary = "Convert Linalg dialect to SPIR-V dialect";
270 let summary = "Convert SCF dialect to SPIR-V dialect.";
346 let summary = "Convert SPIR-V dialect to LLVM dialect";
424 let summary = "Convert Standard dialect to SPIR-V dialect";
467 Convert operations from the vector dialect into the LLVM IR dialect
489 "dialect.">,
493 "dialect.">,
497 "dialect.">
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/include/mlir/Conversion/
H A DPasses.td96 let summary = "Convert Complex dialect to LLVM dialect";
156 let summary = "Convert GPU dialect to SPIR-V dialect";
225 let summary = "Convert Linalg dialect to SPIR-V dialect";
270 let summary = "Convert SCF dialect to SPIR-V dialect.";
346 let summary = "Convert SPIR-V dialect to LLVM dialect";
424 let summary = "Convert Standard dialect to SPIR-V dialect";
467 Convert operations from the vector dialect into the LLVM IR dialect
489 "dialect.">,
493 "dialect.">,
497 "dialect.">
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.orm/src/main/java/org/springframework/orm/jpa/vendor/
H A DHibernateJpaVendorAdapter.java26 import org.hibernate.dialect.DB2Dialect;
27 import org.hibernate.dialect.DerbyDialect;
28 import org.hibernate.dialect.H2Dialect;
29 import org.hibernate.dialect.HSQLDialect;
30 import org.hibernate.dialect.InformixDialect;
31 import org.hibernate.dialect.MySQLDialect;
32 import org.hibernate.dialect.Oracle9iDialect;
33 import org.hibernate.dialect.PostgreSQLDialect;
34 import org.hibernate.dialect.SQLServerDialect;
35 import org.hibernate.dialect.SybaseDialect;
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/dialects/postgresql/
H A Dpsycopg2.py338 def bind_processor(self, dialect): argument
341 def result_processor(self, dialect, coltype): argument
365 def result_processor(self, dialect, coltype): argument
375 def bind_processor(self, dialect): argument
376 if dialect._has_native_hstore:
382 if dialect._has_native_hstore:
391 if dialect._has_native_json:
400 if dialect._has_native_jsonb:
407 def bind_processor(self, dialect): argument
438 if self.dialect.server_side_cursors:
[all …]
/dports/lang/solidity/solidity_0.8.11/libyul/
H A DDialect.cpp55 static unique_ptr<Dialect> dialect; in yulDeprecated() local
56 static YulStringRepository::ResetCallback callback{[&] { dialect.reset(); }}; in yulDeprecated()
58 if (!dialect) in yulDeprecated()
61 dialect = make_unique<Dialect>(); in yulDeprecated()
62 dialect->defaultType = "u256"_yulstring; in yulDeprecated()
63 dialect->boolType = "bool"_yulstring; in yulDeprecated()
64 dialect->types = { in yulDeprecated()
79 return *dialect; in yulDeprecated()
/dports/misc/xgboost/xgboost-1.5.1/cub/cmake/
H A DCubBuildTargetList.cmake54 _CUB_DIALECT ${dialect}
62 CXX_STANDARD ${dialect}
63 CUDA_STANDARD ${dialect}
104 function(_cub_is_config_valid var_name dialect)
105 if (CUB_ENABLE_DIALECT_CPP${dialect})
130 set(label "cpp${dialect}")
141 # Handle dialect options:
146 set(CUB_ENABLE_DIALECT_CPP${dialect}
151 if (dialect EQUAL ${THRUST_CPP_DIALECT})
162 option(CUB_ENABLE_DIALECT_CPP${dialect}
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/sql/
H A Dtest_types.py181 compiled = type_.compile(dialect=dialect)
1188 dialect=dialects.sqlite.dialect(),
1194 dialect=dialects.postgresql.dialect(),
1226 dialect=dialects.sqlite.dialect(),
1232 dialect=dialects.postgresql.dialect(),
1242 dialect=dialects.sqlite.dialect(),
1248 dialect=dialects.postgresql.dialect(),
1308 dialect=dialects.postgresql.dialect(),
3019 dialect=dialect,
3024 dialect=dialect,
[all …]
/dports/security/vuls/vuls-0.13.7/vendor/github.com/jinzhu/gorm/
H A Ddialect.go64 dialect := reflect.New(reflect.TypeOf(value).Elem()).Interface().(Dialect)
65 dialect.SetDB(db)
66 return dialect
76 func RegisterDialect(name string, dialect Dialect) {
77 dialectsMap[name] = dialect
81 func GetDialect(name string) (dialect Dialect, ok bool) {
82 dialect, ok = dialectsMap[name]
87 var ParseFieldStructForDialect = func(field *StructField, dialect Dialect) (fieldValue reflect.Valu…
104 dataType = gormDataType.GormDataType(dialect)
141 func currentDatabaseAndTable(dialect Dialect, tableName string) (string, string) {
[all …]
/dports/audio/gonic/gonic-0.8.4/vendor/github.com/jinzhu/gorm/
H A Ddialect.go62 dialect := reflect.New(reflect.TypeOf(value).Elem()).Interface().(Dialect)
63 dialect.SetDB(db)
64 return dialect
74 func RegisterDialect(name string, dialect Dialect) {
75 dialectsMap[name] = dialect
79 func GetDialect(name string) (dialect Dialect, ok bool) {
80 dialect, ok = dialectsMap[name]
85 var ParseFieldStructForDialect = func(field *StructField, dialect Dialect) (fieldValue reflect.Valu…
102 dataType = gormDataType.GormDataType(dialect)
139 func currentDatabaseAndTable(dialect Dialect, tableName string) (string, string) {
[all …]
/dports/security/go-cve-dictionary/go-cve-dictionary-0.5.5/vendor/github.com/jinzhu/gorm/
H A Ddialect.go64 dialect := reflect.New(reflect.TypeOf(value).Elem()).Interface().(Dialect)
65 dialect.SetDB(db)
66 return dialect
76 func RegisterDialect(name string, dialect Dialect) {
77 dialectsMap[name] = dialect
81 func GetDialect(name string) (dialect Dialect, ok bool) {
82 dialect, ok = dialectsMap[name]
87 var ParseFieldStructForDialect = func(field *StructField, dialect Dialect) (fieldValue reflect.Valu…
104 dataType = gormDataType.GormDataType(dialect)
141 func currentDatabaseAndTable(dialect Dialect, tableName string) (string, string) {
[all …]
/dports/lang/yap/yap-6.2.2/pl/
H A Ddialect.yap1 :- module(dialect,
9 eraseall('$dialect'),
10 recorda('$dialect',yap,_).
13 eraseall('$dialect'),
14 load_files(library(dialect/Dialect),[silent(true),if(not_loaded)]),
19 recorda('$dialect',Dialect,_).
23 '$do_error'(instantiation_error,(:- dialect(Dialect))).
26 '$do_error'(type_error(Dialect),(:- dialect(Dialect))).
28 exists_source(library(dialect/Dialect)), !.
30 '$do_error'(domain_error(dialect,Dialect),(:- dialect(Dialect))).
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/engine/
H A Dcreate.py573 dialect = dialect_cls(**dialect_args)
576 (cargs, cparams) = dialect.create_connect_args(u)
585 if dialect._has_events:
586 for fn in dialect.dispatch.do_connect:
590 return dialect.connect(*cargs, **cparams)
597 pool_args = {"dialect": dialect}
624 pool._dialect = dialect
655 dialect.__class__.__name__,
664 do_on_connect = dialect.on_connect_url(u)
686 dialect.initialize(c)
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/dialect/mssql/
H A Dtest_types.py223 dialect = mssql.dialect()
261 dialect = mssql.dialect()
333 dialect = mssql.dialect()
380 dialect = mssql.dialect()
384 gen = dialect.ddl_compiler(dialect, schema.CreateTable(date_table))
416 eq_(str(Text().compile(dialect=dialect)), "VARCHAR(max)")
421 eq_(str(Text().compile(dialect=dialect)), "TEXT")
422 eq_(str(UnicodeText().compile(dialect=dialect)), "NTEXT")
423 eq_(str(LargeBinary().compile(dialect=dialect)), "IMAGE")
440 dialect = mssql.dialect()
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/sql/
H A Dtest_types.py163 dialect=dialect
1093 self.variant, "UTYPEONE", dialect=dialects.mysql.dialect()
1103 dialect=dialects.postgresql.dialect(),
1111 self.composite, "UTYPETHREE", dialect=dialects.mysql.dialect()
1221 uni = u.dialect_impl(dialect).bind_processor(dialect)
1234 uni = u.dialect_impl(dialect).bind_processor(dialect)
1244 uni = u.dialect_impl(dialect).bind_processor(dialect)
1258 uni = s.dialect_impl(dialect).bind_processor(dialect)
2725 dialect.type_compiler = SomeTypeCompiler(dialect)
2729 dialect=dialect,
[all …]
/dports/devel/py-frictionless/frictionless-4.18.2/frictionless/plugins/
H A Dexcel.py11 from ..dialect import Dialect
176 dialect = self.resource.dialect
188 if dialect.workbook_cache is not None and fullpath in dialect.workbook_cache:
207 dialect = self.resource.dialect
224 if isinstance(dialect.sheet, str):
225 sheet = book[dialect.sheet]
236 if dialect.fill_merged_cells:
253 cells, dialect.preserve_formatting, dialect.adjust_floating_point_error
263 title = target.dialect.sheet
306 dialect = self.resource.dialect
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/engine/
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(
564 dialect = self.bind.dialect
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/dialects/oracle/
H A Dcx_oracle.py281 def bind_processor(self, dialect): argument
295 if dialect.supports_native_decimal:
324 def bind_processor(self, dialect): argument
338 if not dialect.auto_convert_lobs:
352 def bind_processor(self, dialect): argument
396 def bind_processor(self, dialect): argument
422 self, dialect, coltype)
445 def bind_processor(self, dialect): argument
498 if self.dialect.auto_setinputsizes:
529 if self.dialect.arraysize:
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/engine/
H A Dreflection.py110 self.dialect = self.engine.dialect
133 if hasattr(bind.dialect, "inspector"):
134 return bind.dialect.inspector(bind)
150 return self.dialect.default_schema_name
325 return self.dialect.get_view_names(
390 col_defs = self.dialect.get_columns(
414 return self.dialect.get_pk_constraint(
438 return self.dialect.get_pk_constraint(
473 return self.dialect.get_foreign_keys(
513 return self.dialect.get_indexes(
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/Dialect/SPIRV/
H A DSPIRVDialect.cpp188 static Type parseAndVerifyType(SPIRVDialect const &dialect, in parseAndVerifyType() argument
196 if (&type.getDialect() == &dialect) in parseAndVerifyType()
239 static Type parseArrayType(SPIRVDialect const &dialect, in parseArrayType() argument
262 Type elementType = parseAndVerifyType(dialect, parser); in parseArrayType()
296 static Type parsePointerType(SPIRVDialect const &dialect, in parsePointerType() argument
301 auto pointeeType = parseAndVerifyType(dialect, parser); in parsePointerType()
327 Type elementType = parseAndVerifyType(dialect, parser); in parseRuntimeArrayType()
357 auto ty = parseAndVerifyType(dialect, parser); in parseAndVerify()
428 static Type parseImageType(SPIRVDialect const &dialect, in parseImageType() argument
492 static Type parseStructType(SPIRVDialect const &dialect, in parseStructType() argument
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/dialects/postgresql/
H A Dpsycopg2.py338 def bind_processor(self, dialect): argument
341 def result_processor(self, dialect, coltype): argument
365 def result_processor(self, dialect, coltype): argument
375 def bind_processor(self, dialect): argument
376 if dialect._has_native_hstore:
381 def result_processor(self, dialect, coltype): argument
382 if dialect._has_native_hstore:
391 if dialect._has_native_json:
400 if dialect._has_native_jsonb:
407 def bind_processor(self, dialect): argument
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/dialects/postgresql/
H A Dpsycopg2.py380 def bind_processor(self, dialect): argument
383 def result_processor(self, dialect, coltype): argument
409 def result_processor(self, dialect, coltype): argument
419 def bind_processor(self, dialect): argument
420 if dialect._has_native_hstore:
425 def result_processor(self, dialect, coltype): argument
426 if dialect._has_native_hstore:
434 if dialect._has_native_json:
442 if dialect._has_native_jsonb:
449 def bind_processor(self, dialect): argument
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/dialect/mssql/
H A Dtest_types.py276 dialect = mssql.dialect()
314 dialect = mssql.dialect()
386 dialect = mssql.dialect()
433 dialect = mssql.dialect()
437 gen = dialect.ddl_compiler(dialect, schema.CreateTable(date_table))
469 eq_(str(Text().compile(dialect=dialect)), "VARCHAR(max)")
474 eq_(str(Text().compile(dialect=dialect)), "TEXT")
475 eq_(str(UnicodeText().compile(dialect=dialect)), "NTEXT")
476 eq_(str(LargeBinary().compile(dialect=dialect)), "IMAGE")
493 dialect = mssql.dialect()
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/dialect/postgresql/
H A Dtest_compiler.py59 dialect = postgresql.dialect()
77 dialect=dialect)
89 dialect=dialect)
92 dialect = postgresql.dialect()
108 'mytable.name', dialect=dialect)
114 dialect=dialect)
120 'AS length_1', dialect=dialect)
272 dialect=postgresql.dialect())
276 dialect=postgresql.dialect())
829 dialect=postgresql.dialect()
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/orm/
H A Dtest_defaults.py44 dialect_name = testing.db.dialect.name
52 ).execute_if(dialect="sqlite"),
57 ).execute_if(dialect="mssql"),
64 ).execute_if(dialect="oracle"),
104 ).execute_if(dialect="sqlite"),
109 ).execute_if(dialect="mssql"),
114 ).execute_if(dialect="oracle"),
279 dialect="postgresql",
285 dialect="postgresql",
346 dialect="postgresql",
[all …]

12345678910>>...407