Home
last modified time | relevance | path

Searched refs:_schema (Results 1 – 25 of 941) sorted by relevance

12345678910>>...38

/dports/textproc/py-fastavro/fastavro-0.24.2/fastavro/
H A Dschema.py2 from . import _schema
4 from . import _schema_py as _schema # type: ignore unknown
9 schema_name = _schema.schema_name # type: ignore
10 extract_record_type = _schema.extract_record_type # type: ignore
11 extract_logical_type = _schema.extract_logical_type # type: ignore
14 load_schema = _schema.load_schema
15 parse_schema = _schema.parse_schema
16 fullname = _schema.fullname
17 expand_schema = _schema.expand_schema
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/Test/Case/Model/
H A Dmodels.php85 protected $_schema = array( variable in Test
122 protected $_schema = array( variable in TestAlias
158 protected $_schema = array( variable in TestValidate
3879 return $this->_schema;
3924 return $this->_schema;
3992 return $this->_schema;
4052 return $this->_schema;
4099 return $this->_schema;
4160 return $this->_schema;
4221 return $this->_schema;
[all …]
/dports/devel/py-pycerberus/pycerberus-0.6/tests/
H A Dschema_test.py67 schema = self._schema(('id', 'key'))
84 schema = self._schema()
88 schema = self._schema()
94 schema = self._schema()
106 schema = self._schema()
110 schema = self._schema()
114 schema = self._schema(('id', 'key'))
136 schema = self._schema(fields=())
176 schema = self._schema()
210 schema = self._schema()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Management/Automation/
H A DUMPAttributes.cs232 get { return _schema; }
235 private Type _schema; field in System.Management.Instrumentation.ManagementBindAttribute
268 get { return _schema; }
271 private Type _schema; field in System.Management.Instrumentation.ManagementRemoveAttribute
303 get { return _schema; }
306 private Type _schema; field in System.Management.Instrumentation.ManagementEnumeratorAttribute
325 get { return _schema; }
328 private Type _schema; field in System.Management.Instrumentation.ManagementProbeAttribute
363 get { return _schema; }
366 private Type _schema; field in System.Management.Instrumentation.ManagementTaskAttribute
[all …]
/dports/graphics/py-altair/altair-4.1.0/altair/vega/v5/schema/
H A Dcore.py26 _schema = VegaSchema._rootschema variable in Root
46 _schema = {'$ref': '#/defs/autosize'} variable in autosize
215 _schema = {'$ref': '#/defs/axis'} variable in axis
289 _schema = {'$ref': '#/defs/bind'} variable in bind
301 _schema = {'$ref': '#/defs/data'} variable in data
318 _schema = {'$ref': '#/defs/rule'} variable in rule
512 _schema = {'$ref': '#/defs/encode'} variable in encode
646 _schema = {'$ref': '#/defs/mark'} variable in mark
807 _schema = {'$ref': '#/defs/scale'} variable in scale
844 _schema = {'$ref': '#/defs/scope'} variable in scope
[all …]
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v4/schema/
H A Dcore.py32 _schema = VegaLiteSchema._rootschema variable in Root
43 _schema = {'$ref': '#/definitions/Aggregate'} variable in Aggregate
56 _schema = {'$ref': '#/definitions/AggregateOp'} variable in AggregateOp
93 _schema = {'$ref': '#/definitions/Align'} variable in Align
104 _schema = {'$ref': '#/definitions/AnyMark'} variable in AnyMark
880 _schema = {'$ref': '#/definitions/Axis'} variable in Axis
1893 _schema = {'$ref': '#/definitions/Blend'} variable in Blend
1989 _schema = {'$ref': '#/definitions/Color'} variable in Color
4395 _schema = {'$ref': '#/definitions/Data'} variable in Data
4478 _schema = {'$ref': '#/definitions/Day'} variable in Day
[all …]
/dports/devel/p5-Class-Tangram/Class-Tangram-1.57/lib/Class/Tangram/
H A DGenerator.pm42 $self->{_schema} = shift or croak "Must supply schema!";
45 $self->{_base} = $self->{_schema}->{Base} ||
52 $self->{_schema} = ($self->{_schema}->{classes} ||
53 $self->{_schema}->{Schema}->{classes} || {}
54 ) if reftype $self->{_schema} eq "HASH";
57 $self->{_schema} = { @{$self->{_schema}} }
58 if ref $self->{_schema} eq "ARRAY";
62 while (my $class = each %{ $self->{_schema} }) {
182 ${"${class}::schema"} = $self->{_schema}->{$class}
188 each %{ $self->{_schema}->{$class}->{methods} || {} } ) {
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/Entity/Design/EntityStoreSchemaGenerator/
H A DEntityStoreSchemaGenerator.DbObjectKey.cs27 private readonly string _schema; field
44 _schema = schema.ToString(); in DbObjectKey()
48 _schema = null; in DbObjectKey()
61 …Debug.Assert(_catalog != null || _schema != null || _name != null, "This is going to look like an … in DbObjectKey()
79 get { return _schema; }
105 if (key._schema != _schema) in Equals()
127 if (_schema != null) in GetHashCode()
129 hashCode ^= _schema.GetHashCode(); in GetHashCode()
175 return _catalog == null && _schema == null && _name == null;
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/doc/build/orm/
H A Dmapping_columns.rst9 attribute of :class:`_schema.Column`). This behavior can be
18 :class:`_schema.Column` as that of the mapped attribute - specifically
19 it matches the :attr:`_schema.Column.key` attribute on :class:`_schema.Column`, which
20 by default is the same as the :attr:`_schema.Column.name`.
23 :class:`_schema.Column` can be different from either :attr:`_schema.Column.name` or :attr:`_schema.…
34 When mapping to an existing table, the :class:`_schema.Column` object
64 with the :attr:`_schema.Column.key` of our choice::
213 configured by the :paramref:`_schema.Column.default`,
214 :paramref:`_schema.Column.onupdate`, :paramref:`_schema.Column.server_default` and
218 :paramref:`_schema.Column.onupdate`, the :class:`_schema.Column` object is still present
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/ansible/utils/plugins/module_utils/common/
H A Dargspec_validate.py97 self._schema = schema
129 super(MonkeyModule, self).__init__(**self._schema)
165 self._schema = schema
195 doc_obj = yaml.load(self._schema, SafeLoader)
198 self._schema = {"argument_spec": temp_schema}
214 self._schema = dict_merge(self._schema, self._schema_conditionals)
216 self._schema = dict_merge(self._schema, self._other_args)
242 self._schema = dict_merge(
243 self._schema, self._schema_conditionals
247 for k in self._schema.keys()
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/doc/build/tutorial/
H A Dmetadata.rst19 known as :class:`_schema.MetaData`, :class:`_schema.Table`, and :class:`_schema.Column`.
90 to a :class:`_schema.MetaData` collection.
93 assigns itself to a :class:`_schema.Table` object. The :class:`_schema.Column`
95 :class:`_schema.Column` objects in terms of the parent :class:`_schema.Table`
113 :class:`_schema.Table` and :class:`_schema.Column` is at :ref:`metadata_toplevel`.
117 functions of :class:`_schema.Table` which
183 onto a collection of :class:`_schema.Column` and :class:`_schema.Constraint`
191 :meth:`_schema.MetaData.create_all` method on our :class:`_schema.MetaData`,
280 :class:`_schema.Table` objects::
405 :class:`_schema.Table` structure.
[all …]
/dports/graphics/py-altair/altair-4.1.0/altair/vegalite/v3/schema/
H A Dcore.py31 _schema = VegaLiteSchema._rootschema variable in Root
42 _schema = {'$ref': '#/definitions/Aggregate'} variable in Aggregate
55 _schema = {'$ref': '#/definitions/AggregateOp'} variable in AggregateOp
91 _schema = {'$ref': '#/definitions/Align'} variable in Align
102 _schema = {'$ref': '#/definitions/AnyMark'} variable in AnyMark
764 _schema = {'$ref': '#/definitions/Axis'} variable in Axis
1668 _schema = {'$ref': '#/definitions/Color'} variable in Color
3375 _schema = {'$ref': '#/definitions/Data'} variable in Data
3458 _schema = {'$ref': '#/definitions/Day'} variable in Day
3480 _schema = {'$ref': '#/definitions/Dir'} variable in Dir
[all …]
/dports/graphics/py-altair/altair-4.1.0/altair/utils/tests/
H A Dtest_schemapi.py31 _schema = { variable in MySchema
58 _rootschema = MySchema._schema
63 _rootschema = MySchema._schema
67 _schema = { variable in Derived
83 _schema = {"$ref": "#/definitions/Foo"} variable in Foo
84 _rootschema = Derived._schema
88 _schema = {"$ref": "#/definitions/Bar"} variable in Bar
89 _rootschema = Derived._schema
98 _rootschema = Derived._schema
102 _schema = { variable in SimpleArray
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/doc/build/orm/
H A Dmapping_columns.rst11 attribute of :class:`_schema.Column`). This behavior can be
20 :class:`_schema.Column` as that of the mapped attribute - specifically
21 it matches the :attr:`_schema.Column.key` attribute on :class:`_schema.Column`, which
22 by default is the same as the :attr:`_schema.Column.name`.
25 :class:`_schema.Column` can be different from either
26 :attr:`_schema.Column.name` or :attr:`_schema.Column.key` just by assigning
37 When mapping to an existing table, the :class:`_schema.Column` object
220 configured by the :paramref:`_schema.Column.default`,
221 :paramref:`_schema.Column.onupdate`, :paramref:`_schema.Column.server_default` and
225 :paramref:`_schema.Column.onupdate`, the :class:`_schema.Column` object is still present
[all …]
H A Ddeclarative_tables.rst9 includes the ability to generate a mapped :class:`_schema.Table` object
10 at the same time, or to accommodate a :class:`_schema.Table` or other
47 :class:`_schema.Table` object against the :class:`_schema.MetaData` collection
50 collection of this :class:`_schema.Table` object. The :class:`_schema.Column`
54 to produce a :class:`_schema.Table` that is equivalent to::
112 :class:`_schema.Table` constructor.
151 The schema name for a :class:`_schema.Table` as documented at
198 will add the above :class:`_schema.Column` to the :class:`_schema.Table`
223 :class:`_schema.Table` object, or otherwise a :class:`_schema.Table` or other
337 :paramref:`_schema.Table.autoload_with` parameter to the
[all …]
/dports/databases/cego/cego-2.47.11/src/
H A DCegoOutput.cc45 _schema = schema; in CegoOutput()
141 pF = _schema.First(); in headOut()
146 pF = _schema.Next(); in headOut()
164 pF = _schema.Next(); in headOut()
178 pF = _schema.Next(); in headOut()
201 pF = _schema.Next(); in headOut()
214 pF = _schema.Next(); in headOut()
224 pF = _schema.Next(); in headOut()
283 pF2 = _schema.Next(); in rowOut()
362 pF2 = _schema.Next(); in rowOut()
[all …]
H A DCegoContentObject.cc36 _schema = co._schema; in CegoContentObject()
55 _schema = schema; in CegoContentObject()
78 CegoField* pF = _schema.First(); in setTabAlias()
82 pF = _schema.Next(); in setTabAlias()
98 return _schema; in getSchema()
105 CegoField* pF = _schema.First(); in getSchemaSize()
134 pF = _schema.Next(); in getSchemaSize()
175 CegoField* pF = _schema.First(); in encodeBaseContent()
227 pF = _schema.Next(); in encodeBaseContent()
251 _schema.Empty(); in decodeBaseContent()
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/cakephp/database/
H A DSchemaCache.php39 protected $_schema; variable in Cake\\Database\\SchemaCache
48 $this->_schema = $this->getSchema($connection);
61 $tables = $this->_schema->listTables();
65 $this->_schema->describe($table, ['forceRefresh' => true]);
81 $tables = $this->_schema->listTables();
83 $configName = $this->_schema->getCacheMetadata();
86 $key = $this->_schema->cacheKey($table);
/dports/dns/powerdns/pdns-4.5.2/modules/gsqlite3backend/
H A DMakefile.am8 dnssec-3.x_to_3.4.0_schema.sqlite3.sql \
9 nodnssec-3.x_to_3.4.0_schema.sqlite3.sql \
10 3.4.0_to_4.0.0_schema.sqlite3.sql \
11 4.0.0_to_4.2.0_schema.sqlite3.sql \
12 4.2.0_to_4.3.0_schema.sqlite3.sql \
13 4.3.0_to_4.3.1_schema.sqlite3.sql \
/dports/databases/pear-DBA_Relational/DBA_Relational-0.2.0/
H A DTable.php113 var $_schema; variable in DBA_Table
217 $this->_schema = $schema;
224 return $this->_schema;
239 if (isset($this->_schema)) {
240 $schema = $this->_packSchema($this->_schema);
357 return $this->_schema;
477 switch ($this->_schema[$field]['type']) {
570 switch ($this->_schema[$field]['type']) {
684 foreach ($this->_schema as $fieldName=>$fieldMeta) {
926 switch ($this->_schema[$field]['type']) {
[all …]
/dports/www/web2ldap/web2ldap-1.6.27/web2ldap/app/schema/
H A Dviewer.py160 self._schema = app.schema
330 oc_tree = self._schema.tree(ObjectClass)
415 for mr_oid in self._schema.sed[MatchingRule].keys()
442 all_object_classes = self._schema.sed[ObjectClass].keys()
472 name_form_se = self._schema.get_obj(NameForm, nf_oid)
487 at_tree = self._schema.tree(AttributeType)
527 self._schema,
555 for at_oid in self._schema.sed[AttributeType].keys()
556 if self._schema.get_syntax(at_oid) == self._se.oid
617 for at_oid in self._schema.sed[AttributeType]:
[all …]
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/tools/
H A Dsql.py9 _schema = logging.getLogger('odoo.schema') variable
69 _schema.debug("Table %r: created", tablename)
96 _schema.debug("Table %r: added column %r of type %s", tablename, columnname, columntype)
101 _schema.debug("Table %r: renamed column %r to %r", tablename, columnname1, columnname2)
118 _schema.debug("Table %r: column %r changed to type %s", tablename, columnname, columntype)
133 _schema.debug("Table %r: column %r: dropped constraint NOT NULL", tablename, columnname)
163 _schema.debug("Table %r: dropped constraint %r", tablename, constraintname)
171 _schema.debug("Table %r: added foreign key %r references %r(%r) ON DELETE %s",
229 _schema.debug("Table %r: created index %r (%s)", tablename, indexname, args)
237 _schema.debug("Table %r: created index %r (%s)", tablename, indexname, args)
[all …]
/dports/textproc/py-elementpath/elementpath-2.4.0/elementpath/
H A Dschema_proxy.py47 self._schema = schema
72 return XPathSchemaContext(root=self._schema, item=self._base_element)
83 return cast(Optional[XsdElementProtocol], self._schema.find(path, namespaces))
88 return self._schema.xsd_version
99 return self._schema.maps.types.get(qname)
110 return self._schema.maps.attributes.get(qname)
121 return self._schema.maps.elements.get(qname)
132 return self._schema.maps.substitution_groups.get(qname)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/ThirdParty/gyp/pylib/gyp/
H A Dxcodeproj_file.py890 _schema = XCObject._schema.copy() variable in XCHierarchicalElement
1514 _schema = XCObject._schema.copy() variable in XCBuildConfiguration
1548 _schema = XCObject._schema.copy() variable in XCConfigurationList
1659 _schema = XCObject._schema.copy() variable in PBXBuildFile
1707 _schema = XCObject._schema.copy() variable in XCBuildPhase
1877 _schema = XCBuildPhase._schema.copy() variable in PBXShellScriptBuildPhase
1967 _schema = XCObject._schema.copy() variable in PBXBuildRule
2010 _schema = XCObject._schema.copy() variable in PBXContainerItemProxy
2047 _schema = XCObject._schema.copy() variable in PBXTargetDependency
2186 _schema = XCTarget._schema.copy() variable in PBXNativeTarget
[all …]
/dports/net/cjdns/cjdns-cjdns-v21.1/node_build/dependencies/libuv/build/gyp/pylib/gyp/
H A Dxcodeproj_file.py917 _schema = XCObject._schema.copy() variable in XCHierarchicalElement
1578 _schema = XCObject._schema.copy() variable in XCBuildConfiguration
1612 _schema = XCObject._schema.copy() variable in XCConfigurationList
1723 _schema = XCObject._schema.copy() variable in PBXBuildFile
1771 _schema = XCObject._schema.copy() variable in XCBuildPhase
1941 _schema = XCBuildPhase._schema.copy() variable in PBXShellScriptBuildPhase
2094 _schema = XCObject._schema.copy() variable in PBXBuildRule
2137 _schema = XCObject._schema.copy() variable in PBXContainerItemProxy
2174 _schema = XCObject._schema.copy() variable in PBXTargetDependency
2311 _schema = XCTarget._schema.copy() variable in PBXNativeTarget
[all …]

12345678910>>...38