Unnamed: 0
int64
0
389k
code
stringlengths
26
79.6k
docstring
stringlengths
1
46.9k
12,100
def set_colors(self, buf): deprecated.deprecated() if len(self._colors) != len(buf): raise IOError("Data buffer size incorrect! " "Expected: {} bytes / Received: {} bytes" .format(len(self._colors), len(buf))) self._colors[...
DEPRECATED: use self.color_list Use with extreme caution! Directly sets the internal buffer and bypasses all brightness and rotation control buf must also be in the exact format required by the display type.
12,101
def f0Morph(fromWavFN, pitchPath, stepList, outputName, doPlotPitchSteps, fromPitchData, toPitchData, outputMinPitch, outputMaxPitch, praatEXE, keepPitchRange=False, keepAveragePitch=False, sourcePitchDataList=None, minIntervalLength=0.3): s pitch (average pitch and p...
Resynthesizes the pitch track from a source to a target wav file fromPitchData and toPitchData should be segmented according to the portions that you want to morph. The two lists must have the same number of sublists. Occurs over a three-step process. This function can act as a template for how ...
12,102
def is_reconstructed(self, xy_cutoff=0.3, z_cutoff=0.4): assert self.A, \ A = self.A[:-1].copy() B = self.B[:-1].copy() x_indices = np.argsort(A.positions[:, 0]) A = A[x_indices] B = B[x_indices] a = A.positions b...
Compare initial and final slab configuration to determine if slab reconstructs during relaxation xy_cutoff: Allowed xy-movement is determined from the covalent radii as: xy_cutoff * np.mean(cradii) z_cutoff: Allowed z-movement is determined as ...
12,103
def to_args(self): def has_value(name, value): null_values = ("False", "None", "[]", , "", "0") if not value or value in null_values: return False if name in _arg_defaults: if str(value) == str(_arg_defaults[name]): ...
Return command arguments for this object. Return a list of the non-default options of this ``SoSOptions`` object in ``sosreport`` command line argument notation: ``["--all-logs", "-vvv"]``
12,104
def _update_tcs_helper_catalogue_tables_info_with_new_tables( self): self.log.debug( ) sqlQuery = u % locals() thisId = readquery( log=self.log, sqlQuery=sqlQuery, dbConn=self.cataloguesDbConn, quiet=False ...
update tcs helper catalogue tables info with new tables .. todo :: - update key arguments values and definitions with defaults - update return values and definitions - update usage examples and text - update docstring text - check sublime snippet exi...
12,105
def convert_hpdist(self, node): with context(self.fname, node): hcdist = [(hd[], hd[]) for hd in node.hypoDepthDist] if not self.spinning_floating: hcdist = [(1, hcdist[0][1])] return pmf.PMF(hcdist)
Convert the given node into a probability mass function for the hypo depth distribution. :param node: a hypoDepthDist node :returns: a :class:`openquake.hazardlib.pmf.PMF` instance
12,106
def info(self, text): self.logger.info("{}{}".format(self.message_prefix, text))
Ajout d'un message de log de type INFO
12,107
def _set_metric(self, metric_name, metric_type, value, tags=None): if metric_type == self.GAUGE: self.gauge(metric_name, value, tags=tags) else: self.log.error(.format(metric_type))
Set a metric
12,108
def import_file(self, taskfileinfo): assert self.status() is None,\ "Entity is already in scene. Use replace instead." refobjinter = self.get_refobjinter() refobj = self.create_refobject() with self.set_parent_on_new(refobj): refobjinter.import_taskfile(r...
Import the file for the given taskfileinfo This will also update the status to :data:`Reftrack.IMPORTED`. This will also call :meth:`fetch_new_children`. Because after the import, we might have new children. :param taskfileinfo: the taskfileinfo to import. If None is given, try to import ...
12,109
def submit(self, fn, *args, **kwargs): if not self.asynchronous: return fn(*args, **kwargs) raise NotImplementedError
Submit an operation
12,110
def unkown_field(self, value=None): if value is not None: try: value = str(value) except ValueError: raise ValueError( .format(value)) if in value: raise ValueError( ...
Corresponds to IDD Field `unkown_field` Empty field in data. Args: value (str): value for IDD Field `unkown_field` if `value` is None it will not be checked against the specification and is assumed to be a missing value Raises: ValueError: if `va...
12,111
def PublishableBox(publishable, box_type, nodelist, model=None): "add some content type info of self.target" if not model: model = publishable.content_type.model_class() box_class = model.box_class if box_class == PublishableBox: box_class = Box return box_class(publishable, box_typ...
add some content type info of self.target
12,112
def draw_line(self, x1, y1, x2, y2): check_int_err(lib.SDL_RenderDrawLine(self._ptr, x1, y1, x2, y2))
Draw a line on the current rendering target. Args: x1 (int): The x coordinate of the start point. y1 (int): The y coordinate of the start point. x2 (int): The x coordinate of the end point. y2 (int): The y coordinate of the end point. Raises: ...
12,113
def _combine_ranges(ranges): ranges2d = [] for irow, rowranges in enumerate(ranges): ja = 0 jb = 0 while jb < len(rowranges): bcol0, bcol1 = rowranges[jb] if ja < len(ranges2d): _, arow1, acol0, acol1 = ranges2d[ja] if arow1 < ...
This function takes a list of row-ranges (as returned by `_parse_row`) ordered by rows, and produces a list of distinct rectangular ranges within this grid. Within this function we define a 2d-range as a rectangular set of cells such that: - there are no empty rows / columns within this rectangle...
12,114
def load_lc_data(filename, indep, dep, indweight=None, mzero=None, dir=): if in filename: path, filename = os.path.split(filename) else: path = dir load_file = os.path.join(path, filename) lcdata = np.loadtxt(load_file) ncol = len(lcdata[0]) if dep == : m...
load dictionary with lc data
12,115
def diff_stats(self, ids): schema = DiffStatsSchema() resp = self.service.post(self.base, params={: }, json=[{: str(x)} for x in ids]) return self.service.decode(schema, resp)
Compute diff stats for a set of results. :param id: Result IDs as int list. :return: :class:`results.DiffStats <results.DiffStats>` object :rtype: results.DiffStats
12,116
def _get_setter_fun(object_type, parameter, private_property_name ): property_name = parameter.name overridden_setters = getmembers(object_type, _has_annotation(__SETTER_OVERRIDE_ANNOTATION, property_name)) if ...
Utility method to find the overridden setter function for a given property, or generate a new one :param object_type: :param property_name: :param property_type: :param private_property_name: :return:
12,117
def encodeDeltas(self, dx,dy): dxe = self.dxEncoder.encode(dx) dye = self.dyEncoder.encode(dy) ex = numpy.outer(dxe,dye) return ex.flatten().nonzero()[0]
Return the SDR for dx,dy
12,118
async def close(self, timeout=5) -> None: if not self.is_running: _LOGGER.warning("FFmpeg isnt use communicate because we attach the output to a streamreader def _close(): self._proc.stdin.write(b"q") self._proc.wait(timeout=timeout) ...
Stop a ffmpeg instance.
12,119
def main(raw_args=None): if raw_args is None: raw_args = sys.argv[1:] parser = build_parser() args = parser.parse_args(raw_args) if args.firmware_image is None and args.gdb is None: print("You must specify either a firmware image or attach a debugger with --gdb <PORT>") r...
Run the iotile-emulate script. Args: raw_args (list): Optional list of commmand line arguments. If not passed these are pulled from sys.argv.
12,120
def run(self): self.viewing = True while self.viewing and self._lock.acquire(): try: line = self._readline() except: pass else: logger.info(line) self._lock.release() time.sleep(0)
Threading callback
12,121
def write_yaml(data, out_path, Dumper=yaml.Dumper, **kwds): import errno import os class OrderedDumper(Dumper): pass def _dict_representer(dumper, data): return dumper.represent_mapping( yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG, data.items()) Orde...
Write python dictionary to YAML
12,122
def __set_style_sheet(self): colors = map( lambda x: "rgb({0}, {1}, {2}, {3})".format(x.red(), x.green(), x.blue(), int(self.__opacity * 255)), (self.__color, self.__background_color, self.__border_color)) self.setStyleSheet(self.__style.format(*colors))
Sets the Widget stylesheet.
12,123
def GetFileEntryByPathSpec(self, path_spec): tsk_vs_part, partition_index = tsk_partition.GetTSKVsPartByPathSpec( self._tsk_volume, path_spec) location = getattr(path_spec, , None) if tsk_vs_part is None: if location is None or location != self.LOCATION_ROOT: return No...
Retrieves a file entry for a path specification. Args: path_spec (PathSpec): a path specification. Returns: TSKPartitionFileEntry: a file entry or None of not available.
12,124
def singleton(cls): INSTANCES = {} def _singleton(*args, **kwargs): if cls not in INSTANCES: INSTANCES[cls] = cls(*args, **kwargs) return INSTANCES[cls] return _singleton
单例模式的装饰器: 在需要单例的类定义上加 @singleton 即可
12,125
def _write_triggers(self, fh, triggers, indent=""): for trig in triggers: fh.write(indent + "+ " + self._write_wrapped(trig["trigger"], indent=indent) + "\n") d = trig if d.get("previous"): fh.write(indent + "% " + self._write_wrapped(d["previous"],...
Write triggers to a file handle. Parameters: fh (file): file object. triggers (list): list of triggers to write. indent (str): indentation for each line.
12,126
def canvasPressEvent(self, e): self.start_point = self.toMapCoordinates(e.pos()) self.end_point = self.start_point self.is_emitting_point = True self.show_rectangle(self.start_point, self.end_point)
Handle canvas press events so we know when user is capturing the rect. :param e: A Qt event object. :type: QEvent
12,127
def push(self, message, device=None, title=None, url=None, url_title=None, priority=None, timestamp=None, sound=None): api_url = payload = { : self.api_token, : self.user, : message, : device, : title, : url...
Pushes the notification, returns the Requests response. Arguments: message -- your message Keyword arguments: device -- your user's device name to send the message directly to that device, rather than all of the user's devices title -- your message's...
12,128
def fetch_max(self, cluster, metric, topology, component, instance, timerange, environ=None): components = [component] if component != "*" else (yield get_comps(cluster, environ, topology)) result = {} futures = [] for comp in components: query = self.get_query(metric, comp, instance) ...
:param cluster: :param metric: :param topology: :param component: :param instance: :param timerange: :param environ: :return:
12,129
def _clear(self): self._finished = False self._measurement = None self._message = None self._message_body = None
Resets all assigned data for the current message.
12,130
def get_resultsets(self, routine, *args): (query, replacements) = self.__build_raw_query(routine, args) connection = mm.db.ENGINE.raw_connection() sets = [] try: cursor = connection.cursor() cursor.execute(query, replacements) w...
Return a list of lists of dictionaries, for when a query returns more than one resultset.
12,131
def com_google_fonts_check_monospace_max_advancewidth(ttFont, glyph_metrics_stats): from fontbakery.utils import pretty_print_list seems_monospaced = glyph_metrics_stats["seems_monospaced"] if not seems_monospaced: yield SKIP, ("Font is not monospaced.") return max_advw = ttFont[].advanceWidthMa...
Monospace font has hhea.advanceWidthMax equal to each glyph's advanceWidth?
12,132
def init_queue_for( self, queue_identifier: QueueIdentifier, items: List[QueueItem_T], ) -> NotifyingQueue: recipient = queue_identifier.recipient queue = self.queueids_to_queues.get(queue_identifier) assert queue is None queue = Notifyin...
Create the queue identified by the queue_identifier and initialize it with `items`.
12,133
def Davis_David(m, x, D, rhol, rhog, Cpl, kl, mul): r G = m/(pi/4*D**2) Prl = Prandtl(Cp=Cpl, mu=mul, k=kl) Nu_TP = 0.060*(rhol/rhog)**0.28*(D*G*x/mul)**0.87*Prl**0.4 return Nu_TP*kl/D
r'''Calculates the two-phase non-boiling heat transfer coefficient of a liquid and gas flowing inside a tube of any inclination, as in [1]_ and reviewed in [2]_. .. math:: \frac{h_{TP} D}{k_l} = 0.060\left(\frac{\rho_L}{\rho_G}\right)^{0.28} \left(\frac{DG_{TP} x}{\mu_L}\right)^{0.87} ...
12,134
def _set_map_(self, v, load=False): if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=map_.map_, is_container=, presence=False, yang_name="map", rest_name="map", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u: {u: ...
Setter method for map_, mapped from YANG variable /overlay_gateway/map (container) If this variable is read-only (config: false) in the source YANG file, then _set_map_ is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_map_() directly.
12,135
def _check(user, topic): return False
If the topic has it's export_control set to True then all the teams under the product team can access to the topic's resources. :param user: :param topic: :return: True if check is ok, False otherwise
12,136
def CMOVS(cpu, dest, src): dest.write(Operators.ITEBV(dest.size, cpu.SF, src.read(), dest.read()))
Conditional move - Sign (negative). Tests the status flags in the EFLAGS register and moves the source operand (second operand) to the destination operand (first operand) if the given test condition is true. :param cpu: current CPU. :param dest: destination operand. :pa...
12,137
def _cleanup_markers(context_id, task_ids): logging.debug("Cleanup %d markers for Context %s", len(task_ids), context_id) delete_entities = [ndb.Key(FuriousAsyncMarker, id) for id in task_ids] delete_entities.append(ndb.Key(FuriousCompletionMarker, context_id)) ndb.delete_...
Delete the FuriousAsyncMarker entities corresponding to ids.
12,138
def open(self): if not self.handle: try: path = self.system_dir except AttributeError: path = self.__handle = lvm_init(path) if not bool(self.__handle): raise HandleError("Failed to initialize LVM handle.")
Obtains the lvm handle. Usually you would never need to use this method unless you are trying to do operations using the ctypes function wrappers in conversion.py *Raises:* * HandleError
12,139
def get_or_create(self, qualifier, new_parameter, **kwargs): ps = self.filter_or_get(qualifier=qualifier, **kwargs) if isinstance(ps, Parameter): return ps, False elif len(ps): raise ValueError("more than 1 result was found") else: ...
Get a :class:`Parameter` from the ParameterSet, if it does not exist, create and attach it. Note: running this on a ParameterSet that is NOT a :class:`phoebe.frontend.bundle.Bundle`, will NOT add the Parameter to the bundle, but only the temporary ParameterSet :paramete...
12,140
def getSoname(filename): cmd = ["objdump", "-p", "-j", ".dynamic", filename] m = re.search(r, compat.exec_command(*cmd)) if m: return m.group(1)
Return the soname of a library.
12,141
def google_news_search(self,query,category_label,num=50): IPOwww.cs.columbia.edu url = +self._encode_query(query) \ ++str(num)+ rss = feedparser.parse(url) entries = rss[] articles = [] for entry in entries: link = entry[] articl...
Searches Google News. NOTE: Official Google News API is deprecated https://developers.google.com/news-search/?hl=en NOTE: Google limits the maximum number of documents per query to 100. Use multiple related queries to get a bigger corpus. Args: query (str): The search...
12,142
def openSourceFile(self, fileToOpen): if self.fileName: currentExt = splitext(self.fileName)[1] basename, ext = splitext(fileToOpen) if ext in (, ) and exists(basename + currentExt): self.p.openFileWrapper(basename + currentExt) return basename + currentExt if exists(fileToOpen) and get_markup_f...
Finds and opens the source file for link target fileToOpen. When links like [test](test) are clicked, the file test.md is opened. It has to be located next to the current opened file. Relative paths like [test](../test) or [test](folder/test) are also possible.
12,143
def _set_local_preference(self, v, load=False): if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=local_preference.local_preference, is_container=, presence=False, yang_name="local-preference", rest_name="local-preference", parent=self, path_helper=self._path_helper, extmeth...
Setter method for local_preference, mapped from YANG variable /routing_system/route_map/content/set/local_preference (container) If this variable is read-only (config: false) in the source YANG file, then _set_local_preference is considered as a private method. Backends looking to populate this variable sho...
12,144
def pymmh3_hash128(key: Union[bytes, bytearray], seed: int = 0, x64arch: bool = True) -> int: if x64arch: return pymmh3_hash128_x64(key, seed) else: return pymmh3_hash128_x86(key, seed)
Implements 128bit murmur3 hash, as per ``pymmh3``. Args: key: data to hash seed: seed x64arch: is a 64-bit architecture available? Returns: integer hash
12,145
def first_visible_line(self, after_scroll_offset=False): if after_scroll_offset: return self.displayed_lines[self.applied_scroll_offsets.top] else: return self.displayed_lines[0]
Return the line number (0 based) of the input document that corresponds with the first visible line.
12,146
def show(self, view: View, request: Request): return view.render(, { : request.app().make() })
Show the welcome page. Arguments: view {masonite.view.View} -- The Masonite view class. Application {config.application} -- The application config module. Returns: masonite.view.View -- The Masonite view class.
12,147
def get(self, user_id): user = db.User.find_one(User.user_id == user_id) roles = db.Role.all() if not user: return self.make_response(, HTTP.NOT_FOUND) return self.make_response({ : user.to_json(), : roles }, HTTP.OK)
Returns a specific user
12,148
def get(self, layout, default=None): try: return self.__getitem__(layout) except KeyError as error: return default
Returns given layout value. :param layout: Layout name. :type layout: unicode :param default: Default value if layout is not found. :type default: object :return: Action. :rtype: QAction
12,149
def build_kalman_mean_step(get_transition_matrix_for_timestep, get_transition_noise_for_timestep, get_observation_matrix_for_timestep, get_observation_noise_for_timestep): def mean_step(previous_means, t): previous_latent_me...
Build a callable that performs one step of Kalman mean recursion. Args: get_transition_matrix_for_timestep: callable taking a timestep as an integer `Tensor` argument, and returning a `LinearOperator` of shape `[latent_size, latent_size]`. get_transition_noise_for_timestep: callable taking a time...
12,150
def locked_put(self, credentials): entity, _ = self.model_class.objects.get_or_create( **{self.key_name: self.key_value}) setattr(entity, self.property_name, credentials) entity.save()
Write a Credentials to the Django datastore. Args: credentials: Credentials, the credentials to store.
12,151
def lattice_from_abivars(cls=None, *args, **kwargs): cls = Lattice if cls is None else cls kwargs.update(dict(*args)) d = kwargs rprim = d.get("rprim", None) angdeg = d.get("angdeg", None) acell = d["acell"] if rprim is not None: if angdeg is not None: raise ValueE...
Returns a `Lattice` object from a dictionary with the Abinit variables `acell` and either `rprim` in Bohr or `angdeg` If acell is not given, the Abinit default is used i.e. [1,1,1] Bohr Args: cls: Lattice class to be instantiated. pymatgen.core.lattice.Lattice if `cls` is None Example: ...
12,152
def build(self): ang_per_res = (2 * numpy.pi) / self.residues_per_turn atom_offsets = _atom_offsets[self.helix_type] if self.handedness == : handedness = -1 else: handedness = 1 atom_labels = [, , , ] if all([x in atom_offsets.keys() for ...
Build straight helix along z-axis, starting with CA1 on x-axis
12,153
def run_epilogue(self): logger = logging.getLogger(__name__) if self.epilogue is not None: with tempfile.NamedTemporaryFile(, delete=False) as epilogue_fh: epilogue_fh.write(self.epilogue) tempfilename = epilogue_fh.name set_executable(tem...
Run the epilogue script in the current working directory. raises: subprocess.CalledProcessError: if the script does not finish with exit code zero.
12,154
def get_order(self, order_id): url = "{0}/{1}/accounts/{2}/orders/{3}".format( self.domain, self.API_VERSION, self.account_id, order_id ) try: return self._Client__call(uri=url, method="get") except RequestException: ...
See more: http://developer.oanda.com/rest-live/orders/#getInformationForAnOrder
12,155
def Process(self, parser_mediator, root_item=None, **kwargs): super(DocumentSummaryInformationOLECFPlugin, self).Process( parser_mediator, **kwargs) if not root_item: raise ValueError() root_creation_time, root_modification_time = self._GetTimestamps(root_item) for item_name i...
Parses a document summary information OLECF item. Args: parser_mediator (ParserMediator): mediates interactions between parsers and other components, such as storage and dfvfs. root_item (Optional[pyolecf.item]): root item of the OLECF file. Raises: ValueError: If the root item is ...
12,156
def _parse_xml(self): import xml.etree.ElementTree as ET from os import path required = {"testing": False, "wiki": False} if path.isfile(self.filepath): tree = ET.parse(self.filepath) vms("Parsing XML tree from {}.".for...
Extracts the XML settings into class instances that can operate on the settings to perform the testing functions.
12,157
def buy(self, account_id, **params): if not in params and not in params: raise ValueError("Missing required parameter: or ") for required in [, ]: if required not in params: raise ValueError("Missing required parameter: %s" % required) response...
https://developers.coinbase.com/api/v2#buy-bitcoin
12,158
def decode_array(values): out = [] for val in values: try: out.append(val.decode()) except AttributeError: out.append(val) return out
Decode the values which are bytestrings.
12,159
def to_pickle(obj, path, compression=, protocol=pickle.HIGHEST_PROTOCOL): path = _stringify_path(path) f, fh = _get_handle(path, , compression=compression, is_text=False) if protocol < 0: protocol = pickle.HIGHEST_PROTOCOL try: ...
Pickle (serialize) object to file. Parameters ---------- obj : any object Any python object. path : str File path where the pickled object will be stored. compression : {'infer', 'gzip', 'bz2', 'zip', 'xz', None}, default 'infer' A string representing the compression to use ...
12,160
def dihed_iter(self, g_nums, ats_1, ats_2, ats_3, ats_4, \ invalid_error=False): from .utils import pack_tups if _DEBUG: print("g_nums = {0}".format(g_nums)) print("ats_1 = {0}"....
Iterator over selected dihedral angles. Angles are in degrees as with :meth:`dihed_single`. See `above <toc-generators_>`_ for more information on calling options. Parameters ---------- g_nums |int| or iterable |int| or |None| -- Indices of the...
12,161
def confdate(self): date = self._confevent.get(, {}) if len(date) > 0: start = {k: int(v) for k, v in date[].items()} end = {k: int(v) for k, v in date[].items()} return ((start[], start[], start[]), (end[], end[], end[])) else: ...
Date range of the conference the abstract belongs to represented by two tuples in the form (YYYY, MM, DD).
12,162
def create(self, data, **kwargs): CreateMixin._check_missing_create_attrs(self, data) path = % (self.path, data.pop()) server_data = self.gitlab.http_post(path, **kwargs) server_data[] = server_data[] return self._obj_cls(self, server_data)
Create a new object. Args: data (dict): Parameters to send to the server to create the resource **kwargs: Extra options to send to the server (e.g. sudo) Raises: GitlabAuthenticationError: If authentication is not correct GitlabC...
12,163
def load(self, id): l.debug("LOAD: %s", id) try: l.debug("... trying cached") return self._object_cache[id] except KeyError: l.debug("... cached failed") with self._read_context(id) as u: return VaultUnpickler(self, u).loa...
Retrieves one object from the pickler with the provided id. :param id: an ID to use
12,164
def collect(cls, sources): source_stats_dict = {} for src in sources: trt = src[] if trt not in source_stats_dict: source_stats_dict[trt] = SourceGroup(trt) sg = source_stats_dict[trt] if not sg.sources: ...
:param sources: dictionaries with a key 'tectonicRegion' :returns: an ordered list of SourceGroup instances
12,165
def to_protobuf(self) -> SaveStateProto: result = SaveStateProto() result.version = str(self.version) result.last_update.CopyFrom(datetime_to_timestamp(self.last_update)) result.plugin_info.CopyFrom(self.plugin_info.to_protobuf()) for key, link_item in self.link_item_dic...
Create protobuf item. :return: protobuf structure :rtype: ~unidown.plugin.protobuf.save_state_pb2.SaveStateProto
12,166
def discover_resources(): locale_discovery_paths = list(settings.TRANZ_LOCALE_PATHS) if settings.TRANZ_SEARCH_LOCALE_IN_APPS: locale_discovery_paths += [os.path.join(app.path, settings.TRANZ_DIR_NAME) for app in list(apps.app_configs.values())] APP_LANGUAGES = [l[0] for l in settings.T...
Searches for translations files matching [catalog].[lang].[format] Traverses TRANZ_LOCALE_PATHS: - | TRANZ_LOCALE_PATHS +- messages.fr.yml | messages.en.yml And apps paths if TRANZ_SEARCH_LOCALE_IN_APPS is set to True): - | app_path +- TRANZ_DIR_NAME +- messages.fr.yml ...
12,167
def stop(self): pid = None if os.path.exists(self.pidfile): with open(self.pidfile, ) as fp: pid = int(fp.read().strip()) if not pid: msg = sys.stderr.write(msg % self.pidfile) return try: while 1: ...
Stop the daemon.
12,168
def _get_conda_version(stdout, stderr): pat = re.compile(r) m = pat.match(stderr.decode().strip()) if m is None: m = pat.match(stdout.decode().strip()) if m is None: raise Exception(.format(stderr)) return m.group(1)
Callback for get_conda_version.
12,169
def unpack_post(environ, content_length): post_body = environ[].read(content_length).decode("utf-8") data = None if "application/x-www-form-urlencoded" in environ["CONTENT_TYPE"]: data = dict(parse_qsl(post_body)) elif "application/json" in environ["CONTENT_TYPE"]: data = json.loads...
Unpacks a post request query string. :param environ: whiskey application environment. :return: A dictionary with parameters.
12,170
def _get_localhost_ssh_port(): for line in _get_vm_config(): if line.startswith(): spec = line.split()[1].strip() name, protocol, host, host_port, target, target_port = spec.split() if name == and protocol == and target_port == : return host_port ...
Something in the VM chain, either VirtualBox or Machine, helpfully sets up localhost-to-VM forwarding on port 22. We can inspect this rule to determine the port on localhost which gets forwarded to 22 in the VM.
12,171
def moderators(self, limit=None): return self._reddit.moderators(self.display_name, limit=limit)
GETs moderators for this subreddit. Calls :meth:`narwal.Reddit.moderators`. :param limit: max number of items to return
12,172
def _validate_obj_by_schema(self, obj, obj_nex_id, vc): return self._validate_id_obj_list_by_schema([(obj_nex_id, obj)], vc, group_by_warning=False)
Creates: errors if `obj` does not contain keys in the schema.ALLOWED_KEY_SET, warnings if `obj` lacks keys listed in schema.EXPECETED_KEY_SET, or if `obj` contains keys not listed in schema.ALLOWED_KEY_SET.
12,173
def basic_retinotopy_data(hemi, retino_type): polar_angleeccentricityvisual_areaweight dat = _retinotopy_names[retino_type.lower()] val = next((hemi.prop(s) for s in six.iterkeys(hemi.properties) if s.lower() in dat), None) if val is None and retino_type.lower() != : val = predicted_retinotopy_d...
basic_retinotopy_data(hemi, t) yields a numpy array of data for the given cortex object hemi and retinotopy type t; it does this by looking at the properties in hemi and picking out any combination that is commonly used to denote empirical retinotopy data. These common names are stored in _predicted_retinto...
12,174
def _create_struct(data, session): out = Struct() for name in data.dtype.names: item = data[name] if isinstance(item, np.ndarray) and item.dtype.kind == : item = item.squeeze().tolist() out[name] = _extract(item, session) return out
Create a struct from session data.
12,175
def uploader(func): @wraps(func) def wrapper(*args, **kwargs): func_num = request.args.get() message = current_app.config[] url = func(*args, **kwargs) return Markup( % (func_num, url, message))...
This method only used for CKEditor under version 4.5, in newer version, you should use ``upload_success()`` and ``upload_fail()`` instead. Decorated the view function that handle the file upload. The upload view must return the uploaded image's url. For example:: from flask import ...
12,176
def on_lock(self, widget, data=None): path_list = None if self.view is not None: model, path_list = self.tree_view.get_selection().get_selected_rows() models = [self.list_store[path][self.MODEL_STORAGE_ID] for path in path_list] if path_list else [] if models: ...
Locks respective selected core element
12,177
def prepare_samples(job, patient_dict, univ_options): job.fileStore.logToMaster( % univ_options[]) output_dict = {} for input_file in patient_dict: if not input_file.endswith((, , , , , , )): output_dict[input_file] = patient_dict[input_file] continue o...
Obtain the input files for the patient and write them to the file store. :param dict patient_dict: The input fastq dict patient_dict: |- 'tumor_dna_fastq_[12]' OR 'tumor_dna_bam': str |- 'tumor_rna_fastq_[12]' OR 'tumor_rna_bam': str |- 'normal_dna_fastq_[12]...
12,178
def relatedness_title(tt_pairs, gcube_token=None, lang=DEFAULT_LANG, api=DEFAULT_REL_API): return _relatedness("tt", tt_pairs, gcube_token, lang, api)
Get the semantic relatedness among pairs of entities. Entities are indicated by their Wikipedia ID (an integer). :param tt_pairs: either one pair or a list of pairs of entity titles. :param gcube_token: the authentication token provided by the D4Science infrastructure. :param lang: the Wikipedia languag...
12,179
def attachment_md5(self): MAX_MD5_FILE_SIZE = 10000 md5_set = [] def md5_add_text(text): try: text = str(text, errors=) text = text.replace(, ).replace( , ).replace(, ) hexvalues = hashlib.md5(text.encode()...
Calculate the checksum of the file upload. For binary files (e.g. PDFs), the MD5 of the file itself is used. Archives are unpacked and the MD5 is generated from the sanitized textfiles in the archive. This is done with some smartness: - Whitespace and tabs are removed be...
12,180
def print_tables(xmldoc, output, output_format, tableList = [], columnList = [], round_floats = True, decimal_places = 2, format_links = True, title = None, print_table_names = True, unique_rows = False, row_span_columns = [], rspan_break_columns = []): if tableList == []: tableList = ...
Method to print tables in an xml file in other formats. Input is an xmldoc, output is a file object containing the tables. @xmldoc: document to convert @output: file object to write output to; if None, will write to stdout @output_format: format to convert to @tableList: only convert the listed...
12,181
def param_particle_rad(self, ind): ind = self._vps(listify(ind)) return [self._i2p(i, ) for i in ind]
Get radius of one or more particles
12,182
def parse(self, raw_content, find_message_cb): status, detailed_status = None, None self.payload = parse_mime(raw_content) self.orig_message_id, orig_recipient = self.detect_mdn() orig_message = find_message_cb(self.orig_message_id, orig_recipient) m...
Function parses the RAW AS2 MDN, verifies it and extracts the processing status of the orginal AS2 message. :param raw_content: A byte string of the received HTTP headers followed by the body. :param find_message_cb: A callback the must returns the original Message Obje...
12,183
def primers(self): with open(self.formattedprimers, ) as formatted: for record in SeqIO.parse(self.primerfile, ): degenerates = Seq.IUPAC.IUPACData.ambiguous_dna_values try: primerlist = list(map("".join, ...
Read in the primer file, and create a properly formatted output file that takes any degenerate bases into account
12,184
def get_field_by_showname(self, showname): for field in self._get_all_fields_with_alternates(): if field.showname_key == showname: return field
Gets a field by its "showname" (the name that appears in Wireshark's detailed display i.e. in 'User-Agent: Mozilla...', 'User-Agent' is the showname) Returns None if not found.
12,185
def change_svc_check_timeperiod(self, service, check_timeperiod): service.modified_attributes |= DICT_MODATTR["MODATTR_CHECK_TIMEPERIOD"].value service.check_period = check_timeperiod self.send_an_element(service.get_update_status_brok())
Modify service check timeperiod Format of the line that triggers function call:: CHANGE_SVC_CHECK_TIMEPERIOD;<host_name>;<service_description>;<check_timeperiod> :param service: service to modify check timeperiod :type service: alignak.objects.service.Service :param check_timep...
12,186
def put_records(self, records, partition_key=None): for record in records: self.put_record(record, partition_key)
Add a list of data records to the record queue in the proper format. Convinience method that calls self.put_record for each element. Parameters ---------- records : list Lists of records to send. partition_key: str Hash that determines which shard a given...
12,187
def calculate_size(name, entry_processor, keys): data_size = 0 data_size += calculate_size_str(name) data_size += calculate_size_data(entry_processor) data_size += INT_SIZE_IN_BYTES for keys_item in keys: data_size += calculate_size_data(keys_item) return data_size
Calculates the request payload size
12,188
def get_central_wave(wav, resp, weight=1.0): return np.trapz(resp * wav * weight, wav) / np.trapz(resp * weight, wav)
Calculate the central wavelength or the central wavenumber, depending on which parameters is input. On default the weighting funcion is f(lambda)=1.0, but it is possible to add a custom weight, e.g. f(lambda) = 1./lambda**4 for Rayleigh scattering calculations
12,189
def _set_mpls_config(self, v, load=False): if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=mpls_config.mpls_config, is_container=, presence=False, yang_name="mpls-config", rest_name="", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths...
Setter method for mpls_config, mapped from YANG variable /mpls_config (container) If this variable is read-only (config: false) in the source YANG file, then _set_mpls_config is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_mpls_config()...
12,190
def _create_add_petabencana_layer_action(self): icon = resources_path(, , ) self.action_add_petabencana_layer = QAction( QIcon(icon), self.tr(), self.iface.mainWindow()) self.action_add_petabencana_layer.setStatusTip(self.tr( )) se...
Create action for import OSM Dialog.
12,191
def execute(self, output_options=None, sampling=None, context=None, query_params=None): return self.execute_async(output_options, sampling=sampling, context=context, query_params=query_params).wait()
Initiate the query and return a QueryJob. Args: output_options: a QueryOutput object describing how to execute the query sampling: sampling function to use. No sampling is done if None. See bigquery.Sampling context: an optional Context object providing project_id and credentials. If a specific ...
12,192
def predict(self, X, lengths=None): _, state_sequence = self.decode(X, lengths) return state_sequence
Find most likely state sequence corresponding to ``X``. Parameters ---------- X : array-like, shape (n_samples, n_features) Feature matrix of individual samples. lengths : array-like of integers, shape (n_sequences, ), optional Lengths of the individual sequence...
12,193
def shift_ordering_up(self, parent_id, position, db_session=None, *args, **kwargs): return self.service.shift_ordering_up( parent_id=parent_id, position=position, db_session=db_session, *args, **kwargs )
Shifts ordering to "open a gap" for node insertion, begins the shift from given position :param parent_id: :param position: :param db_session: :return:
12,194
def set_variable(section, value, create): if not value: value = section section = None try: logger.debug() settings = config.Settings(section=section) conf = s3conf.S3Conf(settings=settings) env_vars = conf.get_envfile() env_vars.set(value, create=cr...
Set value of a variable in an environment file for the given section. If the variable is already defined, its value is replaced, otherwise, it is added to the end of the file. The value is given as "ENV_VAR_NAME=env_var_value", e.g.: s3conf set test ENV_VAR_NAME=env_var_value
12,195
def get_ssl(self, host_and_port=None): if not host_and_port: host_and_port = self.current_host_and_port return self.__ssl_params.get(host_and_port)
Get SSL params for the given host. :param (str,int) host_and_port: the host/port pair we want SSL params for, default current_host_and_port
12,196
def contribution_maps_1d_from_hyper_images_and_galaxies(hyper_model_image_1d, hyper_galaxy_images_1d, hyper_galaxies, hyper_minimum_values): return list(map(lambda hyper_galaxy, hyper_galaxy_image_1d, hyper_minimum_value: hyper_ga...
For a fitting hyper_galaxy_image, hyper_galaxy model image, list of hyper galaxies images and model hyper galaxies, compute their contribution maps, which are used to compute a scaled-noise_map map. All quantities are masked 1D arrays. The reason this is separate from the *contributions_from_fitting_hyper_imag...
12,197
def HHIPreFilter(config={}): fil = numpy.array( [-4, 8, 25, -123, 230, 728, 230, -123, 25, 8, -4], dtype=numpy.float32).reshape((-1, 1, 1)) / numpy.float32(1000) resize = Resize(config=config) out_frame = Frame() out_frame.data = fil out_frame.type = audit = out_frame.meta...
HHI pre-interlace filter. A widely used prefilter to prevent line twitter when converting sequential images to interlace. Coefficients taken from: 'Specification of a Generic Format Converter', S. Pigeon, L. Vandendorpe, L. Cuvelier and B. Maison, CEC RACE/HAMLET Deliverable no R2110/WP2/DS/S/006/...
12,198
def run_forecast(self): self.prepare_hmet() self.prepare_gag() self.rapid_to_gssha() self.hotstart() return self.run()
Updates card & runs for RAPID to GSSHA & LSM to GSSHA
12,199
def correlation_linear( values_1, values_2, printout = None ): r, p_value = scipy.stats.pearsonr(values_1, values_2) if printout is not True: return r, p_value else: text = ( "Pearson linear correlation coefficient: {r}\n" "2-tailed p-value: {p_...
This function calculates the Pearson product-moment correlation coefficient. This is a measure of the linear collelation of two variables. The value can be between +1 and -1 inclusive, where 1 is total positive correlation, 0 is no correlation and -1 is total negative correlation. It is a measure of the ...