code stringlengths 4 4.48k | docstring stringlengths 1 6.45k | _id stringlengths 24 24 |
|---|---|---|
class UserViewSet(viewsets.ReadOnlyModelViewSet): <NEW_LINE> <INDENT> queryset = User.objects.all() <NEW_LINE> serializer_class = UserSerializer | This endpoint presents the users in the system.
As you can see, the collection of snippet instances owned by a user are
serialized using a hyperlinked representation. | 62598fbd5fc7496912d48365 |
class Calculator(Process): <NEW_LINE> <INDENT> def __init__(self,userdata_queue, export_queue): <NEW_LINE> <INDENT> super().__init__() <NEW_LINE> self.userdata_queue = userdata_queue <NEW_LINE> self.export_queue = export_queue <NEW_LINE> <DEDENT> @staticmethod <NEW_LINE> def calculator_social_security(income): <NEW_LIN... | 计算结果类 | 62598fbdfff4ab517ebcd9b8 |
class ReflexAgent(Agent): <NEW_LINE> <INDENT> def getAction(self, gameState): <NEW_LINE> <INDENT> legalMoves = gameState.getLegalActions() <NEW_LINE> scores = [self.evaluationFunction(gameState, action) for action in legalMoves] <NEW_LINE> bestScore = max(scores) <NEW_LINE> bestIndices = [index for index in range(len(s... | A reflex agent chooses an action at each choice point by examining
its alternatives via a state evaluation function.
The code below is provided as a guide. You are welcome to change
it in any way you see fit, so long as you don't touch our method
headers. | 62598fbd956e5f7376df5768 |
class TestRGBLuminance(unittest.TestCase): <NEW_LINE> <INDENT> def test_RGB_luminance(self): <NEW_LINE> <INDENT> self.assertAlmostEqual( RGB_luminance( np.array([50.0, 50.0, 50.0]), np.array([0.73470, 0.26530, 0.00000, 1.00000, 0.00010, -0.07700]), np.array([0.32168, 0.33767])), 50., places=7) <NEW_LINE> self.assertAlm... | Defines :func:`colour.models.rgb.derivation.RGB_luminance` definition
unit tests methods. | 62598fbd99fddb7c1ca62ed6 |
class ButtStockModel(models.Model): <NEW_LINE> <INDENT> date = models.DateField('日期', default=timezone.now, blank=False) <NEW_LINE> day_price = models.FloatField('成交单价', blank=False, null=False) <NEW_LINE> amount = models.FloatField('金额', blank=True, null=True) <NEW_LINE> item_id = models.ForeignKey( "RegularInputItems... | 烟蒂股 | 62598fbd3d592f4c4edbb094 |
class SolutionMaxSubarray: <NEW_LINE> <INDENT> def maxSubArray(self, nums): <NEW_LINE> <INDENT> if (len(nums) == 0): <NEW_LINE> <INDENT> return 0 <NEW_LINE> <DEDENT> prevMax = maxSum = nums[0] <NEW_LINE> i = 1 <NEW_LINE> while (i < len(nums)): <NEW_LINE> <INDENT> if (prevMax + nums[i] > 0): <NEW_LINE> <INDENT> prevMax ... | @param nums: A list of integers
@return: An integer denote the sum of maximum subarray | 62598fbdf9cc0f698b1c53b9 |
class Solution: <NEW_LINE> <INDENT> def reverse(self, head): <NEW_LINE> <INDENT> prev = None <NEW_LINE> while (head): <NEW_LINE> <INDENT> tmp = head.next <NEW_LINE> head.next = prev <NEW_LINE> prev = head <NEW_LINE> if (tmp): <NEW_LINE> <INDENT> head = tmp <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> return head | @param head: The first node of the linked list.
@return: You should return the head of the reversed linked list.
Reverse it in-place. | 62598fbd7b180e01f3e4913a |
class RazerBlackWidowChromaTournamentEdition(_RippleKeyboard): <NEW_LINE> <INDENT> EVENT_FILE_REGEX = re.compile(r'.*BlackWidow_Tournament_Edition_Chroma(-if01)?-event-kbd') <NEW_LINE> USB_VID = 0x1532 <NEW_LINE> USB_PID = 0x0209 <NEW_LINE> HAS_MATRIX = True <NEW_LINE> MATRIX_DIMS = [6, 22] <NEW_LINE> METHODS = ['get_d... | Class for the Razer BlackWidow Tournament Edition Chroma | 62598fbd63d6d428bbee2986 |
class TestCommunicationCostPage(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 make_instance(self, include_optional): <NEW_LINE> <INDENT> if include_optional : <NEW_LINE> <INDENT> return Communica... | CommunicationCostPage unit test stubs | 62598fbd442bda511e95c632 |
class Test_find_all_valid_locations(unittest.TestCase): <NEW_LINE> <INDENT> pass | Tests the find_all_valid_locations function with the following cases:
TBD | 62598fbd66673b3332c305a7 |
class Warning(Exception): <NEW_LINE> <INDENT> pass | Important warnings like data truncations while inserting.
Exception raised for important warnings like data truncations
while inserting, etc. It must be a subclass of the Python
StandardError (defined in the module exceptions). | 62598fbdf548e778e596b77c |
class Node(object): <NEW_LINE> <INDENT> def __init__(self, parent, key, text, values, icon=None): <NEW_LINE> <INDENT> self.parent = parent <NEW_LINE> self.children = [] <NEW_LINE> self.key = key <NEW_LINE> self.text = text <NEW_LINE> self.values = values <NEW_LINE> self.icon = icon <NEW_LINE> <DEDENT> def _Add(self, no... | Contains information about the individual node in the tree | 62598fbd26068e7796d4cb30 |
class ITopicTreeVisitor: <NEW_LINE> <INDENT> def _accept(self, topicObj): <NEW_LINE> <INDENT> return True <NEW_LINE> <DEDENT> def _startTraversal(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def _onTopic(self, topicObj): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def _startChildren(self): <NEW_LINE> <INDENT> p... | Topic tree traverser. Provides the traverse() method
which traverses a topic tree and calls self._onTopic() for
each topic in the tree that satisfies self._accept().
Additionally it calls self._startChildren() whenever it
starts traversing the subtopics of a topic, and
self._endChildren() when it is done with the subto... | 62598fbd56ac1b37e63023c4 |
class ListImages(ImageCommand, command_base.GoogleComputeListCommand): <NEW_LINE> <INDENT> def ListFunc(self): <NEW_LINE> <INDENT> return self._images_api.list | List the images for a project. | 62598fbdff9c53063f51a824 |
class SimpleRelated(TranslatableModel): <NEW_LINE> <INDENT> normal = models.ForeignKey(Normal, related_name='simplerel', on_delete=models.CASCADE) <NEW_LINE> manynormals = models.ManyToManyField(Normal, blank=True, related_name='manysimplerel') <NEW_LINE> translated_fields = TranslatedFields( translated_field = models.... | Model with foreign key to Normal, shared only and regular translatable field | 62598fbd63b5f9789fe85346 |
class PriorityBuffer(Buffer): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.samples = [] <NEW_LINE> self.priority = [] <NEW_LINE> self.total_usage = 0 <NEW_LINE> <DEDENT> def is_empty(self): <NEW_LINE> <INDENT> return len(self.samples) == 0 <NEW_LINE> <DEDENT> def add_sample(self, sample): <NEW_LINE>... | Return the sample from the last returned to the most returned | 62598fbd01c39578d7f12f51 |
class PostTag(db.Model): <NEW_LINE> <INDENT> __tablename__ = "posts_tags" <NEW_LINE> post_id = db.Column(db.Integer , db.ForeignKey('posts.id' , ondelete="CASCADE") , primary_key=True) <NEW_LINE> tag_id = db.Column(db.Integer , db.ForeignKey("tags.id" , ondelete="CASCADE") , primary_key=True) <NEW_LINE> def __repr__(se... | Post Tags. | 62598fbd442bda511e95c634 |
class DrupalBinder(Binder): <NEW_LINE> <INDENT> pass | Generic Binder for Drupal | 62598fbd9c8ee82313040260 |
class Event(object): <NEW_LINE> <INDENT> def __init__(self, name, myid, **kwargs): <NEW_LINE> <INDENT> self.name = name.encode('ascii', 'ignore') <NEW_LINE> self.id = myid <NEW_LINE> self.properties = kwargs <NEW_LINE> <DEDENT> def __repr__(self): <NEW_LINE> <INDENT> return ' '.join([self.name, str(self.id)]) <NEW_LINE... | A top level event. | 62598fbd56ac1b37e63023c5 |
class MergeInfo(): <NEW_LINE> <INDENT> def __init__(self, index1=None, index2=None, seg=None): <NEW_LINE> <INDENT> if index1 > index2: <NEW_LINE> <INDENT> tmp = index1 <NEW_LINE> index1 = index2 <NEW_LINE> index2 = tmp <NEW_LINE> <DEDENT> self._minIndex = index1 <NEW_LINE> self._maxIndex = index2 <NEW_LINE> self._seg =... | Records indices and joining segment for two clusters to be merged. | 62598fbd9f28863672818967 |
class ITrustPolicyLayer(Interface): <NEW_LINE> <INDENT> pass | Marker interface for browserlayer. | 62598fbdadb09d7d5dc0a755 |
class BindingEndpoint(object): <NEW_LINE> <INDENT> def __init__(self,instance,setter,valueChangedSignal,getter=None): <NEW_LINE> <INDENT> self.instanceId = id(instance) <NEW_LINE> self.instance = instance <NEW_LINE> self.getter = getter <NEW_LINE> self.setter = setter <NEW_LINE> self.valueChangedSignal = valueChangedSi... | Data object that contains the triplet of: getter, setter and change notification signal,
as well as the object instance and it's memory id to which the binding triplet belongs.
Parameters:
instance -- the object instance to which the getter, setter and changedSignal belong
setter -- the value setter method
... | 62598fbd7d847024c075c595 |
class Meta: <NEW_LINE> <INDENT> model = Admin | Factory configuration. | 62598fbd55399d3f056266ed |
class Calendar(models.Model): <NEW_LINE> <INDENT> name = models.CharField(verbose_name=_('name'), max_length=200) <NEW_LINE> user = models.ForeignKey(CalendarUser, blank=True, null=True, verbose_name=_("calendar user"), help_text=_("select user"), related_name="calendar user") <NEW_LINE> max_concurrent = models.Integer... | This is for grouping events so that batch relations can be made to all
events. An example would be a project calendar.
name: the name of the calendar
events: all the events contained within the calendar.
>>> calendar = Calendar(name = 'Test Calendar')
>>> calendar.save() | 62598fbd92d797404e388c4f |
class Message(BASE, CinderBase): <NEW_LINE> <INDENT> __tablename__ = 'messages' <NEW_LINE> id = Column(String(36), primary_key=True, nullable=False) <NEW_LINE> project_id = Column(String(36), nullable=False) <NEW_LINE> message_level = Column(String(255), nullable=False) <NEW_LINE> request_id = Column(String(255), nulla... | Represents a message | 62598fbd44b2445a339b6a62 |
class ImagenetData(Dataset): <NEW_LINE> <INDENT> def __init__(self, data_dir=None): <NEW_LINE> <INDENT> if data_dir is None: <NEW_LINE> <INDENT> raise ValueError('Data directory not specified') <NEW_LINE> <DEDENT> super(ImagenetData, self).__init__('imagenet', 300, 300, data_dir=data_dir) <NEW_LINE> <DEDENT> def num_cl... | Configuration for Imagenet dataset. | 62598fbd99fddb7c1ca62ed8 |
class PokemonFormAdapter(Adapter): <NEW_LINE> <INDENT> pokemon_forms = { 201: 'abcdefghijklmnopqrstuvwxyz!?', 386: ['normal', 'attack', 'defense', 'speed'], 412: ['plant', 'sandy', 'trash'], 413: ['plant', 'sandy', 'trash'], 422: ['west', 'east'], 423: ['west', 'east'], 479: ['normal', 'heat', 'wash', 'frost', 'fan', '... | Converts form ids to form names, and vice versa. | 62598fbd57b8e32f52508209 |
class EmailNotification(models.Model): <NEW_LINE> <INDENT> name = models.CharField(blank=False, max_length=50) <NEW_LINE> subject = models.CharField(blank=False, max_length=77) <NEW_LINE> body = models.TextField(blank=False) <NEW_LINE> sites = models.ManyToManyField(Site) <NEW_LINE> objects = EmailNotificationQuerySet.... | Record of Email constructed in and sent via the project | 62598fbdcc0a2c111447b1e6 |
class GetNodeSecurity_result: <NEW_LINE> <INDENT> thrift_spec = ( (0, TType.BYTE, 'success', None, None, ), ) <NEW_LINE> def __init__(self, success=None,): <NEW_LINE> <INDENT> self.success = success <NEW_LINE> <DEDENT> def read(self, iprot): <NEW_LINE> <INDENT> if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccel... | Attributes:
- success | 62598fbd4a966d76dd5ef0ac |
class GameWindow(pyglet.window.Window,object): <NEW_LINE> <INDENT> def __init__(self, *args, **kwargs): <NEW_LINE> <INDENT> super(GameWindow, self).__init__(*args, **kwargs) <NEW_LINE> <DEDENT> def update(self): <NEW_LINE> <INDENT> pass | docstring for GameWindow | 62598fbd63d6d428bbee298a |
class History: <NEW_LINE> <INDENT> url = BASE_URL + '/history' <NEW_LINE> def __init__(self): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> def rates_time_period(self): <NEW_LINE> <INDENT> response = requests.get(self.url + '?start_at=2018-01-01&end_at=2018-09-01') <NEW_LINE> status_code = response.status_code <NEW_LINE... | Class History | 62598fbd442bda511e95c636 |
class MailChimpSessionSchema(Schema): <NEW_LINE> <INDENT> def __init__(self, session=None, *args, **kwargs): <NEW_LINE> <INDENT> super().__init__(*args, **kwargs) <NEW_LINE> if session is None and self.context.get('session', None) is None: <NEW_LINE> <INDENT> session = MailChimpSession() <NEW_LINE> <DEDENT> self.sessio... | Adds MailChimpSession to Schema
When used as a nested object of another Schema it checks if a session already exists
This to prevent initializing unneeded sessions | 62598fbde5267d203ee6bad9 |
class GlobalsPlugin(BasePlugin): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> super(GlobalsPlugin, self).__init__(GlobalsPlugin.__name__) <NEW_LINE> <DEDENT> @cw_timer(prefix="Plugin-Globals") <NEW_LINE> def on_before_transform_template(self, template_dict): <NEW_LINE> <INDENT> try: <NEW_LINE> <INDENT> g... | Plugin to process Globals section of a SAM template before the template is translated to CloudFormation. | 62598fbd9f28863672818968 |
@tf_export("data.experimental.AutoShardPolicy") <NEW_LINE> class AutoShardPolicy(enum.IntEnum): <NEW_LINE> <INDENT> OFF = -1 <NEW_LINE> AUTO = 0 <NEW_LINE> FILE = 1 <NEW_LINE> DATA = 2 <NEW_LINE> HINT = 3 <NEW_LINE> @classmethod <NEW_LINE> def _to_proto(cls, obj): <NEW_LINE> <INDENT> if obj == cls.OFF: <NEW_LINE> <INDE... | Represents the type of auto-sharding to use.
OFF: No sharding will be performed.
AUTO: Attempts FILE-based sharding, falling back to DATA-based sharding.
FILE: Shards by input files (i.e. each worker will get a set of files to
process). When this option is selected, make sure that there is at least as
many files as ... | 62598fbdaad79263cf42e9af |
class ImageFormatException(Exception): <NEW_LINE> <INDENT> def __init__(self, fpath): <NEW_LINE> <INDENT> msg = str.format("File {:s} has invalid image type", fpath) <NEW_LINE> self.fpath = fpath <NEW_LINE> super(ImageFormatException, self).__init__(msg) | The exception that is raised when
the format of an image file is invalid | 62598fbd5fdd1c0f98e5e16b |
class Decoder(object): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self._clear_codes() <NEW_LINE> self.remainder = [] <NEW_LINE> <DEDENT> def code_size(self): <NEW_LINE> <INDENT> return len(self._codepoints) <NEW_LINE> <DEDENT> def decode(self, codepoints): <NEW_LINE> <INDENT> codepoints = [ cp for cp i... | Uncompresses a stream of lzw code points, as created by
L{Encoder}. Given a list of integer code points, with all
unpacking foolishness complete, turns that list of codepoints into
a list of uncompressed bytes. See L{BitUnpacker} for what this
doesn't do. | 62598fbd55399d3f056266ef |
class UserDetailView(RetrieveAPIView): <NEW_LINE> <INDENT> serializer_class = serializers.UserDetailSerialzier <NEW_LINE> def get_object(self): <NEW_LINE> <INDENT> return self.request.user | 获取用户信息 | 62598fbd63b5f9789fe8534a |
class CommentViewSet(viewsets.ModelViewSet): <NEW_LINE> <INDENT> queryset = Comment.objects.all().order_by('id') <NEW_LINE> serializer_class = CommentSerializer | View for /comments API endpoint | 62598fbd3346ee7daa337735 |
class BRAINSCut(SEMLikeCommandLine): <NEW_LINE> <INDENT> input_spec = BRAINSCutInputSpec <NEW_LINE> output_spec = BRAINSCutOutputSpec <NEW_LINE> _cmd = " BRAINSCut " <NEW_LINE> _outputs_filenames = {} | title: BRAINSCut (BRAINS)
category: Segmentation.Specialized
description: Automatic Segmentation using neural networks
version: 1.0
license: https://www.nitrc.org/svn/brains/BuildScripts/trunk/License.txt
contributor: Vince Magnotta, Hans Johnson, Greg Harris, Kent Williams, Eunyoung Regina Kim | 62598fbd23849d37ff85128e |
class LimitedInputFilter(object): <NEW_LINE> <INDENT> def __init__(self, application): <NEW_LINE> <INDENT> self.app = application <NEW_LINE> <DEDENT> def __call__(self, environ, start_response): <NEW_LINE> <INDENT> content_length = environ.get('CONTENT_LENGTH', '') <NEW_LINE> if content_length: <NEW_LINE> <INDENT> envi... | WSGI middleware that limits the input length of a request to that
specified in Content-Length. | 62598fbd4428ac0f6e6586fd |
class CitiesTestCase(unittest.TestCase): <NEW_LINE> <INDENT> def test_city_country(self): <NEW_LINE> <INDENT> formatted = city_country('santiago', 'chile') <NEW_LINE> self.assertEqual(formatted, 'Santiago, Chile') <NEW_LINE> <DEDENT> def test_city_country_population(self): <NEW_LINE> <INDENT> formatted = city_country('... | Tests for 'city_functions.py' validity | 62598fbd3617ad0b5ee06321 |
class Bloom_Filter: <NEW_LINE> <INDENT> def __init__(self,mem,count,segments): <NEW_LINE> <INDENT> self.array_size=mem <NEW_LINE> self.length=count <NEW_LINE> """Initiate a numpy array with zeros""" <NEW_LINE> self.array=np.zeros(self.array_size,dtype=int) <NEW_LINE> """calculate the optimal number of hash functions ne... | Inititalization function that takes in the false positive rate
and number of elements to be inserted | 62598fbddc8b845886d53795 |
class ProxyMiddleWare(object): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.invalid_proxy = set() <NEW_LINE> self.proxy = Proxy.get_proxy() <NEW_LINE> <DEDENT> def process_request(self, request, spider): <NEW_LINE> <INDENT> request.meta['proxy'] = self.proxy['https'] <NEW_LINE> start_num = Proxy.get... | 设置Proxy | 62598fbd5166f23b2e2435b9 |
class FallbackRule(enum.Enum): <NEW_LINE> <INDENT> pass_through = 'pass_through' <NEW_LINE> strict = 'strict' <NEW_LINE> zero = 'zero' | Fallback rules for the ConfigurableOps class. | 62598fbd1f5feb6acb162dfb |
class v6_0(tls.Unicode, TypeMeta): <NEW_LINE> <INDENT> info_text = "KBaseFBA.ETC-6.0" | ElectronTransportChains (ETC) object | 62598fbda8370b77170f05bb |
class ProductStatus(Status): <NEW_LINE> <INDENT> def addInputBinding(self, factory, product): <NEW_LINE> <INDENT> self.addObserver(observer=factory.pyre_status) <NEW_LINE> return super().addInputBinding(factory=factory, product=product) <NEW_LINE> <DEDENT> def removeInputBinding(self, factory, product): <NEW_LINE> <IND... | A helper that watches over the traits of products and records value changes | 62598fbdbf627c535bcb1680 |
class ApiRouter(DefaultRouter): <NEW_LINE> <INDENT> routes = [ Route( url=r"^{prefix}/?$", mapping={ 'get': 'list', 'post': 'create' }, name="{basename}-list", initkwargs={'suffix': 'List'} ), Route( url=r"^{prefix}/{lookup}/?$", mapping={ 'get': 'retrieve', 'put': 'update', 'patch': 'partial_update', 'delete': 'destro... | Generate URL patterns for list, detail, and viewset-specific
HTTP routes. | 62598fbd283ffb24f3cf3a5e |
class MultiprocessingDistributor(DistributorBaseClass): <NEW_LINE> <INDENT> def __init__(self, n_workers, disable_progressbar=False, progressbar_title="Feature Extraction", show_warnings=True): <NEW_LINE> <INDENT> super().__init__() <NEW_LINE> self.pool = Pool(processes=n_workers, initializer=initialize_warnings_in_wor... | Distributor using a multiprocessing Pool to calculate the jobs in parallel on the local machine. | 62598fbd9c8ee82313040262 |
class PublicProjects(BaseProjects): <NEW_LINE> <INDENT> export_map = ( 'pk', 'name', 'public', 'analyze', 'reset', 'description', 'permalink', 'analysis_status', 'analyzed_at', ) <NEW_LINE> @valid_user(anon_ok=True) <NEW_LINE> def get(self): <NEW_LINE> <INDENT> form = PublicProjectsForm(request.args) <NEW_LINE> if not ... | Source: User Backend | 62598fbdec188e330fdf8a6e |
class lognorm_gen(rv_continuous): <NEW_LINE> <INDENT> def _rvs(self, s): <NEW_LINE> <INDENT> return exp(s * self._random_state.standard_normal(self._size)) <NEW_LINE> <DEDENT> def _pdf(self, x, s): <NEW_LINE> <INDENT> return exp(self._logpdf(x, s)) <NEW_LINE> <DEDENT> def _logpdf(self, x, s): <NEW_LINE> <INDENT> return... | A lognormal continuous random variable.
%(before_notes)s
Notes
-----
The probability density function for `lognorm` is::
lognorm.pdf(x, s) = 1 / (s*x*sqrt(2*pi)) * exp(-1/2*(log(x)/s)**2)
for ``x > 0``, ``s > 0``.
`lognorm` takes ``s`` as a shape parameter.
If ``log(x)`` is normally distributed with mean ``mu... | 62598fbd377c676e912f6e5f |
class IKTaskSet: <NEW_LINE> <INDENT> def __init__(self, iktaskset=None): <NEW_LINE> <INDENT> if iktaskset: <NEW_LINE> <INDENT> self.iktaskset = iktaskset <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> self.iktaskset = osm.IKTaskSet() <NEW_LINE> <DEDENT> <DEDENT> def add_ikmarkertask(self, name, do_apply, weight): <NEW_L... | Wrapper of org.opensim.modeling.IKTaskSet with convenience methods.
| 62598fbdf548e778e596b782 |
class Cmd(command.BaseCmd): <NEW_LINE> <INDENT> DEFAULT_HANDLERS = (command.BaseCmd.DEFAULT_HANDLERS + (command.cmdlet.raiseOnNonZeroReturnCode, command.cmdlet.raiseWhenOutputIsNone, command.cmdlet.stripOutput, raise_when_no_instances, )) <NEW_LINE> def __init__(self, wmicpath=None, handler=None): <NEW_LINE> <INDENT> w... | Command class for `wmic` executable overriding command.Cmdlet.process
method and extending
command.BaseCmd.DEFAULT_HANDLERS static attribute with additional
handlers specific to wmic command.
Path to wmic binary is used as a cmdline for command.BaseCmd
The class defines additional public methods:
* get_cmdline
* cre... | 62598fbdadb09d7d5dc0a758 |
class Dataset(object): <NEW_LINE> <INDENT> name = None <NEW_LINE> start_time = None <NEW_LINE> stop_time = None <NEW_LINE> dimensions = None <NEW_LINE> def __init__(self): <NEW_LINE> <INDENT> self.dimensions = [] <NEW_LINE> <DEDENT> def __repr__(self): <NEW_LINE> <INDENT> return '<Dataset name=%r dimension=%r>' % (self... | A representation of a DSC dataset
A DSC dataset is one to two dimensional structure where the last
dimension holds an array of values and counters.
It is based on the XML structure of DSC:
<array name="pcap_stats" dimensions="2" start_time="1563520560" stop_time="1563520620">
<dimension number="1" type="if... | 62598fbd97e22403b383b0e3 |
class PrivateEndpointConnection(Resource): <NEW_LINE> <INDENT> _validation = { 'id': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, } <NEW_LINE> _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'private_en... | Properties of the PrivateEndpointConnection.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar id: Resource Id.
:vartype id: str
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type.
:vartype type: str
:param private_endpoint: The Private Endpoint resourc... | 62598fbda8370b77170f05bc |
class ContainerNetworkMode(object): <NEW_LINE> <INDENT> service_name = None <NEW_LINE> def __init__(self, container): <NEW_LINE> <INDENT> self.container = container <NEW_LINE> <DEDENT> @property <NEW_LINE> def id(self): <NEW_LINE> <INDENT> return self.container.id <NEW_LINE> <DEDENT> @property <NEW_LINE> def mode(self)... | A network mode that uses a container's network stack. | 62598fbdd486a94d0ba2c1ab |
class ModifiedTransition(Transition): <NEW_LINE> <INDENT> def __init__(self, base_transition): <NEW_LINE> <INDENT> self.base_transition=base_transition <NEW_LINE> self.modifiers=list() <NEW_LINE> self.key=self.base_transition.key <NEW_LINE> self.flows=base_transition.flows <NEW_LINE> <DEDENT> def enabled(self, globalst... | This is a transition that has been modified by TransitionModifier objects. | 62598fbd3346ee7daa337736 |
class ApplicationListOptions(Model): <NEW_LINE> <INDENT> _attribute_map = { 'max_results': {'key': '', 'type': 'int'}, 'timeout': {'key': '', 'type': 'int'}, 'client_request_id': {'key': '', 'type': 'str'}, 'return_client_request_id': {'key': '', 'type': 'bool'}, 'ocp_date': {'key': '', 'type': 'rfc-1123'}, } <NEW_LINE... | Additional parameters for list operation.
:param max_results: The maximum number of items to return in the response.
A maximum of 1000 applications can be returned. Default value: 1000 .
:type max_results: int
:param timeout: The maximum time that the server can spend processing the
request, in seconds. The default ... | 62598fbdbe7bc26dc9251f4a |
class BaseRemoteError(Exception): <NEW_LINE> <INDENT> pass | All exceptions from remote method are derived from this class. | 62598fbd956e5f7376df576c |
class DistributionClassXMLLoader(ComponentClassXMLLoader): <NEW_LINE> <INDENT> @read_annotations <NEW_LINE> def load_componentclass(self, element): <NEW_LINE> <INDENT> subblocks = ('Parameter', 'RandomDistribution') <NEW_LINE> children = self._load_blocks(element, blocks=subblocks) <NEW_LINE> distributionblock = expect... | This class is used by XMLReader interny.
This class loads a NineML XML tree, and stores
the components in ``components``. It o records which file each XML node
was loaded in from, and stores this in ``component_srcs``. | 62598fbd5fdd1c0f98e5e16e |
class SSHConnect (Action): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> Action.__init__(self, name=_("Connect")) <NEW_LINE> <DEDENT> def activate(self, leaf): <NEW_LINE> <INDENT> utils.spawn_in_terminal(["ssh", leaf[HOST_ADDRESS_KEY]]) <NEW_LINE> <DEDENT> def get_description(self): <NEW_LINE> <INDENT> re... | Used to launch a terminal connecting to the specified
SSH host. | 62598fbd5166f23b2e2435bb |
class DynamicsIsLinear(BaseDynamicsVisitor): <NEW_LINE> <INDENT> def is_linear(self, dynamics, outputs=None): <NEW_LINE> <INDENT> self.outputs = (set(dynamics.analog_send_port_names) if outputs is None else outputs) <NEW_LINE> substituted = dynamics.flatten() <NEW_LINE> DynamicsSubstituteAliases(substituted) <NEW_LINE>... | Checks to see whether the dynamics class is linear or nonlinear
Parameters
----------
dynamics : Dynamics
The dynamics element to check linearity of
outputs : list(str) | None
List of outputs that are relevant to the check. For example, if there
is an analog send port on a synapse that is not connected to ... | 62598fbddc8b845886d53797 |
class Random(object): <NEW_LINE> <INDENT> def __init__(self, seed=12345, state=None): <NEW_LINE> <INDENT> self.rng = np.random.mtrand.RandomState(seed=seed) <NEW_LINE> self.seed = seed <NEW_LINE> if state is None: <NEW_LINE> <INDENT> self.rng.seed(seed) <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> self.state = state <... | Class to interface with the standard pseudo-random number generator.
Initializes the standard numpy pseudo-random number generator from a seed
at the beginning of the simulation, and keeps track of the state so that
it can be output to the checkpoint files throughout the simulation.
Attributes:
rng: The random num... | 62598fbd091ae35668704e01 |
class SubAppIdInfo(AbstractModel): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> self.SubAppId = None <NEW_LINE> self.Name = None <NEW_LINE> self.Description = None <NEW_LINE> self.CreateTime = None <NEW_LINE> self.Status = None <NEW_LINE> <DEDENT> def _deserialize(self, params): <NEW_LINE> <INDENT> self.... | 子应用信息。
| 62598fbda8370b77170f05bd |
class PCA9685: <NEW_LINE> <INDENT> def __init__(self, channel, address=0x40, frequency=60, busnum=None): <NEW_LINE> <INDENT> import Adafruit_PCA9685 <NEW_LINE> if busnum is not None: <NEW_LINE> <INDENT> from Adafruit_GPIO import I2C <NEW_LINE> def get_bus(): <NEW_LINE> <INDENT> return busnum <NEW_LINE> <DEDENT> I2C.get... | PWM motor controler using PCA9685 boards.
This is used for most RC Cars | 62598fbd4c3428357761a498 |
class ProblemRelation(object): <NEW_LINE> <INDENT> __slots__ = ['_name', '_patient_count', '_ratio'] <NEW_LINE> def __init__(self, name, patient_count, ratio): <NEW_LINE> <INDENT> self._name = name <NEW_LINE> self._patient_count = patient_count <NEW_LINE> self._ratio = ratio <NEW_LINE> <DEDENT> @property <NEW_LINE> def... | A class to model a problem with a particular count of patients and
ratio of patients. | 62598fbd9c8ee82313040263 |
class InsertUserResponse(object): <NEW_LINE> <INDENT> openapi_types = { 'organisation_id': 'int', 'user_id': 'int', 'validation_errors': 'list[str]' } <NEW_LINE> attribute_map = { 'organisation_id': 'OrganisationId', 'user_id': 'UserId', 'validation_errors': 'ValidationErrors' } <NEW_LINE> def __init__(self, organisati... | NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually. | 62598fbd7d43ff24874274f3 |
class Get(base.Command): <NEW_LINE> <INDENT> @staticmethod <NEW_LINE> def Args(parser): <NEW_LINE> <INDENT> parser.add_argument( 'operation', help='An identifier that uniquely identifies the operation.') <NEW_LINE> <DEDENT> @util.ReraiseHttpException <NEW_LINE> def Run(self, args): <NEW_LINE> <INDENT> sql_client = self... | Retrieves information about a Cloud SQL instance operation. | 62598fbd97e22403b383b0e6 |
class FamilyVarObj(object): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> dict = defaultdict(list) <NEW_LINE> self.gene_family_dict = dict <NEW_LINE> self.gene_family_dict['Genes'] = TaxaVarObj() <NEW_LINE> self.gene_family_dict['RxLR'] = TaxaVarObj() <NEW_LINE> self.gene_family_dict['CRN'] = TaxaVarObj()... | An object containing TaxaVarObj's for different gene families. | 62598fbd283ffb24f3cf3a60 |
class TimeFormRange(FlaskForm): <NEW_LINE> <INDENT> datetime_1 = DateTimeField(u'Time 1') <NEW_LINE> datetime_2 = DateTimeField(u'Time 2') | Class to manage time range input | 62598fbd099cdd3c636754d1 |
class ShutdownHTTPHandler(http.Request): <NEW_LINE> <INDENT> def process(self): <NEW_LINE> <INDENT> self.loseConnection() | A HTTP handler that just immediately calls loseConnection. | 62598fbdd268445f26639c73 |
class PostManager(models.Manager): <NEW_LINE> <INDENT> def published(self, user=None, platform=None): <NEW_LINE> <INDENT> if user and user.is_staff: <NEW_LINE> <INDENT> min_published_status = base.DRAFT <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> min_published_status = base.PUBLISHED <NEW_LINE> <DEDENT> try: <NEW_LIN... | Get items that should be visible to the currently logged in user
- if no user is provided, only published items will be returned
- if platforms is provided, filter by platform | 62598fbda8370b77170f05be |
class Pastebin(callbacks.Plugin): <NEW_LINE> <INDENT> threaded = True <NEW_LINE> def pastebin(self, irc, msg, args, optlist, text): <NEW_LINE> <INDENT> api_key = self.registryValue('pastebinAPIkey') <NEW_LINE> if api_key == '': <NEW_LINE> <INDENT> irc.reply('Pastebin API key must be set. See plugins.pastebinAPIkey valu... | This plugin contains a command to upload text to pastebin.com. | 62598fbd5fdd1c0f98e5e170 |
class Collection(object): <NEW_LINE> <INDENT> def __init__(self): <NEW_LINE> <INDENT> super(Collection, self).__init__() <NEW_LINE> self._values_ = [] <NEW_LINE> <DEDENT> @property <NEW_LINE> def _values(self): <NEW_LINE> <INDENT> return self._values_ <NEW_LINE> <DEDENT> def __contains__(self, item): <NEW_LINE> <INDENT... | Base class for collection classes. May also be used for part collections
that don't yet have any custom methods.
Has the following characteristics.:
* Container (implements __contains__)
* Iterable (delegates __iter__ to |list|)
* Sized (implements __len__)
* Sequence (delegates __getitem__ to |list|) | 62598fbd956e5f7376df576d |
class GetTouchMovementNode(ArmLogicTreeNode): <NEW_LINE> <INDENT> bl_idname = 'LNGetTouchMovementNode' <NEW_LINE> bl_label = 'Get Touch Movement' <NEW_LINE> arm_section = 'surface' <NEW_LINE> arm_version = 1 <NEW_LINE> def arm_init(self, context): <NEW_LINE> <INDENT> self.add_input('ArmFloatSocket', 'X Multiplier', def... | Returns the movement values of the current touch event. | 62598fbdad47b63b2c5a7a34 |
class NSNitroNserrPbrNoloopback(NSNitroPbrErrors): <NEW_LINE> <INDENT> pass | Nitro error code 913
PBR cannot be configured on the loopback interface | 62598fbde1aae11d1e7ce914 |
class RegisterForm(FlaskForm): <NEW_LINE> <INDENT> first_name = StringField('First Name', validators = [InputRequired()]) <NEW_LINE> last_name = StringField('Last Name') <NEW_LINE> username = StringField('Username', validators = [InputRequired()]) <NEW_LINE> password = PasswordField('Password', validators = [InputRequi... | Form to register a new user | 62598fbdf9cc0f698b1c53be |
class Parte(): <NEW_LINE> <INDENT> global log <NEW_LINE> log = Log() <NEW_LINE> def __init__(self, fileName, stopOnNo, np): <NEW_LINE> <INDENT> self.partIn = PartIn() <NEW_LINE> self.fileName = fileName.split('.')[0] <NEW_LINE> self.testFileName = self.fileName+"_test" <NEW_LINE> self.partOut1 = PartOut(fileName) <NEW_... | code to use input and output python code to write input, get output, compare them and display | 62598fbdcc0a2c111447b1ec |
class StorageAccountKey(msrest.serialization.Model): <NEW_LINE> <INDENT> _validation = { 'key_name': {'readonly': True}, 'value': {'readonly': True}, 'permissions': {'readonly': True}, } <NEW_LINE> _attribute_map = { 'key_name': {'key': 'keyName', 'type': 'str'}, 'value': {'key': 'value', 'type': 'str'}, 'permissions':... | An access key for the storage account.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar key_name: Name of the key.
:vartype key_name: str
:ivar value: Base 64-encoded value of the key.
:vartype value: str
:ivar permissions: Permissions for the key -- read-only or full perm... | 62598fbd7b180e01f3e4913f |
class EditImportedStatusCmd(_MPxCommand): <NEW_LINE> <INDENT> def __init__(self, node, imported): pass <NEW_LINE> def doIt(self, args): pass <NEW_LINE> def isUndoable(self): pass <NEW_LINE> def redoIt(self): pass <NEW_LINE> def undoIt(self): pass <NEW_LINE> @staticmethod <NEW_LINE> def creator(): pass <NEW_LINE> @stati... | Command to unapply and reapply a change of the imported status.
This command is a private implementation detail of this module and should
not be called otherwise. | 62598fbd7047854f4633f5b4 |
class SettingsBase: <NEW_LINE> <INDENT> id = db.Column( db.Integer, primary_key=True ) <NEW_LINE> module = db.Column( db.String, index=True, nullable=False ) <NEW_LINE> name = db.Column( db.String, index=True, nullable=False ) <NEW_LINE> @strict_classproperty <NEW_LINE> @staticmethod <NEW_LINE> def __auto_table_args():... | Base class for any kind of setting tables. | 62598fbd97e22403b383b0e7 |
class PauseClusterMessage(AWSProperty): <NEW_LINE> <INDENT> props: PropsDictType = { "ClusterIdentifier": (str, True), } | `PauseClusterMessage <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-scheduledaction-pauseclustermessage.html>`__ | 62598fbd656771135c48984e |
class BagAclNhEnum(Enum): <NEW_LINE> <INDENT> nexthop_none = 0 <NEW_LINE> nexthop_default = 1 <NEW_LINE> nexthop = 2 <NEW_LINE> @staticmethod <NEW_LINE> def _meta_info(): <NEW_LINE> <INDENT> from ydk.models.cisco_ios_xr._meta import _Cisco_IOS_XR_ipv6_acl_oper as meta <NEW_LINE> return meta._meta_table['BagAclNhEnum'] | BagAclNhEnum
Bag acl nh
.. data:: nexthop_none = 0
Next Hop None
.. data:: nexthop_default = 1
Nexthop Default
.. data:: nexthop = 2
Nexthop | 62598fbd283ffb24f3cf3a62 |
class CounterButton: <NEW_LINE> <INDENT> def __init__(self, numbers, topic, ff, max_value=10): <NEW_LINE> <INDENT> self.counter = 0 <NEW_LINE> self.max_value = max_value <NEW_LINE> self.ff = ff <NEW_LINE> self.buttons = Buttons(numbers) <NEW_LINE> self.pub = rospy.Publisher(topic, Int8, queue_size=10) <NEW_LINE> <DEDEN... | Convert a button pressed to counter topic | 62598fbd50812a4eaa620cda |
class SubDivisionInline(admin.StackedInline): <NEW_LINE> <INDENT> model = SubDivision <NEW_LINE> extra = 1 | docstring for SubDivisionInline | 62598fbd9f2886367281896b |
class ColumnFormatter(Formatter): <NEW_LINE> <INDENT> def __init__(self, column_index, FORMAT, custom_converter=None): <NEW_LINE> <INDENT> self.indices = column_index <NEW_LINE> if isinstance(column_index, int): <NEW_LINE> <INDENT> func = lambda r, c, v: c == column_index <NEW_LINE> <DEDENT> elif isinstance(column_inde... | Apply formatting on columns | 62598fbdaad79263cf42e9b5 |
class CheckNameAvailabilityResult(msrest.serialization.Model): <NEW_LINE> <INDENT> _validation = { 'name_available': {'readonly': True}, 'reason': {'readonly': True}, 'message': {'readonly': True}, } <NEW_LINE> _attribute_map = { 'name_available': {'key': 'nameAvailable', 'type': 'bool'}, 'reason': {'key': 'reason', 't... | The CheckNameAvailability operation response.
Variables are only populated by the server, and will be ignored when sending a request.
:ivar name_available: Gets a boolean value that indicates whether the name is available for you
to use. If true, the name is available. If false, the name has already been taken or in... | 62598fbdd268445f26639c74 |
class MaskPoints(FilterBase): <NEW_LINE> <INDENT> __version__ = 0 <NEW_LINE> filter = Instance(tvtk.MaskPoints, args=(), allow_none=False, record=True) <NEW_LINE> input_info = PipelineInfo(datasets=['any'], attribute_types=['any'], attributes=['any']) <NEW_LINE> output_info = PipelineInfo(datasets=['poly_data'], attrib... | Selectively passes the input points downstream. This can be
used to subsample the input points. Note that this does not pass
geometry data, this means all grid information is lost. | 62598fbdd486a94d0ba2c1af |
class EDTestSuitePluginUnitGroupSaxsv1_0(EDTestSuite): <NEW_LINE> <INDENT> def process(self): <NEW_LINE> <INDENT> self.addTestCaseFromName("EDTestCasePluginUnitExecSaxsAddv1_0") <NEW_LINE> self.addTestCaseFromName("EDTestCasePluginUnitExecSaxsAnglev1_0") <NEW_LINE> self.addTestCaseFromName("EDTestCasePluginUnitExecSaxs... | This is the test suite Unit for EDNA Group Saxsv1_0
It will run subsequently all unit tests . | 62598fbd5fc7496912d4836b |
class TrailSectionGeoJSONSerializer(GeoFeatureModelSerializer): <NEW_LINE> <INDENT> class Meta: <NEW_LINE> <INDENT> model = TrailSection <NEW_LINE> url_field_name = 'guid' <NEW_LINE> fields = [ 'guid', 'name', 'grade', 'image', 'notes', 'geom' ] <NEW_LINE> geo_field = 'geom' | Serializer class for a trail_mapper section model as GeoJSON. | 62598fbd92d797404e388c53 |
class GPS(ABC): <NEW_LINE> <INDENT> @classmethod <NEW_LINE> @abstractmethod <NEW_LINE> def baud_rate(cls): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> @classmethod <NEW_LINE> @abstractmethod <NEW_LINE> def boot_time(cls): <NEW_LINE> <INDENT> pass <NEW_LINE> <DEDENT> @classmethod <NEW_LINE> @abstractmethod <NEW_LINE> d... | classdocs | 62598fbd4428ac0f6e658703 |
class ImageRequestSerializer(GeoFeatureModelSerializer, serializers.HyperlinkedModelSerializer): <NEW_LINE> <INDENT> request_texts = RequestTextSerializer(many=True) <NEW_LINE> submitted_images = SubmittedImageSerializer(many=True) <NEW_LINE> creator = serializers.ReadOnlyField(source='creator.username') <NEW_LINE> url... | Serializers the image requests. | 62598fbd8a349b6b4368641e |
class Client(BaseClient): <NEW_LINE> <INDENT> def __init__(self, credentials=None, http=None, use_gax=None): <NEW_LINE> <INDENT> super(Client, self).__init__(credentials=credentials, http=http) <NEW_LINE> if use_gax is None: <NEW_LINE> <INDENT> self._use_gax = _USE_GAX <NEW_LINE> <DEDENT> else: <NEW_LINE> <INDENT> self... | Client to bundle configuration needed for API requests.
:type credentials: :class:`oauth2client.client.OAuth2Credentials` or
:class:`NoneType`
:param credentials: The OAuth2 Credentials to use for the connection
owned by this client. If not passed (and if no ``http``
... | 62598fbdf9cc0f698b1c53bf |
class OrderView(FlaskView): <NEW_LINE> <INDENT> @cross_origin(headers=['Content-Type']) <NEW_LINE> def index(self): <NEW_LINE> <INDENT> return jsonify(status='OK', orders=dict([(elem.name, elem.value) for elem in Character.Orders])) | API to return the list of valid orders. | 62598fbd21bff66bcd722e4b |
class Stack(object): <NEW_LINE> <INDENT> def __init__(self, dtype=None): <NEW_LINE> <INDENT> self._dtype = dtype <NEW_LINE> <DEDENT> def __call__(self, data): <NEW_LINE> <INDENT> return _stack_arrs(data, True, self._dtype) | Stack the input data samples to construct the batch.
The N input samples must have the same shape/length and will be stacked to construct a batch.
Parameters
----------
dtype : str or numpy.dtype, default None
The value type of the output. If it is set to None, the input data type is used.
Examples
--------
>>> ... | 62598fbd442bda511e95c63e |
class BaseWebPage(IWebPage): <NEW_LINE> <INDENT> def __init__(self, url:str, html:str, headers:Mapping[str, str]): <NEW_LINE> <INDENT> _raise_not_dict(headers, "headers") <NEW_LINE> self.url = url <NEW_LINE> self.html = html <NEW_LINE> self.headers = CaseInsensitiveDict(headers) <NEW_LINE> self.scripts: List[str] = [] ... | Implements factory methods for a WebPage.
Subclasses must implement _parse_html() and select(string). | 62598fbd4527f215b58ea0af |
class TempTrackerSetupTestCase(unittest.TestCase): <NEW_LINE> <INDENT> @classmethod <NEW_LINE> def setUpClass(cls): <NEW_LINE> <INDENT> cls.parser = tracker.process_args() <NEW_LINE> cls.database_dir = 'example' <NEW_LINE> cls.path_to_tracker = os.path.join(cls.database_dir, '.tracker.json') <NEW_LINE> cls.path_to_back... | Base class to setup environment for tests which modify the tracker | 62598fbde5267d203ee6bae0 |
class Categories(common.ViewletBase): <NEW_LINE> <INDENT> def update(self): <NEW_LINE> <INDENT> super(Categories, self).update() <NEW_LINE> backend = get_backend(self.context) <NEW_LINE> self.categories = backend.get_categories() | Display categories | 62598fbd7047854f4633f5b5 |
class ConfigUpdateProperty(Command): <NEW_LINE> <INDENT> log = logging.getLogger(__name__) <NEW_LINE> def get_parser(self, prog_name): <NEW_LINE> <INDENT> parser = super(ConfigUpdateProperty, self).get_parser(prog_name) <NEW_LINE> parser.add_argument('--tag_json_file', '-f', help='JSON file with tags to update', requir... | Update config property. | 62598fbd796e427e5384e977 |
class NoteEditor(BaseEditor): <NEW_LINE> <INDENT> gladefile = "NoteSlave" <NEW_LINE> proxy_widgets = ('notes', ) <NEW_LINE> size = (500, 200) <NEW_LINE> model_type = object <NEW_LINE> def __init__(self, store, model, attr_name='notes', title=u'', label_text=None, message_text=None, mandatory=False, visual_mode=False, o... | Simple editor that offers a label and a textview. | 62598fbdaad79263cf42e9b6 |
class BitmapsExtension(BigEndianStructure): <NEW_LINE> <INDENT> _fields_ = [ ("nb_bitmaps", c_uint32), ("reserved", c_uint32), ("bitmap_directory_size", c_uint64), ("bitmap_directory_offset", c_uint64), ] | from qcow2.h: Qcow2BitmapHeaderExt | 62598fbd97e22403b383b0ea |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.