code stringlengths 4 4.48k | docstring stringlengths 1 6.45k | _id stringlengths 24 24 |
|---|---|---|
class CMakeBuildTaskSettings(object): <NEW_LINE> <INDENT> REMEMBER_NAMES = ["build_config", "config"] <NEW_LINE> def __init__(self, **kwargs): <NEW_LINE> <INDENT> self.build_config = None <NEW_LINE> self.config = None <NEW_LINE> self._initialized = False <NEW_LINE> for name, value in kwargs.items(): <NEW_LINE> <INDENT>... | Shared inter-task configuration for CMake build task(s).
.. code-block:: sh
# -- NOTE: Test task should "inherit" the config value of the build task
$ cmake-build build --build-config=Release test
$ cmake-build build --config=Release test | 62599078a17c0f6771d5d88c |
class User(AbstractUser): <NEW_LINE> <INDENT> avatar = models.ImageField(upload_to='avatars/', blank=True, null=True) <NEW_LINE> class Meta(AbstractUser.Meta): <NEW_LINE> <INDENT> swappable = 'AUTH_USER_MODEL' | Users within the Django authentication system are represented by this
model.
Username, password and email are required. Other fields are optional. | 625990788a349b6b43687c17 |
class Solution: <NEW_LINE> <INDENT> def validWordSquare(self, words): <NEW_LINE> <INDENT> if not words: <NEW_LINE> <INDENT> return True <NEW_LINE> <DEDENT> n = len(words) <NEW_LINE> row = 0 <NEW_LINE> while row < n: <NEW_LINE> <INDENT> l = len(words[row]) <NEW_LINE> col = 0 <NEW_LINE> while col < l: <NEW_LINE> <INDENT>... | @param words: a list of string
@return: a boolean | 625990787c178a314d78e8c9 |
class LibraryRedirectPage(base.BaseHandler): <NEW_LINE> <INDENT> URL_PATH_ARGS_SCHEMAS = {} <NEW_LINE> HANDLER_ARGS_SCHEMAS = { 'GET': {} } <NEW_LINE> @acl_decorators.open_access <NEW_LINE> def get(self): <NEW_LINE> <INDENT> self.redirect('/community-library') | An old 'gallery' page that should redirect to the library index page. | 625990781f5feb6acb1645b3 |
class ErrorUnavailable(grpc.RpcError, grpc.Call): <NEW_LINE> <INDENT> pass | ErrorUnavailable exception | 625990785fdd1c0f98e5f93a |
@immutable <NEW_LINE> class Lesson(Serializable): <NEW_LINE> <INDENT> id: int = IntegerField(key="Id", required=False) <NEW_LINE> date: DateTime = ChildField(DateTime, key="Date", required=False) <NEW_LINE> time: TimeSlot = ChildField(TimeSlot, key="TimeSlot", required=False) <NEW_LINE> room: LessonRoom = ChildField(Le... | A lesson.
:var int ~.id: lesson's ID
:var `~vulcan.model.DateTime` ~.date: lesson's date
:var `~vulcan.model.TimeSlot` ~.time: lesson's time
:var `~vulcan.data.LessonRoom` ~.room: classroom, in which is the lesson
:var `~vulcan.model.Teacher` ~.teacher: teacher of the lesson
:var `~vulcan.model.Teacher` ~.second_teach... | 625990785fc7496912d48f48 |
class Command(BaseCommand): <NEW_LINE> <INDENT> def handle(self, *args, **kwargs): <NEW_LINE> <INDENT> clear_scheduled_jobs() <NEW_LINE> register_scheduled_jobs() | Deletes then Re-creates repeated jobs. | 6259907844b2445a339b763c |
class Command(object): <NEW_LINE> <INDENT> def __init__(self, name, args=()): <NEW_LINE> <INDENT> self.name = name <NEW_LINE> if name in globals(): <NEW_LINE> <INDENT> self.function = globals()[name] <NEW_LINE> <DEDENT> elif name in _commands: <NEW_LINE> <INDENT> self.function = _commands[name] <NEW_LINE> <DEDENT> else... | Command class
name: name of the command
function: function of the command | 6259907801c39578d7f14413 |
class Weather(object): <NEW_LINE> <INDENT> def __init__(self, temp, dewpoint, humidity, wind_speed, wind_direction, description, image_url, visibility, windchill, pressure): <NEW_LINE> <INDENT> self.temp = temp <NEW_LINE> self.dewpoint = dewpoint <NEW_LINE> self.humidity = humidity <NEW_LINE> self.wind_speed = wind_spe... | A structured representation the current weather. | 625990787d43ff24874280f3 |
class ProductItemView(BrowserView): <NEW_LINE> <INDENT> pass | Product Item
| 625990784f88993c371f1200 |
class Constraint(object): <NEW_LINE> <INDENT> def __init__(self, *args, **kwargs): <NEW_LINE> <INDENT> if len(args) >= 2: <NEW_LINE> <INDENT> if isinstance(args[0], str): <NEW_LINE> <INDENT> source = pm.ls(args[0]) <NEW_LINE> if len(source) < 1: <NEW_LINE> <INDENT> raise ValueError("More than one object matches name: {... | Base class for a constraint. | 62599078283ffb24f3cf525e |
class RegWriter(object): <NEW_LINE> <INDENT> def __init__(self, dbase): <NEW_LINE> <INDENT> self.dbase = dbase <NEW_LINE> <DEDENT> def save(self, filename): <NEW_LINE> <INDENT> create_backup_file(filename) <NEW_LINE> ofile = open(filename, "w") <NEW_LINE> if self.dbase.array_is_reg: <NEW_LINE> <INDENT> array = "reg" <N... | Writes the XML file. | 625990784527f215b58eb67f |
class Permissions(object): <NEW_LINE> <INDENT> deserialized_types = { 'consent_token': 'str', 'scopes': 'dict(str, ask_sdk_model.scope.Scope)' } <NEW_LINE> attribute_map = { 'consent_token': 'consentToken', 'scopes': 'scopes' } <NEW_LINE> def __init__(self, consent_token=None, scopes=None): <NEW_LINE> <INDENT> self.__d... | Contains a consentToken allowing the skill access to information that the customer has consented to provide, such as address information. Note that the consentToken is deprecated. Use the apiAccessToken available in the context object to determine the user’s permissions.
:param consent_token: A token listing all the ... | 62599078dc8b845886d54f78 |
class TransformerInfo(IdentifiedObject): <NEW_LINE> <INDENT> def __init__(self, Transformers=None, WindingInfos=None, *args, **kw_args): <NEW_LINE> <INDENT> self._Transformers = [] <NEW_LINE> self.Transformers = [] if Transformers is None else Transformers <NEW_LINE> self._WindingInfos = [] <NEW_LINE> self.WindingInfos... | Set of transformer data, from an equipment library.
| 6259907876e4537e8c3f0f3d |
class SslTest(IgniteTest): <NEW_LINE> <INDENT> @cluster(num_nodes=3) <NEW_LINE> @ignite_versions(str(DEV_BRANCH), str(LATEST)) <NEW_LINE> def test_ssl_connection(self, ignite_version): <NEW_LINE> <INDENT> shared_root = get_shared_root_path(self.test_context.globals) <NEW_LINE> server_ssl = SslParams(shared_root, key_st... | Ssl test. | 625990787c178a314d78e8ca |
class Target(object): <NEW_LINE> <INDENT> def __init__(self, target): <NEW_LINE> <INDENT> self.platform = target[0] <NEW_LINE> if len(target) > 1: <NEW_LINE> <INDENT> self.options = target[1:] <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> self.options = None <NEW_LINE> <DEDENT> <DEDENT> def __str__(self): <NEW_LINE> <I... | The type of acl to be rendered from this policy file. | 625990785fc7496912d48f49 |
class ProxyDualSlider(ProxyControl): <NEW_LINE> <INDENT> declaration = ForwardTyped(lambda: DualSlider) <NEW_LINE> def set_minimum(self, minimum): <NEW_LINE> <INDENT> raise NotImplementedError <NEW_LINE> <DEDENT> def set_maximum(self, maximum): <NEW_LINE> <INDENT> raise NotImplementedError <NEW_LINE> <DEDENT> def set_l... | The abstract definition of a proxy Slider object.
| 625990785166f23b2e244d95 |
class CzechAccountNumberFieldAnonymizer(NumericFieldAnonymizer): <NEW_LINE> <INDENT> use_smart_method = False <NEW_LINE> max_anonymization_range = 10000 <NEW_LINE> def __init__(self, *args, use_smart_method=False, **kwargs): <NEW_LINE> <INDENT> self.use_smart_method = use_smart_method <NEW_LINE> super().__init__(*args,... | Anonymization for czech account number.
Setting `use_smart_method=True` retains valid format for encrypted value using this
have significant effect on performance. | 62599078bf627c535bcb2e8d |
class TestPODTemplateFields(PODTemplateIntegrationTest): <NEW_LINE> <INDENT> def test_class_registration(self): <NEW_LINE> <INDENT> from collective.documentgenerator.content.pod_template import PODTemplate <NEW_LINE> self.assertTrue(self.test_podtemplate.__class__ == PODTemplate) <NEW_LINE> <DEDENT> def test_schema_reg... | Test schema fields declaration. | 62599078adb09d7d5dc0bf28 |
class Mod(VBA_Object): <NEW_LINE> <INDENT> def __init__(self, original_str, location, tokens): <NEW_LINE> <INDENT> super(Mod, self).__init__(original_str, location, tokens) <NEW_LINE> self.arg = tokens[0][::2] <NEW_LINE> <DEDENT> def eval(self, context, params=None): <NEW_LINE> <INDENT> return reduce(lambda x, y: x % y... | VBA Modulo using the operator 'Mod' | 625990781b99ca4002290215 |
class LabelModel(nn.Module): <NEW_LINE> <INDENT> def forward(self, *args): <NEW_LINE> <INDENT> raise NotImplementedError <NEW_LINE> <DEDENT> def estimate_label_model(self, *args, config=None): <NEW_LINE> <INDENT> raise NotImplementedError <NEW_LINE> <DEDENT> def get_label_distribution(self, *args): <NEW_LINE> <INDENT> ... | Parent class for all generative label models.
Concrete subclasses should implement at least forward(),
estimate_label_model(), and get_label_distribution(). | 625990797d43ff24874280f4 |
class NumberOfPublicAttributes(Metric): <NEW_LINE> <INDENT> requires = ('Fields',) <NEW_LINE> def visitClass(self, node, *args): <NEW_LINE> <INDENT> node.NumberOfPublicAttributes = sum( 1 for name in node.Fields if not name.startswith('_') ) | Number of public attributes of a (Class)
This is computed by the accesses to self.* that are not methods | 625990793317a56b869bf225 |
class TestLimitHourActionSend(unittest.TestCase): <NEW_LINE> <INDENT> def setUp(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def tearDown(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def testLimitHourActionSend(self): <NEW_LINE> <INDENT> pass | LimitHourActionSend unit test stubs | 62599079009cb60464d02efd |
class WorkerFoundNoSuchLocation(WorkerError): <NEW_LINE> <INDENT> pass | A worker was unable to find a location for the user. | 625990793346ee7daa338340 |
class CopySheetToAnotherSpreadsheetRequest(TypedDict): <NEW_LINE> <INDENT> destinationSpreadsheetId: str | The request to copy a sheet across spreadsheets. | 625990795fcc89381b266e3a |
class FormulaTester(object): <NEW_LINE> <INDENT> def __init__(self, check_code, box_answers, unit_tests): <NEW_LINE> <INDENT> check_code = check_code.replace('from calc import evaluator', 'from latex2dnd.calc import evaluator') <NEW_LINE> self.code = check_code <NEW_LINE> self.env = {} <NEW_LINE> try: <NEW_LINE> <INDEN... | Evaluate python script for DDformula answer checking, and perform unit tests on it. | 625990798e7ae83300eeaa4c |
class ChallengeResource(Resource): <NEW_LINE> <INDENT> body = jose.Field('body', decoder=ChallengeBody.from_json) <NEW_LINE> authzr_uri = jose.Field('authzr_uri') <NEW_LINE> @property <NEW_LINE> def uri(self): <NEW_LINE> <INDENT> return self.body.uri | Challenge Resource.
:ivar acme.messages.ChallengeBody body:
:ivar str authzr_uri: URI found in the 'up' ``Link`` header. | 62599079e1aae11d1e7cf4f0 |
class DrainHandler(org.vertx.java.core.Handler): <NEW_LINE> <INDENT> def __init__(self, handler): <NEW_LINE> <INDENT> self.handler = handler <NEW_LINE> <DEDENT> def handle(self, nothing=None): <NEW_LINE> <INDENT> self.handler() | Drain handler | 625990791f5feb6acb1645b7 |
class ObstructionMap(object): <NEW_LINE> <INDENT> LEFT = 'LEFT' <NEW_LINE> RIGHT = 'RIGHT' <NEW_LINE> TOP = 'TOP' <NEW_LINE> BOTTOM = 'BOTTOM' <NEW_LINE> CENTER = 'CENTER' <NEW_LINE> HIGHPRIORITIES = ['person', 'chair', 'stop sign'] <NEW_LINE> def __init__(self): <NEW_LINE> <INDENT> self.obstructions = defaultdict(list... | TODO: Write down class information
Store objects into a dict?
Or a numpy type of array? Numpy can get things by distance
This class could be our decision maker also. Probably more efficient
to make decisions as things are added
Obstructions
LEFT, RIGHT | 625990795166f23b2e244d97 |
class Container: <NEW_LINE> <INDENT> def __init__(self) -> None: <NEW_LINE> <INDENT> self.contents = [] <NEW_LINE> <DEDENT> def add(self, to_add: object) -> None: <NEW_LINE> <INDENT> self.contents.append(to_add) <NEW_LINE> <DEDENT> def remove(self) -> object: <NEW_LINE> <INDENT> raise NotImplementedError("You must defi... | A class to represent the types of containers such as Stack and Sack. | 62599079bf627c535bcb2e8f |
class ValidationException(Exception): <NEW_LINE> <INDENT> pass | An exception which can be thrown to show the consequences of the
validation function. | 625990793d592f4c4edbc83e |
class DescribeDeviceResponse(AbstractModel): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.Device = None <NEW_LINE> self.RequestId = None <NEW_LINE> <DEDENT> def _deserialize(self, params): <NEW_LINE> <INDENT> if params.get("Device") is not None: <NEW_LINE> <INDENT> self.Device = DeviceInfo() <NEW_LI... | DescribeDevice返回参数结构体
| 625990793346ee7daa338341 |
class OfferingSerializer(serializers.ModelSerializer): <NEW_LINE> <INDENT> parent_course_title = serializers.SerializerMethodField('get_parent_title') <NEW_LINE> calculated_title = serializers.SerializerMethodField('get_calculated_title') <NEW_LINE> parent_course_id = serializers.SerializerMethodField('get_parent_cours... | Serialized representation of a course offering, with calculated fields | 62599079be7bc26dc9252b36 |
class QuestionSubmission(messages.Message): <NEW_LINE> <INDENT> question_urlsafe_key = messages.StringField(1, required=True) <NEW_LINE> selected_answer = messages.MessageField(Answer, 2, required=True) <NEW_LINE> more_info_text = messages.StringField(3) | QuestionSubmission ProtoRPC Message.
Attributes:
question_urlsafe_key: str, The urlsafe ndb.Key for a
survey_models.Survey instace.
selected_answer: Answer, The answer a user selected.
more_info_text: str, the extra info optionally provided for the given
Answer. | 625990797b180e01f3e49d46 |
class UsageRule(_messages.Message): <NEW_LINE> <INDENT> allowUnregisteredCalls = _messages.BooleanField(1) <NEW_LINE> selector = _messages.StringField(2) <NEW_LINE> skipServiceControl = _messages.BooleanField(3) | Usage configuration rules for the service. NOTE: Under development.
Use this rule to configure unregistered calls for the service.
Unregistered calls are calls that do not contain consumer project
identity. (Example: calls that do not contain an API key). By default, API
methods do not allow unregistered calls, and ea... | 625990795fdd1c0f98e5f940 |
class DisplayMessage(Message): <NEW_LINE> <INDENT> def __init__(self, sender_icon, sender_id, t, message_type, text, img_path=None): <NEW_LINE> <INDENT> super(DisplayMessage, self).__init__(sender_icon, sender_id, None, t, message_type) <NEW_LINE> self.text = text <NEW_LINE> self.img_path = img_path | Class for text that will be displayed in messagesLW.
Also store this in Chat.history_message
Member Variables:
text: str content of the message
img_path: if self is for displaying ImageMessage,
then we should display the image in messagesLW. | 6259907991f36d47f2231b70 |
class JSONLDSerializer(JSONSerializer): <NEW_LINE> <INDENT> def __init__(self, context, schema_class=RecordMetadataOnlySchema, expanded=True, replace_refs=False): <NEW_LINE> <INDENT> self.context = context <NEW_LINE> self._expanded = expanded <NEW_LINE> super(JSONLDSerializer, self).__init__( schema_class=schema_class,... | JSON-LD serializer for records.
Note: This serializer is not suitable for serializing large number of
records. | 62599079d486a94d0ba2d97a |
class ReleaseLog(Base): <NEW_LINE> <INDENT> __tablename__='releaselog' <NEW_LINE> id=Column(Integer,primary_key=True,index=True,nullable=False) <NEW_LINE> logdatetime=Column(DateTime(),index=True,nullable=False) <NEW_LINE> release_id=Column(Integer,ForeignKey('release.id'),index=True,nullable=False) <NEW_LINE> release=... | 发布日志表 | 6259907901c39578d7f14416 |
class Conv2dWithNorm(nn.Conv2d): <NEW_LINE> <INDENT> def __init__(self, *args, **kargs): <NEW_LINE> <INDENT> norm = kargs.pop('norm', None) <NEW_LINE> super().__init__(*args, **kargs) <NEW_LINE> self.norm = norm <NEW_LINE> <DEDENT> def forward(self, x): <NEW_LINE> <INDENT> h = super().forward(x) <NEW_LINE> if self.norm... | Conv2d module that also applies given normalization module. | 625990793317a56b869bf227 |
class ConnectionBase: <NEW_LINE> <INDENT> def connect(self,host,port): <NEW_LINE> <INDENT> raise NotImplementedError("Not implemented by subclass") <NEW_LINE> <DEDENT> def handleSocket(self): <NEW_LINE> <INDENT> raise NotImplementedError("Not implemented by subclass") <NEW_LINE> <DEDENT> def prepareHeaders(self,request... | Abstract class
Responsible for sending a request and receiving a response | 625990794c3428357761bc7b |
class TestV1EnvFromSource(unittest.TestCase): <NEW_LINE> <INDENT> def setUp(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def tearDown(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def testV1EnvFromSource(self): <NEW_LINE> <INDENT> pass | V1EnvFromSource unit test stubs | 625990793539df3088ecdc5b |
class Account: <NEW_LINE> <INDENT> def __init__(self, name, balance): <NEW_LINE> <INDENT> self.name = name <NEW_LINE> self.balance = balance <NEW_LINE> print('Thank you' + self.name) <NEW_LINE> <DEDENT> def deposit(self, amount): <NEW_LINE> <INDENT> if self.balance > 0: <NEW_LINE> <INDENT> self.balance += amount <NEW_L... | create a simple bank account that you can withdraw and check balance | 625990793346ee7daa338342 |
class RedisTemporaryInstance(EduidTemporaryInstance): <NEW_LINE> <INDENT> @property <NEW_LINE> def command(self) -> Sequence[str]: <NEW_LINE> <INDENT> return [ 'docker', 'run', '--rm', '-p', '{!s}:6379'.format(self.port), '-v', '{!s}:/data'.format(self.tmpdir), '-e', 'extra_args=--daemonize no --bind 0.0.0.0', 'docker.... | Singleton to manage a temporary Redis instance
Use this for testing purpose only. The instance is automatically destroyed
at the end of the program. | 62599079dc8b845886d54f7e |
class TestState(unittest.TestCase): <NEW_LINE> <INDENT> def test_can_create(self): <NEW_LINE> <INDENT> self.assertIsNotNone(State("")) <NEW_LINE> self.assertIsNotNone(State(1)) <NEW_LINE> <DEDENT> def test_repr(self): <NEW_LINE> <INDENT> state1 = State("ABC") <NEW_LINE> self.assertEqual(str(state1), "ABC") <NEW_LINE> s... | Test the states
| 62599079283ffb24f3cf5265 |
class Command(BaseCommand): <NEW_LINE> <INDENT> def handle(self, *args, **options): <NEW_LINE> <INDENT> sites = FederalSite.objects.filter(slug__isnull=True) <NEW_LINE> slug = '' <NEW_LINE> for site in sites: <NEW_LINE> <INDENT> print(site.name) <NEW_LINE> if site.site_type == 'NPS': <NEW_LINE> <INDENT> slug = nps_slug... | Assign a slug to each FederalSite in the database. | 62599079a17c0f6771d5d890 |
@python_2_unicode_compatible <NEW_LINE> class ContentItemOutput(SafeData): <NEW_LINE> <INDENT> def __init__(self, html, media=None, cacheable=True, cache_timeout=DEFAULT_TIMEOUT): <NEW_LINE> <INDENT> self.html = conditional_escape(html) <NEW_LINE> self.media = media or ImmutableMedia.empty_instance <NEW_LINE> self.cach... | A wrapper with holds the rendered output of a plugin,
This object is returned by the :func:`~fluent_contents.rendering.render_placeholder`
and :func:`ContentPlugin.render() <fluent_contents.extensions.ContentPlugin.render>` method.
Instances can be treated like a string object,
but also allows reading the :attr:`html`... | 625990797c178a314d78e8cd |
class PurchaseFilter(django_filters.FilterSet): <NEW_LINE> <INDENT> number_purchase = CharFilter( field_name='number_purchase', lookup_expr='exact', widget=forms.TextInput( attrs={'class': 'form-control', 'placeholder': 'Número interno'}), ) <NEW_LINE> invoice_num = CharFilter( field_name='invoice_num', lookup_expr='ex... | Purchase filter. | 625990798a349b6b43687c1f |
class RandomSelectionStrategy(SelectionStrategy): <NEW_LINE> <INDENT> def select_round_workers(self, workers, poisoned_workers, kwargs): <NEW_LINE> <INDENT> return random.sample(workers, kwargs["NUM_WORKERS_PER_ROUND"]) | Randomly selects workers out of the list of all workers | 6259907999cbb53fe68328aa |
class memoize(object): <NEW_LINE> <INDENT> def __init__(self, func): <NEW_LINE> <INDENT> self.func = func <NEW_LINE> <DEDENT> def __get__(self, obj, objtype=None): <NEW_LINE> <INDENT> if obj is None: <NEW_LINE> <INDENT> return self.func <NEW_LINE> <DEDENT> return partial(self, obj) <NEW_LINE> <DEDENT> def __call__(self... | cache the return value of a method
This class is meant to be used as a decorator of methods. The return value
from a given method invocation will be cached on the instance whose method
was invoked. All arguments passed to a method decorated with memoize must
be hashable.
If a memoized method is invoked directly on its ... | 62599079ad47b63b2c5a9213 |
class XYPlotLine(Line): <NEW_LINE> <INDENT> def __init__(self, name, **args): <NEW_LINE> <INDENT> Line.__init__(self, name, **args) <NEW_LINE> self.add( setting.Choice('steps', ['off', 'left', 'centre', 'right'], 'off', descr='Plot horizontal steps ' 'instead of a line', usertext='Steps'), 0 ) <NEW_LINE> self.add( sett... | A plot line for plotting data, allowing histogram-steps
to be plotted. | 625990795fc7496912d48f4c |
class MultipleFile(models.Model): <NEW_LINE> <INDENT> class Meta: <NEW_LINE> <INDENT> managed = False | Dummy model to enable us of having an admin options in the
Files section to add multiple files | 62599079a8370b77170f1d92 |
class ModifyVpcEndPointAttributeResponse(AbstractModel): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.RequestId = None <NEW_LINE> <DEDENT> def _deserialize(self, params): <NEW_LINE> <INDENT> self.RequestId = params.get("RequestId") | ModifyVpcEndPointAttribute返回参数结构体
| 62599079bf627c535bcb2e93 |
class IotHubNameAvailabilityInfo(msrest.serialization.Model): <NEW_LINE> <INDENT> _validation = { 'name_available': {'readonly': True}, 'reason': {'readonly': True}, } <NEW_LINE> _attribute_map = { 'name_available': {'key': 'nameAvailable', 'type': 'bool'}, 'reason': {'key': 'reason', 'type': 'str'}, 'message': {'key':... | The properties indicating whether a given IoT hub name is available.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar name_available: The value which indicates whether the provided name is available.
:vartype name_available: bool
:ivar reason: The reason for unavailability... | 6259907916aa5153ce401e9e |
class OperatorAssignmentStmt(Node): <NEW_LINE> <INDENT> op = '' <NEW_LINE> lvalue = None <NEW_LINE> rvalue = None <NEW_LINE> def __init__(self, op: str, lvalue: Node, rvalue: Node) -> None: <NEW_LINE> <INDENT> self.op = op <NEW_LINE> self.lvalue = lvalue <NEW_LINE> self.rvalue = rvalue <NEW_LINE> <DEDENT> def accept(se... | Operator assignment statement such as x += 1 | 62599079442bda511e95da3a |
class SELayer2d(nn.Module): <NEW_LINE> <INDENT> def __init__(self, in_features: int, reduction: int = 16) -> None: <NEW_LINE> <INDENT> super(SELayer2d, self).__init__() <NEW_LINE> reduction_size = max(1, in_features // reduction) <NEW_LINE> self.avg_pool = nn.AdaptiveAvgPool2d(1) <NEW_LINE> self.fc = nn.Sequential( nn.... | Squeeze and Excitation block for image data.
Paper: `Squeeze-and-Excitation Networks <https://arxiv.org/abs/1709.01507>`_ | 625990791b99ca4002290218 |
class Rule(object): <NEW_LINE> <INDENT> def __init__(self, name=None, ts=None): <NEW_LINE> <INDENT> self.name = name <NEW_LINE> self.ts = [] <NEW_LINE> if ts is not None: <NEW_LINE> <INDENT> if type(ts) is list: <NEW_LINE> <INDENT> self.ts.extend(ts) <NEW_LINE> idx = 0 <NEW_LINE> for t in self.ts: <NEW_LINE> <INDENT> t... | The Rule class marks the base class for any rule.
If a rule is to have added features, then this class must
be extended. Currently, the rule traffic generator depends
heavily on this class for generating content. The rule
is the cornerstone of generation. It acts as the ultimate
keeper of all the defined traffic str... | 6259907901c39578d7f14417 |
class BilinearInterpolation: <NEW_LINE> <INDENT> def __init__(self,a,xgrid=None,ygrid=None): <NEW_LINE> <INDENT> raise AssertionError('Use the same function from helper-module, not box; this function is somehow broken.') <NEW_LINE> self.a=a <NEW_LINE> self.nx=a.shape[0] <NEW_LINE> self.ny=a.shape[1] <NEW_LINE> self.xgr... | Perform bilinear interpolation for 2D (xy)-data
For bilinear interpolation, see e.g. Wikipedia. | 6259907992d797404e38983e |
class ExaileMpris(object): <NEW_LINE> <INDENT> def __init__(self, exaile=None): <NEW_LINE> <INDENT> self.exaile = exaile <NEW_LINE> self.mpris_root = None <NEW_LINE> self.mpris_tracklist = None <NEW_LINE> self.mpris_player = None <NEW_LINE> self.bus = None <NEW_LINE> <DEDENT> def release(self): <NEW_LINE> <INDENT> for ... | Controller for various MPRIS objects. | 625990793539df3088ecdc5d |
class AsynchronousSuccessTests(SuccessMixin, unittest.TestCase): <NEW_LINE> <INDENT> pass | Tests for the reporting of successful tests in the synchronous case. | 62599079dc8b845886d54f80 |
class Aggregate(object): <NEW_LINE> <INDENT> def __init__(self, elem, strict=True): <NEW_LINE> <INDENT> assert strict in (True, False) <NEW_LINE> self.strict = strict <NEW_LINE> assert elem.tag == self.__class__.__name__ <NEW_LINE> attributes = elem._flatten() <NEW_LINE> for name, element in self.elements.items(): <NEW... | Base class for Python representation of OFX 'aggregate', i.e. SGML parent
node that contains no data.
Initialize with an instance of ofx.Parser.Element.
This class represents fundamental data aggregates such as transactions,
balances, and securities. Subaggregates have been flattened so that
data-bearing Elements ar... | 6259907963b5f9789fe86b2c |
class SonosTmpSkill(MycroftSkill): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> super(SonosTmpSkill, self).__init__(name="SonosTmpSkill") <NEW_LINE> self.zone_list = list(soco.discover()) <NEW_LINE> LOG.info("Sonos devices found: ") <NEW_LINE> LOG.info(self.zone_list) <NEW_LINE> <DEDENT> @intent_handler_... | Control Sonos speaker devices
Use play/pause to control sonos device. | 62599079f9cc0f698b1c5faf |
class SearchAll(Choreography): <NEW_LINE> <INDENT> def __init__(self, temboo_session): <NEW_LINE> <INDENT> Choreography.__init__(self, temboo_session, '/Library/Zendesk/Search/SearchAll') <NEW_LINE> <DEDENT> def new_input_set(self): <NEW_LINE> <INDENT> return SearchAllInputSet() <NEW_LINE> <DEDENT> def _make_result_set... | Create a new instance of the SearchAll Choreography. A TembooSession object, containing a valid
set of Temboo credentials, must be supplied. | 62599079aad79263cf43017f |
class UrlDeleteView(DeleteView): <NEW_LINE> <INDENT> model = Url <NEW_LINE> template_name = 'pages/url_delete.html' <NEW_LINE> success_url = reverse_lazy('home') <NEW_LINE> success_message = "Url successfully deleted !" <NEW_LINE> def delete(self, request, *args, **kwargs): <NEW_LINE> <INDENT> return super().delete(req... | docstring for UrlDeleteView | 62599079be8e80087fbc0a5b |
class ScoreLessonListView(LoginRequiredMixin, TeacherLessonPermissionsMixin, ScoreJournalMixin, ListView): <NEW_LINE> <INDENT> template_name = 'journal/journal_lesson_list.html' <NEW_LINE> context_object_name = 'scores' <NEW_LINE> permission_denied_message = 'В доступе отказанно' <NEW_LINE> def get_queryset(self): <NEW... | Журнал оценок класса по предмету. | 625990798a349b6b43687c21 |
class TestUpgradeBundleFetchRequest(unittest.TestCase): <NEW_LINE> <INDENT> def setUp(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def tearDown(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def testUpgradeBundleFetchRequest(self): <NEW_LINE> <INDENT> pass | UpgradeBundleFetchRequest unit test stubs | 625990792c8b7c6e89bd51b1 |
class IPKeyDimmer(GenericDimmer, HelperWorking, HelperActionPress): <NEW_LINE> <INDENT> def __init__(self, device_description, proxy, resolveparamsets=False): <NEW_LINE> <INDENT> super().__init__(device_description, proxy, resolveparamsets) <NEW_LINE> self.EVENTNODE.update({"PRESS_SHORT": [1, 2], "PRESS_LONG_RELEASE": ... | IP Dimmer switch that controls level of light brightness. | 62599079bf627c535bcb2e95 |
class ExportVideoByEditorTrackDataRequest(AbstractModel): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.Platform = None <NEW_LINE> self.Definition = None <NEW_LINE> self.ExportDestination = None <NEW_LINE> self.TrackData = None <NEW_LINE> self.AspectRatio = None <NEW_LINE> self.CoverData = None <NEW_... | ExportVideoByEditorTrackData请求参数结构体
| 625990793d592f4c4edbc841 |
class EventType(models.Model): <NEW_LINE> <INDENT> name = models.CharField(_('name'), db_index=True, unique=True, max_length=500) <NEW_LINE> description = models.CharField(_('description'), max_length=5000, null=True, blank=True) <NEW_LINE> last_update = models.DateTimeField(_('last update'), auto_now=True) <NEW_LINE> ... | A type of system event, to be logged | 625990797047854f46340d81 |
class SchemeHomsetFactory(UniqueFactory): <NEW_LINE> <INDENT> def create_key_and_extra_args(self, X, Y, category=None, base=ZZ, check=True, as_point_homset=False): <NEW_LINE> <INDENT> if is_CommutativeRing(X): <NEW_LINE> <INDENT> X = AffineScheme(X) <NEW_LINE> <DEDENT> if is_CommutativeRing(Y): <NEW_LINE> <INDENT> Y = ... | Factory for Hom-sets of schemes.
EXAMPLES::
sage: A2 = AffineSpace(QQ,2)
sage: A3 = AffineSpace(QQ,3)
sage: Hom = A3.Hom(A2)
The Hom-sets are uniquely determined by domain and codomain::
sage: Hom is copy(Hom)
True
sage: Hom is A3.Hom(A2)
True
Here is a tricky point. The Hom-sets are no... | 625990793539df3088ecdc5e |
@attr.s(**config) <NEW_LINE> class UUID(Metadata): <NEW_LINE> <INDENT> value: uuid.UUID = attr.ib(converter=_uuid_convert, metadata={"jsonschema": { "type": "string", "format": "uuid", }}) | A 128-bit number used to identify information, also referred to as a GUID.
e.g.
UUID("654e5cff-817c-4e3d-8b01-47a6f45ae09a") | 625990797d43ff24874280f8 |
class VkMessApp(QtWidgets.QWidget, gui.Ui_VkMessenger): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> super().__init__() <NEW_LINE> self.setupUi(self) <NEW_LINE> self.btn_start.clicked.connect(self.start_scan) <NEW_LINE> self.btn_stop.clicked.connect(self.stop_scan) <NEW_LINE> self.thread = msg_scan.MsgSc... | GUI и управление потоком запросов | 62599079fff4ab517ebcf1df |
class ExampleCatalogEntry(object): <NEW_LINE> <INDENT> def __init__(self, tenant_id, name, endpoint_count=2, idgen=lambda: 1): <NEW_LINE> <INDENT> self.name = name <NEW_LINE> self.type = "compute" <NEW_LINE> self.path_prefix = "/v2/" <NEW_LINE> self.endpoints = [ExampleCatalogEndpoint(tenant_id, n + 1, idgen()) for n i... | Example of a thing that a plugin produces at some phase of its lifecycle;
maybe you have to pass it a tenant ID to get one of these. (Services which
don't want to show up in the catalog won't produce these.) | 625990793317a56b869bf229 |
class SNMP(BaseCommand): <NEW_LINE> <INDENT> def is_enabled(self): <NEW_LINE> <INDENT> return self._gateway.get('/config/snmp/mode') == enum.Mode.Enabled <NEW_LINE> <DEDENT> def enable(self, port=161, community_str=None, username=None, password=None): <NEW_LINE> <INDENT> param = Object() <NEW_LINE> param.mode = enum.Mo... | Edge Filer SNMP Configuration APIs | 62599079adb09d7d5dc0bf30 |
class UndefinedNeverFail(jinja2.Undefined): <NEW_LINE> <INDENT> __add__ = __radd__ = __mul__ = __rmul__ = __div__ = __rdiv__ = __truediv__ = __rtruediv__ = __floordiv__ = __rfloordiv__ = __mod__ = __rmod__ = __pos__ = __neg__ = __call__ = __getitem__ = __lt__ = __le__ = __gt... | A class for Undefined jinja variables.
This is even less strict than the default jinja2.Undefined class,
because it permits things like {{ MY_UNDEFINED_VAR[:2] }} and {{ MY_UNDEFINED_VAR|int }}.
This can mask lots of errors in jinja templates, so it should only be used for a first-pass
parse, when you plan on running a... | 625990794f88993c371f1205 |
class _PaddedFile: <NEW_LINE> <INDENT> def __init__(self, f, prepend=b''): <NEW_LINE> <INDENT> self._buffer = prepend <NEW_LINE> self._length = len(prepend) <NEW_LINE> self.file = f <NEW_LINE> self._read = 0 <NEW_LINE> <DEDENT> def read(self, size): <NEW_LINE> <INDENT> if self._read is None: <NEW_LINE> <INDENT> return ... | Minimal read-only file object that prepends a string to the contents
of an actual file. Shouldn't be used outside of gzip.py, as it lacks
essential functionality. | 625990799c8ee82313040e6b |
class Temperature(Simulation): <NEW_LINE> <INDENT> def __init__(self, per_tick: float, current: float) -> None: <NEW_LINE> <INDENT> self._per_tick = per_tick <NEW_LINE> self._current = current <NEW_LINE> self._target: Optional[float] = None <NEW_LINE> <DEDENT> def tick(self) -> None: <NEW_LINE> <INDENT> if self._target... | A model with a current and target temperature. The current temperate is
always moving towards the target. | 6259907926068e7796d4e306 |
class PygrTestRunner(unittest.TextTestRunner): <NEW_LINE> <INDENT> def _makeResult(self): <NEW_LINE> <INDENT> return PygrTestResult(self.stream, self.descriptions, self.verbosity) | Support running tests that understand SkipTest. | 625990793d592f4c4edbc842 |
class Player(QObject): <NEW_LINE> <INDENT> def __init__(self, timeline): <NEW_LINE> <INDENT> super(Player, self).__init__() <NEW_LINE> self.timeline = timeline <NEW_LINE> self._publishing = set() <NEW_LINE> self._publishers = {} <NEW_LINE> self._publish_clock = False <NEW_LINE> <DEDENT> def is_publishing(self, topic): ... | This object handles publishing messages as the playhead passes over their position | 62599079091ae35668706605 |
class BrokerError(exceptions.Error): <NEW_LINE> <INDENT> pass | All errors raised by this module subclass BrokerError. | 6259907966673b3332c31dc8 |
@dataclass <NEW_LINE> class Graph: <NEW_LINE> <INDENT> nodes: Dict[str, Node] = field(default_factory=dict) <NEW_LINE> def __post_init__(self): <NEW_LINE> <INDENT> self._update_contained_by_relations() <NEW_LINE> <DEDENT> def _update_contained_by_relations(self): <NEW_LINE> <INDENT> for color, node in self.nodes.items(... | A directed graph representing bag colors containment rules. Each node in the graph represents
a bag-color and it has 2 sets of directed edges connecting it to other bag-colors (nodes).
1. Contained colors - Set of outgoing edges connecting the node to bag-colors that are
contained by the bag-color the node ... | 625990794f88993c371f1206 |
class Game: <NEW_LINE> <INDENT> def __init__(self, max_levels): <NEW_LINE> <INDENT> self.over = False <NEW_LINE> self.simon = Simon() <NEW_LINE> self.player = Player() <NEW_LINE> self.level = self.simon.get_level_number() <NEW_LINE> self.max_levels = max_levels <NEW_LINE> self.regular_mode = False <NEW_LINE> self.timeo... | game controller | 6259907956ac1b37e63039c7 |
class QueueHandler(logging.Handler): <NEW_LINE> <INDENT> def __init__(self, queue): <NEW_LINE> <INDENT> logging.Handler.__init__(self) <NEW_LINE> self.queue = queue <NEW_LINE> <DEDENT> def emit(self, record): <NEW_LINE> <INDENT> self.queue.put_nowait(record) | This is a logging handler which sends events to a multiprocessing queue. | 62599079dc8b845886d54f84 |
class FetchNewWorkIds(luigi.Task): <NEW_LINE> <INDENT> site = luigi.Parameter() <NEW_LINE> n_work = luigi.IntParameter() <NEW_LINE> harvest_dts = luigi.DateMinuteParameter() <NEW_LINE> def output(self): <NEW_LINE> <INDENT> wids_filepath = '/tmp/reviewids_%s_%s.txt' % (self.site, self.harvest_dts.... | Fetch n_work NOT yet harvested for site and their associated isbns
Used before harvesting sites where the work-uid is unknown. | 625990792c8b7c6e89bd51b4 |
class Config(object): <NEW_LINE> <INDENT> SECRET_KEY = os.environ.get('CONDUIT_SECRET', 'something') <NEW_LINE> APP_DIR = os.path.abspath(os.path.dirname(__file__)) <NEW_LINE> PROJECT_ROOT = os.path.abspath(os.path.join(APP_DIR, os.pardir)) <NEW_LINE> BCRYPT_LOG_ROUNDS = 13 <NEW_LINE> DEBUG_TB_INTERCEPT_REDIRECTS = Fal... | Base configuration. | 62599079baa26c4b54d50c7b |
class Estimate(EmbeddedDocument): <NEW_LINE> <INDENT> cpu = IntField() <NEW_LINE> memory = StringField() | Estimator function output goes here | 625990791f5feb6acb1645c1 |
class LateTag(models.Model): <NEW_LINE> <INDENT> class Meta: <NEW_LINE> <INDENT> verbose_name = 'omeškanie' <NEW_LINE> verbose_name_plural = 'omeškanie' <NEW_LINE> <DEDENT> name = models.CharField( verbose_name='označenie štítku pre riešiteľa', max_length=50) <NEW_LINE> slug = models.CharField( verbose_name='označenie ... | Slúži na označenie riešenia po termíne.
Každý LateTag vyjadruje druh omeškania (napríklad do 24 hodín) | 62599079aad79263cf430183 |
class SemaphorePool(object): <NEW_LINE> <INDENT> __shared_state = {} <NEW_LINE> def __init__(self, num_sems=5, count=1): <NEW_LINE> <INDENT> self.__dict__ = self.__shared_state <NEW_LINE> if len(self.__shared_state.keys()) == 0: <NEW_LINE> <INDENT> self.sem_dict = {} <NEW_LINE> self.sem_owner = [] <NEW_LINE> for i in r... | A class to simulate a semaphore .
- **Methods**:
- acquire(obj_id) -> (int,None) : Attempt to acquire semaphore, success = value that is not None.
- release(obj_id) -> (int,None) : Attempt to release semaphore, success = value that is not None.
- **Attributes**:
- sem_dict : List of fake semaphores | 62599079097d151d1a2c2a41 |
class ReportedFundamentalsCache: <NEW_LINE> <INDENT> query_values = {} <NEW_LINE> def __init__(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> @staticmethod <NEW_LINE> def _query_key(identifier, statement, period_type, page_number): <NEW_LINE> <INDENT> return identifier + "_" + statement + "_" + str(period_type) + ... | Used to track reported fundamental data queries | 62599079ad47b63b2c5a9219 |
class PythonRun(PythonExecutionTaskBase): <NEW_LINE> <INDENT> @classmethod <NEW_LINE> def register_options(cls, register): <NEW_LINE> <INDENT> super(PythonRun, cls).register_options(register) <NEW_LINE> register('--args', type=list, help='Run with these extra args to main().') <NEW_LINE> <DEDENT> @classmethod <NEW_LINE... | Run a Python executable. | 625990797b180e01f3e49d4a |
class Comic: <NEW_LINE> <INDENT> def __init__(self, name, stock, average): <NEW_LINE> <INDENT> self.name = name <NEW_LINE> self.stock = stock <NEW_LINE> self.average = average <NEW_LINE> comic_list.append(self) <NEW_LINE> <DEDENT> def restock(self, amount): <NEW_LINE> <INDENT> if amount > 0: <NEW_LINE> <INDENT> self.st... | The Comic class stores the details of each comic and has methods to restock, sell and calculate progress towards the daily average sold | 62599079091ae35668706607 |
class Config(object): <NEW_LINE> <INDENT> SQLALCHEMY_TRACK_MODIFICATIONS = False <NEW_LINE> DEBUG = False <NEW_LINE> CSRF_ENABLED = True <NEW_LINE> SECRET_KEY = 'p9Bv<3Eid9%$i01' <NEW_LINE> SQLALCHEMY_DATABASE_URI = os.getenv('DATABASE_URL', 'postgresql://testuser:abc123@localhost:5432/testdb') <NEW_LINE> UPLOAD_FOLDER... | Parent configuration class. | 62599079d486a94d0ba2d982 |
class XmlResult: <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.logger = logging.getLogger("xml") <NEW_LINE> self.logger.setLevel("INFO") <NEW_LINE> self.xmlparser = xml.parsers.expat.ParserCreate() <NEW_LINE> self.xmlparser.StartElementHandler = self._start_element <NEW_LINE> self.xmlparser.EndElemen... | Parses XML results from the mariadb CLI client.
The general schema is:
<resultset statement="sql query">
<row>
<field name="name" xsi:nil="true/false">data if any</field>
</row>
</resultset>
The major hangups are that field can be nil, and field can also be
of arbitrary size. | 6259907932920d7e50bc7a12 |
class UnsupportedCutoffMethodError(BaseException): <NEW_LINE> <INDENT> pass | Exception for a cutoff method that is invalid or not supported by an engine. | 6259907971ff763f4b5e9176 |
class SteamMatchDataFeature(LastNMatchesFeature): <NEW_LINE> <INDENT> def _construct(self, last_date, team_name, n_matches, trait, conn=None,): <NEW_LINE> <INDENT> super(SteamMatchDataFeature, self)._construct(last_date, team_name, n_matches, conn=conn) <NEW_LINE> for match in self.matches: <NEW_LINE> <INDENT> friendly... | Class provides a DRY way of parsing sides on steam API match data. | 6259907901c39578d7f1441a |
class Company(Base): <NEW_LINE> <INDENT> __tablename__ = 'company' <NEW_LINE> id = Column(Integer, primary_key=True) <NEW_LINE> name = Column(String(32)) <NEW_LINE> country = Column(String(32)) <NEW_LINE> image_id = Column(Integer, ForeignKey('image.id')) <NEW_LINE> image = relationship(Image) <NEW_LINE> owner_id = Col... | Base class for companies of developers, publishers and manufacturers. | 625990793346ee7daa338346 |
class GroundStation(object): <NEW_LINE> <INDENT> GROUND_STATION_STATUS_MESSAGE = 1 <NEW_LINE> SERVICE_STATUS_MESSAGE = 2 <NEW_LINE> SERVICE_STATISTICS_MESSAGE = 3 <NEW_LINE> def __init__(self, sic, sac=232): <NEW_LINE> <INDENT> self.sic = sic <NEW_LINE> self.sac = sac <NEW_LINE> <DEDENT> def to_asterix_record(self, mes... | This class provide service messages from a CNS/ATM Ground Station. | 62599079dc8b845886d54f86 |
class History(models.Model): <NEW_LINE> <INDENT> device = models.ForeignKey(Device) <NEW_LINE> date = models.DateField(auto_now=True, db_index=True) <NEW_LINE> timestamp = models.DateTimeField(auto_now=True, db_index=True) <NEW_LINE> action = models.IntegerField(choices=ACTION_TYPES_CHOICES) <NEW_LINE> user = models.Te... | History of a device | 625990792c8b7c6e89bd51b6 |
class AdminUserCourseAddressViewSet(mixins.ListModelMixin, viewsets.GenericViewSet): <NEW_LINE> <INDENT> queryset = UserCourse.objects.filter(user__role='STUDENT') <NEW_LINE> serializer_class = AdminUserCourseAddressSerializer <NEW_LINE> pagination_class = None <NEW_LINE> def get_queryset(self): <NEW_LINE> <INDENT> try... | 学生成绩单寄送地址 | 625990794f6381625f19a192 |
class CsvData: <NEW_LINE> <INDENT> _month_names = cal.month_name[:7] <NEW_LINE> def __init__(self): <NEW_LINE> <INDENT> self._filenames = {} <NEW_LINE> self._csv_files_available = None <NEW_LINE> self.get_filenames() <NEW_LINE> <DEDENT> def get_filenames(self): <NEW_LINE> <INDENT> for f in os.listdir("."): <NEW_LINE> <... | A class for obtaining and filtering raw data from csv files. | 62599079627d3e7fe0e08853 |
class PaymentMethodData(Model): <NEW_LINE> <INDENT> _attribute_map = { 'supported_methods': {'key': 'supportedMethods', 'type': '[str]'}, 'data': {'key': 'data', 'type': 'object'}, } <NEW_LINE> def __init__(self, supported_methods=None, data=None): <NEW_LINE> <INDENT> super(PaymentMethodData, self).__init__() <NEW_LINE... | Indicates a set of supported payment methods and any associated payment
method specific data for those methods.
:param supported_methods: Required sequence of strings containing payment
method identifiers for payment methods that the merchant web site accepts
:type supported_methods: list[str]
:param data: A JSON-ser... | 625990791f5feb6acb1645c3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.