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_OpenAlex | 2,021 | © The Author(s). 2021 Open Access This article is licensed under a Creative Commons Attribution 4.0 International License,
which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give
appropriate credit to the original author(s) and the source, provide a link to the... | 19,721 | academic |
common_corpus_Github Open Source | 2,021 | <?php
namespace r94ever\LaravelModelSetting\Traits;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Arr;
use r94ever\LaravelModelSetting\Models\ModelSetting;
/**
* Trait HasSettingTrait
* @package r94ever\LaravelModelSetting\Traits
*
* @property \r94ever\LaravelModelSetting\Models\ModelSetting s... | 470 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | function bouncer(arr) {
// Don't show a false ID to this bouncer.
return arr.filter(function(val) {
return (new Boolean(val) != false);
});
}
bouncer([7, "ate", "", false, 9], ""); | 55 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.airwallex.android.core.model
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.RobolectricTestRunner
import kotlin.test.assertEquals
@RunWith(RobolectricTestRunner::class)
class DeviceTest {
private val device by lazy {
Device.Builder()
.setDeviceId("123... | 290 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React, { useEffect, useState } from 'react';
import { Button, Card, Column, Lookup, TableWithBrowserPagination, Modal } from 'react-rainbow-components';
import { RupiahTextView } from '../kasir/RupiahTextView';
import { Cart } from '../../data/product/Cart';
import { ProductActionView } from '../kasir/ProductAct... | 1,618 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* @file
* @copyright (c) 2013 Stephan Brenner
* @license This project is released under the MIT License.
*
* This file implements a Node.js module for initiating socket.io connections
* through a proxy server.
*/
(function(){
var http = require('http');
var https = require('https');
var url = ... | 838 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Copyright 2019 Pierre Talbot
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writ... | 606 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Xue, L., Wang, P., Cao, P., Zhu, J. K., and Tao, W. A. (2014) Identification of extracellular signal-regulated kinase 1 (ERK1) direct substrates using stable isotope labeled kinase assay-linked phosphoproteomics. Molecular & cellular proteomics: MCP 13, 3199-3210.- 66. Iliuk, A., Jayasundera, K., Wang, W.... | 1,843 | formal_gov |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Giving Thanks for the Hard Stuff
Trigger Warning: This article isn't specifically about air conditioning, and it includes a markedly Christian worldview. If you would prefer that I “stick with the A/C stuff, preacher boy,” then this is one you should skip—or not 🙂 Also, today is my birthday, so give me a pass on th... | 1,846 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace SDKBrowser.Examples.ComboBoxControl.HowToCategory.DropDownClearButtonExample
{
public partial class DropDownClearButton : ContentView
{
public DropDownClearButton()
{
InitializeComponent();
}
... | 58 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.frameworkset.bigdata.imp;
public class PartitionInfo implements java.io.Serializable{
private String partition;
private String subpartition;
private boolean issubpartition;
public PartitionInfo() {
// TODO Auto-generated constructor stub
}
public String getPartition() {
return partition;
}
publ... | 274 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | .class final Lcom/facebook/internal/ImageDownloader$1;
.super Ljava/lang/Object;
.source "ImageDownloader.java"
# interfaces
.implements Ljava/lang/Runnable;
# annotations
.annotation system Ldalvik/annotation/EnclosingMethod;
value = Lcom/facebook/internal/ImageDownloader;->issueResponse(Lcom/facebook/internal/... | 1,106 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package io.github.fabriccommunity.events.test;
import io.github.fabriccommunity.events.play.PlayerInteractionEvents;
import net.fabricmc.api.ModInitializer;
import net.minecraft.util.ActionResult;
public class PlayerInteractionTest implements ModInitializer {
public static final boolean ENABLED = true;
@Override
... | 113 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Collections.ObjectModel;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Moq;
using Volumey.Controls;
using Volumey.CoreAudioWrapper.Wrapper;
using Volumey.Helper;
using Volumey.Model;
using Volumey.ViewModel.Settings;
using Xunit;
namespace Volumey.Tests... | 1,191 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
using FluidHTN.Conditions;
namespace FluidHTN.Debug
{
public static class Debug
{
public static string DepthToString(int depth)
{
string s = "";
for (var i = 0; i < depth; i++)
{
s += "\t";
}
s += "- ";
... | 381 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Nodejs wait user to give input?
I am looking for looping program continuously, but the problem looks like the program run without waiting for user make an input
const inquirer = require('inquirer');
const questions = [{
type: 'input',
name: 'name',
message: "What's your name"
}];
do {
inquirer.prompt(question... | 334 | misc_reference |
common_corpus_StackExchange | 2,021 | I don't understand, Why is my CalculateTotal () function returning "Null"?
I am trying to create a clothing sales site, I am at the function which calculates the total of the products present in the cart at the localStorage level, but my function returns "null"
I really need help please...
here is the code:
constructor... | 1,205 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 四川省冕宁县人民法院执 行 裁 定 书(2021)川3433执283号申请执行人:海来伍来,女,1967年4月8日出生,彝族,四川省冕宁县人,住冕宁县。被执行人:卢成兴,男,1972年5月2日出生,彝族,四川省冕宁县人,住冕宁县。本院在执行申请执行人海来伍来与被执行人卢成兴借款合同纠纷一案中,执行标的为20000元。经查被执行人暂无其他财产可供执行,已对被执行人限制高消费、冻结银行账户及网络资金,并将执行情况告知申请人,申请人书面同意终本。依照《最高人民法院关于适用〈中华人民共和国民事诉讼法〉的解释》第五百一十九条规定,裁定如下:终结本案本次执行程序。申请执行人发现被执行人有可供执行财产的,可以再次申请执行。本裁定送达后立即生效。审... | 422 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 重庆市江北区人民法院民 事 裁 定 书(2020)渝0105民初28053号原告:重庆市江北区惠中小额贷款股份有限公司,住所地重庆市江**永平门街**13-1-1,统一社会信用代码91500105688932032Y。法定代表人:苏醒,该公司董事长。委托诉讼代理人:岳海梅,重庆森众律师事务所律师。被告:袁红,男,1991年6月27日出生,汉族,住重庆市巴**。原告重庆市江北区惠中小额贷款股份有限公司因与被告袁红民间借贷纠纷一案,向本院提起诉讼。本院于2020年12月17日立案后,向原告送达了交纳诉讼费用通知书,限其于收到本通知之次日起七日内预交案件受理费,期满仍未预交的,按撤回起诉处理。重庆市江北区惠中小额贷款股份有限公司在收到交纳... | 577 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省恩平市人民法院 结 案 通 知 书 (2021)粤0785执737号 吴长旺、梁娟凤: 在执行吴长旺与被执行人梁娟凤民间借贷纠纷一案,梁娟凤已主动履行完(2020)粤0785民初2329号民事判决书所确定的义务。至此,(2020)粤0785民初2329号民事判决书所确定的义务已执行完毕。依照法律规定,(2021)粤0785执737号案件执行完毕结案。 二〇二一年八月六日 关注微信公众号“马克数据网” | 216 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | #import "HTTPRequest.h"
@implementation HTTPRequest
@synthesize method = method_;
@synthesize uri = uri_;
@synthesize body = body_;
@synthesize headers = headers_;
- (id)init {
self = [super init];
if (self) {
self.method = @"GET";
self.uri = @"/";
self.body = [NSData data];
self.headers = [NSMuta... | 121 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { QiitaWidgetParam } from '~lib/interface'
// Included via raw-loader:
import CSS from '~style/iframe.scss'
import HTML from '~iframe/view/basic.html'
import LIB from '~dist/lib.bundled.js'
export function makeIframeContent(data: QiitaWidgetParam, id: number): string {
/* eslint-disable @typescript-eslint/re... | 218 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import tkinter
from scripts.frontend import Navigation
from scripts import Parameters
from scripts.frontend.custom_widgets import CustomLabels
from scripts.frontend.page_components import InformationBlock
from scripts.frontend.pages import GenericPage
project_information_page = None
class Frame(GenericPage.Navigatio... | 1,571 | cc:Github Open Source |
common_corpus_French Open Data | 2,021 | e
153 année. - N°45
Mardi 9 novembre 2021
JOURNAL OFFICIEL
DE LA RÉPUBLIQUE FRANÇAISE
D.I.L.A
serialNumber=S17140003,CN=DILA - SIGNATURE
DILA,OU=0002
13000918600011,organizationIdentifier=NTRFR-13000918600011,O=DILA,C=FR
75015 Paris
2021-11-09 09:01:23
Associations et fondations d'entreprise
DIRECTION DE L'INFORMA... | 795 | cc:French Open Data |
common_corpus_Chinese-Court-Decisions | 2,021 | 上海市静安区人民法院民 事 判 决 书(2021)沪0106民初2163号原告:上海汽车集团财务有限责任公司,住所地上海市,注册地中国(上海)自由贸易试验区华京路XXX号三层317室。法定代表人:王晓秋,董事长。委托诉讼代理人:胡雯秋,上海森岳律师事务所律师。委托诉讼代理人:陶文文,上海森岳律师事务所律师。被告:周晾,女,1989年2月21日出生,汉族,住河南省。原告上海汽车集团财务有限责任公司与被告周晾金融借款合同纠纷一案,本院于2021年1月5日立案后,依法适用简易程序,于2021年3月25日公开开庭进行了审理。原告委托诉讼代理人胡雯秋到庭参加诉讼。被告周晾经本院传票传唤无正当理由拒不到庭参加诉讼。本案现已审理终结。原告向本院提... | 2,837 | cc:Chinese-Court-Decisions |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Qobuz
For the ancient Kazakh string instrument, see Kobyz.
Qobuz is a French commercial music streaming and downloading service. It was founded in 2007 by Yves Riesel and has expanded to a limited range of overseas markets, including the United Kingdom, the Netherlands and Germany.[1] It offers a tiered subscription ... | 657 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | from __future__ import absolute_import
# Copyright (c) 2010-2019 openpyxl
from copy import copy
import pytest
@pytest.fixture
def dummy_object():
class Dummy:
def __init__(self, a, b, c):
self.a = a
self.b = b
self.c = c
def __repr__(self):
retur... | 320 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #include "config.h"
#define COUNT_WARNINGS
!! @author Paul Baumeister
!! @version 3.0
!!
!! contains most important configurations for this code.
!! the only runtime variable is the output unit o,
!! because that will be 0(silent) in parallel runs
!! except for the master process
module configuration
use type_item,... | 5,021 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 成都市成华区人民法院 民 事 裁 定 书 (2021)川0108民初3751号 原告:王春雷,男,汉族,1993年1月1日出生,住成都市成华区。 被告:肖雯雯,女,汉族,1995年3月22日出生,住四川省广元市昭化区。 原告王春雷与被告肖雯雯民间借贷纠纷一案,本院已于2021年3月9日立案。2021年3月25日,原告王春雷经传票传唤,无正当理由拒不到庭。 依照《中华人民共和国民事诉讼法》第一百四十三条、第一百五十四条第一款第十一项规定,裁定如下: 本案按原告王春雷撤诉处理。 案件受理费50元,由原告王春雷负担。 审判员 张 丹 二〇二一年三月二十六日 书记员 冯丹婷 关注公众号“马克数据网” | 338 | cc:Chinese-Court-Decisions |
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.
#include <stdio.h>
#include <stdint.h>
#include <xplatform.h>
#include <platformdefines.h>
#if defined(TARGET_XARCH... | 726 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Asymptotics of a sum involving multiplicative partitions of an integer $n$ into $k$ possibly non-distinct parts $≥2$
(I posted this on MathOverflow, but I haven't gotten a response yet, so I've reposted it here.)
Let $x\in\left(0,1\right)$. For each integer $n\geq2$, let $\Omega\left(n\right)$ denote the number of prim... | 619 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省长沙市岳麓区人民法院民 事 裁 定 书(2021)湘0104民初6631号申请人:湖南中联重科混凝土机械站类设备有限公司,住所地湖南省常德市汉寿高新技术产业园区黄福居委会中联大道1号。法定代表人:田兵,总经理。委托诉讼代理人:吴菊梅,女,1980年10月15日出生,汉族,住湖北省监利县,系公司法务。被申请人:马洪凤,女,1964年9月3日出生,汉族,住山东省。被申请人:马洪泉,男,1962年4月6日出生,汉族,住山东省枣庄市薛城区。本院在审理申请人湖南中联重科混凝土机械站类设备有限公司与被申请人马洪凤、马洪泉追偿权纠纷一案中,申请人湖南中联重科混凝土机械站类设备有限公司于2021年4月29日向本院申请财产保全,请求冻结被申请人... | 1,151 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | using ASBinCode;
using ASBinCode.rtData;
using ASBinCode.rtti;
using System;
using System.Collections.Generic;
using System.Text;
namespace ASRuntime.nativefuncs
{
class Number_toPrecision : NativeConstParameterFunction
{
public Number_toPrecision():base(1)
{
_paras = new List<RunT... | 8,508 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// AgoraVideoFrameObserver.h
// react-native-agora-rawdata
//
// Created by LXH on 2020/11/10.
//
#import <Foundation/Foundation.h>
#import "AgoraVideoFrame.h"
NS_ASSUME_NONNULL_BEGIN
@protocol AgoraVideoFrameDelegate <NSObject>
@required
- (BOOL)onCaptureVideoFrame:(AgoraVideoFrame *_Nonnull)videoFrame;
- (B... | 310 | 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 MaintenanceWindowTaskParameterValueExpression extends StObject {
/**
... | 274 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省平阴县人民法院执 行 裁 定 书(2021)鲁0124执590号移送机关:平阴县人民法院刑事审判庭被执行人:俄广勇,男,1974年7月10日出生,汉族,住平阴县。关于本院刑事审判庭移送执行俄广勇犯盗窃罪一案,移送执行内容为刑事罚金。本院依法定程序向被执行人直接送达了执行通知、财产报告令,但被执行人至今未履行生效法律文书确定的义务。本院多次通过全国网络查控系统查询了被执行人名下的银行存款、互联网银行、不动产、人行、车辆、证券、民政、保险及工商登记信息,未查询到可供执行的财产。本院通过协助机平阴县不动产登记中心查询被执行人不动产登记情况,未发现可供执行的不动产线索。本院通过协助机关济南住房公积金中心调查被执行人的住房公积金情况,未... | 691 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | --
-- This script creates an external table.
-- The "dirs" script must be run first because
-- the directories are referenced.
--
DROP TABLE sales_ext
/
--
-- I like to specify the character set explicitly
-- because the external table would otherwise
-- inherit the characterset of the database and use
-- this when r... | 228 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | How to remove reloading of page when user click on components in sidebar of vue-styleguidist
I am currently using "vue-styleguidist": "^4.36.1" version and I have some string params in URL.It is loading perfectly fine until click event happens on components in side bar of vue-styleguidist.
Once click event happens, who... | 215 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省信阳市中级人民法院民 事 判 决 书(2021)豫15民终3308号上诉人(原审原告):韩永,男,汉族,1966年8月27日出生,身份证住址河南省信阳市浉河区,常住地信阳市浉河区。上诉人(原审原告):刘桂梅,女,汉族,1969年2月16日出生,身份证住址河南省信阳市浉河区,常住地信阳市浉河区。二上诉人共同委托诉讼代理人:吴慧,河南冠南律师事务所律师。一般代理。被上诉人(原审被告):周东升,男,汉族,1964年10月15日出生,住河南省信阳市平桥区。委托诉讼代理人:时华云,河南新章律师事务所律师。一般代理。上诉人韩永、刘桂梅因与被上诉人周东升案外人执行异议之诉一案,不服河南省信阳市浉河区人民法院(2021)豫1502民初1998... | 9,022 | cc:Chinese-Court-Decisions |
common_corpus_StackExchange | 2,021 | Store style.color inside variable javascript
I am trying to store style.color of input element inside javascript variable but it always shows me empty string.
var textColor = document.getElementsByTagName("input")[0];
document.getElementsByTagName("input")[0].style.color = textColor;
console.log(textColor);
You're st... | 428 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 陕西省府谷县人民法院民 事 裁 定 书(2021)陕0822民初442号之二原告中国工商银行股份有限公司府谷县支行。负责人马军涛,系该行行长。被告严军林,男,1974年07月09日出生,汉族,住陕西省府谷县。被告王香兰,女,1978年02月07日出生,汉族,住陕西省府谷县。被告杜耀飞,男,1978年12月12日出生,汉族,住陕西省府谷县。被告边候兰,女,1980年06月06日出生,汉族,住陕西省府谷县。原告中国工商银行股份有限公司府谷县支行与被告严军林、王香兰、杜耀飞、边候兰金融借款合同纠纷一案,原告中国工商银行股份有限公司府谷县支行于2021年6月1日向本院申请财产保全,请求对被告严军林、王香兰、杜耀飞、边候兰名下价值115778... | 659 | cc:Chinese-Court-Decisions |
common_corpus_Open Australian Legal Corpus | 2,021 | Federal Court of Australia
Dickerson, in the matter of Disability Services Australia Limited (administrators appointed) (No 2) [2021] FCA 1133
File number: NSD 888 of 2021
Judgment of: YATES J
Date of judgment: 17 September 2021
Catchwords: ... | 3,586 | formal_gov |
common_corpus_Github Open Source | 2,021 | <?php
namespace App\Http\Controllers;
use App\Models\Crypto;
use App\Models\Balance;
use App\Models\Currency;
use Illuminate\Http\Request;
use Auth;
use Illuminate\Support\Facades\Validator;
use DB;
use App\Notifications\FirebaseNotification;
class CryptoController extends Controller
{
/**
* Display a listi... | 1,810 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //var isOpen = false;
//function popupToggle(){
// var popup = document.getElementById("chat-popup");
// if(isOpen){
// popup.style.animationName = "popup_close";
// isOpen = false;
// }else{
// popup.style.animationName = "popup_open";
// isOpen = true;
// }
//}
$(document).rea... | 1,319 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react';
import { View, Text } from 'react-native';
import { findIndex } from 'lodash';
import prdType from '../../config/productTypes.json';
import prdCondition from '../../config/productCondition.json';
import { secondaryTextColor } from '../commonColors';
import {I18n} from '../../langs/I18n';
c... | 381 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | $("a[href=#footer]").click(function() {
$('html, body').animate({
scrollTop: $("#footer").offset().top
}, 1000);
});
$('.navbar-collapse ul li a').click(function() {
$('.navbar-toggle:invisible').click();
}); | 56 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # File: radio_autoencoder.py
# Brief: Simulates a radio link over AWGN channel for Uncoded, Hamming
# coded and Neural network autoencoded radio links.
# Reproduces the results obtained in
# "An Introduction to Deep Learning for the Physical Layer",
# Timothy J. O'Shea, Jakob Hoydis... | 1,463 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 甘肃省定西市中级人民法院执 行 裁 定 书(2021)甘11执异144号异议人(案外人):黄海平,男,汉族,户籍所在地甘肃省白银市平川区宝积路。申请执行人:甘肃古典建设集团有限公司,住所地:甘肃省临夏州永靖县刘家峡。法定代表人:孔全明,该公司董事长。被执行人:甘肃瑞祥房地产开发有限公司,住所地:甘肃省定西市临洮县洮阳镇洮河三滩园区。法定代表人:李霞芳,该公司董事长。本院在执行(2021)甘11执恢31号申请执行人甘肃古典建设集团有限公司与被执行人甘肃瑞祥房地产开发有限公司建设工程施工合同纠纷一案中,案外人黄海平于2021年6月15日对执行标的提出书面异议。本院受理后,本院受理后,依法组成合议庭进行审查,现已审查终结。异议人黄海平称,... | 2,239 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省响水县人民法院 民 事 判 决 书 (2020)苏0921民初3516号 原告:魏海兵,男,1975年10月8日出生,汉族,住江苏省响水县。 委托诉讼代理人:朱建,江苏法理情律师事务所律师。 委托诉讼代理人:王应国,江苏法理情律师事务所律师。 被告:刘训峰,男,1982年8月23日出生,汉族,住江苏省响水县。 被告:马志岩,男,1958年5月16日出生,汉族,住江苏省响水县。 委托诉讼代理人:张高龙,响水县七套法律服务所法律工作者。 原告魏海兵与被告刘训峰、马志岩债权转让纠纷一案,本院于2020年12月3日立案后,依法适用普通程序,公开开庭进行了审理。原告魏海兵及其委托诉讼代理人朱建、王应国、被告马志岩及其委托诉讼代理人张高龙... | 2,109 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | export function getElements(xElements = 10, yElements = 10) {
const initialElements = [];
let nodeId = 1;
let recentNodeId = null;
for (let y = 0; y < yElements; y++) {
for (let x = 0; x < xElements; x++) {
const position = { x: x * 100, y: y * 50 };
const data = { label: `Node ${nodeId}` };
... | 204 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省东海县人民法院 刑 事 判 决 书 (2021)苏0722刑初202号 公诉机关江苏省东海县人民检察院。 被告人郭传财,男,汉族,初中文化,个体,户籍所在地江苏省东海县,住东海县。被告人郭传财曾因犯聚众斗殴罪,于2009年12月16日被赣榆县人民法院判处有期徒刑一年六个月,缓刑一年六个月;曾因犯串通投标罪,于2016年5月16日被东海县人民法院判处有期徒刑一年,缓刑一年,并处罚金十万元。因涉嫌危险驾驶罪,于2020年8月3日被东海县公安局取保候审。于2021年5月20日经本院批准逮捕,现羁押于东海县看守所。 公诉机关以东检一部刑诉〔2021〕Z148号起诉书指控被告人郭传财犯危险驾驶罪,本院适用刑事案件速裁程序,实行独任审判,... | 1,850 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省驻马店市驿城区人民法院执 行 裁 定 书(2021)豫1702执727号之一申请执行人吕为永,男,1972年2月8日出生,汉族,住信阳市平桥区。被执行人刘洋,女,1979年5月1日出生,汉族,住驻马店市驿城区。本院依据已经发生法律效力的(2020)豫1702民初13750号民事判决书,责令被执行人刘洋履行生效法律文书确定的义务,但被执行人至今未履行。依照《中华人民共和国民事诉讼法》第二百四十七条和《最高人民法院关于人民法院民事执行中拍卖、变卖财产的规定》第一条、第四条的规定,裁定如下:拍卖被执行人刘洋名下所有的位于河南省驻马店市市辖区乐山大道北段东侧鹏宇天下城3号综合楼第9层904号房产(豫(2020)驻马店市不动产权第000... | 450 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省涟水县人民法院民 事 裁 定 书(2020)苏0826民初6082号原告:中国银行股份有限公司涟水支行,住所地淮安市涟水县常青路1号。负责人:王丽娟,该支行行长。被告:曹步高,男,汉族,1971年2月14日出生,住江苏省涟水县。被告:史金花,女,汉族,1974年3月3日出生,住江苏省淮安市淮阴区。本院于2020年11月12日受理原告中国银行股份有限公司涟水支行诉被告曹步高、史金花金融借款合同纠纷一案,现因案情复杂,不宜适用简易程序进行审理,故决定适用普通程序对本案进行审理。据此,《中华人民共和国民事诉讼法》第一百六十三条之规定,裁定如下:本案转入普通程序审理。审 判 长 刘立卫人民陪审员 陶籽伊人民陪审员 徐永庆二〇二一... | 394 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 西安市莲湖区人民法院 执行裁定书 (2021)陕0104执异100号 申请人(申请执行人):西安朗达科工贸有限公司,住所地西安市莲湖区,统一社会信用代码:91610104735053189R。 法定代表人:张勇,职务总经理。 委托诉讼代理人:晁仲锋,陕西乐友律师事务所律师。 委托诉讼代理人:袁坤坤,陕西乐友律师事务所实习律师。 被执行人:重庆秀洋机械设备有限公司,住所地重庆市沙坪坝区,统一社会信用代码:9150010606615909X0。 法定代表人:刘小虎,该公司执行董事兼总经理。 第三人:刘小虎,男,1979年7月4日出生,汉族,住四川省渠县。 第三人:汤雲棣,男,1971年11月4日出... | 989 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | using UnityEditor;
using UnityEditorInternal;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Events;
using System;
using System.Collections;
using System.Collections.Generic;
using Rotorz.ReorderableList;
namespace Fungus
{
[CustomEditor (typeof(ControlStage))]
public class StageEditor : CommandEditor... | 655 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.aurgiyalgo.BetterTownyWars.language;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.bukkit.ChatColor;
import org.bukkit.configuration.file.FileConfiguration;
import com.aurgiyalgo.BetterTownyWars.BetterTownyWars.Configuration;
public class BTW... | 669 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | FIG. 5 is a display screen further illustrating the knowledge graph 500 of FIG. 4 , in accordance with aspects of the present disclosure. In some aspects of the present disclosure, a search construct validation process is applied to the web search results page 400 of FIG. 4 to automatically generate the knowledge graph... | 5,246 | formal_gov |
common_corpus_Chinese-Court-Decisions | 2,021 | 河北省石家庄市鹿泉区人民法院 民 事 裁 定 书 (2021)冀0110民初186号 原告:石家庄如园园林工程有限公司。住所地:石家庄高新区黄河大道98号。 法定代表人:和忠庆。 被告:石家庄市丽豪房地产开发有限公司。住所地:石家庄鹿泉区铜冶镇岭底村。 法定代表人:杨旭。 原告石家庄如园园林工程有限公司与被告石家庄市丽豪房地产开发有限公司建设工程施工合同纠纷一案,本院于2021年2月8日立案后,依法进行审理。 本院经审查认为,原告石家庄如园园林工程有限公司的起诉不符法定条件。 依照《中华人民共和国民事诉讼法》第一百一十九条、第一百五十四条第一款第三项、《最高人民法院关于适用〈中华人民共和国民事诉讼法〉的解释》第二百零八条第三款规定,... | 542 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省舞钢市人民法院民 事 裁 定 书(2020)豫0481民初3173号原告:舞钢市房产事务服务中心,住所地舞钢市垭口文化路4号。统一社会信用代码124104814170452127。法定代表人:张耀辉,主任。委托诉讼代理人:韩耀彬(单位员工),男,1971年12月13日生,汉族,住舞钢市。委托诉讼代理人:栗新文,平顶山市舞钢市钢诚法律服务所法律服务工作者。被告:舞钢市安居房产中介服务中心,住所地舞钢市垭口文化路南段。统一社会信用代码914104817631021447。法定代表人:张彦亭。被告:舞钢市佳苑房地产开发有限公司,住所地舞钢市垭口文化路中段东侧(房产2号楼)。统一社会信用代码91410481671665003M。法定代... | 771 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 上海市青浦区人民法院民 事 判 决 书(2020)沪0118民初15983号原告:张卫明,男,1981年2月28日出生,汉族,户籍所在地河南省。委托诉讼代理人:屈小荣,上海市方正律师事务所律师。被告:秦永华(第一被告),男,1978年12月23日出生,汉族,住江苏省海门市。被告:上海庆仙装潢工程有限公司(第二被告),住所地上海市宝山区。法定代表人:陈爱兵,总经理。被告:中国平安财产保险股份有限公司上海分公司(第三被告),住所地上海市。负责人:陈雪松,总经理。委托诉讼代理人:肖龙庚,男。原告张卫明诉被告秦永华、被告上海庆仙装潢工程有限公司、被告中国平安财产保险股份有限公司上海分公司机动车交通事故责任纠纷一案,本院于2020年8月10日... | 5,539 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import { getConfig } from '@expo/config';
import { flags } from '@oclif/command';
import EasCommand from '../../commandUtils/EasCommand';
import { WebhookType } from '../../graphql/generated';
import { WebhookMutation } from '../../graphql/mutations/WebhookMutation';
import { ora } from '../../ora';
import { findProje... | 358 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # Generated by Django 3.1.6 on 2021-06-14 00:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('forum', '0006_auto_20210613_1459'),
]
operations = [
migrations.AddField(
model_name='grade',
name='feedback',
... | 99 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | FROM openshift/openldap-2441-centos7:latest
# OpenLDAP server image for OpenShift Origin testing based on OpenLDAP 2.4.41
#
# Volumes:
# * /var/lib/openldap/data - Datastore for OpenLDAP
# * /etc/openldap/slapd.d - Config directory for slapd
# Environment:
# * $OPENLDAP_DEBUG_LEVEL (Optional) - OpenLDAP debugging lev... | 197 | cc:Github Open Source |
common_corpus_French-Science-Pile | 2,021 | 16
Benchmark
Yolo9000-0
Yolo9000-2
Yolo9000-4
Yolo9000-5
Yolo9000-8
Yolo9000-9
Yolo9000-12
Yolo9000-13
Yolo9000-18
Yolo9000-19
Yolo9000-23
Microkernel
[8H2K]
[3S4H4K]
[3R10H]+2[3R12H]
[8H2K]+2[13H2K]
[3S4H4K]
[8H2K]+5[12H2K]
2[3R11H]+[3R12H]
2[10H2K]+[14H2K]
[8H2K]+[9H2K]
[8H2K]+[9H2K]
[8H3K]+[9H3K]
Benchmark
ResNe... | 4,849 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | const BaseCommand = require('../../utils/structures/BaseCommand');
module.exports = class PingCommand extends BaseCommand {
constructor() {
super('ping', 'info', []);
}
async run(client, message, args) {
await message.reply(`Wicked Latency: \`${Date.now() - message.createdTimestamp}ms\`\nDiscord API Latency: \... | 91 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Username Recovery throwing Callback URL validation failed
Wso2 identity server version : 5.11.0
After changing the admin password , I am getting below error during username recovery.
Error!
Callback URL validation failed. org.wso2.carbon.identity.mgt.endpoint.util.client.IdentityRecoveryException: Error while instantia... | 391 | misc_reference |
common_corpus_French-Science-Pile | 2,021 | I(λ)L
β
!
,
2(λ0 + δ ∗ )ℓ∗ L
. (152)
β
We get then
Pλ φu,−
1,α (N) = 0
= Pλ ( N(τ ∗ , τ ∗ + ℓ∗ ] > bN1 ,ℓ∗ (α) )
p
= Pλ N(τ ∗ , τ ∗ + ℓ∗ ] > bN1 ,ℓ∗ (α) , |N1 − I(λ)L| ≤ 2 I(λ)L/β
p
p
+ Pλ N1 < I(λ)L − 2 I(λ)L/β + Pλ N1 > I(λ)L + 2 I(λ)L/β
β
p
≤ Pλ N(τ ∗ , τ ∗ + ℓ∗ ] > bN1 ,ℓ∗ (α) , |N1 − I(λ)L... | 16,285 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | using System;
using System.Net.Http;
using System.Threading.Tasks;
namespace DmdataSharp.Authentication
{
/// <summary>
/// APIに対する認証を構成します
/// </summary>
public abstract class Authenticator : IDisposable
{
/// <summary>
/// リクエストに認証情報を付与します
/// </summary>
/// <param name="message">付与するHttpRequestMessage... | 283 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | In embodiments, a communication device 28908 is a device that enables wired or wireless communication with another device in the sensor kit network 28800. In most sensor kit configurations 28700, the sensors 28702 are configured to communicate wirelessly. In these embodiments, a communication device 28908 may include a... | 9,290 | formal_gov |
common_corpus_Github Open Source | 2,021 | rm(list = ls())
setwd(dirname(parent.frame(2)$ofile))
library(plyr)
library(dplyr)
simulate.mse = function (epsilon, samples, operation, simple, input.size, subset.ratio, overlap.ratio, range.a, range.b, range.mirror) {
X = matrix(runif(samples*input.size, range.a, range.b), samples, input.size)
if (range.mirror... | 1,936 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | How to calculate the inverse of Hessian matrix?
In the question Calculating the determinant of the Hessian of a function, we know that the Hessian of function
$$f(x_1,\dots,x_n) = g\bigg(x_1,\bigg(\sum_{i=2}^n x_i^2\bigg)^{1/2}\bigg), $$
and denote
\begin{equation}
t:=x_1 \quad \text{and}\quad r:= \bigg(\sum_{i=2}^n x_... | 994 | misc_reference |
common_corpus_Github Open Source | 2,021 | """
[7/25/2012] Challenge #81 [difficult] (Matrix Exponential)
https://www.reddit.com/r/dailyprogrammer/comments/x53dr/7252012_challenge_81_difficult_matrix_exponential/
For a lot of the questions today we are going to be doing some simple numerical calculus. Don't worry, its not too
terrifying.
Write a function tha... | 411 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
Copyright (c) 2018-2019, tevador <tevador@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditio... | 770 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to ... | 1,084 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # This is an input class. Do not edit.
class BinaryTree:
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right
def height_balanced_helper(tree):
if not tree:
return True, -1
left_tree_balanced, left_height = height_balance... | 160 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | export { default as Item } from '../Item/Item';
export { default as ItemContent } from '../Item/ItemContent';
export { default as ItemDescription } from '../Item/ItemDescription';
export { default as ItemExtra } from '../Item/ItemExtra';
export { default as ItemGroup } from '../Item/ItemGroup';
export { default as Item... | 109 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &21308130950082624 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - component: {fileID: 5720823275287065086} - component: {fileID: 7778953630662326770} ... | 77,701 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | is there a way to make a bot say the name of who joined a vc with text to speech?
how could this be done? I'm trying to make a bot that says the names of people who join a voice chat (usually a lot of people are in vc) so I wouldn't have to check/ask.
You want to make it say it with audio? Or printed or sent?
I wanna... | 208 | misc_reference |
common_corpus_Github Open Source | 2,021 | import React, { useState, useContext } from 'react';
import AppContext from '../../../context/AppContext';
import Checkbox from '../../../shared/Checkbox';
import TextField from '../../../shared/TextField';
import { addItem, deleteItem, deleteItem1, moveItemUp, moveItemDown } from '../../../utils';
import ItemHeading ... | 1,058 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省广州市番禺区人民法院民 事 判 决 书(2020)粤0113民初24174号原告:上海浦东发展银行股份有限公司广州番禺支行,住所地广东省广州市番禺区市桥街清河东路口岸大街1号,统一社会信用代码91440101775694175X。负责人:陈锦平,职务:行长。委托诉讼代理人:陈东洋,系广东华誉品智律师事务所律师。委托诉讼代理人:梁健枫,系广东华誉品智律师事务所律师。被告:张强,男,1969年11月24日出生,汉族,住湖北省大悟县。原告上海浦东发展银行股份有限公司广州番禺支行(以下简称浦发银行番禺支行)诉被告张强信用卡纠纷一案,本院于2020年12月29日立案后,依法适用简易程序公开开庭进行了审理。原告浦发银行番禺支行的委托诉讼代... | 3,179 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省聊城市东昌府区人民法院刑 事 判 决 书(2020)鲁1502刑初751号公诉机关山东省聊城市东昌府区人民检察院。被告人高某1,男,1977年8月30日出生于山东省聊城经济开发区,汉族,初中文化,聊城某钢管有限公司法定代表人,户籍地及住址:山东省聊城经济开发区。因本案于2020年7月31日被聊城市公安局经济开发区分局刑事拘留,同年9月1日被执行逮捕。现羁押于山东省聊城市看守所。辩护人杜德臣,北京京师律师事务所律师。被告人王某,男,1987年2月26日出生于山东省聊城经济开发区,汉族,初中文化,聊城某钢管有限公司职工,户籍地及住址:山东省聊城经济开发区。因本案于2020年7月31日被聊城市公安局经济开发区分局刑事拘留,同年9月1... | 2,976 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | # Check assembly of and relocs for -membedded-pic la, lw, ld, sw, sd macros.
.text
.set noreorder
start:
nop
.globl g1
.ent g1
i1: # 0x00004
g1:
.space 0x8000
nop
.end g1
.globl g2
.ent g2
i2: # 0x08008
g2:
.space 0x8000
nop
.end g2
.globl g3
.ent g3
i3: # 0x1000c
g3:
la $2,... | 1,032 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | local Point = {}
local meta = {}
meta.__index = Point
function meta.__add(pointA, pointB)
return Point:new(pointA.x + pointB.x, pointA.y + pointB.y)
end
function meta.__tostring(vec)
end
setmetatable(Point, meta)
function Point:new(x, y)
local newObj = {}
object.x = x or 0
object.y = y or... | 106 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | namespace SFA.DAS.LevyTransferMatching.Api.Models.CreateAccount
{
public class CreateAccountRequest
{
public long AccountId { get; set; }
public string AccountName { get; set; }
}
}
| 50 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /* Generated by RuntimeBrowser.
*/
@protocol AVPlayerItemOutputPullDelegate <NSObject>
@optional
- (void)outputMediaDataWillChange:(AVPlayerItemOutput *)arg1;
- (void)outputSequenceWasFlushed:(AVPlayerItemOutput *)arg1;
@end
| 58 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
namespace App\Http\Controllers;
use App\Models\Classe;
use App\Models\Cour;
use App\Models\Ec;
use App\Models\Salle;
use Illuminate\Http\Request;
class CoursController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public funct... | 1,072 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 四川省自贡市自流井区人民法院 结 案 通 知 书 (2021)川0302执保175号 申请人宋玉兰;被申请人钟雅靓、重庆海航农业开发有限公司自贡分公司、重庆海航农业开发有限公司: 申请人宋玉兰与被申请人钟雅靓、重庆海航农业开发有限公司自贡分公司、重庆海航农业开发有限公司财产保全一案,请求对被申请人重庆海航农业开发有限公司自贡分公司、重庆海航农业开发有限公司在价值9000.00元范围内的财产采取保全措施。经本院立案保全,已保全完毕,现已结案。 特此通知。 二〇二一年四月二十日 关注公众号“马 克 数 据 网” | 287 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import chai from 'chai'
const assert = chai.assert;
const expect = chai.expect;
import fs from 'fs'
import { createApiClientDev } from './apiClients.config'
/*
This file contains static references to content from the instance configured in the apiClient.config file.
*/
describe('webHook Operations:', function ... | 266 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* The MIT License (MIT)
*
* Copyright (c) 2020 Elior "Mallowigi" Boukhobza
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation th... | 1,534 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package Cx
import data.generic.common as common_lib
CxPolicy[result] {
resource := input.document[i].resource.aws_db_instance[name]
resource.iam_database_authentication_enabled == false
result := {
"documentId": input.document[i].id,
"searchKey": sprintf("aws_db_instance[%s].iam_database_authentication_enable... | 248 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | 1,156 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 成都市金牛区人民法院 执 行 裁 定 书 (2021)川0106执1881号之一 申请执行人:中国邮政储蓄银行股份有限公司成都市沙湾支行。住所地:成都市金牛区沙湾路**。 负责人:陆健,行长。 被执行人:李超,男,汉族,1982年4月12日出生,住成都市天府新区。 本院依据已经发生法律效力的(2020)川0106民初7188号民事判决书,于2021年2月23日立案执行中国邮政储蓄银行股份有限公司成都市沙湾支行申请执行李超信用卡纠纷一案,执行标的44294.99元及利息,执行费564元。 执行过程中,本院依法向被执行人送达了《执行通知书》《报告财产令》《限制消费令》等执行文书,但被执行人至今未履行生效法律文书确定的义务,亦未报告财产。... | 850 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | //! Configuration
use optics_base::decl_settings;
use optics_ethereum::EthereumSigner;
decl_settings!(Settings {
agent: "updater",
updater: EthereumSigner,
polling_interval: u64,
update_pause: u64,
});
| 55 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省广州市花都区人民法院 通 知 书 (2021)粤0114执4828号 福州中久华飞文化传播有限公司、广东金宝莱酒店管理有限公司花都分公司、广东金宝莱酒店管理有限公司: 关于申请执行人福州中久华飞文化传播有限公司与被执行人广东金宝莱酒店管理有限公司花都分公司、广东金宝莱酒店管理有限公司著作权权属、侵权纠纷一案,被执行人广东金宝莱酒店管理有限公司花都分公司、广东金宝莱酒店管理有限公司已经履行(2021)粤0114民初1533-1667号生效法律文书确定的义务。现本案作执行完毕结案处理。 特此通知。 二〇二一年三月二十九日 备注:执行员徐家静,书记员袁建恒 搜索“马 克 数 据 网” | 317 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | #ifndef Py_INTERNAL_AOT_CEVAL_JIT_HELPER_H
#define Py_INTERNAL_AOT_CEVAL_JIT_HELPER_H
#ifdef __cplusplus
extern "C" {
#endif
#include "Python.h"
#if PYSTON_SPEEDUPS
#define JIT_HELPER(name) PyObject* JIT_HELPER_##name(int _not_set)
#define JIT_HELPER1(name, py1) PyObject* JIT_HELPER_##name(int _not_set, PyObject* py... | 1,103 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省宿迁市宿城区人民法院执 行 裁 定 书(2020)苏1302执5621号之一申请执行人:靳红,女,1974年8月22日生,住宿迁市宿城区。被执行人:朱曙光,男,1983年6月21日生,住宿迁市宿城区。申请执行人靳红与朱曙光民间借贷纠纷一案,本院作出的(2020)苏1302民初4086号民事判决书已经发生法律效力,申请人靳红于2020年12月4日向本院申请执行,要求被执行人朱曙光偿还44150.00元及利息。执行过程中本院采取了以下执行措施:1.本院于2020年12月4日通过电子送达形式向被执行人朱曙光送达执行通知、财产申报表、廉政监督卡、信用风险惩戒提示,但被执行人未实际履行。2.本院于2020年12月4日开始,多次通过总对总... | 891 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import React from "react"
import {Link} from "gatsby"
import {navigate} from "gatsby"
import Header from "../components/Header"
const Test = () => (
<div>
<Header title="Header of test page"></Header>
<h1>This is a test page!</h1>
<h1>This is a test page2!</h1>
<div>
... | 123 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
declare(strict_types=1);
namespace Linio\Component\Input\Constraint;
use PHPUnit\Framework\TestCase;
class GuidValueTest extends TestCase
{
public function testIsCheckingInvalidData(): void
{
$constraint = new GuidValue();
$this->assertFalse($constraint->validate('0dga84b2-639d-4b06-bc... | 534 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省中方县人民法院 民 事 裁 定 书 (2021)湘1221民初349号 原告:谢春兰,女,汉族,1983年3月28日出生,住湖南省中方县。 委托诉讼代理人:杨圣爱,湖南世勤律师事务所律师。 被告:谢园园,女,汉族,1985年3月24日出生,住湖南省中方县。 委托诉讼代理人(特别授权):盛硕环,中方县城中法律服务所法律工作者。 本院在审理原告谢春兰与被告谢园园不当得利纠纷一案中,原告谢春兰于2021年4月12日向本院提出撤回起诉申请。 本院认为,原告的申请符合法律规定,本院应予准许。根据《中华人民共和国民事诉讼法》第一百四十五条第一款之规定,裁定如下: 准许原告谢春兰撤回对被告谢园园的起诉。 案件受理费2300元,减半收取115... | 470 | cc:Chinese-Court-Decisions |
common_corpus_USPTO | 2,021 | Processing system
ABSTRACT
A processing system includes: an irradiation part for irradiating an object with an energy beam; a powder supply part for supplying powder to a melt pool formed by an irradiation of the energy beam; an illumination apparatus for illuminating a position of a solidified part where the melt po... | 8,513 | formal_gov |