Home
last modified time | relevance | path

Searched refs:SimpleModel (Results 1 – 25 of 40) sorted by relevance

12

/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/vendored/boto/tests/db/
H A Dtest_query.py26 class SimpleModel(Model): class
32 class SubModel(SimpleModel):
44 o = SimpleModel()
51 o2 = SimpleModel()
84 query = SimpleModel.all()
88 query = SimpleModel.all()
94 query = SimpleModel.all()
98 query = SimpleModel.all()
104 query = SimpleModel.all()
110 query = SimpleModel.all()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/db/
H A Dtest_query.py26 class SimpleModel(Model): class
32 class SubModel(SimpleModel):
44 o = SimpleModel()
51 o2 = SimpleModel()
84 query = SimpleModel.all()
88 query = SimpleModel.all()
94 query = SimpleModel.all()
98 query = SimpleModel.all()
104 query = SimpleModel.all()
110 query = SimpleModel.all()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/third_party/boto/tests/db/
H A Dtest_query.py26 class SimpleModel(Model): class
32 class SubModel(SimpleModel):
44 o = SimpleModel()
51 o2 = SimpleModel()
84 query = SimpleModel.all()
88 query = SimpleModel.all()
94 query = SimpleModel.all()
98 query = SimpleModel.all()
104 query = SimpleModel.all()
110 query = SimpleModel.all()
[all …]
/dports/devel/py-boto/boto-2.49.0/tests/db/
H A Dtest_query.py26 class SimpleModel(Model): class
32 class SubModel(SimpleModel):
44 o = SimpleModel()
51 o2 = SimpleModel()
84 query = SimpleModel.all()
88 query = SimpleModel.all()
94 query = SimpleModel.all()
98 query = SimpleModel.all()
104 query = SimpleModel.all()
110 query = SimpleModel.all()
[all …]
/dports/net/termshark/termshark-2.1.1/vendor/github.com/gcla/gowid/widgets/table/
H A Dsimple_model.go58 type SimpleModel struct { struct
68 var _ IBoundedModel = (*SimpleModel)(nil)
122 tbl := &SimpleModel{
151 func (c *SimpleModel) Columns() int { argument
155 func (c *SimpleModel) Rows() int { argument
191 func (c *SimpleModel) HeaderWidgets() []gowid.IWidget { argument
215 SimpleModel: c,
226 SimpleModel: c,
270 func (c *SimpleModel) GetStyle() StyleOptions { argument
295 func (c *SimpleModel) GetData() [][]string { argument
[all …]
/dports/www/py-spyne/spyne-2.13.16/spyne/model/primitive/
H A D_base.py31 from spyne.model import SimpleModel
48 class AnyXml(SimpleModel):
54 class Attributes(SimpleModel.Attributes):
62 class Any(SimpleModel):
75 class AnyHtml(SimpleModel):
90 class AnyDict(SimpleModel):
98 class Attributes(SimpleModel.Attributes):
116 class Boolean(SimpleModel):
119 class Attributes(SimpleModel.Attributes):
H A Ddatetime.py26 from spyne.model import SimpleModel
36 class Time(SimpleModel):
45 class Attributes(SimpleModel.Attributes):
73 return ( SimpleModel.is_default(cls)
83 return SimpleModel.validate_native(cls, value) and (
95 class DateTime(SimpleModel):
112 class Attributes(SimpleModel.Attributes):
188 return ( SimpleModel.is_default(cls)
200 return SimpleModel.validate_native(cls, value) and (
251 return ( SimpleModel.is_default(cls)
[all …]
H A Dstring.py27 from spyne.model._base import SimpleModel
74 class Unicode(SimpleModel):
82 class Attributes(SimpleModel.Attributes):
122 retval = SimpleModel.__new__(cls, ** kwargs)
128 return ( SimpleModel.is_default(cls)
136 return ( SimpleModel.validate_string(cls, value)
143 return (SimpleModel.validate_native(cls, value)
194 return ( SimpleModel.validate_string(cls, value)
242 return SimpleModel.validate_native(cls, value)
H A Dnetwork.py20 from spyne.model._base import SimpleModel
29 return ( SimpleModel.validate_string(cls, value)
57 return SimpleModel.validate_native(cls, value)
86 return SimpleModel.validate_native(cls, value)
129 return SimpleModel.validate_native(cls, value)
157 return SimpleModel.validate_native(cls, value)
H A Dspatial.py27 from spyne.model import SimpleModel
110 retval = SimpleModel.__new__(cls, **kwargs)
139 retval = SimpleModel.__new__(cls, **kwargs)
169 retval = SimpleModel.__new__(cls, **kwargs)
198 retval = SimpleModel.__new__(cls, **kwargs)
227 retval = SimpleModel.__new__(cls, **kwargs)
258 retval = SimpleModel.__new__(cls, **kwargs)
H A Dnumber.py25 from spyne.model import SimpleModel
34 class Decimal(SimpleModel):
50 class Attributes(SimpleModel.Attributes):
105 retval = SimpleModel.__new__(cls, **kwargs)
178 return ( SimpleModel.is_default(cls)
191 return SimpleModel.validate_string(cls, value) and (
197 return SimpleModel.validate_native(cls, value) and (
242 return ( SimpleModel.is_default(cls)
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/geoip2/geoip2/
H A Dmodels.pyi28 class SimpleModel(SimpleEquality): ...
30 class AnonymousIP(SimpleModel):
40 class ASN(SimpleModel):
47 class ConnectionType(SimpleModel):
53 class Domain(SimpleModel):
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/third_party/2and3/geoip2/
H A Dmodels.pyi31 class SimpleModel(SimpleEquality): ...
33 class AnonymousIP(SimpleModel):
43 class ASN(SimpleModel):
50 class ConnectionType(SimpleModel):
56 class Domain(SimpleModel):
/dports/net/termshark/termshark-2.1.1/psmlmodel/
H A Dmodel.go26 *table.SimpleModel anonMember
30 func New(m *table.SimpleModel, st gowid.ICellStyler) *Model { argument
32 SimpleModel: m,
53 hw := c.SimpleModel.HeaderWidget(hws, focus).(*columns.Widget)
87 SimpleModel: c.SimpleModel,
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/
H A DSimpleFormEditorInput.java18 private SimpleModel model;
22 model = new SimpleModel(); in SimpleFormEditorInput()
25 public SimpleModel getModel() { in getModel()
H A DNamedObject.java21 protected SimpleModel model;
26 public void setModel(SimpleModel model) { in setModel()
H A DSimpleModel.java22 public class SimpleModel { class
25 public SimpleModel() { in SimpleModel() method in SimpleModel
/dports/www/py-spyne/spyne-2.13.16/spyne/model/
H A Denum.py20 from spyne.model import SimpleModel
24 class EnumBase(SimpleModel):
35 return ( SimpleModel.validate_string(cls, value)
H A Dbinary.py41 from spyne.model import SimpleModel
51 class ByteArray(SimpleModel):
63 class Attributes(SimpleModel.Attributes):
325 class File(SimpleModel):
337 class Attributes(SimpleModel.Attributes):
/dports/net/py-GeoIP2/GeoIP2-python-4.2.0/geoip2/
H A Dmodels.py323 class SimpleModel(SimpleEquality, metaclass=ABCMeta): class
356 class AnonymousIP(SimpleModel):
436 class ASN(SimpleModel):
483 class ConnectionType(SimpleModel):
523 class Domain(SimpleModel):
/dports/devel/py-pylint-django/pylint-django-2.4.4/pylint_django/tests/input/
H A Dexternal_django_tables2_noerror_meta_class.py11 class SimpleModel(models.Model): class
17 model = SimpleModel
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/model/
H A DSimpleModel.java21 public class SimpleModel { class
22 public SimpleModel() { in SimpleModel() method in SimpleModel
/dports/www/py-spyne/spyne-2.13.16/spyne/interface/xml_schema/
H A Dgenpy.py37 from spyne.model import SimpleModel
96 if issubclass(t, SimpleModel):
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/nestedselection/
H A DTestMasterDetail.java38 import org.eclipse.jface.examples.databinding.model.SimpleModel;
217 SimpleModel model = new SimpleModel();
223 …ViewerSupport.bind(peopleViewer, new WritableList<>(realm, model.getPersonList(), SimpleModel.clas… in bind()
/dports/devel/py-transitions/transitions-0.8.8/tests/
H A Dtest_markup.py27 class SimpleModel(object): class
114 model1 = SimpleModel()
119 self.assertIsInstance(model2, SimpleModel)

12