Home
last modified time | relevance | path

Searched refs:dialect (Results 476 – 500 of 10804) sorted by relevance

1...<<11121314151617181920>>...433

/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/include/mlir/IR/
H A DTypeSupport.h38 template <typename T> static AbstractType get(Dialect &dialect) { in get() argument
39 return AbstractType(dialect, T::getInterfaceMap(), T::getTypeID()); in get()
46 static AbstractType get(Dialect &dialect, detail::InterfaceMap &&interfaceMap, in get() argument
48 return AbstractType(dialect, std::move(interfaceMap), typeID); in get()
52 Dialect &getDialect() const { return const_cast<Dialect &>(dialect); } in getDialect()
70 AbstractType(Dialect &dialect, detail::InterfaceMap &&interfaceMap, in AbstractType() argument
72 : dialect(dialect), interfaceMap(std::move(interfaceMap)), in AbstractType()
86 const Dialect &dialect; variable
/dports/www/p5-HTML-WikiConverter/HTML-WikiConverter-0.68/lib/HTML/WikiConverter/
H A DWebApp.pm143 my $dialect = $q->param('dialect') or die "need dialect";
157 dialect => $dialect,
240 dialect => $q->param('dialect') || '',
275 foreach my $dialect ( HTML::WikiConverter->available_dialects ) {
276 next if $seen{$dialect}++;
277 push @dialects, { dialect => $dialect, selected => ( $selected_dialect eq $dialect ) };
/dports/databases/py-alembic14/alembic-1.4.3/tests/
H A Dtest_bulk_insert.py21 def _table_fixture(self, dialect, as_sql): argument
22 context = op_fixture(dialect, as_sql)
31 def _big_t_table_fixture(self, dialect, as_sql): argument
32 context = op_fixture(dialect, as_sql)
42 def _test_bulk_insert(self, dialect, as_sql): argument
43 context, t1 = self._table_fixture(dialect, as_sql)
56 def _test_bulk_insert_single(self, dialect, as_sql): argument
57 context, t1 = self._table_fixture(dialect, as_sql)
62 def _test_bulk_insert_single_bigt(self, dialect, as_sql): argument
63 context, t1 = self._big_t_table_fixture(dialect, as_sql)
/dports/www/writefreely/writefreely-0.13.1/db/
H A Dcreate.go68 func (d ColumnType) Format(dialect DialectType, size OptionalInt) (string, error) {
69 if dialect != DialectMySQL && dialect != DialectSQLite {
70 return "", fmt.Errorf("unsupported column type %d for dialect %d and size %v", d, dialect, size)
75 if dialect == DialectSQLite {
86 if dialect == DialectSQLite {
97 if dialect == DialectSQLite {
108 if dialect == DialectSQLite {
119 if dialect == DialectSQLite {
129 return "", fmt.Errorf("unsupported column type %d for dialect %d and size %v", d, dialect, size)
/dports/databases/py-sqlalchemy-utils/SQLAlchemy-Utils-0.37.9/tests/
H A Dtest_expressions.py12 query.compile(dialect=postgresql.dialect())
47 dialect=postgresql.dialect()
59 dialect=postgresql.dialect()
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/sql/
H A Dtest_functions.py60 func.current_timestamp(), "CURRENT_TIMESTAMP", dialect=dialect
62 self.assert_compile(func.localtime(), "LOCALTIME", dialect=dialect)
65 func.nosuchfunction(), "nosuchfunction", dialect=dialect
69 func.nosuchfunction(), "nosuchfunction()", dialect=dialect
84 dialect=dialect,
98 for ret, dialect in [
101 ("now()", mysql.dialect()),
104 self.assert_compile(func.now(), ret, dialect=dialect)
110 for ret, dialect in [
113 ("rand()", mysql.dialect()),
[all …]
/dports/devel/spark/spark-2.1.1/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/
H A DJDBCRDD.scala57 val dialect = JdbcDialects.get(url) constant
60 val statement = conn.prepareStatement(dialect.getSchemaQuery(table))
64 JdbcUtils.getSchema(rs, dialect)
107 def compileFilter(f: Filter, dialect: JdbcDialect): Option[String] = {
108 def quote(colName: String): String = dialect.quoteIdentifier(colName)
128 case Not(f) => compileFilter(f, dialect).map(p => s"(NOT ($p))").getOrElse(null)
133 val or = Seq(f1, f2).flatMap(compileFilter(_, dialect))
140 val and = Seq(f1, f2).flatMap(compileFilter(_, dialect))
171 val dialect = JdbcDialects.get(url) constant
287 val dialect = JdbcDialects.get(url) constant
[all …]
/dports/databases/py-sqlalchemy-utils/SQLAlchemy-Utils-0.37.9/sqlalchemy_utils/types/enriched_datetime/
H A Denriched_datetime_type.py40 def process_bind_param(self, value, dialect): argument
41 return self.dt_object.process_bind_param(self.impl, value, dialect)
43 def process_result_value(self, value, dialect): argument
44 return self.dt_object.process_result_value(self.impl, value, dialect)
46 def process_literal_param(self, value, dialect): argument
H A Denriched_date_type.py39 def process_bind_param(self, value, dialect): argument
40 return self.date_object.process_bind_param(self.impl, value, dialect)
42 def process_result_value(self, value, dialect): argument
43 return self.date_object.process_result_value(self.impl, value, dialect)
45 def process_literal_param(self, value, dialect): argument
/dports/devel/libgpkg/luciad-libgpkg-c56e3708453e/gpkg/
H A Dwkb.h49 wkb_dialect dialect; member
57 int wkb_writer_init(wkb_writer_t *writer, wkb_dialect dialect);
96 int wkb_read_geometry(binstream_t *stream, wkb_dialect dialect, geom_consumer_t const *consumer, er…
107 int wkb_read_header(binstream_t *stream, wkb_dialect dialect, geom_header_t *header, error_t *error…
118 int wkb_fill_envelope(binstream_t *stream, wkb_dialect dialect, geom_envelope_t *envelope, error_t …
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/dialect/postgresql/
H A Dtest_types.py434 dialect = e.dialect
1321 dialect = postgresql.dialect()
1329 dialect = postgresql.dialect()
1337 dialect = postgresql.dialect()
1350 dialect = postgresql.dialect()
1359 dialect = postgresql.dialect()
1773 dialect = postgresql.dialect()
2042 dialect = postgresql.dialect()
2051 dialect = postgresql.dialect()
2060 dialect = postgresql.dialect()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Conversion/GPUCommon/
H A DIndexIntrinsicsOpLowering.h49 auto dialect = typeConverter.getDialect(); in matchAndRewrite() local
53 newOp = rewriter.create<XOp>(loc, LLVM::LLVMType::getInt32Ty(dialect)); in matchAndRewrite()
56 newOp = rewriter.create<YOp>(loc, LLVM::LLVMType::getInt32Ty(dialect)); in matchAndRewrite()
59 newOp = rewriter.create<ZOp>(loc, LLVM::LLVMType::getInt32Ty(dialect)); in matchAndRewrite()
67 loc, LLVM::LLVMType::getIntNTy(dialect, indexBitwidth), newOp); in matchAndRewrite()
70 loc, LLVM::LLVMType::getIntNTy(dialect, indexBitwidth), newOp); in matchAndRewrite()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Description/
H A DMetadataSection.cs48 string dialect; field in System.ServiceModel.Description.MetadataSection
64 public MetadataSection (string dialect, string identifier, object metadata) in MetadataSection() argument
66 this.dialect = dialect; in MetadataSection()
91 get { return dialect; }
92 set { dialect = value; }
/dports/net-mgmt/py-pysmi/pysmi-0.3.4/docs/source/pysmi/parser/smi/
H A Ddialect.rst2 .. _parser.smi.dialect:
10 * *pysmi.parser.dialect.smiV2* - canonical SMIv2 grammar
11 * *pysmi.parser.dialect.smiV1* - canonical SMIv1 grammar
12 * *pysmi.parser.dialect.smiV1Relaxed* - relaxed SMIv1 grammar allowing some deviations
18 from pysmi.parser.dialect import smiV1
31 from pysmi.parser.dialect import smiV1Relaxed
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/include/mlir/Dialect/Tensor/IR/
H A DTensorBase.td1 //===- TensorBase.td - Base definitions for tensor dialect -*- tablegen -*-===//
19 The `tensor` dialect is intended to hold core tensor creation and
21 other dialect or domain abstraction. The primary smoke test of this is ops
32 - representing shapes in the `shape` dialect, which consist of small
38 Thus, for the `tensor` dialect, we prefer for now to constrain the
40 in the future, the `tensor` dialect’s scope may be broadened through a
44 dialect), and does not live in this dialect.
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/include/mlir/Dialect/Tensor/IR/
H A DTensorBase.td1 //===- TensorBase.td - Base definitions for tensor dialect -*- tablegen -*-===//
19 The `tensor` dialect is intended to hold core tensor creation and
21 other dialect or domain abstraction. The primary smoke test of this is ops
32 - representing shapes in the `shape` dialect, which consist of small
38 Thus, for the `tensor` dialect, we prefer for now to constrain the
40 in the future, the `tensor` dialect’s scope may be broadened through a
44 dialect), and does not live in this dialect.
/dports/games/anki/anki-2.1.16/anki/importing/
H A Dcsvfile.py34 reader = csv.reader(self.data, self.dialect, doublequote=True)
68 self.dialect = None
80 if not self.dialect and not self.delimiter:
86 self.dialect = None
90 self.dialect = sniffer.sniff("\n".join(self.data[:10]),
94 self.dialect = sniffer.sniff(self.data[0], self.patterns)
97 if self.dialect:
99 reader = csv.reader(self.data, self.dialect, doublequote=True)
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/include/mlir/Dialect/Tensor/IR/
H A DTensorBase.td1 //===- TensorBase.td - Base definitions for tensor dialect -*- tablegen -*-===//
19 The `tensor` dialect is intended to hold core tensor creation and
21 other dialect or domain abstraction. The primary smoke test of this is ops
32 - representing shapes in the `shape` dialect, which consist of small
38 Thus, for the `tensor` dialect, we prefer for now to constrain the
40 in the future, the `tensor` dialect’s scope may be broadened through a
44 dialect), and does not live in this dialect.
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/include/mlir/Dialect/Tensor/IR/
H A DTensorBase.td1 //===- TensorBase.td - Base definitions for tensor dialect -*- tablegen -*-===//
19 The `tensor` dialect is intended to hold core tensor creation and
21 other dialect or domain abstraction. The primary smoke test of this is ops
32 - representing shapes in the `shape` dialect, which consist of small
38 Thus, for the `tensor` dialect, we prefer for now to constrain the
40 in the future, the `tensor` dialect’s scope may be broadened through a
44 dialect), and does not live in this dialect.
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/test/engine/
H A Dtest_ddlevents.py502 testing.db.dialect, None
693 engine.dialect
705 dialect = self.mock_engine().dialect
706 self.assert_compile(ddl.against(sane_alone), "-t-t", dialect=dialect)
708 ddl.against(sane_schema), "s-t-s.t", dialect=dialect
711 ddl.against(insane_alone), '-"t t"-"t t"', dialect=dialect
716 dialect=dialect,
726 ddl.against(sane_alone), "S S-T T-t-b", dialect=dialect
729 ddl.against(sane_schema), "S S-T T-s.t-b", dialect=dialect
732 ddl.against(insane_alone), 'S S-T T-"t t"-b', dialect=dialect
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/engine/
H A Dtest_ddlevents.py602 testing.db.dialect, None
638 engine.dialect
650 dialect = self.mock_engine().dialect
651 self.assert_compile(ddl.against(sane_alone), "-t-t", dialect=dialect)
653 ddl.against(sane_schema), "s-t-s.t", dialect=dialect
656 ddl.against(insane_alone), '-"t t"-"t t"', dialect=dialect
661 dialect=dialect,
671 ddl.against(sane_alone), "S S-T T-t-b", dialect=dialect
674 ddl.against(sane_schema), "S S-T T-s.t-b", dialect=dialect
677 ddl.against(insane_alone), 'S S-T T-"t t"-b', dialect=dialect
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/
H A DREADME.dialects.rst16 been enhanced, so that a dialect can also be "plugged in" at runtime.
18 On the testing side, SQLAlchemy as of 0.8 also includes a "dialect
22 dialect-sensitive functionality. The "dialect compliance suite" should
35 sqlalchemy-<dialect>/
39 sqlalchemy_<dialect>/
51 An example of this structure can be seen in the Access dialect at
57 dialect to be usable from create_engine(), e.g.::
155 regarding database and dialect capabilities are set up.
196 dialect take place::
231 The third-party dialect can be distributed like any other Python
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/
H A DREADME.dialects.rst16 been enhanced, so that a dialect can also be "plugged in" at runtime.
18 On the testing side, SQLAlchemy as of 0.8 also includes a "dialect
22 dialect-sensitive functionality. The "dialect compliance suite" should
35 sqlalchemy-<dialect>/
38 sqlalchemy_<dialect>/
50 An example of this structure can be seen in the Access dialect at
56 dialect to be usable from create_engine(), e.g.::
118 regarding database and dialect capabilities are set up.
159 dialect take place::
194 The third-party dialect can be distributed like any other Python
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/
H A DREADME.dialects.rst16 been enhanced, so that a dialect can also be "plugged in" at runtime.
18 On the testing side, SQLAlchemy as of 0.8 also includes a "dialect
22 dialect-sensitive functionality. The "dialect compliance suite" should
35 sqlalchemy-<dialect>/
38 sqlalchemy_<dialect>/
50 An example of this structure can be seen in the Access dialect at
56 dialect to be usable from create_engine(), e.g.::
118 regarding database and dialect capabilities are set up.
159 dialect take place::
194 The third-party dialect can be distributed like any other Python
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/
H A DREADME.dialects.rst16 been enhanced, so that a dialect can also be "plugged in" at runtime.
18 On the testing side, SQLAlchemy as of 0.8 also includes a "dialect
22 dialect-sensitive functionality. The "dialect compliance suite" should
33 sqlalchemy-<dialect>/
36 sqlalchemy_<dialect>/
48 An example of this structure can be seen in the Access dialect at
54 dialect to be usable from create_engine(), e.g.::
96 script can also be used to install your third party dialect into
114 regarding database and dialect capabilities are set up.
189 The third-party dialect can be distributed like any other Python
[all …]

1...<<11121314151617181920>>...433