id
int64
0
6k
code
stringlengths
4k
8k
code_compressed
null
5,900
# Copyright 2023 Huawei Technologies Co., Ltd # # 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...
null
5,901
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,902
# Copyright (c) 2022 Tulir Asokan # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from typing import Optional import asyncio import olm from mautrix.errors import De...
null
5,903
# copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve. # # 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 applica...
null
5,904
# SPDX-FileCopyrightText: 2023 Melissa LeBlanc-Williams for Adafruit Industries # # SPDX-License-Identifier: MIT from queue import Queue import time import speech_recognition as sr class Listener: def __init__( self, api_key, energy_threshold=300, phrase_timeout=3.0, record_timeout=30 ): sel...
null
5,905
import gzip from datetime import timedelta from typing import Any import pytest from django.utils import timezone from freezegun.api import FrozenDateTimeFactory from storages.backends.s3boto3 import S3Boto3Storage from thunderstore.cache.storage import get_cache_storage from thunderstore.community.factories import C...
null
5,906
import numpy as np import cantera as ct from . import utilities import math import pytest class TestFunc1(utilities.CanteraTest): def test_function(self): f = ct.Func1(np.sin) self.assertNear(f(0), np.sin(0)) self.assertNear(f(0.1), np.sin(0.1)) self.assertNear(f(0.7), np.sin(0.7))...
null
5,907
import os import unittest import dcs from dcs.drawing.drawing import LineStyle, Rgba from dcs.drawing.drawings import StandardLayer from dcs.drawing.icon import StandardIcon from dcs.drawing.polygon import Circle from dcs.mapping import Point from dcs.mission import Mission class DrawingTests(unittest.TestCase): ...
null
5,908
# Copyright 2019 Huawei Technologies Co., Ltd # # 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...
null
5,909
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2023, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## import json impor...
null
5,910
# """ # This file demonstrates writing tests using the unittest module. These will pass # when you run "manage.py test". # Replace this with more appropriate tests for your application. # """ from django.test import TestCase from django.contrib.gis.measure import D # from nose.tools import istest from nose.tools impo...
null
5,911
#!/usr/bin/env python from collections import OrderedDict from decimal import Decimal from agate import Table, TableSet from agate.aggregations import Count, MaxLength, Mean, Min, Sum from agate.data_types import Number, Text from agate.exceptions import DataTypeError from agate.testcase import AgateTestCase class ...
null
5,912
__author__ = "Nitin Kumar, Rick Sherman" __credits__ = "Jeremy Schulman" try: import unittest2 as unittest except ImportError: import unittest from nose.plugins.attrib import attr from mock import patch, MagicMock import os from jnpr.junos import Device from jnpr.junos.ofacts.swver import facts_software_versi...
null
5,913
# SPDX-FileCopyrightText: 2020 Jeff Epler for Adafruit Industries # # SPDX-License-Identifier: MIT import random import time import board import displayio import framebufferio import rgbmatrix displayio.release_displays() matrix = rgbmatrix.RGBMatrix( width=64, height=32, bit_depth=3, rgb_pins=[board.D6, bo...
null
5,914
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + from...
null
5,915
from math import isclose import pytest from ufo2ft.filters.transformations import TransformationsFilter @pytest.fixture( params=[ { "capHeight": 700, "xHeight": 500, "glyphs": [ {"name": "space", "width": 500}, { "na...
null
5,916
""" Copyright (c) 2012-2020 RockStor, Inc. <http://rockstor.com> This file is part of RockStor. RockStor 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 2 of the License, or (at your option) any la...
null
5,917
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2023, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## import json impor...
null
5,918
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2023, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## import re import ...
null
5,919
import hail as hl from .hgvs import hgvsp_from_consequence_amino_acids from .vep import consequence_term_rank OMIT_CONSEQUENCE_TERMS = hl.set(["upstream_gene_variant", "downstream_gene_variant"]) def METHOD_NAME(variants_path, transcripts_path, mane_transcripts_path=None): ds = hl.read_table(variants_path) ...
null
5,920
# -*- coding: utf-8 -*- ### # (C) Copyright [2019] Hewlett Packard Enterprise Development LP # # 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 #...
null
5,921
#!/usr/bin/env python """Random sequences and random evolution of sequences in a tree""" import bisect import numpy def argpicks(freqs, random_series): partition = numpy.add.accumulate(freqs) assert abs(partition[-1] - 1.0) < 1e-6, (freqs, partition) while True: x = random_series.uniform(0.0, 1....
null
5,922
# Copyright 2020 Huawei Technologies Co., Ltd # # 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 # # httpwww.apache.orglicensesLICENSE-2.0 # # Unless required by applicable law or agreed to in wri...
null
5,923
# Copyright 2020 Huawei Technologies Co., Ltd # # 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...
null
5,924
import pytest from pybind11_tests import ConstructorStats def test_regressions(): from pybind11_tests.issues import print_cchar, print_char # #137: const char* isn't handled properly assert print_cchar("const char *") == "const char *" # #150: char bindings broken assert print_char("c") == "c" ...
null
5,925
import struct from ..base import TestBase from ...messaging.serialization import DefaultStruct, PackError, Serializable, Serializer class Short(Serializable): format_list = ["H"] def __init__(self, number): self.number = number def to_pack_list(self): return [("H", self.number)] @c...
null
5,926
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,927
# Copyright 2020 Huawei Technologies Co., Ltd # # 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...
null
5,928
#!/usr/bin/env python3 # #===- clang-format-diff.py - ClangFormat Diff Reformatter ----*- python -*--===# # # The LLVM Compiler Infrastructure # # This file is distributed under the University of Illinois Open Source # License. # # ==========================================================...
null
5,929
from collections import ChainMap from typing import Any from graphql.error import GraphQLError from graphql.execution import ExecutionResult, execute_sync from graphql.language import SourceLocation, parse from graphql.type import ( GraphQLArgument, GraphQLField, GraphQLInputField, GraphQLInputObjectTy...
null
5,930
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2019 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + # T...
null
5,931
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2021 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + from...
null
5,932
import unittest from util import * import json class BIP39Tests(unittest.TestCase): cases = None langs = { 'en': 'english', 'es': 'spanish', 'fr': 'french', 'it': 'italian', 'jp': 'japanese', 'zhs': 'chinese_simplified', 'zht...
null
5,933
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2023, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## import json impor...
null
5,934
# Copyright 2021-2022 Huawei Technologies Co., Ltd # # 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 agre...
null
5,935
# Copyright 2022 Google LLC. All Rights Reserved. # # 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 a...
null
5,936
# Copyright 2022 Huawei Technologies Co., Ltd # # 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...
null
5,937
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,938
import os from testtools import TestCase from mock import ( patch, MagicMock, ) from charmhelpers.payload import archive from tempfile import mkdtemp from shutil import rmtree import subprocess class ArchiveTestCase(TestCase): def create_archive(self, format): workdir = mkdtemp() if forma...
null
5,939
# Copyright 2022 Huawei Technologies Co., Ltd # # 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...
null
5,940
"""Store object for a list of games""" # pylint: disable=not-an-iterable import time from gi.repository import GLib, GObject, Gtk from lutris import settings from lutris.database import sql from lutris.database.games import get_games from lutris.gui.views.store_item import StoreItem from lutris.util.strings import gt...
null
5,941
""" Briefing generation logic """ from __future__ import annotations import os from dataclasses import dataclass from typing import Dict, List, TYPE_CHECKING from dcs.mission import Mission from jinja2 import Environment, FileSystemLoader, select_autoescape from game.ato.flightwaypoint import FlightWaypoint from gam...
null
5,942
import os import random import pytest from solana.rpc.api import Client from solana.publickey import PublicKey from solana.rpc.commitment import Confirmed from .solana_utils import neon_cli, create_treasury_pool_address, get_neon_balance, get_transaction_count from .solana_utils import solana_client, wait_confirm_tra...
null
5,943
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE. # Copyright (C) NIWA & British Crown (Met Office) & Contributors. # # This program 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 Licen...
null
5,944
import operator as op from functools import reduce import numpy as np def combination_Cnr(n, r): r = min(r, n - r) numer = reduce(op.mul, range(n, n - r, -1), 1) denom = reduce(op.mul, range(1, r + 1), 1) return numer / denom def fisher_test_pValue_by_formula(ts_len, g_f): a = int((ts_len - 1) /...
null
5,945
# Copyright 2022 Huawei Technologies Co., Ltd # # 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...
null
5,946
# Copyright 2020-2022 Huawei Technologies Co., Ltd # # 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 agre...
null
5,947
import os from pkg_resources import parse_version import shutil import subprocess import tempfile from testtools import TestCase from mock import ( MagicMock, patch, ) from charmhelpers.core.host import chdir from urllib.parse import urlparse try: from charmhelpers.fetch import ( giturl, ...
null
5,948
from __future__ import annotations import heapq import math from collections import defaultdict from dataclasses import dataclass, field from enum import Enum, auto from typing import Dict, Iterator, List, Optional, Set, Tuple from .conflicttheater import ConflictTheater from .controlpoint import ControlPoint class...
null
5,949
#!/usr/bin/env python3 #Copyright (C) 2011 by Glenn Hickey # #Released under the MIT license, see LICENSE.txt """ """ import unittest import os import sys from sonLib.bioio import TestStatus from sonLib.bioio import getTempDirectory from sonLib.bioio import logger from sonLib.bioio import system from cactus.progres...
null
5,950
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2019 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + from...
null
5,951
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,952
# Protocol Buffers - Google's data interchange format # Copyright 2008 Google Inc. All rights reserved. # https://developers.google.com/protocol-buffers/ # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redi...
null
5,953
# Copyright 2020 Huawei Technologies Co., Ltd # # 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...
null
5,954
"""Specialized text support classes for segment displays.""" import abc from collections import namedtuple from typing import Optional, List, Union from mpf.core.rgb_color import RGBColor DisplayCharacter = namedtuple("DisplayCharacter", ["char_code", "dot", "comma", "color"]) DOT_CODE = ord(".") COMMA_CODE = ord(",...
null
5,955
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import copy import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload fr...
null
5,956
#!/usr/bin/env python3 from __future__ import annotations import json import requests from bs4 import BeautifulSoup from fake_useragent import UserAgent headers = {"UserAgent": UserAgent().random} def extract_user_profile(script) -> dict: """ May raise json.decoder.JSONDecodeError """ data = script...
null
5,957
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2021 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,958
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2019 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + impo...
null
5,959
import os import sys # Add parent path to use local src as package for tests root_dir = os.path.abspath( os.path.join( os.path.dirname(__file__), os.path.pardir, os.path.pardir, os.path.pardir ) ) sys.path.append(root_dir) import asyncio from multiprocessing import Process import pytest import uvicor...
null
5,960
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + # py...
null
5,961
import os import mock import pytest import libensemble.tests.unit_tests.setup as setup from libensemble.alloc_funcs.give_sim_work_first import give_sim_work_first from libensemble.comms.logs import LogConfig from libensemble.libE import libE from libensemble.manager import LoggedException from libensemble.resources.r...
null
5,962
#!/usr/bin/env python """ [{"service": "foo", "level": "2345", "state": "on"}, {"service": "foo", "level": "016", "state": "off"}, {"service": "bar", "state": "on"}, ...] """ import os import sys import json import pwd import re from subprocess import * sys.path.append(os.path.dirname(__file__)) from comp import...
null
5,963
import unittest import os import numpy as np import skrf as rf class CitiTestCase(unittest.TestCase): """ Test the IO of CITI files. """ def METHOD_NAME(self): """ Sets up the test directory """ self.test_dir = os.path.dirname(os.path.abspath(__file__))+'/MDIF_CITI_MDL/'...
null
5,964
# Copyright 2021 Huawei Technologies Co., Ltd # # 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...
null
5,965
import pytest from kopf._cogs.structs.references import EVERYTHING, Resource, Selector @pytest.fixture() def resource(): return Resource( group='group1', version='version1', preferred=True, plural='plural1', singular='singular1', kind='kind1', shortcuts=['shortcut1', 'shortcut2'], ...
null
5,966
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2022 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + fr...
null
5,967
## ## This file is part of the libsigrokdecode project. ## ## Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de> ## ## This program 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 2 of the Li...
null
5,968
#!/usr/bin/env python ## Copyright (c) 2019, Alliance for Open Media. All rights reserved ## ## This source code is subject to the terms of the BSD 2 Clause License and ## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License ## was not distributed with this source code in the LICENSE file, you ca...
null
5,969
# Copyright 2014-2021 Canonical 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 ...
null
5,970
""" Module to run tests on SpecObj """ import numpy as np import sys import os from copy import deepcopy import pytest from IPython import embed from astropy.table import Table from astropy.io import fits from pypeit import spec2dobj from pypeit.spectrographs.util import load_spectrograph from pypeit.tests import ts...
null
5,971
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2018 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + # py...
null
5,972
from collections import namedtuple _ColumnMetadata = namedtuple( "ColumnMetadata", ["name", "datatype", "foreignkeys", "default", "has_default"] ) def ColumnMetadata(name, datatype, foreignkeys=None, default=None, has_default=False): return _ColumnMetadata(name, data...
null
5,973
# Min heap data structure # with decrease key functionality - in O(log(n)) time class Node: def __init__(self, name, val): self.name = name self.val = val def __str__(self): return f"{self.__class__.__name__}({self.name}, {self.val})" def __lt__(self, other): return self....
null
5,974
""" guiscrcpy Licensed under GNU Public License This program 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. This program is distributed in...
null
5,975
import ctypes import io import struct import pytest import env from pybind11_tests import ConstructorStats from pybind11_tests import buffers as m np = pytest.importorskip("numpy") def test_from_python(): with pytest.raises(RuntimeError) as excinfo: m.Matrix(np.array([1, 2, 3])) # trying to assign a 1...
null
5,976
# Copyright 2020 Huawei Technologies Co., Ltd # # 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...
null
5,977
from __future__ import annotations from collections import Counter import click import mock import pytest from requests import HTTPError, Response from requests.adapters import BaseAdapter from meltano.cli import cli from meltano.cli.hub import hub from meltano.core.hub.client import HubConnectionError, HubPluginVar...
null
5,978
# Copyright 2019-2021 Huawei Technologies Co., Ltd # # 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 agre...
null
5,979
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import copy import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload fr...
null
5,980
from sha3 import keccak_256 import json from web3.auto import w3 from eth_keys import keys import struct def unpack(data): ch = data[0] if ch <= 0x7F: return ch, data[1:] elif ch == 0x80: return None, data[1:] elif ch <= 0xB7: l = ch - 0x80 return data[1:1 + l].tobytes(...
null
5,981
""" django-helpdesk - A Django powered ticket tracker for small enterprise. (c) Copyright 2008 Jutda. All Rights Reserved. See LICENSE for details. lib.py - Common functions (eg multipart e-mail) """ from datetime import date, datetime, time from django.conf import settings from django.core.exceptions import Valida...
null
5,982
import json import uuid from pilot.common.schema import DBType from pilot.configs.config import Config from pilot.configs.model_config import ( KNOWLEDGE_UPLOAD_ROOT_PATH, EMBEDDING_MODEL_CONFIG, LOGDIR, ) from pilot.scene.base import ChatScene from pilot.scene.base_chat import BaseChat from pilot.scene.ch...
null
5,983
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2020 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source # & Institut Laue - Langevin # SPDX - License - Identifier: GPL - 3.0 + # std imports import numpy as np import unitt...
null
5,984
# Copyright 2020 Google LLC # # 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 writing, ...
null
5,985
# Copyright 2022 Huawei Technologies Co., Ltd # # 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...
null
5,986
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE. # Copyright (C) NIWA & British Crown (Met Office) & Contributors. # # This program 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 Licen...
null
5,987
# Mantid Repository : https://github.com/mantidproject/mantid # # Copyright &copy; 2019 ISIS Rutherford Appleton Laboratory UKRI, # NScD Oak Ridge National Laboratory, European Spallation Source, # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS # SPDX - License - Identifier: GPL - 3.0 + # T...
null
5,988
import queue import string from functools import partial, reduce from echo.callback_container import CallbackContainer __all__ = ['DeferredMethod', 'nonpartial', 'lookup_class', 'as_variable_name', 'as_list', 'file_format', 'CallbackMixin', 'PropertySetMixin', 'Pointer', 'common_prefix', 'queue...
null
5,989
# Copyright 2020 Google LLC # # 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
null
5,990
import logging import click from tqdm import tqdm from pymobiledevice3.cli.cli_common import Command from pymobiledevice3.lockdown import LockdownClient from pymobiledevice3.services.mobilebackup2 import Mobilebackup2Service source_option = click.option('--source', default='', help='The UDID of the source device.') ...
null
5,991
from typing import Dict, Iterator, List, Optional, Tuple, Union, cast import torch from torch.distributions import Categorical from kornia.augmentation.auto.base import SUBPLOLICY_CONFIG, PolicyAugmentBase from kornia.augmentation.auto.operations import OperationBase from kornia.augmentation.auto.operations.policy im...
null
5,992
from lxml import etree from bbot.modules.base import BaseModule class nmap(BaseModule): watched_events = ["IP_ADDRESS", "DNS_NAME"] produced_events = ["OPEN_TCP_PORT"] flags = ["active", "portscan", "aggressive", "web-thorough"] meta = {"description": "Execute port scans with nmap"} options = { ...
null
5,993
# Copyright 2019 Google LLC. All Rights Reserved. # # 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 a...
null
5,994
import binascii import pytest from paradox import event from paradox.hardware.evo.event import event_map from paradox.hardware.evo.parsers import LiveEvent, RequestedEvent def label_provider(type, id): if type == "user": assert id == 1 return "Test" elif type == "partition": assert i...
null
5,995
import importlib from importlib import abc from importlib import util import sys import types import unittest from test.test_importlib import util as test_util class CollectInit: def __init__(self, *args, **kwargs): self.args = args self.kwargs = kwargs def exec_module(self, module): ...
null
5,996
import siliconcompiler import re from siliconcompiler import SiliconCompilerError from siliconcompiler.flows._common import setup_frontend from siliconcompiler.tools.yosys import syn_fpga as yosys_syn from siliconcompiler.tools.vpr import place as vpr_place from siliconcompiler.tools.vpr import route as vpr_route fro...
null
5,997
# Copyright 2020-2023 Huawei Technologies Co., Ltd # # 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 agre...
null
5,998
from collections import ChainMap from typing import ( TYPE_CHECKING, Any, Dict, ItemsView, Iterable, MutableMapping, NamedTuple, Optional, Type, TypeVar, Union, ValuesView, ) from docarray.array.list_advance_indexing import ListAdvancedIndexing from docarray.typing impor...
null
5,999
from sympy.concrete.summations import Sum from sympy.core.expr import Expr from sympy.core.function import (Derivative, Function, diff, Subs) from sympy.core.numbers import (I, Rational, pi) from sympy.core.relational import Eq from sympy.core.singleton import S from sympy.core.symbol import Symbol from sympy.functions...
null