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 | "use strict";
const COST_PER_MB = 0.000004768, //Based on $5/TB
BYTES_IN_MB = 1048576,
COST_FOR_10MB = COST_PER_MB * 10;
const readline = require("readline"),
csv = require("csvtojson");
module.exports = class AthenaExpress {
constructor(init) {
validateConstructor(init);
this.config = {
athena: new init.... | 1,608 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Adding elements to a specified index in python Numpy
How can I place a value inside an array witha specified index. Like how can I place the number 3 inside between the 4th and the 5th element in array.
number = 3
index= 5
array= np.array([ 31, 28, 31, 30, 31, 30, 31, 31])
Expected Output
[ 31, 28, 31, 30, 3, 31, 30,... | 250 | misc_reference |
common_corpus_Github Open Source | 2,021 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Tests.Mocks;
using Tortuga.Anchor.Modeling.Internals;
namespace Tests.Modeling.Internals
{
[TestClass]
public class ChangeTrackingPropertyBagTests
{
[TestMethod]
public void ChangeTrackingPropertyBag_ConstructorFailed(... | 1,842 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using Microsoft.Extensions.Logging;
using RepositoryModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BuisinessLayerMethods
{
public class RarityMethods : IRarityMethods
{
public readonly P3Context context;
pri... | 1,248 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import 'package:flutter/material.dart';
class Exam extends StatefulWidget {
@override
_ExamState createState() => _ExamState();
}
class _ExamState extends State<Exam> {
@override
Widget build(BuildContext context) {
return Scaffold(
);
}
}
| 59 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { Uri, Range, Command, TreeItem, TreeItemCollapsibleState, ThemeIcon } from 'vscode';
import { DEEPCODE_OPEN_BROWSER_COMMAND, DEEPCODE_OPEN_LOCAL_COMMAND } from "../constants/commands";
import * as path from 'path';
export interface INodeIcon {
['light']: string,
['dark']: string
};
export const NODE_ICONS... | 734 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | @model Category
<li class="nav-item">
@if (Model.Childs.Any()) {
<div class="dropright">
<a class="dropdown-toggle nav-link @(Model.CategoryName == ViewBag.SelectedCategory ? "active" : "")" data-toggle="dropdown" href="#">
@Model.CategoryName
<i class="fa fa-angle-right float-... | 228 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.tomaszpolanski.androidsandbox.common;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
public final class Preconditions {
@NonNull
public static <T> T get(@Nullable final T value) {
if (value == null) {
throw new NullPointerException("Valu... | 75 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | .include "o/libc/nt/codegen.inc"
.imp kernel32,__imp_Sleep,Sleep,0
.text.windows
Sleep:
push %rbp
mov %rsp,%rbp
.profilable
mov %rdi,%rcx
sub $32,%rsp
call *__imp_Sleep(%rip)
leave
ret
.endfn Sleep,globl
.previous
| 92 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/env bash
set -euo pipefail
# Default Values
DEFAULT_MAX_FD=256
DEFAULT_PG_SZ=4096
DEFAULT_LN_SZ=64
DEFAULT_CPU_CNT=1
DEFAULT_ICACHE_SZ=32768
DEFAULT_DCACHE_SZ=32768
##
# Returns the maximum amount of file descriptors allowed.
# Params:
# - $1: String containing digit
#
# TODO: Find scalable way to detect... | 1,513 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import math
from pathlib import Path
import hist
import matplotlib
import matplotlib.pyplot as plt
import mplhep
import pylhe
from hist import Hist
def invariant_mass(p1, p2):
# c.f. https://github.com/scikit-hep/pylhe/blob/master/examples/zpeak.ipynb
return math.sqrt(
sum(
(1 if mu == "e... | 479 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | (self["webpackChunk"] = self["webpackChunk"] || []).push([["resources_js_views_admin_index_vue"],{
/***/ "./node_modules/babel-loader/lib/index.js??clonedRuleSet-5[0].rules[0].use[0]!./node_modules/vue-loader/lib/index.js??vue-loader-options!./resources/js/views/admin/index.vue?vue&type=script&lang=js&":
/*!**********... | 2,534 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // p1 is a simple promise to which you can attach handlers
const p1 = new Promise((resolve, reject) => {});
// p1 exposes a then() method which accepts a
// resolve handler (onFulfilled), and a
// reject handler (onRejected)
p1.then(
// onFulfilled is invoked when resolve() is invoked
() => {},
// onRejected i... | 375 | cc:Github Open Source |
common_corpus_French-Science-Pile | 2,021 | Host matrix
CaCl2
Hydration
RH during
content temperature hydration
(wt.%) a (°C)
(%)
Dehydration Water
temperature sorption
capacity
(°C)
(kgH O kg-1)b
Heat
storage
capacity
(kJ kg-1)c
Ref.
AF
0
25
30
150
0.27
638
This work
AF-Ca1
25
25
30
150
0.37
998
This work
AF-Ca2
37
25
30
150
0.49
1425
... | 10,695 | cc:French-Science-Pile |
common_corpus_StackExchange | 2,021 | Web audio API oscillator onstarted event
The Web Audio API oscillator allows a script to be alerted when the oscillator stops with onended.
How can the script be alerted when it starts?
const ac = new AudioContext()
const osc = ac.createOscillator()
osc.type = 'sawtooth'
osc.connect(ac.destination)
osc.onstarted = ()... | 311 | misc_reference |
common_corpus_Github Open Source | 2,021 | import 'dart:collection';
import 'package:quiver/core.dart';
enum AttributeScope {
INLINE, // refer to https://quilljs.com/docs/formats/#inline
BLOCK, // refer to https://quilljs.com/docs/formats/#block
EMBEDS, // refer to https://quilljs.com/docs/formats/#embeds
IGNORE, // attributes that can be ignored
}
c... | 2,046 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | PLOS ONE RESEARCH ARTICLE Editor: Suzie Chen, Rutgers University, UNITED
STATES Received: August 27, 2020
Accepted: February 21, 2021
Published: June 23, 2021 Received: August 27, 2020
Accepted: February 21, 2021
Published: June 23, 2021 Copyright: © 2021 Escuin-Ordinas et al. This is an
open access article distributed... | 18,092 | academic |
common_corpus_Github Open Source | 2,021 | using Optsol.Components.Domain.Entities;
using Optsol.Components.Test.Utils.Contracts;
using Optsol.Components.Test.Utils.Data.Entities.ValueObjecs;
using System;
namespace Optsol.Components.Test.Utils.Data.Entities
{
public class TestTenantEntity : AggregateRoot, ITenant
{
public NomeValueObject Nom... | 298 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | On Error Resume Next
Const wbemFlagReturnImmediately = &h10
Const wbemFlagForwardOnly = &h20
arrComputers = Array(".")
For Each strComputer In arrComputers
WScript.Echo
WScript.Echo "=========================================="
WScript.Echo "Computer: " & strComputer
WScript.Echo "=========================... | 1,094 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 文书内容昆山市人民法院执 行 裁 定 书(2021)苏0583执635号申请执行人:昆山博阳物业管理有限公司,统一社会信用代码9132058369214686XE,住所地江苏省昆山市北门路1114号楼21号房。法定代表人:袁云飞。被执行人:石文文,女,1983年11月8日生,汉族,住江苏省昆山市。申请执行人昆山博阳物业管理有限公司与被执行人石文文物业服务合同纠纷一案,该案(2020)苏0583民初2568号判决书已经发生法律效力。由于被执行人石文文未履行法律文书所确定的义务,依据《中华人民共和国民事诉讼法》第二百四十二条、第二百四十三条、第二百四十四条之规定,裁定如下:一、冻结、扣划被执行人石文文银行存款人民币8182.00元。二、... | 409 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 吉林省公主岭市人民法院民 事 判 决 书(2021)吉0184民初2045号原告:王成龙,男,1994年10月8日出生,汉族,住吉林省公主岭市。被告:王守财,男,1983年11月12日出生,汉族,住吉林省公主岭市。原告王成龙与被告王守财民间借贷纠纷一案,本院于2021年5月7日立案后,依法适用简易程序,公开开庭进行了审理。原告王成龙到庭参加诉讼、被告王守财经传票传唤拒不到庭参加诉讼。本案现已审理终结。王成龙向本院提出诉讼请求:1请求被告王守财立即返还原告借款20000元并支付逾期利息(自2018年2月2日起至借款还清之日止,以20000元为基数,每月按5%计算);2.诉讼费由被告承担。事实和理由:2018年2月2日,被告王守财因家庭... | 1,464 | cc:Chinese-Court-Decisions |
common_corpus_Eurlex | 2,021 | L_2021108HU.01005701.xml
2021.3.29.
HU
Az Európai Unió Hivatalos Lapja
L 108/57
A TANÁCS (KKBP) 2021/542 HATÁROZATA
(2021. március 26.)
az Európai Uniónak a földközi-tengeri térségben folytatott katonai műveletéről (EUNAVFOR MED IRINI) szóló (KKBP) 2020/472 határozat módosításáról
AZ EURÓPAI U... | 2,858 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | import sys,os
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
from matplotlib.ticker import LinearLocator, FormatStrFormatter
import matplotlib.pyplot as plt
import matplotlib.colors as colors
import numpy as np
import tracer_interpreter as ti
import pdb
def truncate_colormap(place,size,res,colormap... | 2,460 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
namespace WFS210.Services
{
public class InputCouplingCommand : ChannelCommand
{
protected readonly InputCoupling InputCoupling;
public InputCouplingCommand (int channel, InputCoupling inputCoupling) : base(channel)
{
this.InputCoupling = inputCoupling;
}
public override void Execute(Ser... | 105 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #include "PMXBone.h"
#include "PMXMaterial.h"
#include "PMXModel.h"
#include <algorithm>
#include <cfloat>
namespace PMX {
namespace detail {
class RootBone
: public Bone
{
public:
RootBone(PMX::Model *Model) : Bone(Model, -1) {
Flags = (uint16_t)BoneFlags::Manipulable | (uint16_t)BoneFlags::Movable | (ui... | 6,830 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Copyright (c) 2021 Wireleap
package relayentry
import (
"fmt"
"strings"
"github.com/wireleap/common/api/jsonb"
"github.com/wireleap/common/api/texturl"
"github.com/blang/semver"
)
type T struct {
Role string `json:"role"`
Addr *texturl.URL `json:"address"`
Pubkey jsonb.PK `json... | 409 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 |
=head1 LICENSE
Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
Copyright [2016-2020] EMBL-European Bioinformatics Institute
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obt... | 599 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using HA.Adapter.Persistence.Repositories;
using HA.Adapter.Persistence.Unit.Test.Common;
using HA.Domain.Entities;
using NUnit.Framework;
using System;
using System.Linq;
using System.Threading.Tasks;
namespace HA.Adapter.Persistence.Unit.Test.Repositories
{
public class GenericRepositoryAsyncTest
{
... | 599 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | __all__ = ["MultiGaussian", "MultiGaussianLayer"]
from dataclasses import dataclass
from typing import ClassVar
import torch
import torch.nn as nn
import torch.nn.init as ti
import torch.distributions as dist
import utils
@dataclass
class MultiGaussian:
mu: torch.Tensor
var_logit: torch.Tensor
_unit_va... | 879 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 黑龙江省集贤县人民法院执 行 判 决 书(2021)黑0521执313号之一申请执行人:黑龙江集贤农村商业银行股份有限公司,住所地集贤县福利镇。法定代表人:孙汇鸿,该公司董事长。委托诉讼代理人:于鸿淼,该公司职员。被执行人:张臣,男。被执行人:崔伟宏,女。本院在执行黑龙江集贤农村商业银行股份有限公司与张臣、崔伟宏金融借款合同纠纷一案中,(2020)黑0521民初3473号民事判决书已发生法律效力,该判决书确定张臣、崔伟宏于本判决发生法律效力后立即共同给付黑龙江集贤农村商业银行股份有限公司借款本金3.7万元;并以3.7万元为基数,按月利率9.022‰计算,一并给付2020年1月11日至给付之日的利息。如果未按本判决指定的期间履行给付金... | 1,483 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | ;Sliced by ideaMaker 3.5.3.4250, 2020-11-14 19:44:35 UTC+0100 ;Dimension: 250.000 215.000 205.000 0.400 ;Plate Shape: 0 ;Extruder Offset #1: 25.000 0.000 ;Filament Diameter #1: 1.750 ;Filament Diameter #2: 1.750 ;Filament Compensation #1: 94.00 ;Filament Compensation #2: 94.00 ;Filament Density #1: 1240.00 ;Filament De... | 65,982 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import vaelib
def test_scheduling() -> None:
annealer = vaelib.LinearAnnealer(0, 1, 10)
for i in range(20):
value = next(annealer)
assert value == min((i + 1) / 10, 1)
| 66 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php namespace App\Models\Businessadmin;
use CodeIgniter\Model;
class CategoriesModel extends Model
{
protected $table = 'product_categories';
protected $primaryKey = 'pk_id';
protected $returnType = 'array';
protected $allowedFields = ['pk_id', 'name', 'shortname', 'description', 'created_date... | 312 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <<?= $element .' '. $attrs ?>>
<div class="card">
<div class="card-body">
<div class="d-flex flex-row">
<div class="col-4 align-self-center">
<div class="round">
<i class="mdi mdi-<?= $icon ?>" style="color:<?= $icolor ?>;"></i>
... | 225 | cc:Github Open Source |
common_corpus_dotgov | 2,021 | S/P 5311 428300 Interest Receivable From Treasury B D/C D D/M X U/E U X/K/N EC/EG/EM/EP/ER/TR N + -
Unexpended balances (Direct/Reimbursable/Discretionary/Mandatory):
Unobligated balance:
Direct unobligated balance, start of year
Discretionary mandated transfer to other accounts (-)
This line is not required to be... | 20,272 | cc:dotgov |
common_corpus_Github Open Source | 2,021 | // This code is based on Jet framework.
// Copyright (c) 2018 Doyub Kim
// CubbyFlow is voxel-based fluid simulation engine for computer games.
// Copyright (c) 2020 CubbyFlow Team
// Core Part: Chris Ohk, Junwoo Hwang, Jihong Sin, Seungwoo Yoo
// AI Part: Dongheon Cho, Minseo Kim
// We are making my contributions/subm... | 2,036 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Collections.Generic;
using System.ComponentModel;
using StreamLogger.Api.Interfaces;
namespace TwitchImplementation
{
public class Config : IConfig
{
public bool Enabled { get; set; } = false;
public List<string> Channels { get; set; } = new List<string>();
public string... | 186 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Clause 144. The method of clause 142, further comprising receiving a paging message from a serving base station indicating that the UE is to transmit the PRACH for UL positioning waveform in the RACH procedure for positioning.
Clause 145. A user equipment (UE) configured to support position determination of the UE in a... | 7,799 | formal_gov |
common_corpus_Github Open Source | 2,021 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Expl.Auxiliary;
namespace Expl.Itinerary {
/// <summary>
/// Union collection of ISchedule objects.
/// </summary>
[Description("Union")]
[Serializable]
public class UnionSchedule ... | 765 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import random
import torch
import torch.nn.functional as F
from fairseq import utils
from fairseq.models import register_model, register_model_architecture
from fairseq.modules.transformer_sentence_encoder import init_bert_params
from latent_nat.awesome_nat import AwesomeNAT, NATDecoder, ensemble_decoder
from latent_... | 3,287 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 12680.4 90 深坪劳人仲(龙田)案[2020]1311号 47 (2021)粤0310执235号 申请执行人:古寿昌; 被执行人:发财制造(深圳)有限公司 2021-01-08 12944.04 94 深... | 7,173 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | # Code generated by lark_sdk_gen. DO NOT EDIT.
from pylark.lark_request import RawRequestReq, _new_method_option
from pylark import lark_type, lark_type_sheet, lark_type_approval
import attr
import typing
import io
@attr.s
class SearchChatReq(object):
user_id_type: lark_type.IDType = attr.ib(
default=Non... | 1,012 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React, {useContext, useEffect, useMemo, useCallback} from 'react';
import {useImmer} from 'use-immer';
import {useColorScheme} from 'react-native';
import {EVENT_NAME} from '@app/app.constants';
import {usePersistenceImmer} from '@core/hooks/use-persistence';
import {Colors} from 'react-native-paper';
import {lo... | 1,738 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Given the functions $f_0,...,f_n$ with $f_0(x)=\frac{1}{x-2}$ and $f_{k+1}(x)=\frac{1}{1-f_k(x)}$ for every $k=0,1,...,n-1$. Evaluate $f_{2000}(2001)$
Given the functions $f_0,f_1,...,f_n$ with $f_0(x)=\frac{1}{x-2}$ and $f_{k+1}(x)=\frac{1}{1-f_k(x)}$ for every $k=0,1,...,n-1$. Evaluate $f_{2000}(2001)$.
I'm trying to... | 345 | misc_reference |
common_corpus_Github Open Source | 2,021 |
#pragma once
#include <parquet/encryption.h>
#include <stdexcept>
using namespace parquet;
// Derived DecryptionKeyRetriever that can callback into managed code.
// This class maintains a GC reference, such that the managed instance cannot get collected if this class is still alive.
class ManagedDecryptionKeyRetrie... | 402 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | Rscript --verbose BuyOnGap_sim_sp500.R >& log/BuyOnGap_sim_sp500.log;
Rscript --verbose BuyOnGap_sim_sp400.R >& log/BuyOnGap_sim_sp400.log;
Rscript --verbose BuyOnGap_sim_2day.R >& log/BuyOnGap_sim_2day.log;
Rscript --verbose BuyOnGap_sim_r2k_2day.R >& log/BuyOnGap_sim_r2k_2day.log;
Rscript --verbose BuyOnGap_sim_r2k_A... | 248 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package jef.database.wrapper.populator;
import java.sql.SQLException;
import java.util.Map;
import jef.database.DataObject;
import jef.database.DebugUtil;
import jef.database.IQueryableEntity;
import jef.database.LazyLoadProcessor;
import jef.database.dialect.type.ColumnMappings;
import jef.database.innerpool.Instanc... | 704 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* Copyright 2017 Colin Doig. Distributed under the MIT license.
*/
#include "greentop/sport/UnblockMarketGroupRequest.h"
namespace greentop {
namespace sport {
UnblockMarketGroupRequest::UnblockMarketGroupRequest() {
}
UnblockMarketGroupRequest::UnblockMarketGroupRequest(const MarketGroup& marketGroup) :
... | 236 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<div class="table-index _table-index">
<div class="select-head">
<el-form ref="form" style="display: flex;flex-wrap:wrap;" :model="form" label-width="90px" label-position="right" >
<el-form-item label="单号:">
<el-input type="text" placeholder="请输入单号" v-model="form.billNumber" cl... | 2,090 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | R. L. Mitchell1,2,3*, P. Davies1, P. Kenrick2, T. Volkenandt4, C. Pleydell‑Pearce1 &
R. Johnston1* R. L. Mitchell1,2,3*, P. Davies1, P. Kenrick2, T. Volkenandt4, C. Pleydell‑Pearce1 &
R. Johnston1* Correlative imaging provides a method of investigating complex systems by combining analytical
(chemistry) and imaging ... | 20,791 | academic |
common_corpus_Github Open Source | 2,021 | import * as SDK from '../../../core/sdk/sdk.js';
import * as Protocol from '../../../generated/protocol.js';
import * as UI from '../../../ui/legacy/legacy.js';
export declare class RequestTrustTokensView extends UI.Widget.VBox {
private readonly reportView;
private readonly request;
constructor(request: SD... | 274 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Occurrence records map (0 records)
Datasets
datasets have provided data to the Atlas of Living Australia for this species.
Browse the list of datasets and find organisations you can join if you are interested in participating in a survey for species like Acanthurus nigros Günther, 1861
Names and sources
Accepted N... | 665 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省汨罗市人民法院结 案 通 知 书(2021)湘0681执恢85号许建军:关于你刑事罚金一案,经本院立案执行,现已全部执行完毕。此案已结。特此通知!二〇二一年四月二十二日 百度搜索“马 克 数 据 网” | 109 | cc:Chinese-Court-Decisions |
common_corpus_StackExchange | 2,021 | How do you determine the coordinates of a point on a vector if you are given one point?
Vector AB - the tail is at (-4,2) and the head is at (-1,3). Determine the coordinates of point D on vector CD, if C(-6,0) and vector CD = vector AB.
I tried to find the slope of vector CD knowing that it is the same as vector AB... | 377 | misc_reference |
common_corpus_Github Open Source | 2,021 | package br.com.caelum.stella.boleto;
import java.util.Calendar;
import java.util.GregorianCalendar;
/**
* Bean que representa as datas relacionadas a um Boleto.
*
* @author Paulo Silveira
* @author Caue Guerra
* @author Leonardo Bessa
*
*/
public class Datas {
private Calendar documento;
private Cale... | 1,022 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Generated from TestRunResultsParser.g4 by ANTLR 4.9
package com.pdsl.grammars;
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.misc.*;
import org.antlr.v4.runtime.tree.*;
import java.util.List;
import java.util.Iterator;
import java.u... | 9,791 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | As the client frequently ships items/packages, the client may be in possession of a set of TDs. As part of the package preparation process, the client may select one of the TDs (e.g., TD 100) and secure the selected TD 100 to the package or insert the selected TD 100 into the package. At step 605, the client uses the c... | 9,204 | formal_gov |
common_corpus_Chinese-Court-Decisions | 2,021 | 辽宁省瓦房店市人民法院 民 事 裁 定 书 (2021)辽0281民初7560号 原告:杜以方,男,1970年3月29日出生,汉族,住瓦房店市。 被告:杜善恒,男,1963年4月20日出生,汉族,住瓦房店市。 原告杜以方与被告杜善恒劳务合同纠纷一案,本院于2021年8月25日立案。原告杜以方于2021年8月30日向本院提出撤诉申请。 本院认为,原告杜以方在诉讼过程中自愿提出撤诉申请,是在法律允许的范围内对自己的权利所做的处分,原告提出撤诉申请,符合法律规定的条件。 依照《中华人民共和国民事诉讼法》第一百四十五条第一款规定,裁定如下: 准许原告杜以方撤诉。 案件受理费减半收取687元,由原告杜以方负担。 审判员 曲伟娜 二〇二一年八... | 402 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 浙江省嘉兴市中级人民法院行 政 判 决 书(2021)浙04行终46号上诉人(原审原告)胡月富,男,1956年6月24日出生,汉族,住浙江省嘉善县。委托诉讼代理人尹威振,北京市盈科律师事务所律师。被上诉人(原审被告)嘉善县天凝镇人民政府,住所地:浙江省嘉善县天凝镇古镇路99号。法定代表人俞娟,该镇镇长。委托诉讼代理人顾学民。委托诉讼代理人吴建胜,浙江金嘉律师事务所律师。原审第三人嘉善天信房屋拆迁有限责任公司,住所地:浙江省嘉善县魏塘街道亭桥南路68号。法定代表人许红,该公司经理。委托诉讼代理人盛四根。上诉人胡月富因行政协议一案,不服桐乡市人民法院于2020年12月24日作出的(2020)浙0483行初30号行政判决,向本院提起上诉,... | 4,729 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河北省秦皇岛市海港区人民法院 民 事 调 解 书 (2021)冀0302民初3308号 原告:孙善安,男,1975年6月25日出生,汉族,现住海港区。 被告:高超,男,1990年7月15日出生,汉族,现住秦皇岛市山海关区。 原告孙善安诉被告高超劳务合同纠纷一案,本院于2021年4月7日立案后,依法适用简易程序进行了审理。 原告孙善安向本院提出诉讼请求:1、请求被告向原告支付欠款6451.61元2、请求被告承担本案全部诉讼费用。事实和理由:原告孙善安于2020年6月开始在被告高超负责的君潮传媒公司从事视频拍摄工作,公司于2020年8月12日通知解散,7月1日至8月12日工资一直没给结算,多次讨要,原告以各种理由不支付。直到2021年1... | 668 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | // Copyright 2020 Autodesk, 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 or agreed t... | 2,931 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 山西省乡宁县人民法院 执 行 裁 定 书 (2021)晋1029执79号 申请执行人:吴建科,男,1986年4月6日生,汉族,住乡宁县。 被执行人:王彦林,男,1983年8月2日生,汉族,住乡宁县。 本院(2020)晋1029民初1111号民事调解书已经发生法律效力,因被执行人王彦林未自觉履行生效法律文书确定的义务,权利人吴建科向本院申请执行,本院于2021年1月13日立案执行。依照《中华人民共和国民事诉讼法》第二百四十条、第二百四十二条、第二百四十四条、第二百四十五条、第二百四十六条、《最高人民法院关于适用的解释》第四百八十六条、第四百八十七条、《最高人民法院关于人民法院执行工作若干问题的规定(试行)》第38条、第42条、《最高人... | 764 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | package org.clyze.source.irfitter.source.model;
import org.clyze.persistent.model.Position;
import org.clyze.persistent.model.Usage;
import org.clyze.persistent.model.UsageKind;
/** A point of use of a code element (such as a variable read). */
public class ElementUse {
public final Position position;
public ... | 215 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react';
import { Table } from 'react-bootstrap';
const Long_Table = () => {
return (
<Table
striped
bordered
responsive="md"
hover
size="md"
variant="dark"
style={{ fontSize: '0.6vw', width: '100%' }}
>
<thead>
<tr>
<th styl... | 851 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 贵州省纳雍县人民法院 结 案 通 知 书 (2021)黔0525执879号 中国建设银行股份有限公司纳雍支行: 刘某江、陈某、纳雍博鳌丽都房地产开发有限公司: 关于中国建设银行股份有限公司纳雍支行与刘某江、陈某、纳雍博鳌丽都房地产开发有限公司金融借款合同纠纷一案,本院根据申请执行人中国建设银行股份有限公司纳雍支行的申请,依据(2019)黔0525民初2281号民事判决书,于2021年4月30日执行完毕。被执行人刘某江、陈某、纳雍博鳌丽都房地产开发有限公司应支付申请执行人中国建设银行股份有限公司纳雍支行借款本金、利息、罚息共计205504元并承担案件受理费2983元及执行费4382元的义务。现被执行人陈某已自动履行完毕且交纳了案件申请... | 521 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import BuilderUtils from 'formiojs/utils/builder';
import _ from 'lodash';
export default [
{
type: 'textfield',
label: 'Default Value',
key: 'defaultValue',
weight: 5,
placeholder: 'Default Value',
tooltip: 'The will be the value for this field, before user interaction. Having ... | 405 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from typing import Any, Callable, Iterable, Optional
import torch
from laia.callbacks.meters import SequenceError, char_to_word_seq
from laia.common.arguments import OptimizerArgs, SchedulerArgs
from laia.decoders import CTCGreedyDecoder
from laia.engine import EngineModule
from laia.losses import CTCLoss
class HTR... | 714 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
using System.Text.RegularExpressions;
using RegexMath.Calculation.Operation;
namespace RegexMath.Calculation.Binary.Arithmetic
{
public sealed class Exponents : BinaryCalculation
{
public Exponents()
: base(Pattern, RegexOptions.RightToLeft | RegexOptions.IgnoreCase) { }
... | 281 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { useState } from 'react';
import Header from '../Header';
import './calc.css';
export default function FourthChallenge() {
const [formDatas, setFormDatas] = useState();
function formCalc(e) {
e.preventDefault();
const [priceString, tipPercentString, peopleSplitString] = document.queryS... | 867 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
//harizo
defined('BASEPATH') OR exit('No direct script access allowed');
// afaka fafana refa ts ilaina
require APPPATH . '/libraries/REST_Controller.php';
class Divers_attachement_mobilier_travaux extends REST_Controller {
public function __construct() {
parent::__construct();
$this->load-... | 2,904 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.example.roomdemo;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.ItemTouchHelper;
import androidx.recyclerview.widget.LinearLayoutManager;
import and... | 463 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | ETH Library Originally published in: Originally published in: Originally published in:
Journal for General Philosophy of Science 53(2), https://doi.org/10.1007/s10838-021-09580-4 This page was generated automatically upon download from the ETH Zurich Research Collection. For more information, please consult the Terms o... | 19,083 | academic |
common_corpus_Github Open Source | 2,021 | using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DaAPI.Host.Application.Commands.DHCPv4Interfaces
{
public record DeleteDHCPv4InterfaceListenerCommand(Guid Id) : IRequest<Boolean>;
}
| 55 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省周口市中级人民法院民 事 判 决 书(2021)豫16民终3224号上诉人(原审原告,反诉被告):李新峰,男,1974年8月28日出生,汉族,住河南省鹤壁市山城区。委托诉讼代理人:连福宇,河南豫龙律师事务所律师。被上诉人(原审被告,反诉原告):淮阳县迎宾馆酒店管理有限公司。住所地:周口市淮阳区城内大同街一号。统一社会信用代码:91411626337220113U。法定代表人:郑瑞恒,该公司董事长。委托诉讼代理人:许飞,河南阳夏律师事务所律师。上诉人李新峰因与被上诉人淮阳县迎宾馆酒店管理有限公司(以下简称淮阳迎宾馆公司)房屋租赁合同纠纷一案,不服周口市淮阳区人民法院(2021)豫1603民初605号民事判决,向本院提起上诉。本院... | 7,449 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | #include <std.h>
#include "../defs.h"
inherit INH+"lower";
void create(){
::create();
set_long((:TO,"long_desc":));
set_exits(([
"north":MINES"lower2e",
"south":MINES"lower1b",
]));
add_item("lever","%^ORANGE%^A %^BOLD%^%^BLACK%^lever%^RESET%^%^ORANGE%^ "
"has been set into the wall, a few fe... | 1,136 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | module github.com/lukaszraczylo/semver-generator
go 1.16
require (
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-git/go-billy/v5 v5.3.1 // indirect
github.com/go-git/go-git/v5 v5.3.0
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/l... | 466 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 黑龙江省七台河市中级人民法院民 事 判 决 书(2021)黑09民终123号上诉人(原审被告):七台河市茄子河区中心河乡新立村村民委员会,住所地七台河市茄子河区中心河乡新立村。法定代表人:高中战,该村村委会主任。被上诉人(原审原告):葛平林,男,1961年12月1日出生,汉族,农民,住七台河市茄子河区。原审被告:胡立军,男,1970年2月10日出生,汉族,住七台河市茄子河区。原审被告:袁忠双,男,1977年3月11日出生,汉族,住七台河市茄子河区。上诉人七台河市茄子河区中心河乡新立村村民委员会因与被上诉人葛平林,原审被告胡立军、袁忠双承包地征收补偿费用分配纠纷一案,不服黑龙江省七台河市茄子河区人民法院(2020)黑0904民初742... | 2,785 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | <?php
require 'conn.php';
if (!empty($_GET['id'])) {
$id = $_GET['id'];
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1... | 1,746 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Method for enhancing anaerobic digestion based on solid-liquid interface renewal in sludge
ABSTRACT
A method for enhancing anaerobic digestion based on solid-liquid interface renewal in sludge is disclosed. The method includes subjecting sludge to a centrifugation, a thermal baking and a redissolution in softened wat... | 8,825 | formal_gov |
common_corpus_Chinese-Court-Decisions | 2,021 | 贵州省德江县人民法院结 案 通 知 书[通知各方当事人用](2021)黔0626执846号田江海:依照最高人民法院《关于执行案件立案、结案若干问题的意见》第十五条的规定,特通知如下:本院在执行申请人田江海与被申请人魏忠劳务合同纠纷一案中,本院已扣划魏忠银行存款人民币4150.00元(其中案款人民币4100.00元,执行费人民币50.00元)。本案现已执行完毕。特此通知二〇二一年九月二十七日贵州省德江县人民法院结案通知书[通知各方当事人用](2021)黔0626执846号魏忠:依照最高人民法院《关于执行案件立案、结案若干问题的意见》第十五条的规定,特通知如下:本院在执行申请人田江海与被申请人魏忠劳务合同纠纷一案中,本院已扣划魏忠银行存... | 426 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | //
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "JsApiHandlerBase.h"
@interface NXJSApiHandler4Snapshot : JsApiHandlerBase
{
}
- (void)image:(id)arg1 didFinishSavingWithErro... | 263 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Skip links and keyboard navigation
Species profile—Chamaecrista mimosoides (dwarf cassia)
Classification
Plantae (plants) → Equisetopsida (land plants) → CaesalpiniaceaeChamaecrista mimosoides (dwarf cassia)
Sighting data
Download
KML | CSV | GeoJson
Species details
Kingdom
Plantae (plants)
Class
Equisetopsida (... | 388 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_USPTO | 2,021 | Systems and methods for monitored tomographic reconstruction
ABSTRACT
A system for monitored tomographic reconstruction, comprising: an x-ray generator configure to generate x-ray beams for scanning an object; detectors configured to capture a plurality of projections for each scan; at least one hardware processor; a... | 10,189 | formal_gov |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/env python3
#
# Author:
# Tamas Jos (@skelsec)
#
from minidump.common_structs import *
# https://msdn.microsoft.com/en-us/library/windows/desktop/ms680399(v=vs.85).aspx
class MINIDUMP_THREAD_EX_LIST:
def __init__(self):
self.NumberOfThreads = None
self.Threads = []
def parse(buff):
mtel = MINID... | 689 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.microsoft.bingads.internal;
import com.fasterxml.jackson.annotation.JsonProperty;
class OAuthTokensContract {
@JsonProperty("access_token")
private String accessToken;
@JsonProperty("expires_in")
private int accessTokenExpiresInSeconds;
@JsonProperty("refresh_token")
private Str... | 164 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 |
#include "../../user_configs.h"
#include "../bsp_jump_table.h"
#include <stdint.h>
#include <stdlib.h>
#include "xwrite_only_64_jump.h"
#ifdef WRITE_ONLY64_IP
#include "xwrite_only_64.h"
static int32_t is_write_only_64_done(void* config)
{
return XWrite_only_64_IsDone( (XWrite_only_64*)config );
}
static void ... | 382 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Sort Colors
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
// Functions
vector<int> count_colors(string &s) {
vector<int> counts = {0, 0, 0};
stringstream ss(s);
int color;
while (ss >> color) {
counts[color]++;
}
return co... | 196 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import {
autoserializeAs, autoserialize, Deserialize, Serialize
} from 'cerialize';
import { registerDeserializer } from '../Deserializer';
import { registerSerializer } from '../Serializer';
import { ChampionForm } from './ChampionForm';
export type ChampionType = 'util' | 'def' | 'atk';
export interface IChampion... | 321 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:16:46 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/Frameworks/PhotosUI.frame... | 174 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { Component, OnInit } from '@angular/core';
import {RegexService} from '../services/regex.service';
import {AppService} from '../services/app.service';
@Component({
selector: 'app-toolbar',
templateUrl: './toolbar.component.html',
styleUrls: ['./toolbar.component.css']
})
export class ToolbarComponent imp... | 99 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="<?php echo base_url('resources/css/materialize.css'); ?>" media="scr... | 662 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using RarelySimple.AvatarScriptLink.Objects;
namespace RarelySimple.AvatarScriptLink.Examples.Soap.v3.Shared
{
public static class GetErrorCode1
{
public static OptionObject RunScript(OptionObject optionObject)
{
return optionObject.ToReturnOptionObject(ErrorCode.Error, "The code m... | 178 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Differentiating Lebesgue Decomposition of a signed measure
Let $\{\mu_n\}$ be measures on $(X,M)$ with $\sup\{\mu_n\}(X) \leq M < \infty$.
Let $\mu = \sum_{n \geq 1 } 2^{-n} \mu_n$
Let $\nu$ be a $\sigma-$finite measure.
Suppose $\mu_n= \mu_{n,0} + \mu_{n,1}$ is the Lebesgue decomposition of $\mu_n$ with respect to $\n... | 760 | misc_reference |
common_corpus_Github Open Source | 2,021 | DROP TABLE IF EXISTS `user`|
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '',
`password` varchar(50) NOT NULL DEFAULT '',
`nickname` varchar(50) NOT NULL DEFAULT '',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NU... | 3,292 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from tenacity.compat import get_exc_info_from_future as get_exc_info_from_future
from typing import Any
def before_sleep_nothing(retry_state: Any) -> None: ...
def before_sleep_log(logger: Any, log_level: Any, exc_info: bool = ...): ...
| 58 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | const { exec } = require("child_process");
const { readFile, writeFile } = require("fs/promises");
const declarations = __dirname + "/../types/GDAPI/index.d.ts";
module.exports.typeGen = () => {
return new Promise((resolve) => {
const p = exec("yarn ts", { cwd: __dirname + "/.." }).on(
"exit",
async... | 190 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* ManerFan(http://manerfan.com). 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 app... | 489 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright (C) Prof. Martin Breunig
*/
package de.uos.igf.db3d.dbms.model3d;
import java.util.Iterator;
//import com.odi.ObjectStore;
import de.uos.igf.db3d.dbms.api.DB3DException;
import de.uos.igf.db3d.dbms.geom.Line3D;
import de.uos.igf.db3d.dbms.geom.MBB3D;
import de.uos.igf.db3d.dbms.geom.Plane3D;
import... | 4,524 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
using System.Collections.Generic;
using TiroGuerra.Models;
using System.Data.SqlClient;
using System.Data;
using System.Net.Mail;
using System.Net;
using System.Text;
namespace TiroGuerra.Repositories
{
public class GuarnicaoRepository: BDContext, IGuarnicaoRepository
{
public List<Guarnic... | 1,005 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// Ed25519+PublicKey.swift
// NtgeCore
//
// Created by Cirno MainasuK on 2020-4-15.
//
import Foundation
extension Ed25519 {
public class PublicKey: RustObject {
var raw: OpaquePointer
required init(raw: OpaquePointer) {
self.raw = raw
}
... | 596 | cc:Github Open Source |