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
import { EventEmitter, Inject, Injectable, Optional } from '@angular/core'; import { interval, ReplaySubject, throwError, timer } from 'rxjs'; import { filter, first, switchMap, takeUntil, tap } from 'rxjs/operators'; import { GA_OPTIONS, GA_TOKEN } from './ga.token'; import { Event } from './interfaces/event'; import ...
661
cc:Github Open Source
common_corpus_Github Open Source
2,021
package uikit.components import uikit.* external interface AccordionComponent : Component { fun toggle(index: Any = definedExternally /* String | Int | Element */, animate: Boolean = definedExternally) } external interface AccordionOptions { var active: Number? var animation: Boolean? var collapsible...
171
cc:Github Open Source
common_corpus_Github Open Source
2,021
<?php // DOC php deployer https://deployer.org/ /* DOC installer php deployer curl -LO https://deployer.org/deployer.phar sudo mv deployer.phar /usr/local/bin/dep sudo chmod +x /usr/local/bin/dep */ namespace Deployer; require __DIR__ . '/vendor/autoload.php'; require 'recipe/common.php'; require 'recipe/rsync.php';...
193
cc:Github Open Source
common_corpus_Github Open Source
2,021
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ import React, { ComponentType } from 'react'; import styled from 'styled-comp...
506
cc:Github Open Source
common_corpus_Github Open Source
2,021
// @flow type DepsReportCommandOptions = { excludeNodeModules: boolean, json: boolean, pretty: boolean, absPath: boolean, webpackConfig: string, specifiers: boolean, color: boolean } type FindDependenciesCommandOptions = { circular: boolean, onlyCircular: boolean, onlyNotFound: boolean, hi...
146
cc:Github Open Source
common_corpus_Github Open Source
2,021
//! Backend parser (SMT-LIB) and frontend parser (requires the `parser` feature). crate::prelude!(); use expr::{Cst, Expr, Op, PExpr, SExpr, SVar, Typ, Var}; use rsmt2::parse::IdentParser; use trans::Decls; #[cfg(feature = "parser")] use trans::Sys; mod ast; pub mod kw; #[cfg(all(test, feature = "parser"))] mod te...
11,598
cc:Github Open Source
common_corpus_Github Open Source
2,021
#!/usr/bin/python """ asyncgeturl.py -- A sensor for whether a site is up or not. Works fine on Debian GNU Linux 3.0 with Python 2.1.3. Known Issues: None. Contact Information: http://mod-pubsub.sf.net/ mod-pubsub-developer@lists.sourceforge.net """ ## Copyright 2000-2004 KnowNow, In...
1,157
cc:Github Open Source
common_corpus_Github Open Source
2,021
/* Theme style definitions using Tachyons. Complete list of tags: http://tachyons.io/docs/table-of-styles/ */ const CSS = { page: ".pa4.sans-serif", pageTitle: "h1.med-gray.f3", link: "a.link.underline-hover.blue", list: "ul.list.pl0", listItem: "li.mv1" }; export default CSS;
88
cc:Github Open Source
common_corpus_StackExchange
2,021
How to run AWS Step Functions Synchronously using the REST API Gateway At the moment, there isn't a way to run the StartSyncExecution Step Function method through the REST API Gateway, only through the HTTP API Gateway. What's a possible work-around for this? You'll need to create both an HTTP API and a REST API. You...
167
misc_reference
common_corpus_Github Open Source
2,021
package net.saisimon.agtms.web.controller.main; import java.io.IOException; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.an...
585
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
北京市大兴区人民法院民 事 裁 定 书(2021)京0115民初11571号原告:隋洪明,男,1995年1月27日出生,汉族,北京实林汽车配件有限责任公司员工,住北京市大兴区。被告:王祎伦,男,1996年8月5日出生,汉族,无业。原告隋洪明与被告王祎伦机动车交通事故责任纠纷一案,我院立案后,2021年5月26日,原告隋洪明经传票传唤,无正当理由拒不到庭。依照《中华人民共和国民事诉讼法》第一百四十三条、第一百五十四条第一款第十一项规定,裁定如下:本案按原告隋洪明撤诉处理。审 判 员  杨 雪二〇二一年五月二十六日法官助理  李慧娅书 记 员  徐 笑 来自马克数据网
317
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
#!/usr/bin/python3 from functools import cache @cache def fib(bar: int) -> int: if bar < 2: return bar return fib(bar-1) + fib(bar-2) def solve(threshold: int) -> (int): solution, auxiliar = 0, 0 i = 1 auxiliar = fib(i) while auxiliar < threshold: if (auxiliar % 2 == 0): ...
142
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
湖北省利川市人民法院执 行 裁 定 书(2021)鄂2802执705号申请人罗育林,男,生于1974年6月26日,土家族,湖北省利川市人,农民,住本市。被执行人胡晓江,男,生于1978年8月28日,土家族,湖北省利川市人,农民,住本市。被执行人李大英,女,生于1980年2月7日,土家族,湖北省利川市人,农民,住本市。本院在执行申请执行人罗育林与被执行人胡晓江、李大英民间借贷纠纷一案,本案在执行过程中,因申请人与被执行人达成执行和解协议并需长期履行。根据《中华人民共和国民事诉讼法》第二百五十七条第(六)项的规定,裁定如下:终结利川市人民法院作出的(2020)鄂2802民特141号民事裁定书的执行。本裁定送达后即发生法律效力。审判员  ...
391
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import { EventEmitter } from 'events'; import { encodePath } from '../utils/pathUtils'; type PlayerParams = { audioElement: AudioElement; resolution?: number; } export type PlaybackInfo = { currentTime: number; duration: number; currentTrack: string; isPlaying: boolean; } export const PLAYER_EVENTS = { ...
685
cc:Github Open Source
common_corpus_Github Open Source
2,021
import React from 'react'; import { shallow } from 'enzyme'; import toJson from 'enzyme-to-json'; import Estado from '../comboboxEstado'; describe('Combo Estado', () => { it('deve possuir estrutura definida ', () => { const estado = shallow(<Estado id="13" state="estado" lasses="estado" />); const estadoText...
96
cc:Github Open Source
common_corpus_Github Open Source
2,021
const path = require('path') function resolve (dir) { return path.join(__dirname, dir) } module.exports = { outputDir: 'dist', assetsDir: 'static', publicPath: './', devServer: { proxy: { '/api': { target: 'http://localhost:9090/pinpoint-search', ws: true, changeOrigin: t...
145
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
河南省郑州航空港经济综合实验区人民法院民 事 裁 定 书(2021)豫0192民初802号原告:中国农业银行股份有限公司郑州航空港支行,住所地河南省新郑国际机场。负责人:吴伟,该支行行长。委托诉讼代理人:陆继果,上海市浩信(郑州)律师事务所律师。委托诉讼代理人:周邓,上海市浩信(郑州)律师事务所律师。被告:张军献,男,1973年8月15日出生,汉族,住河南省新郑市。原告中国农业银行股份有限公司郑州航空港支行与被告张军献信用卡纠纷一案,本院于2021年2月2日立案。原告中国农业银行股份有限公司郑州航空港支行于2021年3月3日向本院提出撤诉申请。本院认为,原告中国农业银行股份有限公司郑州航空港支行自愿申请撤诉,不违反法律规定。依照《中...
553
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
山东省淄博市淄川区人民法院 结 案 通 知 书 (2021)鲁0302执650号 申请执行人:钱峰 被执行人:徐增圣、王翠芹 申请执行人钱峰与被执行人徐增圣、王翠芹借款合同纠纷一案,申请执行标的共计30600.00元。经本院立案执行,现已强制执行到位30600.00元。本院已于2021年3月31日将该款转付给申请执行人钱峰。至此,本院生效的(2017)鲁0302民初1534号民事判决书确定的内容已全部执行完毕,现已结案。 特此通知。 审判长 李 钊 审判员 杨 辉 审判员 孙启福 二〇二一年三月三十一日 书记员 戚湘郁 搜索“马 克 数 据 网”
297
cc:Chinese-Court-Decisions
common_corpus_Court Listener
2,021
In the Court of Appeals Second Appellate District of Texas at Fort Worth No. 02-20-00090-CR DAVID LYNN BOYD, Appellant § On Appeal from the 271st District ...
180
cc:Court Listener
common_corpus_StackExchange
2,021
anyone know what import kernel,\ GetModuleHandle,'GetModuleHandleA',\ExitProcess,'ExitProcess' for in FASMW ??? PLS Hyelp section '.idata' import data readable writeable library kernel,'KERNEL32.DLL',\ user,'USER32.DLL' import kernel,\ GetModuleHandle,'GetModuleHandleA',\ E...
700
misc_reference
common_corpus_Github Open Source
2,021
from rest_framework import fields from wagtail.core import blocks from wagtail.core.fields import StreamField from conf import settings from core import helpers, models class MarkdownToHTMLField(fields.CharField): def to_representation(self, instance): representation = super().to_representation(instance)...
609
cc:Github Open Source
common_corpus_Github Open Source
2,021
import sys from ..api import utils import fuc import pysam description = f""" ############################################################## # Compute various statistics for control gene with BAM data. # ############################################################## Input BAM files must be specified with either '--...
588
cc:Github Open Source
common_corpus_Github Open Source
2,021
const { getUserId } = require('../../Helpers/auth'); /** * Adds a `Me` Query, showing the current user, based on the "Authorization" Header */ module.exports.me = (parent, args, context) => { const id = getUserId(context); return context.prisma.user({ id }); };
64
cc:Github Open Source
common_corpus_Github Open Source
2,021
import React, { Component } from 'react'; import { resetPassword } from '../../data/user'; import InputField from '../forms/input_field'; import { browserHistory } from 'react-router'; import { Button, Col, Form, Icon, Input, Row } from 'antd'; class PasswordReset extends Component { constructor(props) { super(...
671
cc:Github Open Source
common_corpus_Github Open Source
2,021
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Windows.UI.Xaml; namespace Microsoft.Toolkit.Uwp.UI.Triggers { /// <summary> /// A conditional state ...
1,293
cc:Github Open Source
common_corpus_Github Open Source
2,021
(include "#.scm") (check-= 0 0) (check-= 0 0.0) (check-= 0 -0.0) (check-= 0.5 1/2) (check-= 1+2i 1.0+2.0i) (check-= 12345678901234567891234567890 12345678901234567891234567890)
84
cc:Github Open Source
common_corpus_Github Open Source
2,021
@model Cats.Models.Hubs.ViewModels.InternalMovementViewModel @using Cats.Web.Hub.Helpers <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> @using (Html.BeginForm("...
3,012
cc:Github Open Source
common_corpus_French Open Data
2,021
LA COUR DE CASSATION, TROISIÈME CHAMBRE CIVILE, a rendu l'arrêt suivant : <br/> <br/> CIV. 3<br/> <br/>MF<br/> <br/> <br/> <br/>COUR DE CASSATION<br/>______________________<br/> <br/> <br/>Audience publique du 25 mars 2021<br/> <br/> <br/> <br/> <br/>Cassation<br/> <br/> <br/>M. CHAUVIN, président<br/> <br/> <br/> <br/...
4,105
cc:French Open Data
common_corpus_StackExchange
2,021
How to remove background color on hover of bar in highcharts I am using highcharts. Version: 9.1.1 I am displaying bar chart. When I hover on bars it display background color but I don't want that background color. As we can see in below image I don't want that grey color by hover on green bar. I applied this solution...
429
misc_reference
common_corpus_Chinese-Court-Decisions
2,021
广东省深圳市罗湖区人民法院 执 行 裁 定 书 (2021)粤0303执763号 申请执行人:中信银行股份有限公司信用卡中心。住所地:广东省深圳市福田区福田街道福华一路**中信银行大厦,统一社会信用代码91440300761961869W。 法定代表人:张明。 被执行人:邓金璜,男,1970年7月19日出生,身份证住址广东省紫金县。 申请执行人中信银行股份有限公司信用卡中心与被执行人邓金璜信用卡纠纷一案,深圳市罗湖区人民法院(2019)粤0303民初28199号民事判决书已经发生法律效力。由于被执行人没有履行生效法律文书确定的内容,申请执行人向本院申请强制执行,请求强制被执行人偿付人民币120730.27元及利息等,本院于2021年...
726
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import React from 'react'; import {createNativeStackNavigator} from '@react-navigation/native-stack'; import {Slide1, Slide2, Slide3} from './Slides'; import {useSelector} from 'react-redux'; import {RootState} from '../../../redux'; import {theme} from 'utils'; const Stack = createNativeStackNavigator(); export cons...
208
cc:Github Open Source
common_corpus_Github Open Source
2,021
<?php namespace Modules\ConfigModule\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class Settings extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'require...
426
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
辽阳市太子河区人民法院执 行 裁 定 书2021)辽1011执64号之六申请执行人王家革,男,汉族,1967年2月27日出生,住辽阳市太子河区。被执行人詹俊凤,女,汉族,1973年6月12日出生,住辽阳市白塔区。被执行人王荣鹏,男,汉族,1988年9月5日出生,住辽阳市白塔区。被执行人王荣达,男,汉族,1994年6月6日出生,住辽阳市白塔区。本院在执行申请执行人王家革与被执行人詹俊凤、王荣鹏、王荣达民间借贷纠纷一案中,本院在执行申请执行人辽阳市太子河区人民法院与被执行人孙成钰罚金一案中,本案在执行过程中,因被执行人未履行生效法律文书所确定的义务,权利人向本院申请执行,依法向被执行人送达了执行通知书,责令被执行人在收到执行通知书后限期...
515
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
from glob import glob from urllib.parse import urlparse, parse_qs from boltons.iterutils import flatten import click from testplan.cli.utils.actions import ParseSingleAction, ParseMultipleAction from testplan.cli.utils.command_list import CommandList from testplan.importers.cppunit import CPPUnitResultImporter from ...
751
cc:Github Open Source
common_corpus_Github Open Source
2,021
/*========================================================================= Program: Visualization Toolkit Module: $RCSfile$ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT AN...
1,933
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
安徽省阜阳市颍州区人民法院 民 事 判 决 书 (2021)皖1202民初2260号 原告:于瑞玲,女,汉族,1989年9月10日出生,住安徽省阜阳市颍州区。 被告:周峰,男,汉族,1980年8月20日出生,住安徽省阜阳市颍州区。 原告于瑞玲与被告周峰民间借贷纠纷一案,本院于2021年2月1日立案后,依法适用小额诉讼程序公开开庭进行了审理。原告于瑞玲到庭参加诉讼,被告周峰经本院传票传唤无正当理由拒不到庭参加诉讼。本案现已审理终结。 原告向本院提出诉讼请求:1、请求人民法院依法判令被告周峰归还原告于瑞玲借款人民币本金叁仟元(3000.00元);2、本案诉讼费用由被告承担。事实和理由:被告与原告是普通朋友关系,被告于2019年11月21...
1,134
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
--- Run first, define agScreenController basic functionality: SVG-specific definitions and functions are not included. -- constants and editable lua script parameters local MIN_ADJUSTMENT_VALUE = 1 local agMaxAdjustmentValue = 10000 --export: Max step size for altitude adjustment (m) local MAX_ADJUSTMENT_PREF_KEY = "...
873
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
青海省民和回族土族自治县人民法院结案通知书(2021)青0222执871号李顺连、李莲香:李顺连与李莲香健康权纠纷一案,申请执行标的共计4590.16元。经本院立案执行,现已强制执行到位4640.16元,其中,执行费50元。本院已于2021年7月13日将该款转付给李顺连。至此,李顺连向本院申请执行的(2021)青02民终48号民事判决书已全部执行完毕,现已结案。特此通知。二〇二一年七月二十六日 关注公众号“马克数据网”
217
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
/* -*- mode:C++; coding:utf-8-with-signature -*- * * Vector.hpp - Project AnotherThread2 * * Copyright (c) 2017 Yuji YASUHARA * * 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 withou...
1,542
cc:Github Open Source
common_corpus_Github Open Source
2,021
package org.rpgleparser; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.collection.IsEmptyCollection.empty; import java.util.ArrayList; import java.util.List; import org.junit.Test; import org.rpgleparser.utils.TestUtils; public class Test...
310
cc:Github Open Source
common_corpus_Github Open Source
2,021
package nl.stokpop.afterburner.error; import nl.stokpop.afterburner.AfterburnerException; public class AfterburnerCiruitBreakerException extends AfterburnerException { public AfterburnerCiruitBreakerException(String message) { super(message); } }
62
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
河北省临漳县人民法院 民 事 判 决 书 (2021)冀0423民初472号 原告:郭新军,男,1969年7月25日生,汉族,住临漳县。 被告:邢振江,男,1952年9月25日生,汉族,住临漳县。 被告:邢瑞红,女,1973年2月14日生,汉族,住临漳县。 被告:韩秀珍,女,1952年6月9日生,汉族,住临漳县。 原告郭新军与被告邢振江、邢瑞红、韩秀珍民间借贷纠纷一案,本院立案后,依法适用简易程序,公开开庭进行了审理。原告郭新军、被告邢振江到庭参加诉讼。被告邢瑞红、韩秀珍经本院开庭传票传唤无正当理由未到庭参加诉讼。本案现已审理终结。 郭新军向本院提出诉讼请求:1.依法判决邢振江归还借款本金70000元及利息64180元,剩余利息按全...
5,173
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
<?php namespace App\EventListener; use App\Model\AbstractUser; use Doctrine\ORM\EntityManagerInterface; use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface; use Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken; use Symfony\Component\Security\Http\Event\InteractiveLoginEvent; /...
694
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
广东省广州市越秀区人民法院民 事 判 决 书(2021)粤0104民初27320号原告:广州拉卡拉网络小额贷款有限责任公司,住所地广州市越秀区解放南路123号11层1101房。法定代表人:吴文戈,执行董事兼经理。委托诉讼代理人:温天助、李敏敏,该司职员。被告:张有醇,男,1992年5月19日出生,汉族,住四川省渠县。原告广州拉卡拉网络小额贷款有限责任公司与被告张有醇小额借款合同纠纷一案,本院依据《全国人民代表大会常务委员会关于授权最高人民法院在部分地区开展民事诉讼程序繁简分流改革试点工作的决定》,于2021年5月18日立案后,依法适用小额诉讼程序,公开开庭进行了审理。本案现已审理终结。案件事实一、借款合同的约定情况:合同名称:《易分...
1,498
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
白河县人民法院结 案 通 知 书(2021)陕0929执264号罗健、罗显明、陈国:罗健、罗显明申请执行陈国合伙协议纠纷一案,执行标的额321813元及利息。在执行过程中,被执行人陈国已给付申请执行人罗健、罗显明321813元,并向本院交纳执行申请费2000元,申请执行人罗健、罗显明自愿放弃利息。本案已执行完毕。依照《最高人民法院关于人民法院执行工作若干问题的规定(试行)》第108条第(1)项之规定,通知如下:本案执行完毕。本通知送达后即具有法律效力。二〇二一年四月二十三日 来源:百度“马 克 数据网”
268
cc:Chinese-Court-Decisions
common_corpus_French-Science-Pile
2,021
is hardly accessible in the logic of internal realism. In fact, a critique of this paradigm is that the positivist researcher studies reality as it "is" rather than the "becoming" (Raadschelders, 2011). For the point of view of Raadschelder (2011), the answer to the study of "becoming" is qualitative research, while mi...
10,403
cc:French-Science-Pile
common_corpus_Eurlex
2,021
ZAŁĄCZNIK 44 WYMIANA INFORMACJI Z REJESTRÓW KARNYCH – SPECYFIKACJE TECHNICZNE I PROCEDURALNE ROZDZIAŁ 1 POSTANOWIENIA OGÓLNE Artykuł 1 Cel Celem niniejszego załącznika jest ustanowienie niezbędnych przepisów proceduralnych i technicznych na potrzeby wykonywania części trzeciej tytuł IX niniejszej Umowy. Artykuł 2 Sieć ...
21,321
cc:Eurlex
common_corpus_Github Open Source
2,021
FROM openjdk:8-jdk-alpine # ---- # Setup Packages RUN apk add --no-cache bash curl git grep tar python3 py3-lxml unzip wget # ---- # Setup Maven ARG MAVEN_VERSION=3.6.2 ENV USER_HOME_DIR="/root" RUN mkdir -p /usr/share/maven && \ curl -fsSL http://apache.osuosl.org/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$...
382
cc:Github Open Source
common_corpus_Github Open Source
2,021
package audio import ( "sync" "time" ) type realtimeStream struct { stream Stream lastError error buffer []int32 readPosition int usageLock *sync.Mutex } // NewRealtimeStream converts a stream into a buffered stream for use in // realtime applications, such as audio over a network. func NewR...
533
cc:Github Open Source
common_corpus_Github Open Source
2,021
{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import cython\n", "import timeit\n", "import math" ] }, { "cell_type": "code", "execution_count": null,...
7,621
cc:Github Open Source
common_corpus_StackExchange
2,021
ZIP file with EXEC master.dbo.xp_cmdshell I am using the following code to zip a csv file and pdf. My issue is that I get an error that says: Msg 102, Level 15, State 1, Line 36 Incorrect syntax near '+'. the above error refers to the first '+ @Imagename +' declare @Imagename NVARCHAR(4000) set @Imagename = '34343...
902
misc_reference
common_corpus_Chinese-Court-Decisions
2,021
云南省宜良县人民法院民 事 裁 定 书(2021)云0125民初906号原告:宜良博涵物业管理有限公司,住所云南省昆明市宜良县匡远镇鱼龙路金房二期北区。统一社会信用代码:91530125MA6N0NX1XD。法定代表人:张树红。委托诉讼代理人:龙梦超,男,1991年12月6日出生,彝族,云南省石屏县人,住云南省红河哈尼族彝族自治州石屏县。系公司员工,特别授权代理。被告:柴兴明,男,住宜良县。原告宜良博涵物业管理有限公司诉被告柴兴明物业服务合同纠纷一案,本院于2021年3月26日立案。原告在本院2021年3月26日依法向其送达交纳诉讼费用通知书后,未在七日内预交案件受理费。根据《中华人民共和国民事诉讼法》第一百一十八条、第一百五十四条...
497
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! import grpc import routeguide_pb2 as routeguide__pb2 class RouteGuideStub(object): # missing associated documentation comment in .proto file pass def __init__(self, channel): """Constructor. Args: channel: A grpc.Channel. ...
739
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
广西壮族自治区南宁市中级人民法院 刑 事 裁 定 书 (2021)桂01刑终79号 原公诉机关南宁市青秀区人民检察院。 上诉人(原审被告人)方军,男,1975年1月28日出生,汉族,高中文化,经商,户籍所在地:广西壮族自治区南宁市兴宁区。因涉嫌犯非法吸收公众存款罪,于2018年2月27日被抓获,同日被刑事拘留,同年4月4日被逮捕。现羁押于南宁市第四看守所。 南宁市青秀区人民法院审理南宁市青秀区人民检察院指控原审被告人方军犯非法吸收公众存款罪一案,于2020年11月29日作出(2018)桂0103刑初762号刑事判决,原审被告人方军不服,提出上诉。本院依法组成合议庭,经过审阅卷宗材料,讯问上诉 2 人,核实全案证据,认为本案不属于依法...
674
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
package types import ( "encoding/json" "testing" "github.com/line/lbm-sdk/codec" codectypes "github.com/line/lbm-sdk/codec/types" sdk "github.com/line/lbm-sdk/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestValidateParams(t *testing.T) { var ( anyAddress = s...
2,770
cc:Github Open Source
common_corpus_USPTO
2,021
Variant maltohexaose-forming alpha-amylase variants ABSTRACT Disclosed are compositions and methods relating to variant maltohexaose-forming alpha-amylases. The variant alpha-amylases are useful, for example, for starch liquefaction and saccharification, for cleaning starchy stains in laundry, dishwashing, and other ...
12,427
formal_gov
common_corpus_USPTO
2,021
Verbena plant named ‘WNVECPPK’ ABSTRACT A new and distinct cultivar of Verbena plant named ‘WNVECPPK’, characterized by its initially upright to outwardly spreading plant habit; vigorous growth habit and rapid growth rate; freely branching habit; dark green-colored leaves; early and freely flowering habit; rounded in...
3,186
formal_gov
common_corpus_Github Open Source
2,021
import { ComputedRef, InjectionKey } from 'vue'; import { PrivateFormContext, PrivateFieldContext } from './types'; export const FormContextKey: InjectionKey<PrivateFormContext> = Symbol('vee-validate-form'); export const FormErrorsKey: InjectionKey<ComputedRef<Record<string, string | undefined>>> = Symbol('vee-val...
143
cc:Github Open Source
common_corpus_Github Open Source
2,021
'use strict'; const addSessions = require('lib/commands/protocol/sessions'); const {mkBrowser_} = require('../../../utils'); describe('"sessions" command', () => { it('should add "sessions" command', () => { const browser = mkBrowser_(); addSessions(browser); assert.calledOnceWithExactly...
126
cc:Github Open Source
common_corpus_Creative Commons Common Crawl (CCC)
2,021
1. Please check and comment entries here. Table of Contents Topic review Cancer and Acute Coronary Syndrome View times: 38 Submitted by: Juri Radmilovic Definition Among acute coronary syndrome (ACS) patients, 15% have concomitant cancer, especially in the first 6 months after their diagnos...
4,155
cc:Creative Commons Common Crawl (CCC)
common_corpus_Github Open Source
2,021
/* * Copyright 2006-2021 The JGUIraffe Team. * * 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...
4,264
cc:Github Open Source
common_corpus_Github Open Source
2,021
import React from "react"; function FileType({ bgColor, textColor, IconName }) { return ( <> <span className={`tw-mr-3 tw-w-14 tw-h-14 tw-p-[10px] tw-flex tw-justify-center tw-items-center ${bgColor} tw-rounded-md`} > <img src={IconName} alt="icon" className={`tw-text-2xl ${textColor}...
104
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
山东省阳谷县人民法院民 事 判 决 书(2020)鲁1521民初4542号原告:侯宪东,男,1958年5月20日出生,汉族,农民,住阳谷县。委托诉讼代理人:李明,阳谷新和法律服务所法律工作者。被告:岳雪平,女,1962年5月16日出生,汉族,农民,住阳谷县,系杨增坤(曾用名杨刘义)之妻。被告:杨记广,男,1990年10月14日出生,汉族,农民,住阳谷县,系杨增坤(曾用名杨刘义)之子。委托诉讼代理人:任玉飞,山东振阳律师事务所律师。委托诉讼代理人:杨春杰,女,1987年12月23日出生,汉族,农民,住阳谷县,系被告岳雪平之女。原告侯宪东与被告岳雪平、杨记广民间借贷纠纷一案,本院于2020年12月2日受理后,依法适用简易程序,公开开庭进...
2,114
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
广东省广州市黄埔区人民法院结 案 通 知 书(2021)粤0112执2021号王健亮、广州一道注塑机械股份有限公司:你双方劳动纠纷一案,因广州一道注塑机械股份有限公司未履行(2020)粤0112民初7502号、(2020)粤01民终25360号民事判决书确定的义务,根据王健亮的申请,本院于2021年1月28日立案执行。执行过程中,本院依法向被执行人发出执行通知书和报告财产令,后本院足额扣划被执行人银行存款,现本案已执行完毕。因申请执行人申请执行的事项已全部执行完毕,依照《最高人民法院关于执行案件立案、结案若干问题的意见》第十五条的规定,本案作执行结案处理。特此通知二〇二一年四月十五日 百度搜索“马 克 数 据 网”
323
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using Android.App; [assembly: AssemblyMetadata("AssemblyTitle", "Huawei.Hms.MlNlpTextembedding")] [assembly: AssemblyMetadata("AssemblyDescription", "")] [assembly: AssemblyMetadata("AssemblyConfiguration", "")] [asse...
149
cc:Github Open Source
common_corpus_Github Open Source
2,021
var readlineSync = require("readline-sync") var chalk = require("chalk") userName = readlineSync.question("What is your name? ") console.log("Welcome,", chalk.black.bgGreen(userName),". Let's see how much you know me.") questionOne = { question: chalk.black.bgRed.bold("What is favourite color? "), answer: "Purple...
258
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
湖南省桑植县人民法院民 事 判 决 书(2021)湘0822民初386号原告:中国邮政储蓄银行股份有限公司桑植县支行,住所地桑植县澧源镇北一路(武装部门面)。负责人:田妤淇,该银行行长。委托诉讼代理人:柏国安,男,1991年7月24日出生,苗族,系中国邮政储蓄银行股份有限公司桑植县支行员工,住湖南省桑植县。委托诉讼代理人:刘江战,湖南向法律师事务所律师。被告:李利华,男,1985年10月18日出生,汉族,住湖南省张家界市永定区。原告中国邮政储蓄银行股份有限公司桑植县支行(以下简称邮政银行桑植支行)与被告李利华信用卡纠纷一案,本院于2021年3月8日立案,依法适用普通程序,于2021年6月15日公开开庭进行了审理。原告的委托诉讼代理人...
3,599
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
//---------------------------------*-C++-*-----------------------------------// /*! * \file MC/mc/Anderson_Operator.pt.cc * \author Thomas M. Evans * \date Tue Apr 07 21:05:56 2015 * \brief Anderson_Operator explicit instantiations. * \note Copyright (c) 2015 Oak Ridge National Laboratory, UT-Battelle, LLC....
213
cc:Github Open Source
common_corpus_Eurlex
2,021
2. Nell'ambito dell'obiettivo generale di cui al paragrafo 1, i l programma persegue gli obiettivi specifici seguenti : a) agevolare e sostenere la cooperazione giudiziaria in materia civile e penal e e promuovere lo Stato di diritto e l'indipendenza e l'imparzialità della magistratura, anche attraverso il sostegno d...
5,761
cc:Eurlex
common_corpus_Chinese-Court-Decisions
2,021
甘肃省敦煌市人民法院 刑事判决书 (2021)甘0982刑初55号 公诉机关敦煌市人民检察院。 被告人岳某,男,1980年3月7日出生,汉族,小学文化,户籍地甘肃省敦煌市,家住敦煌市,农民。2016年1月20日因未取得有效机动车驾驶证驾驶机动车被玉门市公安局行政拘留五日,并处罚款1000元;2016年1月20日因使用变造的机动车驾驶证驾驶机动车被玉门市公安局行政拘留五日,并处罚款4000元;2016年7月14日因未取得有效机动车驾驶证驾驶机动车和使用变造的机动车驾驶证驾驶机动车被瓜州县公安局罚款5000元;2019年5月3...
1,672
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
// ---------------------------------------------------------------------- // @Namespace : UniParticleShader // @Class : ParticleDefinition // ---------------------------------------------------------------------- namespace UniParticleShader { using UnityEngine; using UnityEngine.Rendering; /// <summary...
585
cc:Github Open Source
common_corpus_Github Open Source
2,021
package com.github.jonpereiradev.diffobjects.builder; import com.github.jonpereiradev.diffobjects.ObjectElement; import com.github.jonpereiradev.diffobjects.annotation.DiffOrder; import com.github.jonpereiradev.diffobjects.comparator.EqualsComparator; import com.github.jonpereiradev.diffobjects.strategy.DiffMetadata; ...
573
cc:Github Open Source
common_corpus_Github Open Source
2,021
from .models import UserPost from rest_framework import serializers class UserPostSerializer(serializers.ModelSerializer): author_name = serializers.ReadOnlyField( source='author.username' ) class Meta: model = UserPost fields = [ 'pk', 'author_name', ...
69
cc:Github Open Source
common_corpus_Eurlex
2,021
A Bíróság álláspontja 204 A megtámadott ítélet 192. és 193. pontjában a Törvényszék megállapította először is, hogy a Bizottság által értékelt túlkompenzáció összege megfelelt az AW javára ténylegesen teljesített kifizetések és azon összeg közötti különbségnek, amelyet az AW‑nek az autópályahasználati díj tényl...
1,875
cc:Eurlex
common_corpus_Github Open Source
2,021
// // UITabBarController+TLPush.m // TLChat // // Created by DevelopOne on 2017/9/19. // Copyright © 2017年 DevelopOne. All rights reserved. // #import "UITabBarController+TLPush.h" @implementation UITabBarController (TLPush) - (BOOL)pushViewController:(UIViewController *)viewController animated:(BOOL)animated { ...
147
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
长春市二道区人民法院民事裁定书(2021)吉0105民初1145号原告:二道区绿苑木业经销处,住所地:二道区远达大街星宇木材市场1区6号。负责人:吴俊扬,经理。委托诉讼代理人:马燕峰,吉林恒轶律师事务所律师。被告:穆国民,长春市九台区。原告二道区绿苑木业经销处与被告穆国民施工合同纠纷一案,本院于2021年4月6日立案。原告二道区绿苑木业经销处在本院依法送达交纳诉讼费用通知后,未在七日内预交案件受理费。依照《中华人民共和国民事诉讼法》第一百一十八条、第一百五十四条第一款第十一项、《最高人民法院关于适用的解释》第二百一十三条规定,裁定如下:本案按二道区绿苑木业经销处撤回起诉处理。审判员 姚 力二○二一年四月二十一日法官助理 崔鹏坤书记员...
398
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
#!/usr/bin/python # coding=utf-8 import os from click import echo, style from .utils import mkdir_project, get_project_path, get_templates, cd, render_template, jinja_env def generate_project(project_name, project_type): """ 生成项目 :param project_name: 项目名称 :param project_type: 项目类型 """ echo(sty...
334
cc:Github Open Source
common_corpus_Github Open Source
2,021
#pragma once #include "../solver/Manager.h" #include "../modules/CNFerModule/CNFerModule.h" #include "../modules/FPPModule/FPPModule.h" #include "../modules/NewCADModule/NewCADModule.h" #include "../modules/SATModule/SATModule.h" namespace smtrat { class NewCADEQ_BSID: public Manager { public: NewCADEQ_BSID()...
138
cc:Github Open Source
common_corpus_StackExchange
2,021
Ansible, saving list of hosts into a variable I have a playbook where I am first running a SQL statement to get a list of hosts from a database. I then save that list into a variable and want to run the next set of tasks over this list of hosts. But I am not sure how to do this or if it is even possible to dynamically ...
767
misc_reference
common_corpus_Github Open Source
2,021
""" File : multiprocessing_simple.py Author : Andrew Emerick Email : aemerick@carnegiescience.edu This script provides an introduced to a more advanced python module `multiprocessing`, which allows you to take advantage of having a computer capable of running more than one process at a point i...
785
cc:Github Open Source
common_corpus_Github Open Source
2,021
/** * Created by Mihail on 1/6/2017. */ import React from 'react' import { IndexRoute, Route } from 'react-router' import App from './components/App' import PhotosPage from './components/PhotosPage' import VideosPage from './components/VideosPage' export default ( <Route path="/" component={App}> <IndexRoute c...
100
cc:Github Open Source
common_corpus_Github Open Source
2,021
package org.maxron.platform.moverprocess; import org.apache.commons.lang3.Validate; import javax.annotation.Nonnull; import javax.sql.DataSource; public final class DbMoverProcessDaoBuilder implements MoverProcessDaoBuilder { private DataSource dataSource; private String tracksTableName; private String t...
373
cc:Github Open Source
common_corpus_Github Open Source
2,021
import type { NextPage } from "next"; import Link from "next/link"; import { createStyles, makeStyles, Theme } from "@material-ui/core/styles"; const useStyles = makeStyles((theme: Theme) => createStyles({ root: { margin: "0.5vh 0.5vh", width: 352, height: 198, [theme.breakpoints.between(...
266
cc:Github Open Source
common_corpus_Github Open Source
2,021
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!29 &1 OcclusionCullingSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_OcclusionBakeSettings: smallestOccluder: 5 smallestHole: 0.25 backfaceThreshold: 100 m_SceneGUID: 00000000000000000000000000000000 m_OcclusionCullingData: {fileID: 0} --- !u!104 &2 RenderSettings:...
74,649
cc:Github Open Source
common_corpus_Github Open Source
2,021
package org.beifengtz.jvmm.common.cache; import java.util.Collection; /** * <p> * Description: TODO * </p> * <p> * Created in 11:19 2021/05/11 * * @author beifengtz */ public interface Cacheable<K, V> { V get(K key); V getOrDefault(K key, V def); void put(K key, V val); boolean contains(K k...
123
cc:Github Open Source
common_corpus_Creative Commons Common Crawl (CCC)
2,021
Boosting restoration through the airwaves Share this to : Radio programs are spreading the good work of the Regreening Africa project in Senegal ‘Good evening, dear listeners, this is your friendly team from the Regreening Africa Project on the number one talk show.’ This is a familiar phrase to the residents of Fa...
296
cc:Creative Commons Common Crawl (CCC)
common_corpus_Creative Commons Common Crawl (CCC)
2,021
Case Reports in Anesthesiology Case Reports in Anesthesiology / 2015 / Article Case Report | Open Access Volume 2015 |Article ID 593282 | https://doi.org/10.1155/2015/593282 Betul Kozanhan, Betul Basaran, Leyla Kutlucan, Sadık Ozmen, "Paravertebral Block Combined with Sedation for a Myasthenic Patient Undergoing Br...
3,267
cc:Creative Commons Common Crawl (CCC)
common_corpus_Github Open Source
2,021
<footer class="footer py-5"> <div class="container"> <div class="row"> <div class="col-lg-8 mb-4 mx-auto text-center"> <a href="javascript:;" target="_blank" class="text-secondary me-xl-5 me-3 mb-sm-0 mb-2"> Company </a> <a href...
572
cc:Github Open Source
common_corpus_Github Open Source
2,021
const xhrTodos = new XMLHttpRequest(); function getTodosList() { xhrTodos.responseType = 'json'; xhrTodos.open('GET', 'https://jsonplaceholder.typicode.com/todos'); xhrTodos.send(); xhrTodos.onload = function () { if (xhrTodos.status !== 200) { const requestErrorMessage = `Erro...
323
cc:Github Open Source
common_corpus_Github Open Source
2,021
import unittest from elasticsearch import Elasticsearch from loghandler import LogHandler from loghandler.modules.elasticsearch import ElasticSearch class TestElasticSearch(unittest.TestCase): """Test the ElasticSearch Module.""" def test_init(self): """Test that the ElasticSearch module is correct...
389
cc:Github Open Source
common_corpus_Github Open Source
2,021
import lights from tools import xbmclog class AmbilightController(lights.Controller): def __init__(self, *args, **kwargs): super(AmbilightController, self).__init__(*args, **kwargs) def on_playback_start(self): if self.settings.ambilight_start_dim_enable: self.save_state_as_initia...
358
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
江苏省太仓市人民法院民 事 判 决 书(2021)苏0585民初3639号原告:太仓天霖货物运输有限公司,统一社会信用代码91320585MA1NNDJU70,住所地江苏省太仓市城厢镇柳园路11-5幢。法定代表人:丁国建,总经理。委托诉讼代理人:王盛,江苏至誉律师事务所律师。委托诉讼代理人:池涛,江苏至誉律师事务所律师。被告:江西吉水县奔力物流服务有限公司,统一社会信用代码913608226859600113,住所地江西省吉水县八都镇南大道666号1栋。法定代表人:李东,执行董事。委托诉讼代理人:沈利益,江苏广浩律师事务所律师。原告太仓天霖货物运输有限公司(以下简称天霖公司)与被告江西吉水县奔力物流服务有限公司(以下简称奔力公司)公...
3,392
cc:Chinese-Court-Decisions
common_corpus_Creative Commons Common Crawl (CCC)
2,021
Television movie facts for kids Kids Encyclopedia Facts (Redirected from Television film) A television movie (also called a TV film, television film, TV movie, telefilm, telemovie, made-for-television film, direct-to-TV film, movie of the week, feature-length drama, single drama, or original movie) is a movie that is...
169
cc:Creative Commons Common Crawl (CCC)
common_corpus_Chinese-Court-Decisions
2,021
广东省珠海市香洲区人民法院民 事 判 决 书(2020)粤0402民初16477号原告:中国人民财产保险股份有限公司珠海市分公司,住所地:珠海市××××××××。统一社会信用代码:914××××××××××××818。负责人:谢泽伟,总经理。委托诉讼代理人:黎志明,广东创杰律师事务所律师。被告:张振威,男,1990年8月18日出生,汉族,住址:广东省高州市×××××××××××。公民身份号码:××××********。原告中国人民财产保险股份有限公司珠海市分公司(以下简称人民财保珠海分公司)诉被告张振威保证保险合同纠纷一案,本院于2020年9月22日立案受理后,依法适用普通程序公开开庭进行了审理。原告人民财保珠海分公司的委托诉讼代理...
4,643
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import sinon from "sinon"; class Map { constructor() { this.zoom = 0; this.center = new LatLng(0, 0); this.setZoom = this.setZoom.bind(this); this.setCenter = this.setCenter.bind(this); this.setOptions = sinon.spy(); } setZoom(zoom) { this.zoom = zoom; } getZoom() { return this....
518
cc:Github Open Source
common_corpus_Github Open Source
2,021
<?php declare(strict_types=1); namespace Neighborhoods\Kojo; use Neighborhoods\Kojo\Data\Job\Collection\ScheduleLimitInterface; interface MaintainerInterface { const SEMAPHORE_RESOURCE_NAME_RESCHEDULE_JOBS = 'reschedule_jobs'; const SEMAPHORE_RESOURCE_NAME_UPDATE_PENDING_JOBS = 'update_pending_jobs'; ...
128
cc:Github Open Source
common_corpus_USPTO
2,021
Determination of a change in a refractive error of an eye ABSTRACT A method, an apparatus, and a computer program for determining a refractive error of an eye of a user are provided. The method for determining the refractive error of the eye of the user, wherein the eye of the user has a choroid, includes: a...
9,452
formal_gov
common_corpus_Github Open Source
2,021
import type DevToolsDriver from '../devtoolsdriver'; /** * The Get Element Property command will return the result of getting a property of an element. * * @alias browser.getElementProperty * @see https://w3c.github.io/webdriver/#dfn-get-element-property * @param {string} elementId the id of an element returned i...
164
cc:Github Open Source
common_corpus_Github Open Source
2,021
// Implement a first in first out (FIFO) queue using only two stacks. The implemented queue should support all the functions of a normal queue (push, peek, pop, and empty). // Implement the MyQueue class: // void push(int x) Pushes element x to the back of the queue. // int pop() Removes the element from the front of...
717
cc:Github Open Source
common_corpus_Github Open Source
2,021
#include "ObjectRenderer.h" #include "graphics/Buffer.h" #include "graphics/RenderState.h" #include "graphics/gl/Shader.h" #include "graphics/gl/VertexBuffer.h" #include "tilemap/tiles/SpikeTile.h" static GL::Shader shader; static GL::VertexBuffer buffer; static GL::VertexBuffer staticBuffer; static Buffer data[2]; s...
1,093
cc:Github Open Source