content
string
"""MatrixInverseTriL bijector.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function from tensorflow.python.framework import dtypes from tensorflow.python.framework import ops from tensorflow.python.ops import array_ops from tensorflow.python.ops import check_...
from django import template from django.utils.encoding import iri_to_uri from django.utils.six.moves.urllib.parse import urljoin register = template.Library() class PrefixNode(template.Node): def __repr__(self): return "<PrefixNode for %r>" % self.name def __init__(self, varname=None, name=None): ...
""" * --------------------- * | | | Coding Game Server | | | * --------------------- * Authors: M. Pecheux (based on T. Hilaire and J. Brajard template file) Licence: GPL File: aliceRandomPlayer.py Contains the class aliceRandomPlayer -> defines a dummy Alice player t...
import webob.exc from nova.api.openstack import extensions from nova import context as nova_context from nova import exception from nova.i18n import _ from nova import objects from nova import utils authorize = extensions.extension_authorizer('compute', 'agents') class AgentController(object): """The agent is ...
""" XML handler for region condition """ # Standard library modules. # Third party modules. # Local modules. from pyhmsa.spec.condition.region import RegionOfInterest from pyhmsa.fileformat.xmlhandler.condition.condition import _ConditionXMLHandler # Globals and constants variables. class RegionOfInterestXMLHandle...
''' xbmcswift2 ---------- A micro framework to enable rapid development of XBMC plugins. :copyright: (c) 2012 by Jonathan Beluch :license: GPLv3, see LICENSE for more details. ''' from types import ModuleType class module(ModuleType): '''A wrapper class for a module used to override __getatt...
import ast from ..common import CheckstylePlugin class MissingContextManager(CheckstylePlugin): """Recommend the use of contextmanagers when it seems appropriate.""" def nits(self): with_contexts = set(self.iter_ast_types(ast.With)) with_context_calls = set(node.context_expr for node in with_contexts ...
"""AMQPStorm Exception.""" AMQP_ERROR_MAPPING = { 311: ('CONTENT-TOO-LARGE', 'The client attempted to transfer content larger than the ' 'server could accept at the present time. The client may ' 'retry at a later time.'), 312: ('NO-ROUTE', 'Undocumented AMQP Soft Error'), 31...
import datetime from dateutil import relativedelta from cycle_calculator import CycleCalculator class AnnuallyCycleCalculator(CycleCalculator): """CycleCalculator implementation for annual workflows. Month domain is 1-12, date domain is 1-31. """ time_delta = relativedelta.relativedelta(years=1) date_doma...
"""Skeleton for 'nose.tools' module. Project: nose 1.3 <https://nose.readthedocs.org/> Skeleton by: Andrey Vlasovskikh <<EMAIL>> """ import sys def assert_equal(first, second, msg=None): """Fail if the two objects are unequal as determined by the '==' operator. """ pass def assert_not_equal(first, se...
"""Python wrappers for training ops.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function from tensorflow.python.training import gen_training_ops # go/tf-wildcard-import # pylint: disable=wildcard-import from tensorflow.python.training.gen_training_ops import...
#! /usr/bin/env python import sys from optparse import OptionParser import random parser = OptionParser() parser.add_option('-s', '--seed', default=0, help='the random seed', action='store', type='int', dest='seed') parser.add_option('-j', '--jobs', default=3, help='number of jobs in the system', action=...
import unittest from ctypes import * from binascii import hexlify import re def dump(obj): # helper function to dump memory contents in hex, with a hyphen # between the bytes. h = hexlify(memoryview(obj)) return re.sub(r"(..)", r"\1-", h)[:-1] class Value(Structure): _fields_ = [("val", c_byte)] ...
from ctypes import POINTER, c_char_p, c_int, c_size_t, c_ubyte from django.contrib.gis.geos.libgeos import CS_PTR, GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import ( check_geom, check_minus_one, check_sized_string, check_string, check_zero, ) # This is the return type used by bina...
# -*- coding: utf-8 -*- from south.utils import datetime_utils as datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Adding field 'CourseOverview.created' db.add_column('course_overviews_c...
""" Tests for uu module. Nick Mathewson """ import unittest from test import test_support import sys, os, uu, cStringIO import uu plaintext = "The smooth-scaled python crept over the sleeping dog\n" encodedtext = """\ M5&AE('-M;V]T:\"US8V%L960@<'ET:&]N(&-R97!T(&]V97(@=&AE('-L965P (:6YG(&1O9PH """ encodedtextwrappe...
import wpan # ----------------------------------------------------------------------------------------------------------------------- # Test description: # # This test covers a situation where a single parent exists in network with poor link quality ensuring the child # can attach the parent. test_name = __file__[:-3...
from ansible import utils class ReturnData(object): ''' internal return class for runner execute methods, not part of public API signature ''' __slots__ = [ 'result', 'comm_ok', 'host', 'diff' ] def __init__(self, conn=None, host=None, result=None, comm_ok=True, diff=dict()): # which ho...
""" Support for MS-SQL via mxODBC. mxODBC is available at: http://www.egenix.com/ This was tested with mxODBC 3.1.2 and the SQL Server Native Client connected to MSSQL 2005 and 2008 Express Editions. Connecting ~~~~~~~~~~ Connection is via DSN:: mssql+mxodbc://<username>:<password>@<dsnname> Executio...
""" Module containing the UniversalDetector detector class, which is the primary class a user of ``chardet`` should use. :author: Mark Pilgrim (initial port to Python) :author: Shy Shalom (original C code) :author: Dan Blanchard (major refactoring for 3.0) :author: Ian Cordasco """ import codecs import logging impor...
from __future__ import unicode_literals from django.test import TestCase from .models import Author, Article, SystemInfo, Forum, Post, Comment class NullFkOrderingTests(TestCase): def test_ordering_across_null_fk(self): """ Regression test for #7512 ordering across nullable Foreign Key...
""" mbed SDK Copyright (c) 2011-2013 ARM Limited Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
""" Utility functions to return a formatted name and description for a given view. """ from django.utils.html import escape from django.utils.safestring import mark_safe from taiga.base.api.settings import api_settings from textwrap import dedent import re # Markdown is optional try: import markdown def app...
""" A library for working with BackendInfoExternal records, describing backends configured for an application. Supports loading the records from backend.yaml. """ import os import yaml from yaml import representer if os.environ.get('APPENGINE_RUNTIME') == 'python27': from google.appengine.api import validati...
"""Test code for the Face layer of RPC Framework.""" import abc import unittest # test_interfaces is referenced from specification in this module. from grpc.framework.interfaces.face import face from grpc_test.framework.common import test_constants from grpc_test.framework.common import test_control from grpc_test.fr...
from .ResultSet import ResultSet from .SingleResult import SingleResult from PyQt4.QtGui import * from PyQt4.QtCore import Qt class AnalysisResults(object): """Contains all results found for a given analysis.""" def __init__(self , resultfactory=None): """Results that span across multiple pages"""...
import six import string from st2common.util import schema as util_schema from st2common.models.api.notification import NotificationSubSchemaAPI class Node(object): schema = { "title": "Node", "description": "Node of an ActionChain.", "type": "object", "properties": { ...
def main(): """ Main entry point for AnsibleModule """ spec = dict( config=dict(type='bool'), config_format=dict(default='text', choices=['xml', 'set', 'text']), transport=dict(default='netconf', choices=['netconf']) ) module = get_module(argument_spec=spec, ...
""" Python 'unicode-internal' Codec Written by Marc-Andre Lemburg (<EMAIL>). (c) Copyright CNRI, All Rights Reserved. NO WARRANTY. """ import codecs ### Codec APIs class Codec(codecs.Codec): # Note: Binding these as C functions will result in the class not # converting them to methods. Thi...
##################################################################### #This file is for use to fully reset the Subterfuge Database #It should only be necessary due to significant develompent changes #Usage MUST be as follows: #rm db && rm base_db #./manage.py syncdb #python dbconfigure.py #This will rebuild the Databas...
# -*- coding: utf-8 -*- """ flask.wrappers ~~~~~~~~~~~~~~ Implements the WSGI wrappers (request and response). :copyright: (c) 2011 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from werkzeug.wrappers import Request as RequestBase, Response as ResponseBase from werkzeug.exce...
#!/usr/bin/python # Tests p2p_find # Will list all devices found/lost within a time frame (timeout) # Then Program will exit ######### MAY NEED TO RUN AS SUDO ############# import dbus import sys, os import time import gobject import threading import getopt from dbus.mainloop.glib import DBusGMainLoop def usage(): p...
import logging import os import luigi import luigi.contrib.hadoop_jar import luigi.contrib.hdfs logger = logging.getLogger('luigi-interface') def hadoop_examples_jar(): config = luigi.configuration.get_config() examples_jar = config.get('hadoop', 'examples-jar') if not examples_jar: logger.error...
# -*- coding: utf-8 -*- import datetime from south.db import db from south.v2 import SchemaMigration from django.db import models try: from django.contrib.auth import get_user_model except ImportError: # django < 1.5 from django.contrib.auth.models import User else: User = get_user_model() user_orm_label...
# -*- coding: utf-8 -*- """This module contains functions called from console script entry points.""" import os import sys from os.path import dirname, exists, join import pkg_resources pkg_resources.require("TurboGears") import turbogears import cherrypy cherrypy.lowercase_api = True class ConfigurationError(Exc...
import Globals import os.path skinsDir = os.path.join(os.path.dirname(__file__), 'skins') from Products.CMFCore.DirectoryView import registerDirectory if os.path.isdir(skinsDir): registerDirectory(skinsDir, globals()) import transaction from Products.ZenModel.ZenossInfo import ZenossInfo from Products.ZenModel.Ze...
""" Course certificate generation These methods generate course certificates (they create a new course certificate if it does not yet exist, or update the existing cert if it does already exist). For now, these methods deal primarily with allowlist certificates, and are part of the V2 certificates revamp. These meth...
from __future__ import absolute_import, division, print_function __metaclass__ = type ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'} from ansible.module_utils.basic import AnsibleModule class BackendProp(object): def _...
"""Object-oriented command-line option support. """ import getopt import os import os.path import sys import types def _line_wrap(text, width = 70): lines = [] current_line = '' words = text.strip().split() while words: word = words.pop(0) if len(current_line) + len(word) + 1 < width:...
import re import sys from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style from .winterm import WinTerm, WinColor, WinStyle from .win32 import windll if windll is not None: winterm = WinTerm() def is_a_tty(stream): return hasattr(stream, 'isatty') and stream.isatty() class StreamWrapper(object): '''...
import test.test_support, unittest import os class CodingTest(unittest.TestCase): def test_bad_coding(self): module_name = 'bad_coding' self.verify_bad_module(module_name) def test_bad_coding2(self): module_name = 'bad_coding2' self.verify_bad_module(module_name) def verif...
ANSIBLE_METADATA = {'status': ['preview'], 'supported_by': 'community', 'metadata_version': '1.0'} from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.ce import get_config, load_config, ce_argument_spec class SnmpLocation(object): """ Manages SNM...
#!/usr/bin/python2 # Emulates the behaviour of codesign --deep which is missing on OS X < 10.9 import os import re import subprocess import sys def SignPath(path, developer_id, deep=True): args = [ 'codesign', '--preserve-metadata=identifier,entitlements,resource-rules,requirements', '-s', developer_id,...
import os # toolchains options ARCH='ppc' CPU='ppc405' CROSS_TOOL='gcc' TextBase = '0x00000000' PLATFORM = 'gcc' EXEC_PATH = 'C:/Program Files/CodeSourcery/Sourcery G++ Lite/bin' BUILD = 'debug' if os.getenv('RTT_EXEC_PATH'): EXEC_PATH = os.getenv('RTT_EXEC_PATH') if PLATFORM == 'gcc': # toolchains PREFIX...
import logging from typing import List import numpy as np import torch import torch.nn as nn from pinta.model.model_base import NN LOG = logging.getLogger("ConvRNN") class ConvRNN(NN): """ Combination of a convolutional front end and an RNN (GRU) layer below >> see https://gist.github.com/spro/c87cc706...
# -*- coding: utf-8 -*- import datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Adding model 'SystemWeight' db.create_table('SiteTracker_systemweight', ( ('system', self.gf('...
from django.db import models from django.utils.translation import ugettext_lazy as _ class SessionManager(models.Manager): def encode(self, session_dict): """ Returns the given session dictionary serialized and encoded as a string. """ return SessionStore().encode(session_dict) ...
""" Package generated from /Volumes/Sap/System Folder/Extensions/AppleScript Resource aeut resid 0 Standard Event Suites for English """ from warnings import warnpy3k warnpy3k("In 3.x, the StdSuites package is removed.", stacklevel=2) import aetools Error = aetools.Error import Text_Suite import AppleScript_Suite imp...
"""Class for setting handshake parameters.""" from constants import CertificateType from utils import cryptomath from utils import cipherfactory class HandshakeSettings: """This class encapsulates various parameters that can be used with a TLS handshake. @sort: minKeySize, maxKeySize, cipherNames, certifi...
###################################################################### # This file should be kept compatible with Python 2.3, see PEP 291. # ###################################################################### import sys from ctypes import * _array_type = type(c_int * 3) def _other_endian(typ): """Ret...
"""BibFormat element - Links to arXiv""" from cgi import escape from invenio.base.i18n import gettext_set_language def format_element(bfo, tag="037__", target="_blank"): """ Extracts the arXiv preprint information and presents it as a direct link towards arXiv.org """ _ = gettext_set_language(bfo....
import os import copy from itertools import chain from robot.errors import DataError from robot.libraries import STDLIBS from robot.output import LOGGER, Message from robot.parsing.settings import Library, Variables, Resource from robot.utils import (eq, find_file, is_string, OrderedDict, printable_name, ...
import datetime import shutil import tempfile import time from pyspark.sql import Row from pyspark.sql.functions import lit from pyspark.sql.types import StructType, StructField, DecimalType, BinaryType from pyspark.testing.sqlutils import ReusedSQLTestCase, UTCOffsetTimezone class SerdeTests(ReusedSQLTestCase): ...
"""Tests for Adam.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np from tensorflow.compiler.tests.xla_test import XLATestCase from tensorflow.python.framework import constant_op from tensorflow.python.ops import array_ops from tensorf...
# Test the Unicode versions of normal file functions # open, os.open, os.stat. os.listdir, os.rename, os.remove, os.mkdir, os.chdir, os.rmdir import os import sys import unittest import warnings from unicodedata import normalize from test import support filenames = [ '1_abc', '2_ascii', '3_Gr\xfc\xdf-Gott'...
""" Tools for converting old- to new-style metadata. """ import email.parser import os.path import re import textwrap from collections import namedtuple, OrderedDict import pkg_resources from . import __version__ as wheel_version from .pkginfo import read_pkg_info from .util import OrderedDefaultDict METADATA_VERSI...
"""DNS rdata. @var _rdata_modules: A dictionary mapping a (rdclass, rdtype) tuple to the module which implements that type. @type _rdata_modules: dict @var _module_prefix: The prefix to use when forming modules names. The default is 'dns.rdtypes'. Changing this value will break the library. @type _module_prefix: str...
'''This class extends pexpect.spawn to specialize setting up SSH connections. This adds methods for login, logout, and expecting the shell prompt. PEXPECT LICENSE This license is approved by the OSI and FSF as GPL-compatible. http://opensource.org/licenses/isc-license.txt Copyright (c) 2012, Noah Spu...
import os import sys sys.path.append(os.environ['PERF_EXEC_PATH'] + \ '/scripts/python/Perf-Trace-Util/lib/Perf/Trace') from Core import * from perf_trace_context import * unhandled = autodict() def trace_begin(): print "trace_begin" pass def trace_end(): print_unhandled() def irq__softirq_entry(event_...
import sys import os import em import genmsg.command_line import genmsg.msgs import genmsg.msg_loader import genmsg.gentools # generate msg or srv files from a template file # template_map of the form { 'template_file':'output_file'} output_file can contain @NAME@ which will be replaced by the message/service name def...
"""Tests for string_join_op.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function from tensorflow.python.ops import string_ops from tensorflow.python.platform import test class StringJoinOpTest(test.TestCase): def testStringJoin(self): input0 = ["a", ...
from __future__ import absolute_import import logging import os import tempfile import re # TODO: Get this into six.moves.urllib.parse try: from urllib import parse as urllib_parse except ImportError: import urlparse as urllib_parse from pip.utils import rmtree, display_path from pip.vcs import vcs, VersionC...
import functools import hashlib from django.conf import settings from django.utils import importlib from django.utils.datastructures import SortedDict from django.utils.encoding import smart_str from django.core.exceptions import ImproperlyConfigured from django.utils.crypto import ( pbkdf2, constant_time_compare,...
_MGMT_STR = "management" _LEFT_STR = "left" _RIGHT_STR = "right" _SVC_VN_MGMT = "svc-vn-mgmt" _SVC_VN_LEFT = "svc-vn-left" _SVC_VN_RIGHT = "svc-vn-right" _VN_MGMT_SUBNET_CIDR = '10.250.1.0/24' _VN_LEFT_SUBNET_CIDR = '10.250.2.0/24' _VN_RIGHT_SUBNET_CIDR = '10.250.3.0/24' _VN_SNAT_PREFIX_NAME = 'snat-si-left' _VN_SNAT...
''' -------------------------------------------------------------- Before running this Airflow module... Install StarThinker in cloud composer ( recommended ): From Release: pip install starthinker From Open Source: pip install git+https://github.com/google/starthinker Or push local code to the cloud co...
"""gRPC's APIs for TLS Session Resumption support""" from grpc._cython import cygrpc as _cygrpc def ssl_session_cache_lru(capacity): """Creates an SSLSessionCache with LRU replacement policy Args: capacity: Size of the cache Returns: An SSLSessionCache with LRU replacement policy that can b...
#!/usr/bin/env python # coding: utf-8 import sys import json import argparse from bottle import run import src.com.mailsystem.api.routes as api import src.com.mailsystem.codes as codes from src.com.mailsystem.orm.Database import Database from src.com.mailsystem.populate import populate_db def read_config(setup_fil...
import sqlalchemy as sql from keystone.common import sql as ks_sql def upgrade(migrate_engine): meta = sql.MetaData() meta.bind = migrate_engine role_table = sql.Table('role', meta, autoload=True) project_table = sql.Table('project', meta, autoload=True) role_resource_options_table = sql.Table...
# -*- coding: utf-8 -*- import json from AWSScout2.configs.regions import RegionalServiceConfig, RegionConfig, api_clients ######################################## # CloudFormationRegionConfig ######################################## class CloudFormationRegionConfig(RegionConfig): """ CloudFormation confi...
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import time import base64 import hashlib class AuthCode(object): @classmethod def code_init(cls, cipher): try: encrypted_data = getattr(cipher, 'encrypted_license') encrypted_str = encrypted_data.strip() decr...
""" Copyright 2013 Steven Diamond This file is part of CVXPY. CVXPY is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. CVXPY is distributed i...
from __future__ import print_function, division import matplotlib matplotlib.use('Agg') # Must be before importing matplotlib.pyplot or pylab! from neuralnilm import Net, RealApplianceSource, BLSTMLayer, SubsampleLayer, DimshuffleLayer from lasagne.nonlinearities import sigmoid, rectify from lasagne.objectives import c...
""" Verifies simple build of a "Hello, world!" program with static libraries, including verifying that libraries are rebuilt correctly when functions move between libraries. """ import TestGyp test = TestGyp.TestGyp() test.run_gyp('library.gyp', '-Dlibrary=static_library', '-Dmoveable_funct...
"""Unit tests for the API Request internals.""" import copy from oslo.utils import timeutils from nova.api.ec2 import apirequest from nova import test class APIRequestTestCase(test.NoDBTestCase): def setUp(self): super(APIRequestTestCase, self).setUp() self.req = apirequest.APIRequest("FakeCon...
#!/usr/env python import numpy as np import seaborn as sb import matplotlib.pyplot as plt import argparse import math from scipy.sparse import coo_matrix def plotall(datamat,domains1,domains2,bounds,legendname1,legendname2,outputname): """ Show heatmap of Hi-C data along with any domain sets given :param da...
import re from openerp.osv import orm import logging _logger = logging.getLogger(__name__) try: from ldap.filter import filter_format except ImportError: _logger.debug('Can not `from ldap.filter import filter_format`.') class CompanyLDAP(orm.Model): _inherit = 'res.company.ldap' def action_populate...
# -*- coding: utf-8 -*- """ requests.compat ~~~~~~~~~~~~~~~ This module handles import compatibility issues between Python 2 and Python 3. """ from .packages import chardet import sys # ------- # Pythons # ------- # Syntax sugar. _ver = sys.version_info #: Python 2.x? is_py2 = (_ver[0] == 2) #: Python 3.x? is_p...
DJANGO_APPS = ['metastore'] NICE_NAME = "Metastore Manager" REQUIRES_HADOOP = True ICON = "metastore/art/icon_metastore_48.png" MENU_INDEX = 20 IS_URL_NAMESPACED = True PERMISSION_ACTIONS = ( ("write", "Allow DDL operations. Need the app access too."), )
import re from sphinx.ext.autodoc import Documenter, FunctionDocumenter from sphinx.domains.python import PyModulelevel, _pseudo_parse_arglist from sphinx import addnodes from sphinx.locale import _ yaml_sig_re = re.compile('yaml:\s*(.*)') class PyYAMLFunction(PyModulelevel): def handle_signature(self, sig, sign...
""" Acceptance tests for course in studio """ from common.test.acceptance.pages.common.auto_auth import AutoAuthPage from common.test.acceptance.pages.studio.index import DashboardPage from common.test.acceptance.pages.studio.users import CourseTeamPage from common.test.acceptance.tests.studio.base_studio_test import S...
from __future__ import (absolute_import, division, print_function) __metaclass__ = type import json from ansible.module_utils._text import to_text from ansible.module_utils.network.common.utils import to_list from ansible.module_utils.connection import ConnectionError from ansible.module_utils.six.moves.urllib.error...
from openerp.osv import fields, osv class human_resources_configuration(osv.osv_memory): _inherit = 'hr.config.settings' _columns = { 'module_hr_payroll_account': fields.boolean('Link your payroll to accounting system', help ="""Create journal entries from payslips"""), }
import factory.fuzzy from education_group.ddd.domain._co_graduation import CoGraduation class CoGraduationFactory(factory.Factory): class Meta: model = CoGraduation abstract = False code_inter_cfb = factory.Sequence(lambda n: '%02d' % n) coefficient = factory.fuzzy.FuzzyDecimal(0, 10, pr...
from six.moves.urllib.parse import unquote from swift import gettext_ as _ from swift.account.utils import account_listing_response from swift.common.request_helpers import get_listing_content_type from swift.common.middleware.acl import parse_acl, format_acl from swift.common.utils import public from swift.common.co...
''' Python questions to work on. To invoke with pytest use $ python3 answer_template.py or $ python3 -m pytest answer_template.py ''' import pytest def inclusive_range(n): # For n = 5, return [1, 2, 3, 4, 5] return [1, 2, 3, 4, 5] def test_inclusive_range(): assert list(inclusive_range(5)) ==...
"""Summary reporting""" import sys from coverage.report import Reporter from coverage.results import Numbers from coverage.misc import NotPython class SummaryReporter(Reporter): """A reporter for writing the summary report.""" def __init__(self, coverage, config): super(SummaryReporter, self).__ini...
"""Test suite for the profile module.""" import profile, pstats, sys # In order to have reproducible time, we simulate a timer in the global # variable 'ticks', which represents simulated time in milliseconds. # (We can't use a helper function increment the timer since it would be # included in the profile and would ...
from __future__ import (absolute_import, division, print_function) __metaclass__ = type import os from units.compat import unittest from units.compat.mock import patch, mock_open from ansible.errors import AnsibleParserError, yaml_strings, AnsibleFileNotFound from ansible.parsing.vault import AnsibleVaultError from a...
ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'} from ansible.module_utils.f5_utils import ( AnsibleF5Client, AnsibleF5Parameters, HAS_F5SDK, F5ModuleError, iControlUnexpectedHTTPError ) class Parameters(Ans...
""" Tests for geography support in PostGIS """ import os from unittest import skipIf, skipUnless from django.contrib.gis.db import models from django.contrib.gis.db.models.functions import Area, Distance from django.contrib.gis.measure import D from django.db import NotSupportedError, connection from django.db.models....
import pmatic.api # Print all methods including their arguments and description which is available on your device pmatic.api.init( address="http://192.168.1.26", credentials=("Admin", "EPIC-SECRET-PW")).print_methods()
""" Adds crowdsourced hinting functionality to lon-capa numerical response problems. Currently experimental - not for instructor use, yet. """ import logging import json import random import copy from pkg_resources import resource_string from lxml import etree from xmodule.x_module import XModule, STUDENT_VIEW fro...
import re import time from hashlib import sha1 import sickbeard from sickbeard import logger from sickbeard.exceptions import ex from sickbeard.clients import http_error_code from lib.bencode import bencode, bdecode from lib import requests class GenericClient(object): def __init__(self, name, host=None, use...
import os from setuptools import setup, find_packages def read_file(filename): """Read a file into a string""" path = os.path.abspath(os.path.dirname(__file__)) filepath = os.path.join(path, filename) try: return open(filepath).read() except IOError: return '' setup( name='dj...
from collections import defaultdict import numpy as np from numpy.testing import assert_array_almost_equal from sklearn.utils.graph import (graph_shortest_path, single_source_shortest_path_length) def floyd_warshall_slow(graph, directed=False): N = graph.shape[0] #set nonzer...
import webob from nova.api.openstack import common from nova.api.openstack import extensions from nova.api.openstack import wsgi from nova import compute from nova import exception from nova.i18n import _ from nova import objects class ServerStartStopActionController(wsgi.Controller): def __init__(self, *args, *...
"""AppAssure 5 Core API""" from appassure.api import AppAssureAPI class IExchangeManagement(AppAssureAPI): """Full documentation online at http://docs.appassure.com/display/AA50D/IExchangeManagement """ def verifyCredentials(self, data, agentId): """Verifies credentials to Exchange instance. ...
data = ( 'syae', # 0x00 'syaeg', # 0x01 'syaegg', # 0x02 'syaegs', # 0x03 'syaen', # 0x04 'syaenj', # 0x05 'syaenh', # 0x06 'syaed', # 0x07 'syael', # 0x08 'syaelg', # 0x09 'syaelm', # 0x0a 'syaelb', # 0x0b 'syaels', # 0x0c 'syaelt', # 0x0d 'syaelp', # 0x0e 'syaelh', # 0x...
from skew.resources.aws import AWSResource class Cluster(AWSResource): class Meta(object): service = 'elasticache' type = 'cluster' enum_spec = ('describe_cache_clusters', 'CacheClusters[]', None) detail_spec = None id = 'CacheClusterId' filter...
{ 'name': 'Sales Analytic Distribution', 'version': '1.0', 'category': 'Sales Management', 'description': """ The base module to manage analytic distribution and sales orders. ================================================================= Using this module you will be able to link analytic accounts ...