source stringclasses 40
values | date int32 2.02k 2.02k | text stringlengths 61 2.1M | token_count int32 50 1.16M | category stringclasses 38
values |
|---|---|---|---|---|
common_corpus_Github Open Source | 2,021 | package net.dugged.schematicconverter.block;
public class BlockLavaCauldron extends Block {
public BlockLavaCauldron() {
super("lava_cauldron");
}
@Override
public Block getNewBlock() {
return this;
}
@Override
public Block getOldBlock() {
return this;
}
} | 76 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Collections.Generic;
namespace TestAuthorityCore.X509
{
/// <summary>
/// Request for certificate.
/// </summary>
public class CertificateRequest
{
/// <summary>
/// Common name of the certificate.
/// </summary>
public string CommonName { get; set; }
... | 223 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from synonym_dict import SynonymDict, SynonymSet
class QuantityUnitMismatch(Exception):
pass
class QuantityAlreadySet(Exception):
pass
class ValidationError(Exception):
pass
class QuantitySynonyms(SynonymSet):
"""
QuantitySynonyms are string terms that all refer to the same quantity of measu... | 1,138 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react'
import PropTypes from 'prop-types'
import {css, merge} from 'glamor'
import Link from 'next/link'
import {HEADER_HEIGHT_MOBILE, MENUBAR_HEIGHT} from './constants'
import {
colors, mediaQueries, fontFamilies
} from '@project-r/styleguide'
const M_HEADER_HEIGHT = HEADER_HEIGHT_MOBILE + MENU... | 702 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 西安市临潼区人民法院 民 事 裁 定 书 (2020)陕0115民初3423号 申请人:华锋,男,1974年10月14日出生,汉族,居民,住西安市临潼区。 委托诉讼代理人:曹鸣,陕西永嘉信律师事务所律师。 委托诉讼代理人:刘夤,陕西永嘉信律师事务所实习律师。 被申请人:孙坤,男,1973年10月13日出生,汉族,住西安市高新区。 被申请人:赵秋艳,女,1975年8月4日出生,汉族,住西安市高新区,系孙坤之妻。 华锋与孙坤、赵秋艳民间借贷纠纷一案,申请人华锋于2020年8月11日向本院申请财产保全,请求:1、冻结被申请人孙坤名下银行存款1000000元、赵秋艳名下银行存款300000元;2.查封被申请人赵秋艳名下两处房产(西安市雁塔区... | 1,262 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import arsd.cgi;
import minwiki.replacelinks, minwiki.staticsite;
import dmarkdown.markdown;
import std.file, std.path, std.process, std.regex, std.stdio;
/*
* Set the text editor used to edit/create pages.
* The `-i` option tells Geany to open a new editor.
* When you edit a page, the web server will wait until th... | 1,784 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #! /usr/bin/env bash
set -e
rm -rf tmp
python get_release.py $1 --dest 'tmp' --force
if [ -d "tmp" ]; then
cd tmp
setuptools-conda build --license-file 'None' $2
anaconda -t $ANACONDA_TOKEN upload --skip -u fastai conda_packages/*/*.tar.bz2 || true;
else
echo "no new release available"
fi
| 99 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | Secondary plant metabolites as promising
pesticides for increasing crop yields
Salokhiddin Zakirov1,*, Nodirbek Atamirzaev2 , Zulfiya Mukhidova1, and Rikhsivoy Ziyaev1
1Tashkent State Agrarian University, University str., 2, Tashkent province, Uzbekistan, 100140
2Scientific Research Institute of Rice Culture, Avan... | 5,767 | academic |
common_corpus_Github Open Source | 2,021 | package com.diguage.algorithm.leetcode;
import java.util.*;
/**
* = 18. 4Sum
*
* https://leetcode.com/problems/4sum/description/[4Sum - LeetCode]
*
* Given an array `nums` of n integers and an integer `target`, are there
* elements `a`, `b`, `c`, and `d` in `nums` such that `a + b + c + d = target`?
* Find all... | 874 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省隆回县人民法院 民 事 判 决 书 (2021)湘0524民初2361号 原告:严赛华,男,1985年8月3日出生,汉族,福建省莆田市人,住福建省莆田市涵江区。 特别授权委托诉讼代理人:易李,湖南方廉律师事务所律师。 被告:孙翔,男,1984年10月29日出生,汉族,湖南省隆回县人,住隆回县。 特别授权委托诉讼代理人:王清国,湖南普利律师事务所律师。 原告严赛华与被告孙翔民间借贷纠纷一案,本院于2021年5月24日立案受理后,依法适用简易程序,公开开庭进行了审理。原告严赛华及其特别授权委托诉讼代理人易李,被告孙翔的特别授权委托诉讼代理人王清国均到庭参加诉讼。本案现已审理终结。 原告严赛华向本院提出诉讼请求:1、判令被告偿还原告... | 2,799 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /* istanbul ignore file */
/**
* This example shows how to read and write large flowfiles without facing out
* of memory errors by reading/writing/processing the flowfile content in chunks
* instead of loading the entire flowfile content to the memory at once
*
* In this example, we convert the flowfile content t... | 294 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from .requests import JsonRequest, FormRequest
from .validator import validate, Validator
from .exceptions import ValidationException, register_error_handler
class Sieve:
def __init__(self, app=None):
if app is not None:
self.init_app(app)
@staticmethod
def init_app(app):
regi... | 71 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package typingsSlinky.awsSdk.ssmMod
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.`|`
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
@js.native
trait GetCalendarStateResponse extends StObject {
/**
* The time, as an ... | 479 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from redata.commons import logger, git_info
from os import getcwd
import logging
from datetime import date
import pandas as pd
today = date.today()
log_dir = ''
logfile = f'testlog.{today.strftime("%Y-%m-%d")}.log'
# CSV url
csv_url_prefix = "https://raw.githubusercontent.com/UAL-RE/ReQUIAM_csv"
csv_version = "m... | 375 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 安徽省寿县人民法院 执 行 裁 定 书 (2021)皖0422执552号 被执行人:陈召辉,男,汉族,1974年10月12日出生,初中文化,无业,住安徽省凤阳县。 本院在执行被执行人陈召辉盗窃罪一案中,本院于2021年2月20日向被执行人发出执行通知书、报告财产令,限其履行(2020)皖0422刑初233号刑事判决书确定的义务。在执行过程中,本院经调查总对总网络查控系统查询,被执行人名下无存款及车辆信息。通过本县不动产登记部门及公积金管理部门查询,被执行人名下无不动产登记记录及公积金缴存记录。依照《中华人民共和国民事诉讼法》第二百五十七条第六项规定,裁定如下: 终结(2021)皖0422执552号案件的执行。 本裁定送达后立即生效。... | 397 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | <?php
require('../../functions.php');
session_start();
if (!isset($_SESSION["id_pegawai"])) {
header("Location: ../../index.php?error=4");
}
nav("Laporan harian");
$db = dbConnect();
?>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="w... | 1,214 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _browserSymbol = _interopRequireDefault(require("svg-baker-runtime/browser-symbol"));
var _es6ObjectAssign = require("es6-object-assign");
var _sprite ... | 796 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | namespace Fortnite_API.Objects.V1
{
public enum BrCosmeticV1Type
{
Banner,
Backpack,
Contrail,
Outfit,
Emote,
Emoji,
Glider,
Wrap,
LoadingScreen,
Music,
Pet,
PetCarrier,
Pickaxe,
Shout,
Spray,
Toy,
Unknown
}
} | 98 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Remove object from array after uncheck checkbox
I know this is repeated question but I have tried multiple solution but still not worked my code.
I have a JSON object which has values of checkbox. So if any new checkbox is checked OR unchecked I am pushing that object in to new array.
But if I push any object by check ... | 640 | misc_reference |
common_corpus_Github Open Source | 2,021 | <script setup lang="ts">
import { useRoute, useRouter } from 'vue-router'
import { logOut, useLoggedIn } from '$/api'
const isLoggedIn = useLoggedIn()
const router = useRouter()
const route = useRoute()
async function onLogOut() {
await logOut()
router.push('/auth')
}
const showLogIn = computed(() => {
if (rou... | 203 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Oral actuators with orifice diameter between 0.2 and 1 mm are used for oropharyngeal deposition without inhaling. Oral actuators with orifice diameter not larger than 0.7 mm are used for lower airways deposition via inhalation. Nasal actuators are used for nasal administration.
Example 7
Following formulations package... | 2,435 | formal_gov |
common_corpus_Github Open Source | 2,021 | from sqlalchemy import Column, Integer
from sqlalchemy.orm import declarative_base
from .base import Base
class SaleSize(Base):
__tablename__ = 'salesizes'
id = Column(Integer, primary_key=True)
amount = Column(Integer)
| 51 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # Copyright (c) 2015-2020 by Rocky Bernstein
# Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com>
#
# 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
# o... | 4,888 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from "react";
import { storiesOf } from "@storybook/react";
const stories = storiesOf("antDesign.mentions", module);
import { Mentions } from "antd";
import debounce from "lodash/debounce";
const { Option } = Mentions;
class AsyncMention extends React.Component {
constructor() {
super();
this.... | 385 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省广州市从化区人民法院 结 案 通 知 书 (2021)粤0117执1811号 叶永健、梁佩珊: 关于广州市从化区人民法院与叶永健、梁佩珊受理费执行一案,本院已于二〇二一年五月二十日执行完毕。依照《最高人民法院关于人民法院执行工作若干问题的规定(试行)》第64条第(1)项的规定,本案作执行完毕结案。 特此通知。 二〇二一年五月二十日 微信公众号“马克 数据网” | 194 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | // Copyright (c) 2021, Justin Kim
// We are making my contributions/submissions to this project solely in our
// personal capacity and are not conveying any rights to any intellectual
// property of any third parties.
#include <Sapphire/compute/Initialize.hpp>
#include <Sapphire/compute/dense/cuda/Initialize.cuh>
#in... | 934 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
# Downloads and uncompresses all the files for the Full corpus.
wget -O Full.zip https://www.dropbox.com/s/g23vcvcqwqa7vbz/Full.zip?dl=1
unzip -o Full.zip
rm Full.zip
echo All files for the Full corpus have been downloaded and un-compressed successfully.
| 74 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import rdkit.Chem as Chem
from rdchiral.template_extractor import extract_from_reaction
from rdchiral.main import rdchiralRun, rdchiralReaction, rdchiralReactants
def canonicalize_mol(rxn_smi,split):
"""
Canonicalizes reactant or product molecule from a smiles string
:param rxn_smi: Reaction smiles st... | 608 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Network database (db)
var debug = require('debug')('kevin:database'); // debugging
var getMac = require('../lib/mac.js'); // get vendor names from mac addr
var nmap = require('../lib/nmap.js'); // use nmap to scan ports
var fs = require('fs'); // get access to filing system
var getHostName = re... | 1,080 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import math
def main():
# my_dict = {}
#
# for i in range(1, 101):
# if i % 3 != 0:
# my_dict[i] = i**3
my_dict = {i: i**3 for i in range(1, 101) if i % 3 != 0}
print('Reto 1')
print(my_dict)
print('*'*30)
numbers_dict={i:math.sqrt(i) for i in range(1,1001)}
... | 163 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Referring now to the method 300 of FIG. 3, at operation 305, a processing device of a host system (e.g., 120) receives (or otherwise retrieves) a key-value pair comprising a particular key and an associated value. As noted herein, the processing device may receive the key-value pair in response to a client request on t... | 7,196 | formal_gov |
common_corpus_Github Open Source | 2,021 | # Setup static paths
version_path="${version_data_path}"
patches_path="${patches_data_path}"
# Parse arguments
echo_output=false
verbose=false
function print_help() {
echo "Cleans up unreferenced builds."
echo "Options:"
echo " --help, -h | Displays this help message"
echo " --echo, -e, --dry-ru... | 861 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #[doc = "💩"]
pub const PILE_OF_POO: crate::Emoji = crate::Emoji {
glyph: "💩",
codepoint: "1F4A9",
status: crate::Status::FullyQualified,
introduction_version: 0.6f32,
name: "pile of poo",
group: "Smileys & Emotion",
subgroup: "face-costume",
is_variant: false,
variants: &[],
an... | 81,075 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package io.github.bralax.shotput.openapi;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import io.github.bralax.shotput.Config;
import io.github.bralax.shotput.endpoint.Endpoint;
import io.github.bralax.shotput.endpoint.Parameter;
import io.swagger.v3.oas.models.O... | 679 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | Article A Proline Mimetic for the Design of New Stable Secondary
Structures: Solvent-Dependent Amide Bond Isomerization of
(S)‑Indoline-2-carboxylic Acid Derivatives
Matteo Pollastrini, Filippo Lipparini, Luca Pasquinelli, Federica Balzano, Gloria Uccello Barretta,
Gennaro Pescitelli, and Gaetano Angelici*
Cite This: ... | 20,261 | academic |
common_corpus_Github Open Source | 2,021 | // ˅
package behavioralPatterns.strategy
// ˄
class HandSignal(_value: Int) {
// ˅
// ˄
// Values of rock, scissors and paper.
val value: Int = _value
// Return true if "this" is stronger than "hand".
def isStrongerThan(hand: HandSignal): Boolean = {
// ˅
judgeGame(hand) == 1
// ˄
}
... | 310 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Light Emitting Device And Projector
ABSTRACT
A light emitting device according to the present disclosure includes a substrate, and a columnar structure group formed of a plurality of columnar structures, wherein the plurality of columnar structures includes a plurality of first columnar structures disposed in a light... | 8,207 | formal_gov |
common_corpus_Github Open Source | 2,021 | // 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 w... | 292 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | Imports jakStd20_MathExt
Public Class RoutePoint
Public Property Easting As Double
Public Property Northing As Double
Public Property ForwardGridKP As Double
Public Property ReverseGridKP As Double
Public Property Heading As Double
Public Property Latitude As Double
Public Property Longit... | 1,275 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import fs from 'fs';
import dotenv from 'dotenv';
import { App } from '@aws-cdk/core';
import { Builder } from '@sls-next/lambda-at-edge';
import { version } from '../package.json';
import { nextjsServerlessProductionPipeline } from './productionCdkPipeline';
const envPath = '.env';
const localEnvPath = '.env.local';
... | 974 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // -*- mode: cpp; indent-tabs-mode: nil; c-basic-offset: 2 -*-
//
// This file is part of Genie
//
// Copyright 2021 The Board of Trustees of the Leland Stanford Junior University
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
//... | 337 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | const publicPackages = [
// CLI
'@tramvai/cli',
// CORE
'@tramvai/core',
'@tramvai/papi',
'@tramvai/react',
'@tramvai/react-query',
'@tramvai/state',
'@tramvai/types-actions-state-context',
'@tramvai/experiments',
'@tramvai/child-app-core',
// TEST
'@tramvai/test-unit-jest',
'@tramvai/test-u... | 864 | cc:Github Open Source |
common_corpus_Eurlex | 2,021 | L_2021347LT.01029701.xml
2021 9 30
LT
Europos Sąjungos oficialusis leidinys
L 347/297
Pagal tarptautinę viešąją teisę juridinę galią turi tik JT EEK tekstų originalai. Šios taisyklės statusas ir įsigaliojimo data turėtų būti tikrinami pagal paskutinę statusą nurodančio JT EEK dokumento TRANS/W... | 31,124 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | --TEST--
mkdir() tests
--FILE--
<?php
var_dump(mkdir("testdir"));
var_dump(mkdir("testdir/subdir"));
var_dump(rmdir("testdir/subdir"));
var_dump(rmdir("testdir"));
var_dump(mkdir("./testdir"));
var_dump(mkdir("./testdir/subdir"));
var_dump(rmdir("./testdir/subdir"));
var_dump(rmdir("./testdir"));
var_dump(mkdir(dirn... | 186 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright 2014-2017 Katherine Flavel
*
* See LICENCE for the full copyright terms.
*/
#include <assert.h>
#include <limits.h>
#include <string.h>
#include <errno.h>
#include "order.h"
enum order
order_lookup(const char *s)
{
size_t i;
struct {
const char *name;
enum order order;
} a[] = {
{ "prev"... | 174 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | class RenameBorrowRecordIdCloumns < ActiveRecord::Migration
def up
remove_column :borrow_records, :book_id
remove_column :borrow_records, :user_id
add_column :borrow_records, :book_id, :integer
add_column :borrow_records, :user_id, :integer
end
def down
end
end
| 81 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Square Connect API
*
* Client library for accessing the Square Connect APIs
*
* OpenAPI spec version: 2.0
* Contact: developers@squareup.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.Linq;
using System.IO;
using System.Text;
using System.Text.Regular... | 2,409 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { ChangeDetectorRef, Component, OnInit } from '@angular/core';
import { CommunitiesService } from './communities.service';
import { combineLatest, Observable, of } from 'rxjs';
import { filter } from 'rxjs/operators';
import { HttpErrorResponse } from '@angular/common/http';
import { GlobalErrorHandlerService } ... | 1,282 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /***************************************************************************
Eggs & Dommy
Very similar to Burger Time hardware (and uses its video driver)
driver by Nicola Salmoria
To Do:
Sprite Priorities in Dommy
Rock Duck
---------
Rock Duck support added based on preliminary findings by Roberto Fresca
It loo... | 6,882 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.xtx.ut4converter.tools.t3dmesh;
import javax.vecmath.Vector2d;
import javax.vecmath.Vector3d;
/**
*
*/
public class Vertex {
private Vector3d xyz;
private Vector2d uv;
/**
* Vertex 2 -160.000000 96.000000 8.000000 0.000000 0.003906
* @param line
*/
public void parseLin... | 191 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #pragma once
#include <vector>
#include "ComponentOwnersManager.h"
#include "LayoutTile.h"
#include "State.h"
#include "TileMap.h"
#include "Timer.h"
#include "UIConfig.h"
#include "UIManager.h"
namespace game
{
class EditorStateUIConfigBuilder;
class EditorState : public State
{
public:
friend class EditorStat... | 379 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 青海省海东市平安区人民法院 民 事 判 决 书 (2021)青0203民初465号 原告:刘占秀,男,1956年2月出生,汉族,青海省海东市平安区人。 被告:刘永德,男,1982年2月出生,汉族,青海省海东市平安区人。 原告刘占秀与被告刘永德财产损害赔偿纠纷一案,本院于2021年4月12日立案后,依法适用简易程序,公开本案现已审理终结。 原告刘占秀向本院提出诉讼请求:1、判令被告赔偿原告财产损失65000元;2、案件受理费由被告承担。事实及理由:被告系原告的侄儿子,出生8个月时被告的父亲去世,原告承担起了抚养被告的责任,原告虽然不是其亲生父亲,但对被告视同己出,被告15岁后独白到新疆去打工,成人后带回一女子作为妻子,回来后与原告分家... | 1,688 | cc:Chinese-Court-Decisions |
common_corpus_StackExchange | 2,021 | Flutter: How to remove empty space at the top of ListView?
I've created a ListView without any padding or margin. But the ListView was separated with empty space like this one:
And this is my code of this ListView:
content: Container(
width: context.widthPct(.5),
height: context.heightPct(.4),
child: CupertinoSc... | 513 | misc_reference |
common_corpus_Github Open Source | 2,021 | from tests.example_apps.music.tables import Band, Poster
from ..base import DBTestCase
class TestUpdate(DBTestCase):
def check_response(self):
response = (
Band.select(Band.name)
.where(Band.name == "Pythonistas3")
.run_sync()
)
self.assertEqual(respon... | 1,412 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Threading.Tasks;
using Discord.Commands;
namespace Hinode.Izumi.Commands.UserCommands.ShopCommands.BuyCommands
{
public interface IShopBuyProjectCommand
{
Task Execute(SocketCommandContext context, long projectId);
}
}
| 51 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package seedu.weeblingo.logic.commands;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static seedu.weeblingo.logic.commands.CommandTestUtil.VALID_TAGS_SET_GENERIC;
import static seedu.weeblingo.logic.commands.CommandTestUtil.VALID_TAGS_SET_HIRAGANA;
import static seedu.weeblingo.logic.commands.Le... | 1,915 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | ## Composite Track Map
import numpy as np
import netCDF4 as nc
import matplotlib.pyplot as plt
import glob
def main():
'''
@edwinrainville
Description: This function builds a composite map figure of all the tracks of microSWIFTs over the entire expierment to see where we sampled.
'''
# Get a... | 592 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | print("Abaixo digite o valor da temperatura em graus para saber sua conversão em fahrenheit")
temp = int(input('digite a temperatura: '))
conversor = temp * (9/5) + 32
print(conversor,"°F") | 58 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省涟源市人民法院 暂 予 监 外 执 行 决 定 书 (2021)湘1382刑更4号 罪犯姚某,女,汉族,初中文化。因涉嫌犯寻衅滋事罪,2019年5月21日被逮捕,同日转取保候审。2019年11月15日经本院决定逮捕,因被告人姚某已怀孕,逮捕未执行,同月22日转取保候审。2019年12月11日,本院以(2019)湘1382刑初692号刑事判决书对姚某犯寻衅滋事罪,判处有期徒刑一年八个月。该判决现已生效。 经查,2020年6月3日,因罪犯姚某处于哺乳期,本院决定对罪犯姚某暂予监外执行。2020年12月30日,罪犯姚某哺乳期到期,本院向涟源市公安局送达收监执行决定书,要求对罪犯收监执行,在执行期间,本院收到罪犯姚某以其怀孕为由要求暂... | 1,166 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | // Distributed under the BSD 2-Clause License - Copyright 2012-2021 Robin Degen
#pragma once
#include <cstdint>
namespace aeon::platform
{
namespace internal
{
struct modifier_keys_state_data final
{
std::uint32_t left_shift_state_ : 1 = false;
std::uint32_t right_shift_state_ : 1 = false;
std::uint32_... | 900 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
return [
/*
|--------------------------------------------------------------------------
| API
|--------------------------------------------------------------------------
|
| Whether the API should be enabled, and through what route. You
| can enable or disable the whole API, and expo... | 377 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //| Copyright - The University of Edinburgh 2011 |
//| |
//| Licensed under the Apache License, Version 2.0 (the "License"); |
//| you may not use this file except in compliance with the License. |
//| You ... | 651 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 新疆维吾尔自治区奇台县人民法院执 行 裁 定 书(2021)新2325执241号 申请执行人:中国建设银行股份有限公司奇台支行,住奇台县古城南街211号。被执行人:新疆扎玛纳木职业技能培训有限公司,住所地奇台县西北湾乡二屯二村。法定代表人:艾孜再姆·麦合苏提,。;艾孜再姆·麦合苏提,女性,1971年10月15日生,维吾尔族,住奇台县。本院在执行申请执行人中国建设银行股份有限公司奇台支行与被执行人新疆扎玛纳木职业技能培训有限公司、艾孜再姆·麦合苏提借款合同纠纷一案中,执行过程中双方当事人达成执行和解协议,依照《中华人民共和国民事诉讼法》第二百五十七条第1项(在执行中被执行人被人民法院裁定宣告破产的,增加引用《最高人民法院关于人民法院执... | 532 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 长春市朝阳区人民法院 结 案 通 知 书 (2021)吉0104执恢77号 赵连宝、邢思克: 关于赵连宝与邢思克合同、无因管理、不当得利一案,本院作出的(2015)朝民初字第01625号民事判决书已发生法律效力。申请执行人向本院申请强制执行,现经本院强制执行,被执行人自动履行完毕,本案执行完毕。 特此通知。 长春市朝阳区人民法院 二〇二一年二月二十四日 来源:马 克 数 据 网 | 203 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Instance Generator Core."""
import os
import logging
import math
import copy
import glob
from generator.utils.auxiliary import clone_args
from generator.generator import BasicGenerator, InstanceGenerator
LOG = logging.getLogger('custom')
class SplitGenerator(InstanceG... | 655 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | digraph "include/rclcpp/executors/multi_threaded_executor.hpp"
{
edge [fontname="Helvetica",fontsize="10",labelfontname="Helvetica",labelfontsize="10"];
node [fontname="Helvetica",fontsize="10",shape=record];
Node142 [label="include/rclcpp/executors\l/multi_threaded_executor.hpp",height=0.2,width=0.4,color="black... | 565 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | jobs (incl. supersource/sink ): 52
RESOURCES
- renewable : 4 R
- nonrenewable : 4 N
- doubly constrained : 0 D
************************************************************************
PRECEDENCE RELATIONS:
jobnr. #modes #successors successors
1 1 10 2 3 4 5 6 7 8 9 11 13
2 3... | 4,231 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.taobao.zeus.dal.logic;
import com.taobao.zeus.dal.model.ZeusHostGroup;
import com.taobao.zeus.model.HostGroupCache;
import java.util.List;
import java.util.Map;
public interface HostGroupManager {
public ZeusHostGroup getHostGroupName(String hostGroupId);
public Map<String,HostGroupCache> getAllHostG... | 105 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | module github.com/shanqincheng/gomock-proj
go 1.15
require (
github.com/karrick/godirwalk v1.16.1
github.com/spf13/cobra v1.1.1
)
| 55 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// System.Collections.Specialized.ListDictionary.cs
//
// Copyright (C) 2004, 2005 Novell (http://www.novell.com)
//
//
// 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 restrict... | 2,196 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Pharmacol., 20 May 2021 | https://doi.org/10.3389/fphar.2021.666348
A Large Impact of Obesity on the Disposition of Ivermectin, Moxidectin and Eprinomectin in a Canine Model: Relevance for COVID-19 Patients
Alain Bousquet-Mélou1, Anne Lespine1, Jean-François Sutra1, Isabelle Bargues1 and Pierre-Louis Toutain1,2*
• ... | 16,738 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | <template>
<v-container v-if="checkLocalStorage()">
<div class="text-center" v-if="loadingState">
<v-progress-circular
indeterminate
color="primary"
></v-progress-circular>
</div>
<v-row no-gutters v-if="!loadingState">
... | 1,180 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.ooc.frontend.model;
import java.io.IOException;
import org.ooc.frontend.Visitor;
import org.ooc.frontend.model.tokens.Token;
public class RegularArgument extends Argument {
public RegularArgument(Type type, String name, Token startToken) {
super(type, name, startToken);
}
@Override
public void ac... | 87 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Using metal to snapshot SCNRenderer produces darker output image
I'm using a Metal render pass to snapshot my SceneKit scene attached to a SCNRenderer. The method is faster than using the UIImage-producing SCNRenderer.snapshot(), but the output of the two methods is different; my method produces a darker image. I thoug... | 1,078 | misc_reference |
common_corpus_StackExchange | 2,021 | The SetTimeout not working on the code array propotype?
function vFunction() {
var sSplit = tText[counter].split("");
sSplit.forEach((element) => {
myElement.innerHTML = sSplit.slice(0, pos).join("");
pos += increment;
});
timeLoop = setTimeout(vFunction, 100);
}
vFunction();
Curr... | 422 | misc_reference |
common_corpus_Github Open Source | 2,021 | package com.hedera.cartevm.besu;
import com.google.common.base.Suppliers;
import org.apache.tuweni.bytes.Bytes;
import org.apache.tuweni.bytes.Bytes32;
import org.apache.tuweni.units.bigints.UInt256;
import org.hyperledger.besu.datatypes.Address;
import org.hyperledger.besu.datatypes.Hash;
import org.hyperledger.besu.... | 786 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import * as React from 'react';
import { ModalTitle, ModalBody, ModalSubmitFooter, createModalLauncher } from '@console/internal/components/factory/modal';
import { withHandlePromise, HandlePromiseProps } from '@console/internal/components/utils';
import { NodeKind } from '@console/internal/module/k8s';
import { makeNo... | 333 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
namespace objsamples
{
partial class Tester
{
static void Main(string[] args)
{
//args = new[] { "list", "campaign", "contentarea", "dataextension", "email", "folder", "list", "subscriber", "triggeredsend", "listsubscriber", "addsubscribertolist", "createdataextension... | 543 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from invoke import task
from .common import _print_command, _prompt
@task(iterable=['apps'], help={'apps': 'CLI applications to install'})
def install(c, apps=None):
'Install required CLI applications for working with Kubernetes.'
installs = ['k3d', 'kubectl', 'helm']
if apps:
installs.extend(app... | 158 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <%
'=======================================================================
' 指定したファイルのMD5ハッシュ値を計算する
'=======================================================================
'【引数】
' filename = string ファイル名
'【戻り値】
' 成功時は文字列、そうでなければ FALSE
'【処理】
' ・filename パラメータで指定したファイルの MD5ハッシュを計算し、そのハッシュを返します。
'=================... | 157 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省南京市溧水区人民法院民 事 裁 定 书(2021)苏0117民初484号原告:彭涛,男,1992年12月27日出生,汉族,住南京市溧水区。被告:南京源辉置业有限公司,统一社会信用代码91320117088210271E,住所地南京市溧水区永阳街道万科城银杏苑1幢104室。法定代表人:谈克涛,该公司董事长。委托诉讼代理人:徐劲浩,北京大成(南京)律师事务所律师。委托诉讼代理人:贾仲明,北京大成(南京)律师事务所律师。原告彭涛与被告南京源辉置业有限公司商品房预售合同纠纷一案,本院于2021年1月15日立案。原告彭涛于2021年3月1日向本院提出撤诉申请。本院认为,原告彭涛的申请符合法律规定。依照《中华人民共和国民事诉讼法》第一百四... | 451 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 文书内容重庆市城口县人民法院民 事 判 决 书(2021)渝0229民初173号原告:李光新,男,2001年3月16日出生,汉族,住重庆市城口县。委托诉讼代理人:李彩虹,城口县法律援助中心指派律师。被告:陈廷建,男,1973年3月6日出生,汉族,住重庆市城口县。原告李光新与被告陈廷建劳务合同纠纷一案,本院于2021年2月2日立案后,依法适用小额诉讼程序,于2021年2月25日公开开庭进行了审理。原告的委托诉讼代理人李彩虹到庭参加诉讼,被告陈廷建经本院合法传唤未到庭参加诉讼,本院依法缺席审理。本案现已审理终结。李光新向本院提出诉讼请求:1.判令被告支付原告劳动报酬19800元,并自逾期之日起至清偿之日止按年利率6%支付资金占用利息;2... | 1,157 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | from abc import ABC, abstractmethod
from argparse import ArgumentParser
class BaseTrainer(ABC):
@classmethod
@abstractmethod
def build_trainer_from_args(cls, args):
"""Build a new trainer instance."""
raise NotImplementedError(
"Trainers must implement the build_trainer_from_ar... | 68 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import styled from 'styled-components'
import { selectors } from '@defencedigital/design-tokens'
const { spacing } = selectors
export const StyledDrawerContent = styled.div`
height: 100%;
overflow-y: scroll;
padding: ${spacing('4')};
& > h1 {
margin-top: 0;
}
`
| 73 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 贵州省纳雍县人民法院 结 案 通 知 书 (2021)黔0525执恢91号 蒋某兵、贵州嘉兴煤业有限公司: 关于申请执行人蒋某兵与被执行人贵州嘉兴煤业有限公司劳动争议纠纷一案,本院于2021年2月26日立案执行。执行过程中,贵州嘉兴煤业有限公司足额履行本案确定的义务。根据《最高人民法院关于进一步规范近期执行工作相关问题的通知》(法〔2018〕141)的相关要求,本案作执行完毕结案。 特此通知 二〇二一年三月一日 马 克 数 据 网 | 237 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | // Copyright (c) 2013 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.
#include <limits>
#include <stddef.h>
#include "ax_build/build_config.h"
#include "gfx/test/gfx_util.h"
#include "gtest/gtest.h"
#include "rect.h"
#... | 15,163 | cc:Github Open Source |
common_corpus_Eurlex | 2,021 | _______________________
Käesolev teabedokument põhineb komisjoni rakendusmääruse (EL) 2020/683 I lisas esitatud vormil ning täidetakse eespool loetletud punktide all sisalduva teabega vastavalt sellele vormile.
B jagu
Teabedokument klaasipesurisüsteemide kui eraldi seadmestike ELi tüübikinnituse kohta
NÄIDI... | 30,310 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | package io.quarkus.test.common;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.util.function.Supplier;
import org.eclipse.microprofile.config.Config;
import org.eclipse.microprofile.config.spi.ConfigProviderResolver;
import io.quarkus.runtime.configuration.ConfigUtils;
import io.quarkus.runti... | 871 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # +-------------------------------------------------------------------------
# | ysMotionBlend.py
# |
# | Author: Yoonsang Lee
# +-------------------------------------------------------------------------
# | COPYRIGHT:
# | Copyright Yoonsang Lee 2013
# | See the included COPYRIGHT.txt file for further details.
# ... | 12,177 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | P-dominated group
From Groupprops
Jump to: navigation, search
The article defines a property of groups, where the definition may be in terms of a particular prime that serves as parameter
View other prime-parametrized group properties | View other group properties
Definition
A finite group is termed a -dominated gro... | 159 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | import React, { useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import styled, { css } from 'styled-components';
import palette from '../../../lib/styles/palette';
import { setMainVideo } from '../../../modules/meeting';
const Button = styled.button`
width: 180px;
height: 60px;
b... | 406 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #include <QCoreApplication>
#include <QObject>
#include <QDebug>
#include <QThread>
#include <QTimer>
#include "CallerThreads.h"
int main(int argc, char *argv[])
{
qDebug() << "Main Thread:" << QThread::currentThreadId();
QCoreApplication a(argc, argv);
auto threaded = new ThreadedObject();
auto qu... | 258 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
*
* Copyright 2019 California Institute of Technology ("Caltech").
* U.S. Government sponsorship acknowledged.
*
* 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://... | 645 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //!
//! Task Manager Process Entry
//!
//! This entry contains at least one thread entry.
use super::{ProcessStatus, TaskError, TaskSignal, ThreadEntry};
use crate::kernel::collections::ptr_linked_list::{PtrLinkedList, PtrLinkedListNode};
use crate::kernel::memory_manager::MemoryManager;
use crate::kernel::sync::spin... | 1,638 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from myhdl import *
@block
def lsu(r6_r7_data,ds1_data,mem_read,mem_write,mem_ok,lsu_out,addr,wdata,rdata,write,read,rdy):
'''
:param r6_r7_data: 16 in
:param ds1_data: 16 in
:param mem_read: 1 in
:param mem_write: 1 in
:param mem_ok: 1 out
:param lsu_out: 8 out
:param addr: 16 out
... | 281 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | How to call getter of function in other file
I have this function in my index.js :
import React, { useState, useEffect } from 'react';
export const getters = {
aPrice:null,
bPrice:null
}
const setters = {
aPrice:null,
bPrice:null
}
export const Toto = () => {
[getters.aPrice , setters.aPrice] = useState(nu... | 558 | misc_reference |
common_corpus_Github Open Source | 2,021 | <?php
namespace App\DependencyInjection\Compiler;
use App\Service\Scraper\ScraperChainService;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
class ScraperCompilerPass implement... | 246 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | ARTICLE
OPEN
Association between age of cannabis initiation and gray matter
covariance networks in recent onset psychosis Nora Penzel1,2, Linda A. Antonucci2,3, Linda T. Betz
1, Rachele Sanfelici2,4, Johanna Weiske2, Oliver Pogarell2, Paul Cumming5,6,
Boris B. Quednow
7, Oliver Howes8,9,10,11, Peter Falkai2, Rachel Upt... | 19,272 | academic |
common_corpus_Chinese-Court-Decisions | 2,021 | 辽宁省沈阳市中级人民法院民 事 判 决 书(2021)辽01民终6853号上诉人(原审被告):沈阳市阳光畜牧有限公司,住所地沈阳市大**前进乡榆林街**。法定代表人:朱梦喜,该公司经理。委托诉讼代理人:聂绍臣,男,满族,1951年4月19日出生,住辽宁省兴城市。被上诉人(原审原告):沈阳市大东区市场监管事务服务与行政执法中心,住,住所地沈阳市大**大东路**/div>法定代表人:李立伟,该中心主任。委托诉讼代理人:宋作江,辽宁颂世蓬勃律师事务所律师。上诉人沈阳市阳光畜牧有限公司因与被上诉人沈阳市大东区市场监管事务服务与行政执法中心确认合同效力纠纷一案,不服沈阳市大东区人民法院(2020)辽0104民初1697号民事判决,向本院提起上... | 3,012 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省郑州市二七区人民法院结 案 通 知 书(2021)豫0103执2485号申请执行人赵扎根,男,汉族,住河南省通许县。被执行人河南鸿翔物流有限公司。关于申请执行人赵扎根申请执行被执行人河南鸿翔物流有限公司合同纠纷一案,郑州市二七区人民法院作出的(2020)豫0103民初13331号民事判决书已经发生法律效力,申请执行人向本院申请执行,在执行过程中,被执行人已履行完毕,该案件已执行完毕。故依照《最高人民法院关于执行案件立案、结案若干问题的意见》第十四条、第十五条之规定,通知如下:本院(2021)豫0103执2485号执行案件执行完毕,予以结案。特此通知二〇二一年三月三十一日 马 克 数 据 网 | 322 | cc:Chinese-Court-Decisions |