code
stringlengths
1
25.8M
language
stringclasses
18 values
source
stringclasses
4 values
repo
stringclasses
78 values
path
stringlengths
0
268
/* * Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors. * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ package org.jetbrains.kotlin.analysis.api.fir.test.cases.generated.cases.components.signatureSubstitution; im...
java
github
https://github.com/JetBrains/kotlin
analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/signatureSubstitution/FirIdeNormalAnalysisSourceModuleAnalysisApiSymbolAsSignatureTestGenerated.java
#Copyright ReportLab Europe Ltd. 2000-2004 #see license.txt for license details #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/demos/colors/colortest.py import reportlab.pdfgen.canvas from reportlab.lib import colors from reportlab.lib.units import inch def run(): c = repo...
unknown
codeparrot/codeparrot-clean
# vim:fileencoding=utf-8:noet from __future__ import (unicode_literals, division, absolute_import, print_function) import itertools from powerline.segment import gen_segment_getter, process_segment, get_fallback_segment from powerline.lib.unicode import u, safe_unicode def requires_segment_info(func): func.powerlin...
unknown
codeparrot/codeparrot-clean
# -*- test-case-name: twisted.test.test_roots -*- # Copyright (c) 2001-2004 Twisted Matrix Laboratories. # See LICENSE for details. """ Twisted Python Roots: an abstract hierarchy representation for Twisted. Maintainer: Glyph Lefkowitz """ # System imports import types from twisted.python import reflect class NotSu...
unknown
codeparrot/codeparrot-clean
/* Copyright 2018 The TensorFlow Authors. 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...
c
github
https://github.com/tensorflow/tensorflow
tensorflow/compiler/tf2xla/lib/util.h
import { test } from '../../test'; export default test({ warnings: [ { code: 'css_unused_selector', message: 'Unused CSS selector ".unused:has(y)"', start: { line: 41, column: 1, character: 378 }, end: { line: 41, column: 15, character: 392 } }, { code: 'css_unused_s...
javascript
github
https://github.com/sveltejs/svelte
packages/svelte/tests/css/samples/has/_config.js
{ "data": [ { "id": 26838044, "label": "prometheus-linode-sd-exporter-1", "group": "", "status": "running", "created": "2021-05-12T04:23:44", "updated": "2021-05-12T04:23:44", "type": "g6-standard-2", "ipv4": [ "45.33.82.151", "96.126.108.16", ...
json
github
https://github.com/prometheus/prometheus
discovery/linode/testdata/us-east/v4/linode/instances.json
# Copyright (C) 2007-2012 Michael Foord & the mock team # E-mail: fuzzyman AT voidspace DOT org DOT uk # http://www.voidspace.org.uk/python/mock/ import os import sys from collections import OrderedDict import unittest import test from test.test_unittest.testmock import support from test.test_unittest.testmock.suppor...
python
github
https://github.com/python/cpython
Lib/test/test_unittest/testmock/testpatch.py
from django.db import migrations class Migration(migrations.Migration): dependencies = [("migrations", "5_auto")] operations = [migrations.RunPython(migrations.RunPython.noop)]
python
github
https://github.com/django/django
tests/migrations/test_migrations_squashed_complex/6_auto.py
""" mbed CMSIS-DAP debugger Copyright (c) 2015 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 o...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2016, Cumulus Networks <ce-ceng@cumulusnetworks.com> # # This file is part of Ansible # Ansible 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...
unknown
codeparrot/codeparrot-clean
from Screens.Screen import Screen from Components.ConfigList import ConfigListScreen from Components.config import config, getConfigListEntry from Components.Sources.StaticText import StaticText class HdmiCECSetupScreen(Screen, ConfigListScreen): skin = """ <screen position="c-300,c-250" size="600,500" title="HDMI C...
unknown
codeparrot/codeparrot-clean
# Copyright 2015 Huawei Technologies Co., Ltd. # 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 # # Unl...
unknown
codeparrot/codeparrot-clean
from txircd.modbase import Module class ExtendedJoin(Module): def capRequest(self, user, capability): return True def capAcknowledge(self, user, capability): return False def capRequestRemove(self, user, capability): return True def capAcknowledgeRemove(self, user, capability...
unknown
codeparrot/codeparrot-clean
import cv2 import gym import random import numpy as np class Environment(object): def __init__(self, config): self.env = gym.make(config.env_name) screen_width, screen_height, self.action_repeat, self.random_start = \ config.screen_width, config.screen_height, config.action_repeat, config.random_sta...
unknown
codeparrot/codeparrot-clean
# Copyright 2011, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the f...
unknown
codeparrot/codeparrot-clean
#SPDX-License-Identifier: MIT-0 # Copyright (c) 2019 Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # key: The name of the key as defined in galaxy.yml # description: Comment/info on the key to be used as the generated doc and auto generated skeleton galaxy...
unknown
github
https://github.com/ansible/ansible
lib/ansible/galaxy/data/collections_galaxy_meta.yml
from typing import Any from langchain_core.document_loaders import Blob, BlobLoader from langchain_classic._api import create_importer # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "Blo...
python
github
https://github.com/langchain-ai/langchain
libs/langchain/langchain_classic/document_loaders/blob_loaders/schema.py
# coding = utf-8 # !/usr/bin/env python import os import time class PinYin(object): path = "Files/rawdict_utf16_65105_freq.txt" pinyin_list = [] keyboard_num = ['2', '2', '2', '3', '3', '3', '4', '4', '4', '5', '5', '5', '6', '6', '6', '7', '7', '7', '7', '8', '8', '8', '9', '9', '9', ...
unknown
codeparrot/codeparrot-clean
--- - name: notify inexistent handler hosts: localhost gather_facts: false tasks: - name: test notify an inexistent handler command: uptime notify: - notify_inexistent_handler register: result
unknown
github
https://github.com/ansible/ansible
test/integration/targets/handlers/test_handlers_inexistent_notify.yml
""" Visualization of a Histogram2D as a heaatmap """ import re import logging import base64 import io import numpy as np import scipy as sp from PIL import Image from progressivis.core.utils import indices_len from progressivis.core.slot import SlotDescriptor from progressivis.table import Table from progressivis.table...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/env python # # Copyright (c) Greenplum Inc 2008. All Rights Reserved. # # Unit Testing of pg commands # import os import unittest import tempfile from gppylib.db import dbconn from gppylib.db.test import skipIfDatabaseDown from gppylib import gplog from gppylib.commands import pg from gppylib.gparray impor...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # Copyright 2015 Google Inc. All Rights Reserved. # # This file is part of Ansible # # Ansible 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 o...
unknown
codeparrot/codeparrot-clean
{ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "target": "ES2022", "useDefineForClassFields": true, "lib": ["ES2022", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExte...
json
github
https://github.com/apache/airflow
airflow-core/src/airflow/ui/tsconfig.app.json
#!/bin/env python # -*- coding: utf-8 -*- vim: set ts=4 et sw=4 fdm=indent : import os, sys try: import simplejson except ImportError: sys.stderr.write('Unable to load simplejson python module.') sys.exit(1) class MCollectiveActionNoEnv(Exception): pass class MCollectiveActionFileError(Exception): ...
unknown
codeparrot/codeparrot-clean
comment: false coverage: precision: 5 status: patch: default: informational: true project: default: informational: true github_checks: annotations: false
unknown
github
https://github.com/microsoft/TypeScript
.github/codecov.yml
# Copyright 2013-2015, Damian Johnson and The Tor Project # See LICENSE for licensing information """ Parsing for Tor microdescriptors, which contain a distilled version of a relay's server descriptor. As of Tor version 0.2.3.3-alpha Tor no longer downloads server descriptors by default, opting for microdescriptors in...
unknown
codeparrot/codeparrot-clean
# coding: utf-8 # pylint: disable=too-many-arguments, too-many-locals """Definition of various recurrent neural network cells.""" from __future__ import print_function import bisect import random import numpy as np from ..io import DataIter, DataBatch from .. import ndarray def encode_sentences(sentences, vocab=None...
unknown
codeparrot/codeparrot-clean
# -*- coding: utf-8 -*- # # Cipher/DES.py : DES # # =================================================================== # The contents of this file are dedicated to the public domain. To # the extent that dedication to the public domain is not available, # everyone is granted a worldwide, perpetual, royalty-free, # n...
unknown
codeparrot/codeparrot-clean
import http.client as http import requests import json import sys import os import pycurl from io import BytesIO import logging from acd import oauth from acd.common import RequestError import utils logger = logging.getLogger(__name__) def progress(total_to_download, total_downloaded, total_to_upload, total_uploaded...
unknown
codeparrot/codeparrot-clean
import os import time import re import pprint import json import datetime from django.conf import settings import musicbrainzngs from obp_legacy.models import * from spf.models import Match, Request import logging log = logging.getLogger(__name__) class MediaMatch(object): def __init__(self): log = lo...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2014, Brian Coca <brian.coca+dev@gmail.com> # # This file is part of Ansible # # Ansible 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...
unknown
codeparrot/codeparrot-clean
""" Testing for the forest module (sklearn.ensemble.forest). """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import itertools import math import pickle from collections import defaultdict from functools import partial from itertools import combinations, product from typing import An...
python
github
https://github.com/scikit-learn/scikit-learn
sklearn/ensemble/tests/test_forest.py
#!/usr/bin/env python # # Copyright 2007 Google Inc. # # 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 o...
unknown
codeparrot/codeparrot-clean
/* Copyright 2021 The TensorFlow Authors. 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...
c
github
https://github.com/tensorflow/tensorflow
tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h
from __future__ import absolute_import import logging import re import pip from pip.compat import stdlib_pkgs from pip.req import InstallRequirement from pip.utils import get_installed_distributions from pip._vendor import pkg_resources logger = logging.getLogger(__name__) # packages to exclude from freeze output f...
unknown
codeparrot/codeparrot-clean
{ "kind": "Dashboard", "apiVersion": "dashboard.grafana.app/v2beta1", "metadata": { "name": "v0alpha1.gauge_tests_new.v42" }, "spec": { "annotations": [ { "kind": "AnnotationQuery", "spec": { "query": { "kind": "DataQuery", "group": "grafana", ...
json
github
https://github.com/grafana/grafana
apps/dashboard/pkg/migration/conversion/testdata/output/migrated_dev_dashboards/panel-gauge/v0alpha1.gauge_tests_new.v42.v2beta1.json
# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import optparse import os import unittest from telemetry.core import browser_options class BrowserOptionsTest(unittest.TestCase): def testDefaults(sel...
unknown
codeparrot/codeparrot-clean
from __future__ import unicode_literals from django.db import models from django.conf import settings import django.db.models.signals import django.dispatch.dispatcher import web.core import re import os import uuid class File(models.Model): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=...
unknown
codeparrot/codeparrot-clean
from geopy.geocoders import GoogleV3 from s2sphere import CellId, LatLng from pogo.custom_exceptions import GeneralPogoException import gpxpy.geo # Wrapper for location class Location(object): def __init__(self, locationLookup, geo_key, noop=False): # Blank location if noop: self.noop =...
unknown
codeparrot/codeparrot-clean
#include "builtin.h" #include "gettext.h" #include "parse-options.h" #include "prune-packed.h" static const char * const prune_packed_usage[] = { "git prune-packed [-n | --dry-run] [-q | --quiet]", NULL }; int cmd_prune_packed(int argc, const char **argv, const char *prefix, struct repository *...
c
github
https://github.com/git/git
builtin/prune-packed.c
# Extension to format a paragraph # Does basic, standard text formatting, and also understands Python # comment blocks. Thus, for editing Python source code, this # extension is really only suitable for reformatting these comment # blocks or triple-quoted strings. # Known problems with comment reformatting: # * If t...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright 2015 clowwindy # # 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 b...
unknown
codeparrot/codeparrot-clean
See ["Contributing to Ruby"](https://docs.ruby-lang.org/en/master/contributing/contributing_md.html), which includes setup and build instructions.
unknown
github
https://github.com/ruby/ruby
CONTRIBUTING.md
import new import cairo import rsvg import pango from random import random from widgets.primitives import Primitives from core.world import TheWorld from ontology.thing import Thing class ObjectViewer(Thing): def __init__(self, target): Thing.__init__(self) self.target = target # set & lock position ...
unknown
codeparrot/codeparrot-clean
# frozen_string_literal: true require "abstract_unit" require "active_support/core_ext/hash/conversions" class MetalRenderingController < ActionController::Metal include AbstractController::Rendering include ActionController::Rendering include ActionController::Renderers end class MetalRenderingJsonController ...
ruby
github
https://github.com/rails/rails
actionpack/test/controller/metal/renderers_test.rb
# Copyright 2018 Google Inc. 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...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # # @author: Gaurav Rastogi (grastogi@avinetworks.com) # Eric Anderson (eanderson@avinetworks.com) # module_check: supported # # Copyright: (c) 2017 Gaurav Rastogi, <grastogi@avinetworks.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # ANSIB...
unknown
codeparrot/codeparrot-clean
// Copyright 2021 The etcd Authors // // 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 t...
go
github
https://github.com/etcd-io/etcd
server/storage/schema/actions_test.go
// // RequestCompression.swift // // Copyright (c) 2023 Alamofire Software Foundation (http://alamofire.org/) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, i...
swift
github
https://github.com/Alamofire/Alamofire
Source/Features/RequestCompression.swift
from __future__ import unicode_literals import base64 import binascii import hashlib import importlib import warnings from collections import OrderedDict from django.conf import settings from django.core.exceptions import ImproperlyConfigured from django.core.signals import setting_changed from django.dispatch import...
unknown
codeparrot/codeparrot-clean
"""View to accept incoming websocket connection.""" import asyncio from contextlib import suppress import logging from typing import Optional from aiohttp import WSMsgType, web import async_timeout from homeassistant.components.http import HomeAssistantView from homeassistant.const import EVENT_HOMEASSISTANT_STOP fro...
unknown
codeparrot/codeparrot-clean
""" Merkyl plugin for Artifactor Add a stanza to the artifactor config like this, artifactor: log_dir: /home/username/outdir per_run: test #test, run, None overwrite: True plugins: merkyl: enabled: False plugin: merkyl port: 8192 log_files: ...
unknown
codeparrot/codeparrot-clean
//===--- SILUndef.h - SIL Undef Value Representation ------------*- C++ -*-===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/L...
c
github
https://github.com/apple/swift
include/swift/SIL/SILUndef.h
# -*- coding: utf-8 -*- from __future__ import unicode_literals from unittest import TestCase from django.template import Context, Engine from django.template.base import TemplateEncodingError from django.utils import six from django.utils.safestring import SafeData class UnicodeTests(TestCase): def test_templat...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/env python """Standalone console script""" import sys import os import optparse from AutoNetkit.internet import Internet from AutoNetkit import config import AutoNetkit as ank import logging import pkg_resources LOG = logging.getLogger("ANK") def main(): version="git-current" try: versio...
unknown
codeparrot/codeparrot-clean
# -*- coding: utf-8 -*- # # This file is part of CERN Analysis Preservation Framework. # Copyright (C) 2018 CERN. # # CERN Analysis Preservation Framework 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...
unknown
codeparrot/codeparrot-clean
# -*- cpy-indent-level: 4; indent-tabs-mode: nil -*- # ex: set expandtab softtabstop=4 shiftwidth=4: # # Copyright (C) 2008,2009,2010,2011,2012,2013 Contributor # # 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...
unknown
codeparrot/codeparrot-clean
''' // Copyright (c) 2014 Anonymized. All rights reserved. // // Code submitted as supplementary material for manuscript: // "Dependency Recurrent Neural Language Models for Sentence Completion" // Do not redistribute. Created on Aug 4, 2014 Take a corpus the JSON format obtained from Stanford and convert it to this...
unknown
codeparrot/codeparrot-clean
############################################################################### ## ## Copyright 2011 Tavendo GmbH ## ## 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...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python -tt # Copyright 2011-2012 Eucalyptus Systems, Inc. # # Redistribution and use of this software in source and binary forms, # with or without modification, are permitted provided that the following # conditions are met: # # Redistributions of source code must retain the above copyright notice, # t...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/python # -*- coding: utf-8 -*- # # (c) 2017, René Moser <mail@renemoser.net> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import (absolute_import, division, print_function) __metaclass__ = type ANSIBLE_METADATA = {'metadata_version': '1.1', ...
unknown
codeparrot/codeparrot-clean
package kotlinx.coroutines /** * A runnable task for [CoroutineDispatcher.dispatch]. * * Equivalent to the type `() -> Unit`. */ public actual fun interface Runnable { /** * @suppress */ public actual fun run() } @Deprecated( "Preserved for binary compatibility, see https://github.com/Kotlin...
kotlin
github
https://github.com/Kotlin/kotlinx.coroutines
kotlinx-coroutines-core/jsAndWasmShared/src/Runnable.kt
import json from django.contrib.auth.decorators import user_passes_test from django.core.urlresolvers import reverse from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render_to_response from django.template import RequestContext from crits.core.handlers import get_item_names from...
unknown
codeparrot/codeparrot-clean
"""Tests for unix_events.py.""" import contextlib import errno import io import multiprocessing from multiprocessing.util import _cleanup_tests as multiprocessing_cleanup_tests import os import signal import socket import stat import sys import time import unittest from unittest import mock from test import support f...
python
github
https://github.com/python/cpython
Lib/test/test_asyncio/test_unix_events.py
/* Lua CJSON floating point conversion routines */ /* Buffer required to store the largest string representation of a double. * * Longest double printed with %.14g is 21 characters long: * -1.7976931348623e+308 */ # define FPCONV_G_FMT_BUFSIZE 32 #ifdef USE_INTERNAL_FPCONV static inline void fpconv_init() { ...
c
github
https://github.com/redis/redis
deps/lua/src/fpconv.h
# This file is part of KEmuFuzzer. # # KEmuFuzzer 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. # # KEmuFuzzer is distributed in the ...
unknown
codeparrot/codeparrot-clean
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import NasaAction # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRE...
python
github
https://github.com/langchain-ai/langchain
libs/langchain/langchain_classic/tools/nasa/tool.py
/** @import { AST } from '#compiler' */ /** @import { ComponentContext } from '../types' */ import * as b from '../../../../utils/builders.js'; import { build_expression } from './shared/utils.js'; /** * @param {AST.AttachTag} node * @param {ComponentContext} context */ export function AttachTag(node, context) { c...
javascript
github
https://github.com/sveltejs/svelte
packages/svelte/src/compiler/phases/3-transform/client/visitors/AttachTag.js
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the "Elastic License * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side * Public License v 1"; you may not use this file except in compliance with, ...
java
github
https://github.com/elastic/elasticsearch
build-tools-internal/src/test/java/org/elasticsearch/gradle/internal/test/rest/transform/length/ReplaceKeyInLengthTests.java
# -*- coding: utf-8 -*- import collections import json import bleach def strip_html(unclean): """Sanitize a string, removing (as opposed to escaping) HTML tags :param unclean: A string to be stripped of HTML tags :return: stripped string :rtype: str """ # We make this noop for non-string, no...
unknown
codeparrot/codeparrot-clean
#!python # Copyright (c) 2009 John Hampton <pacopablo@pacopablo.com> # # Script to checksum a file and verify said checksum # # usage: # checksum -m md5.hash -s sha1.hash filename # # Exits with a 0 return status if both hashes match. Otherwise it exits # with a return status of 1 VERSION='1.0.0' try: import h...
unknown
codeparrot/codeparrot-clean
""" ========================= Kernel Density Estimation ========================= This example shows how kernel density estimation (KDE), a powerful non-parametric density estimation technique, can be used to learn a generative model for a dataset. With this generative model in place, new samples can be drawn. These...
unknown
codeparrot/codeparrot-clean
import sys def query_yes_no(question, default="yes"): """Ask a yes/no question via raw_input() and return their answer. "question" is a string that is presented to the user. "default" is the presumed answer if the user just hits <Enter>. It must be "yes" (the default), "no" or None (meaning ...
unknown
codeparrot/codeparrot-clean
# -*- coding: utf-8 -*- # # test_tsodyks_depr_fac.py # # This file is part of NEST. # # Copyright (C) 2004 The NEST Initiative # # NEST 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 L...
unknown
codeparrot/codeparrot-clean
import asyncio import logging from collections.abc import Sequence from langchain_core.callbacks import ( AsyncCallbackManagerForRetrieverRun, CallbackManagerForRetrieverRun, ) from langchain_core.documents import Document from langchain_core.language_models import BaseLanguageModel from langchain_core.output_...
python
github
https://github.com/langchain-ai/langchain
libs/langchain/langchain_classic/retrievers/multi_query.py
//===- Error.h - system_error extensions for Object -------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
c
github
https://github.com/apple/swift
include/swift/RemoteInspection/RuntimeHeaders/llvm/Object/Error.h
# -*- coding: UTF-8 -*- ####################################################################### # ---------------------------------------------------------------------------- # "THE BEER-WARE LICENSE" (Revision 42): # @Daddy_Blamo wrote this file. As long as you retain this notice you # can do whatever you want wi...
unknown
codeparrot/codeparrot-clean
""" This is the default template for our main set of AWS servers. """ # We intentionally define lots of variables that aren't used, and # want to import all variables from base settings files # pylint: disable=W0401, W0614 import json from .common import * from logsettings import get_logger_config import os from p...
unknown
codeparrot/codeparrot-clean
### #5 Card Poker #Brandon Lee """ ===Program Design=== The program consists of an implementation of the game "5 Card Poker", utilizing classes. The program utilizes a deck class to create an array of Card objects in order to simulate a realistic gaming environment with factors such as luck as well as skill. The prog...
unknown
codeparrot/codeparrot-clean
{ "Id": "sha256:1332879bc8e38793a45ebe5a750f2a1c35df07ec2aa9c18f694644a9de77359b", "RepoTags": [ "cloudfoundry/run:base-cnb" ], "RepoDigests": [ "cloudfoundry/run@sha256:fb5ecb90a42b2067a859aab23fc1f5e9d9c2589d07ba285608879e7baa415aad" ], "Parent": "", "Comment": "", "Created": "2020-03-20T20:18:18.11797253...
json
github
https://github.com/spring-projects/spring-boot
buildpack/spring-boot-buildpack-platform/src/test/resources/org/springframework/boot/buildpack/platform/build/run-image-with-platform.json
from Components.PerServiceDisplay import PerServiceBase from enigma import iPlayableService from Source import Source from Components.Element import cached import NavigationInstance class CurrentService(PerServiceBase, Source): def __init__(self, navcore): Source.__init__(self) PerServiceBase.__init__(self, navco...
unknown
codeparrot/codeparrot-clean
{ "PUBLISH": { "summary": "Posts a message to a channel.", "complexity": "O(N+M) where N is the number of clients subscribed to the receiving channel and M is the total number of subscribed patterns (by any client).", "group": "pubsub", "since": "2.0.0", "arity": 3, "...
json
github
https://github.com/redis/redis
src/commands/publish.json
//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
c
github
https://github.com/llvm/llvm-project
clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.h
import re from django import template from social.backends.oauth import OAuthAuth register = template.Library() name_re = re.compile(r'([^O])Auth') @register.filter def backend_name(backend): name = backend.__class__.__name__ name = name.replace('OAuth', ' OAuth') name = name.replace('OpenId', ' OpenId...
unknown
codeparrot/codeparrot-clean
# -*- coding: utf-8 -*- # # Copyright 2019 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...
unknown
codeparrot/codeparrot-clean
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import * as t from '@babel/types'; import {ZodError, z} from 'zod/v4'; import {fromZodError} from 'zod-validation-error/v4'; imp...
typescript
github
https://github.com/facebook/react
compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts
# -*- coding: utf-8 -*- ############################################################################## # # Author: Alexandre Fayolle # Copyright 2012-2014 Camptocamp SA # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as #...
unknown
codeparrot/codeparrot-clean
#!/usr/bin/env python # Copyright 2019 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...
unknown
codeparrot/codeparrot-clean
# Copyright 2016 The TensorFlow Authors. 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 applica...
unknown
codeparrot/codeparrot-clean
//// [tests/cases/compiler/assignmentCompatability24.ts] //// //// [assignmentCompatability24.ts] namespace __test1__ { export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWithPublicAndOptional<number,string> = { one: 1 };; export var __val__obj4 = obj4; } namespace _...
javascript
github
https://github.com/microsoft/TypeScript
tests/baselines/reference/assignmentCompatability24.js
use rustc_ast::token::{self, IdentIsRaw, MetaVarKind, Token, TokenKind}; use rustc_ast::util::case::Case; use rustc_ast::{ self as ast, BoundAsyncness, BoundConstness, BoundPolarity, DUMMY_NODE_ID, FnPtrTy, FnRetTy, GenericBound, GenericBounds, GenericParam, Generics, Lifetime, MacCall, MgcaDisambiguation, ...
rust
github
https://github.com/rust-lang/rust
compiler/rustc_parse/src/parser/ty.rs
// Copyright The Prometheus Authors // 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 w...
go
github
https://github.com/prometheus/prometheus
tsdb/querier.go
#------------------------------------------------------------------------- # Copyright (c) Microsoft. 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.apac...
unknown
codeparrot/codeparrot-clean
// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: BUSL-1.1 package ephemeral import ( "context" "github.com/hashicorp/terraform/internal/providers" "github.com/hashicorp/terraform/internal/tfdiags" ) // ResourceInstance is an interface that must be implemented for each // active ephemeral resource ins...
go
github
https://github.com/hashicorp/terraform
internal/resources/ephemeral/ephemeral_resource_instance.go
# Copyright (c) 2014, Juergen Riegel (FreeCAD@juergen-riegel.net) # All rights reserved. # This file is part of the StepClassLibrary (SCL). # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # Redistributions of sourc...
unknown
codeparrot/codeparrot-clean
# Wrapper module for _ssl, providing some additional facilities # implemented in Python. Written by Bill Janssen. """\ This module provides some more Pythonic support for SSL. Object types: SSLSocket -- subtype of socket.socket which does SSL over the socket Exceptions: SSLError -- exception raised for I/O er...
unknown
codeparrot/codeparrot-clean
/* * Copyright (c) 2007 Mockito contributors * This program is made available under the terms of the MIT License. */ /** * JUnit integration support classes. */ package org.mockito.internal.junit;
java
github
https://github.com/mockito/mockito
mockito-core/src/main/java/org/mockito/internal/junit/package-info.java
# Copyright (c) 2012 OpenStack Foundation. # 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...
unknown
codeparrot/codeparrot-clean
# -*- coding: utf-8 -*- # # This file is part of Invenio. # Copyright (C) 2012, 2013, 2014 CERN. # # Invenio 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 optio...
unknown
codeparrot/codeparrot-clean