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 | /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* Handles the download progress indicator in the task... | 1,454 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | --[[
© CloudSixteen.com do not share, re-distribute or modify
without permission of its author (kurozael@gmail.com).
Clockwork was created by Conna Wiles (also known as kurozael.)
http://cloudsixteen.com/license/clockwork.html
--]]
local Clockwork = Clockwork;
local ITEM = Clockwork.item:New(nil, true);
ITEM.na... | 2,292 | 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 System;
internal static partial class Interop
{
internal static partial class Gdi32
{
public... | 168 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 重庆市渝北区人民法院 重庆市渝北区人民法院民事判决书                    (2021)渝0112民初13514号 原告:重庆趣嗨租科技有限公司,住所地重庆市渝北区龙溪街道新南路145号龙珠花园3幢16-8,统一社会信用代码91500112MA5UNDYHXC。法定代表人:黄兴华。委托诉讼代理人:石永江,重庆学苑律师事务所律师。委托诉讼代理人:韩玉杰,重庆学苑律师事务所律师。被告:刘琼琼,女,2001年10月0... | 2,718 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省郸城县人民法院结 案 通 知 书(2021)豫1625执320号张俊、刘贝贝:申请执行人张俊申请执行被执行人刘贝贝民间借贷纠纷一案,郸城县人民法院作出的(2020)豫1625民初3375号民事调解书执行完毕。执行员 : 杨 森书记员 :于江**二〇二一年三月一日 更多数据:搜索“马克数据网”来源:www.macrodatas.cn | 161 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 浏阳市人民法院执 行 案 件 结 案 通 知 书(2021)湘0181执3403号张元、湖南中垒工程机械有限公司本院执行的张元申请湖南中垒工程机械有限公司劳动争议一案,经被执行人湖南中垒工程机械有限公司自动履行,根据最高人民法院《关于执行案件立案、结案问题的意见》第十五条之规定,该案按自动履行方式结案。二〇二一年六月二十九日 百度搜索“马 克 数 据 网” | 196 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | package twg2.parser.tokenizers;
import java.util.function.BiPredicate;
/** Determine if a object is a child of another object
* @author TeamworkGuy2
* @since 2015-11-27
*/
@FunctionalInterface
public interface IsParentChild<T> extends BiPredicate<T, T> {
@Override
public boolean test(T parent, T child);
}
| 80 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 沈阳市沈河区人民法院执 行 裁 定 书(2021)辽0103执4477号申请执行人:沈阳金融商贸开发区瀚华科技小额贷款有限公司,住所地沈阳市沈河区友好街10-1号新地中心15层(电梯楼层18层)01+02单元。法定代表人:罗小波,该公司执行董事。被执行人:王太平,男,1978年1月30日出生,汉族,户籍地辽宁省康平县。被执行人:张颖,女,1981年9月17日出生,汉族,户籍地辽宁省康平县。本院在执行申请执行人沈阳金融商贸开发区瀚华科技小额贷款有限公司与被执行人王太平、张颖小额借款合同纠纷一案中,被执行人应给付申请执行人34370元及利息等相关费用,上述款项均未执行到位。已对被执行人名下的银行存款、房产、车辆等相关财产进行了查询,但均... | 629 | cc:Chinese-Court-Decisions |
common_corpus_French-Science-Pile | 2,021 | Magnetic Structures of Mn 11 Ta 4 O 21 and
Interpretation as an Hexagonal A-site Manganite
Cintli Aguilar-Maldonado, Eugenia Arévalo-López, Clemens Ritter, Olivier
Mentré, Angel Arévalo-López
To cite this version:
Cintli Aguilar-Maldonado, Eugenia Arévalo-López, Clemens Ritter, Olivier Mentré, Angel ArévaloLópez. Magn... | 12,063 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | namespace ESFA.DC.EAS.Interface.Constants
{
public class ReportNameConstants
{
public const string FundingReport = "EAS Funding Report";
public const string ViolationReport = "EAS Rule Violation Report";
public const string ValidationResultReport = "EAS Validation Result Report";
... | 66 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | def kw_fun(a,b,*args, **kwargs):
print('不解包可变参数打印结果【元组】'.center(80, '*'))
print(type(args))
print(args)
print('关键字参数打印结果【字典】'.center(80, '*'))
print(type(kwargs))
print(kwargs)
# kw_fun(1,2,3,4, log=True, log_level=3)#传递了关键字参数。
# kw_fun(1,2, 3, 4, {'log':True, 'log_level': 3})#并未传递关键字参数。
kw_f... | 177 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #include "hal/lora.h"
#if defined(FK_HARDWARE_FULL)
#include "hal/metal/metal_lora.h"
#endif
namespace fk {
#if defined(FK_HARDWARE_FULL)
static TheThingsLoraNetwork lora_network;
// static Rn2903LoraNetwork lora_network;
#else
static NoopLoraNetwork lora_network;
#endif
LoraNetwork *get_lora_network() {
return... | 99 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { KeyboardArrowLeft } from '@styled-icons/material/KeyboardArrowLeft'
import { KeyboardArrowRight } from '@styled-icons/material/KeyboardArrowRight'
import { StyledIcon } from '@styled-icons/styled-icon'
import { Link } from '@reach/router'
import React from 'react'
import styled from 'styled-components'
import ... | 615 | cc:Github Open Source |
common_corpus_Open-Science-Pile | 2,021 | [8] Callahan, B. J., McMurdie, P. J., Rosen, M. J., Han, A. W., Johnson, A. J. A., and Holmes, S. P. (2016).
Dada2: high-resolution sample inference from illumina amplicon data. Nature methods, 13(7):581.
[9] Cavalieri, C., Bolzoni, L., and Bandini, M. (2010). Nicotine determination in mushrooms by lc–
ms/ms with preli... | 2,736 | cc:Open-Science-Pile |
common_corpus_Github Open Source | 2,021 | import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { NbAuthJWTToken, NbAuthService } from '@nebular/auth';
@Injectable({
providedIn: 'root',
})
export class CardsService {
TOKEN: any;
cards: any;
GET_URL: string = 'http://localhost:4000/cards/get_... | 565 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 安徽省合肥市蜀山区人民法院 民 事 判 决 书 (2021)皖0104民初4154号 原告:捷信消费金融有限公司,住所地天津经济技术开发区第一大街79号泰达MSD-C区C1座26-27层,统一社会信用代码91120116636067462H。 法定代表人:OndrejFrydrych,该公司董事长。 委托诉讼代理人:孙美,安徽协利律师事务所律师。 被告:管根林,男,1983年8月12日出生,汉族,住安徽省池州市东至县。 原告捷信消费金融有限公司(以下简称捷信金融公司)诉被告管根林金融借款合同纠纷一案,本院于2021年3月24日立案后,依法适用简易程序,公开开庭进行了审理。原告捷信金融公司的委托诉讼代理人孙美到庭参加诉讼。被告管根林经... | 3,987 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | <?php
return [
'execution_notice_id' => 'お知らせ通知ID',
'execution_notice_success' => '成功/失敗フラグ',
'execution_notice_title' => '件名',
'execution_notice_content' => '内容',
'execution_notice_read' => '既読/未読フラグ',
'execution_notice_creation_date' => '作成日',
'execution_notice_last_modified_date' => '最終更... | 107 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(RolesTableSeeder::class);
$this->call(UserTableSeeder::class);
... | 158 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 青海省格尔木市人民法院 民事判决书 (2021)青2801民初504号 原告:格尔木博盛小额贷款有限公司,统一社会信用代码91632801310854394U。 法定代表人:彭某。 委托诉讼代理人:卢某,青海鑫辰律师事务所律师。 被告:任某,河南省鲁山县人,现住青海省格尔木市。 被告:李某,现住青海省格尔木市。 原告格尔木博盛小额贷款有限公司(以下简称博盛公司)与被告任某、李某借款合同纠纷一案,本院于2021年2月3日立案后,依法适用简易程序,公开开庭进行了审理。原告博盛公司的委托诉讼代理人卢某、被告任某、李某到庭参加诉讼。本案现已审理终结。 原告博盛公司向本院提出诉讼请求:1.依法判决被告任某、... | 6,945 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using Catalyst3D.XNA.Engine.AbstractClasses;
namespace LevelEditor2D.Controls
{
public partial class conKeyFrame : UserControl
{
public List<VisualObject> VisualObjects = new List<VisualObject>();
public int Fra... | 329 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import os
from EventSegmentClusterer import get_events, get_seg_similarity
from TimeWindow import TimeWindow
from TwitterEventDetector import TwitterEventDetector
# Parameters
original_tweet_dir = 'data/original_tweets/' # end with '/'
clean_tweet_dir = 'data/cleaned_tweets/without_retweets/' # end with '/'
subwindo... | 729 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import * as R from 'ramda';
import { ABSTRACT_INTERNAL_RELATIONSHIP, schemaTypes } from './general';
export const RELATION_MIGRATES = 'migrates';
export const RELATION_MEMBER_OF = 'member-of';
export const RELATION_ALLOWED_BY = 'allowed-by';
export const RELATION_HAS_ROLE = 'has-role';
export const RELATION_HAS_CAPABI... | 637 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Copyright (c) 2014 The lex Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package lex // import "github.com/skycoin/cx/goyacc/lex"
import (
"bytes"
"flag"
"fmt"
"path"
"runtime"
"strings"
"testing"
)
var trace *bool
fun... | 906 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Sweet Sweet Kingdom
From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
This article is about the battle course from Mario Kart 8 Deluxe. For the race course from both Mario Kart 8 and Mario Kart 8 Deluxe, see Sweet Sweet Canyon.
Sweet Sweet Kingdom
Information
Appearance(s) Mario Kart 8... | 433 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | import { Test, TestingModule } from '@nestjs/testing';
import { TypeOrmModule } from '@nestjs/typeorm';
import { EntityManager } from 'typeorm';
import { userMatcher } from '../testing/data.matchers';
import { dbModule } from '../testing/db.module';
import { User } from './user.entity';
import { UserService } from './u... | 496 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package net.minidev.ovh.api.dedicated.housing;
/**
* A structure describing the Bay's network configuration
*/
public class OvhIpInfo {
/**
* Reserved addresses. You should not use them in your network
*
* canBeNull
*/
public String[] reservedAddresses;
/**
* Network gateway of the bay
*
* canBeNul... | 111 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | ifeq ($(OS), Linux)
OBJOUT := $(BUILD)$(dir $(subst $(LITEOSTOPDIR),,$(shell pwd)))$(MODULE_NAME)
LOCAL_PWD := $(shell pwd)
else
OUT = $(LITEOSTOPDIR)/out/$(LITEOS_PLATFORM)
BUILD = $(OUT)/obj
OBJOUT := $(BUILD)$(dir $(subst $(LITEOSTOPDIR),,$(CURDIR)))$(MODULE_NAME)
endif
LIBA := $(OUT)/lib/lib$(MODULE_NAME).a
LIB :=... | 1,030 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
if [ $EUID != 0 ]; then
sudo "$0" "$@"
exit $?
fi
sudo apt update
sudo apt install jq -y
whiptail --title "Pihole Speedtest Mod Updater" --msgbox "Pihole Speedtest Mod Updater. \nSupport : https://github.com/arevindh/pihole-speedtest " 8 78
if (whiptail --title "Pihole Speedtest Mod Updater" --... | 368 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// dllmain.cpp
//
#include "private.h"
#include "globals.h"
#include "tim.h"
#include "imelist.h"
#include "utb.h"
#include "dam.h"
#include "catmgr.h"
#include "nuimgr.h"
#include "profiles.h"
#include "internat.h"
#include "acp2anch.h"
#include "cicmutex.h"
#include "strary.h"
#include "range.h"
#include "compart... | 2,402 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
source $TRAVIS_BUILD_DIR/.travis/common.sh
# Close the after_failure fold travis has created already.
travis_fold end after_failure
$SPACER
start_section "failure.tail" "${RED}Failure output...${NC}"
echo "Log is $(wc -l build/build.log) lines long."
echo "Displaying last 1000 lines"
echo
tail -n 1000 b... | 132 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | % Effect of peak shape on peakfit execution time
load DataMatrix3
warning off all
NumPeaks=2; % Allowed values 1-4
NumTrials=10;
disp(' ')
disp('Comparison of Gaussian peak shape variations in peakfit function:')
disp(['Number of peaks = ' num2str(NumPeaks)])
disp(' ')
PeakShape=1;
tic;[FitResults,Error]=peakfit(DataMa... | 784 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package karpuzoglu.enes.com.fastdialog;
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import java.util.ArrayList;
import... | 396 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | Sodium Glucose Cotransporter 2 Inhibitors Treatment in Acromegalic Patients
with Diabetes - A Case Series and Literature Review
Adnan Zaina
(
zaina_adnan@yahoo.com
)
Clalit Health Services
https://orcid.org/0000-0001-7482-3104
Yuval Grober
Galilee Medical Center
Ali Abid
Kupat Holim Clalit: Clalit Health Services... | 10,092 | academic |
common_corpus_Github Open Source | 2,021 | # SPDX-License-Identifier: BSD-3-Clause
#
# Copyright 2020 Raritan Inc. All rights reserved.
#
# This file was generated by IdlC from WebcamChannel.idl.
use strict;
package Raritan::RPC::webcam::Channel_1_0_1;
use parent qw(Raritan::RPC::RemoteObject);
use constant typeId => "webcam.Channel:1.0.1";
sub new {
m... | 742 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | library IEEE;
use IEEE.std_logic_1164.all;
entity dffre is
generic (
Nbit : integer := 4;
default : std_logic_vector -- default value
);
port(
clk : in std_logic ;
resetn : in std_logic ;
en : in std_logic ;
r : in std_logic... | 550 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
if (Auth::user()->show_help == 1) {
echo '<div class="app-right-top-title app-nopadding-nomargin hidden">
<h1 class="app-right-top-h1 app-right-top-h1-title">Baseline Report / '.$Faker_Student["Name"].' ('.$Faker_Student["ID"].')</h1>
<div class="app-right-top-content app-nopadding-n... | 294 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// DoraemonDemoCrashViewController.m
// DoraemonKitDemo
//
// Created by wenquan on 2018/11/5.
// Copyright © 2018 yixiang. All rights reserved.
//
#import "DoraemonDemoCrashViewController.h"
#import <DoraemonKit/UIView+Doraemon.h>
#import "DoraemonDemoCrashMRCView.h"
#import "DoraemonDefine.h"
typedef struc... | 705 | cc:Github Open Source |
common_corpus_Eurlex | 2,021 | 62019CJ0194
ROZSUDEK SOUDNÍHO DVORA (velkého senátu)
15. dubna 2021 (
*1
)
„Řízení o předběžné otázce – Nařízení (EU) č. 604/2013 – Určení členského státu příslušného k posuzování žádosti o mezinárodní ochranu – Článek 27 – Opravný prostředek – Zohlednění skutečností, které nastaly po přijetí rozhodnutí o přemístě... | 13,474 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | lsnrctl start
dbca -silent -createDatabase \
-templateName General_Purpose.dbc \
-gdbname ${ORACLE_SID} -sid ${ORACLE_SID} -responseFile NO_VALUE \
-characterSet AL32UTF8 ... | 194 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* @file
*
* $Id: PlayerControl.hpp $
* @author Bill Eggert
*/
#pragma once
#include <entityx/Entity.h>
#include <SFML/Window/Keyboard.hpp>
/**
* The component representing controls (movement, fire keys)
*/
class PlayerControl : public entityx::Component<PlayerControl>
{
public:
PlayerControl();
... | 249 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | Conflicts of Interest: The author declares no conflict of interest. Conflicts of Interest: The author declares no conflict of interest.
Funding: This research received no external funding. References 1. Browse All Publishers. SciLit. Available online: https://www.scilit.net/statistic-publishers
(accessed... | 1,341 | academic |
common_corpus_Github Open Source | 2,021 | import { unByKey } from 'ol/Observable';
import GeomType from 'ol/geom/GeometryType';
/**
* Tracker. This class stores and allows to draw trajectories on a canvas.
* @class
* @param {Object} options
* @private
*/
export default class Tracker {
/**
* @private
*/
constructor(options) {
const opts = {
... | 2,435 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | "transformPoint" method on ARKit
There is a method from Android ARCore Pose() class.
pose.inverse().transformPoint()
I am looking for alternative of this on IOS platform (swift).
Does someone know about this?
Thanks a lot.
ARKit has two useful methods:
The first one helps project a point from the 3D world coordinate... | 449 | misc_reference |
common_corpus_Github Open Source | 2,021 | <?php
defined('BASEPATH') or exit('No direct script access allowed');
class Menu extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('menu_model');
is_login();
}
public function index()
{
$data['title'] = 'Menu Managemen... | 1,062 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<div class="card-property-group">
<slot />
<uw-card-property title="" class="card-group-divider">
<hr class="my-1">
</uw-card-property>
</div>
</template>
<script>
import CardProperty from './card-property.vue';
export default {
components: {
'uw-card-property': CardProperty,
... | 93 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //===-- X86Disassembler.cpp - Disassembler for x86 and x86_64 -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 12,865 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import chai, { expect } from 'chai';
import sinon from 'sinon';
import sinonChai from 'sinon-chai';
import React from 'react';
import { createRenderer } from 'react-test-renderer/shallow';
import { shallow } from 'enzyme';
import { findAllWithClass, findAllWithType } from 'react-shallow-testutils';
import Dropdown from... | 1,684 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import assert from 'assert';
import { get } from 'lodash';
import HostFilter from "../../../src/policies/accessRestriction/HostFilter";
import { Scope } from '../../../src';
import { getTestRequest } from '../../tools';
import assertThrowsAsync from 'assert-throws-async';
const allowedHost = "allowedHost";
const denie... | 2,322 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react'
import { Text, View, StyleSheet, ViewStyle, TextStyle } from 'react-native'
import { flexRow } from '../sharedStyles/styles.layout'
import {
CLR_CLAIM_PENDING,
CLR_CLAIM_VALID,
CLR_CLAIM_REVOKED,
CLR_TXT_INVERTED,
} from '../sharedStyles/styles.consts.colors'
import { ClaimStatus } fro... | 390 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Database security
ABSTRACT
A method includes: obtaining, by a database server, security policies associated with a database hosted by the database server; obtaining, by the database server, first database data associated with the database; creating, by the database server, a knowledge distillation model using the sec... | 9,695 | formal_gov |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省开封市顺河回族区人民法院执 行 裁 定 书(2020)豫0203执843号之一申请执行人:张永喜,男,汉族,1979年11月2日出生,住郑州市郑东新区。被执行人:耿坤,男,汉族,1985年12月15日出生,住本市顺河回族区。张永喜与耿坤合同纠纷一案,本院作出的(2020)豫0203民初1298号民事判决书已发生法律效力。根据上述生效法律文书的规定,被告耿坤于本判决生效之日起十日内支付原告张永喜贴壁布施工费1200元。案件受理费25元,由被告耿坤负担。因耿坤未按上述生效法律文书履行义务,张永喜向本院申请强制执行,本院于2020年12月15日依法立案受理。在本案执行过程中,本院依法采取了下列措施:一、向被执行人发出执行通知书,责令... | 1,059 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省濮阳县人民法院民 事 裁 定 书(2021)豫0928民初1542号原告:刘会锋,男,1985年3月16日出生,汉族,住濮阳县。被告:韩科举,男,1985年3月20日出生,汉族,户籍地濮阳县,现住河南省郑州市中原区。被告:郭静静,女,1986年3月29日出生,汉族,户籍地濮阳县,现住河南省郑州市中原区。原告刘会锋诉被告韩科举、郭静静民间借贷纠纷一案,原告于2021年2月25日起诉,本院立案后受理,原告于2021年3月22日向本院提出撤诉申请。本院认为:在本案审理过程中原告王相法向本院提出撤诉,经审理,原告刘会锋申请撤诉符合有关法律规定。故依照《中华人民共和国民事诉讼法》第一百四十五条、第一百五十四条第一款第五项之规定,裁定如下... | 459 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | using System;
using System.IO;
using DiffMatchPatch;
using Newtonsoft.Json;
namespace ServicesPetriNet.Core
{
public class SimulationDiffFrameController<T> : IFrameController<T>
{
private readonly string _path;
public Frames f;
public JsonSerializerSettings JsonSettings = new JsonSeri... | 584 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省濮阳县人民法院民 事 裁 定 书(2021)豫0928民初2871号原告:高某,女,汉族,1972年02月10日出生,住濮阳县。被告:王某,男,汉族,1963年12月15日出生,住濮阳县。原告高某诉被告王某离婚纠纷一案,本院于2021年04月07日向原告送达交纳诉讼费通知书,原告在收到通知书后七日内未交纳诉讼费。本院认为,原告高某诉被告王某离婚纠纷一案,原告申请立案后未在本院规定的期间内交纳诉讼费用,应当按撤诉处理,故根据《中华人民共和国民事诉讼法》第一百一十八条、《诉讼费用交纳办法》第二十二条、《最高人民法院关于适用的解释》第二百一十三条之规定,裁定如下:按原告高某撤诉处理。审判员 : 刘 伟二〇二一年四月二十六日书记员 :... | 393 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | Shader "HeatMap/HeatMap5Color"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
}
SubShader
{
Tags { "RenderType"="Opaque" }
LOD 100
Pass
{
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// make fog work
#pragma multi_compile_fog
#include "UnityCG.cginc"
struct appdat... | 712 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | @import '~styles/layout.scss';
.dataZoom {
position: relative;
margin-top: 20px;
margin-bottom: 32px;
z-index: $z-index-over-base;
.selector {
position: absolute;
display: flex;
width: calc(100% - 10px);
height: 100%;
margin: 0 5px;
.handle {
z-index: $z-index-over-base;
... | 331 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.mindspore.himindspore.ui.college.adapter;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android... | 2,009 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # Copyright (c) 2020, NVIDIA CORPORATION. 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 appli... | 1,577 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 江苏省南通市崇川区人民法院 民 事 判 决 书 (2021)苏0602民初1589号 原告:符馨月,女,1976年9月16日出生,汉族,住南通市崇川区。 委托诉讼代理人:陈品德,江苏海越(南通)律师事务所律师。 被告:前海人寿保险股份有限公司南通分公司,统一社会信用代码91320600MA1MJYUU1T,住所地南通市崇川区工农南路156号鑫乾国际广场A16层。 负责人:单云峰。 委托诉讼代理人:蔡静,系该公司员工。 委托诉讼代理人:王道靖,系该公司员工。 原告符馨月与被告前海人寿保险股份有限公司南通分公司工伤保险待遇纠纷一案,本院于2021年2月20日立案后,依法适用简易程序,公开开庭进行了审理。原告符馨月及其委托诉讼代理人陈品德... | 4,211 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import argparse
import numpy as np
from scipy.misc import imread, imresize, imsave
import torch
from torch.autograd import Variable
parser = argparse.ArgumentParser()
parser.add_argument(
'--model', '-m', required=True, type=str, help='path to model')
parser.add_argument(
'--input', '-i', required=True, type... | 670 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | var today = new Date();
var param_from = getParameterByName('from');
var param_to = getParameterByName('to');
var config = {
format: 'yyyy-mm-dd',
weekStartDay: 1,
calendarWeeks: true,
uiLibrary: 'bootstrap',
iconsLibrary: 'fontawesome'
};
var currentURL = window.location.href;
if ((currentURL.se... | 2,856 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<div class="pill-form">
<label
v-html="displayLabel(label)"
class="pill-label"
:for="forId(label, id)"
></label>
<span class="pill-content">
<input
:id="forId(label, id)"
:value="value"
type="range"
:min="min"
:max="max"
@i... | 632 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<form @submit.prevent="addChanges">
<form-group label="Loan ID">
<div class="asterisk_label">*</div>
<input class="form-control input-sm" name="loan id" type="text" placeholder="Loan ID"
v-model="changes.loan_id" v-validate="'required'" :... | 2,019 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 上海市宝山区人民法院执 行 裁 定 书(2021)沪0113执2374号申请执行人:杨铭杰,男,1988年10月31日出生,汉族,户籍地浙江省。被执行人:朱天宇,男,1996年12月9日出生,汉族,户籍地安徽省。原告杨铭杰与被告朱天宇买卖合同纠纷一案,本院于2020年11月5日作出(2020)沪0113民初7326号民事判决书,已经发生法律效力。权利人杨铭杰于2021年3月16日向本院申请执行,要求义务人支付欠款人民币45,600元及利息、律师费5,000元、诉讼费470元、公告费560元。本院受理后,于2021年3月18日向被执行人发出执行通知,责令其履行义务。但被执行人至今未能履行。本案经执行查明,被执行人朱天宇下落不明,名下无... | 889 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | # -*- coding:utf-8 -*-
# Copyright (C) 2020. Huawei Technologies Co., Ltd. All rights reserved.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the MIT License.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the ... | 1,562 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 河南省洛阳市涧西区人民法院民 事 判 决 书(2021)豫0305民初87号原告:阳光财产保险股份有限公司洛阳中心支公司,住所地:洛阳市涧**黄河路南段地久商务大厦。负责人:郑善芳,总经理。委托诉讼代理人:胡泽宇,河南豫龙律师事务所律师,代理权限:特别授权。被告:马友春,女,1967年06月13日出生,汉族,住成都市新都区,现住河南省洛阳市西工区。原告阳光财产保险股份有限公司洛阳中心支公司诉被告马友春为保证保险合同纠纷一案。本院于2021年1月5日立案后,依法适用简易程序,公开开庭进行了审理。原告阳光财产保险股份有限公司洛阳中心支公司的委托诉讼代理人胡泽宇到庭参加了诉讼。经本院依法传唤,被告马友春无正当理由拒不到庭参加诉讼,本院依法... | 2,956 | cc:Chinese-Court-Decisions |
common_corpus_UK Hansard – House of Lords | 2,021 | I am happy to write to the noble Lord and address any other points that he wishes to make. The Investigatory Powers Act allows police to acquire communications data such as an email address and the location of the device from which illegal anonymous abuse is sent, which can be used as evidence in court. We hope that th... | 72 | cc:UK Hansard – House of Lords |
common_corpus_Github Open Source | 2,021 | package top.wsure.common.functions;
/**
* FileName: Interval
* Author: wsure
* Date: 2021/4/22 3:18 下午
* Description:区间
*/
@FunctionalInterface
public interface Interval<S,E,V> {
V acquire(S start,E end);
}
| 65 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 上海市长宁区人民法院执 行 裁 定 书(2021)沪0105执恢249号申请执行人:上海浦东发展银行股份有限公司长宁支行,住所地上海市长宁区。负责人:周明强,行长。委托诉讼代理人:吴懂,上海瑾之润申达律师事务所律师。委托诉讼代理人:方芳,上海瑾之润申达律师事务所律师。被执行人:谢燕云,女,1980年01月20日生,汉族,户籍地广东省汕头市。申请执行人上海浦东发展银行股份有限公司长宁支行与被执行人谢燕云信用卡纠纷一案,依本院(2019)沪0105民初25022号民事判决,于2021年2月1日向本院申请执行,要求被执行人谢燕云向申请执行人上海浦东发展银行股份有限公司长宁支行支付信用卡欠款本金及利息等共计621,979.53元。本院于20... | 1,160 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 |
# Copyright (c) 2011, Hua Huang and Robert D. Cameron.
# Licensed under the Academic Free License 3.0.
def GetResult(fw, j, data):
arg1 = data[0]
(i, sz, ans) = (0, len(arg1), "")
i = sz - (j+1)*fw
ans = arg1[i:i+fw] * int(sz/fw)
return ans
| 94 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright (c) 2016. Ian Michell
*/
package com.pungwe.cms.core.system.admin;
import com.pungwe.cms.config.TestConfig;
import com.pungwe.cms.core.config.BaseApplicationConfig;
import com.pungwe.cms.test.AbstractControllerTest;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.junit.Test;
impor... | 1,109 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | const IxgbeDevice = require('./src/ixgbeDevice');
const stats = require('./src/stats');
let BATCH_SIZE = 32;
function forward(rx_dev, rx_queue, tx_dev, tx_queue) {
const bufs = new Array(BATCH_SIZE);
const num_rx = rx_dev.ixy.rx_batch(rx_queue, bufs, BATCH_SIZE);
if (num_rx > 0) {
// touch all packets, oth... | 659 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | class BingoBoard:
def __init__(self) -> None:
self.board = []
self.markedNums = 0
def __repr__(self) -> str:
ret = ''
for line in self.board:
for num in line:
ret += num + ' '
ret += '\n'
return ret
def check_value(self, val:... | 634 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | ORIGINAL RESEARCH
published: 10 December 2021
doi: 10.3389/fcvm.2021.785587 Development and Validation of a
Prediction Model for Irreversible
Worsened Cardiac Function in
Patients With Acute Decompensated
Heart Failure Lei Wang and Yun-Tao Zhao*
Department of Cardiology, Aerospace Center Hospital, Beijing, China Lei Wa... | 10,477 | academic |
common_corpus_USPTO | 2,021 | Systems and methods of tracking the delivery and post-delivery status for electromagnetically transmissible contents delivered via user initiated and controlled hybrid delivery modes with the continuing interplay of an address-linked machine-readable code system
ABSTRACT
The present invention discloses a network comm... | 9,522 | formal_gov |
common_corpus_StackExchange | 2,021 | $\lim_{n\to\infty} \sqrt[n]{\sum_{k =0}^n \binom{n}{k}^t} .$
I'm trying to find the following limit for $t\geq1$
$$\lim_{n\to\infty} \sqrt[n]{\sum_{k =0}^n \binom{n}{k}^t}.$$
I suspect this can be solved using generating functions but did not make any headway.
Looking at this thread, Combinatorial proof of summation of... | 538 | misc_reference |
common_corpus_Eurlex | 2,021 | Le cadre juridique
2
Aux termes du considérant 64 du règlement (UE) no 806/2014 du Parlement européen et du Conseil, du 15 juillet 2014, établissant des règles et une procédure uniformes pour la résolution des établissements de crédit et de certaines entreprises d’investissement dans le cadre d’un mécanisme de ... | 13,546 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | import 'package:more/collection.dart' show BitList;
import '../type.dart';
const _trueStrings = ['true', 't', 'yes', 'y', '1'];
const _falseStrings = ['false', 'f', 'no', 'n', '0'];
class BooleanDataType extends DataType<bool> {
const BooleanDataType();
@override
String get name => 'boolean';
@override
b... | 221 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
using System.Text;
using Moq;
using NUnit.Framework;
namespace StatsdClient.Tests
{
[TestFixture]
public class UnitTests
{
private IStatsdUDP _udp;
private IRandomGenerator _randomGenerator;
private IStopWatchFactory _stopwatch;
[SetUp]
public void Se... | 11,476 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Simulate "shift" pressing key on checkbox to select multiple rows
I have the following input
<input type="checkbox" checked={isChecked}
onChange={handleOnChange}/>
and my function is this
const handleOnChange = () => {
let element:any = document.querySelector('input');
element.onkeydown = (e: { key: any; }) =... | 593 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省商河县人民法院 民 事 判 决 书 (2021)鲁0126民初1323号 原告:山东商河农村商业银行股份有限公司常庄支行,住所地商河县龙桑寺镇常庄街。 主要负责人:张虎,行长。 委托诉讼代理人:徐兆杰,男,该单位员工。 委托诉讼代理人:王永来,男,该单位员工。 被告:刘连华,男,1973年4月16日出生,汉族,居民,住商河县。 被告:郅相翠,女,1971年9月26日出生,汉族,居民,住商河县。 被告:郅敏,男,1988年10月10日出生,汉族,居民,住商河县。 被告:刘连国,男,1975年12月6日出生,汉族,居民,住商河县。 原告山东商河农村商业银行股份有限公司常庄支行(以下简称常庄支行)与被告刘连华、郅相翠、郅敏、刘连国金... | 2,654 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /*
* Copyright Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... | 2,419 | cc:Github Open Source |
common_corpus_French-Science-Pile | 2,021 | 3.3 Effect of lime treatment and aggregate size on compression behaviour
To compare the effects of lime treatment and maximum aggregate size on the compression behaviour, the compression index and oedometer modulus against vertical stress are plotted in Fig. 8. From Figs. 8a and 8b, it was observed that for the as-com... | 11,671 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | package io.cucumber.json;
import io.cucumber.java.en.Given;
public class StatusesStepDefinitions {
@Given("a passed step")
public void a_passed_step() {
// no-op
}
@Given("a pending step")
public void a_pending_step() throws io.cucumber.java.PendingException {
throw new io.cucumber.java.PendingEx... | 133 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react';
import { withPrefix, Link } from 'gatsby';
import styles from './Author.module.scss';
const Author = ({ author }) => (
<div className={styles['author']}>
<Link to='/'>
<img
src={withPrefix(author.photo)}
className={styles['author__photo']}
width='150'
... | 255 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | """
文件读取。YamlReader读取yaml文件,ExcelReader读取excel。
"""
import yaml
import os
from xlrd import open_workbook
class YamlReader:
def __init__(self, yamlf):
if os.path.exists(yamlf):
self.yamlf = yamlf
else:
raise FileNotFoundError('文件不存在!')
self._data = None
@property... | 742 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 吉林省延边朝鲜族自治州中级人民法院结 案 通 知 书(2021)吉24执保31号申请人(原告):延边家乐建筑工程有限公司,住所地吉林省延吉市。法定代表人:曹刘芹,该公司执行董事。委托诉讼代理人:许芝境,山东德衡(济南)律师事务所律师。被申请人(被告):珲春市宏伟房地产开发有限公司,住所地吉林省珲春市。法定代表人:穆林,总经理。根据本院于2021年4月9日作出的(2021)吉24民初29之二号民事裁定,本院执行局已经于2021年4月23日到保全财产所在地吉林省珲春市不动产登记中心送达了(2021)吉24民初29号之二民事裁定书和(2021)吉24执保31号协助查封通知书,依法查封(2021)吉24民初29之二民事裁定书所记载的裁定主文... | 573 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /*
* Copyright (C) 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | 209 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package mail
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/thedevsir/frame-backend/services/utils"
)
func TestTemplates(t *testing.T) {
utils.Composer("../../../.env")
t.Run("Verify", func(t *testing.T) {
verifyBody := Verify{
Username: "fakeUser",
EmailAddress: "fakeEmail",
... | 203 | cc:Github Open Source |
common_corpus_French Open Data | 2,021 | La ministre de la transition écologique, le ministre de l'économie, des finances et de la relance et la ministre déléguée auprès du ministre de l'économie, des finances et de la relance, chargée de l'industrie, sont chargés, chacun en ce qui le concerne, de l'exécution du présent décret, qui sera publié au Journal of... | 103 | cc:French Open Data |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
: '
/**
* © Copyright (C) 2016-2020 Xilinx, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may
* not use this file except in compliance with the License. A copy of the
* License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable ... | 765 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { resolveUrl, fileSystemPathToUrl } from "@jsenv/filesystem"
import { require } from "./require.js"
import { jsenvCoreDirectoryUrl } from "./jsenvCoreDirectoryUrl.js"
export const jsenvHelpersDirectoryInfo = {
url: resolveUrl("./helpers/", jsenvCoreDirectoryUrl),
}
export const jsenvNodeSystemFileInfo = {
... | 948 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Storing Chinese Characters in mysql
Im trying to store chinese characters to mysql database but am unable to.
Changed characterset for the table to utf8 and utf8mb4
Table looks something like this
id bigint(20) NO PRI auto_increment
version bigint(20) YES
country varchar(255) YES
englishNa... | 697 | misc_reference |
common_corpus_Github Open Source | 2,021 | "use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var Delay_1 = __importDefault(require("../Delay"));
var CatchError_1 = __importDefault(require("../Catch... | 389 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_SoftwareElement",,48)
For Each objItem in colItems
Wscript.Echo "Attributes: " & objItem.Attributes
Wscript.Echo "BuildNumber: " & objItem... | 370 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | " util.vim: part of editorconfig-core-vimscript
let s:saved_cpo = &cpo
set cpo&vim
" A verbatim copy of ingo#fs#path#Separator() {{{1
" from https://github.com/vim-scripts/ingo-library/blob/558132e2221db3af26dc2f2c6756d092d48a459f/autoload/ingo/fs/path.vim
" distributed under the Vim license.
function! editorconfig_... | 699 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | # Implementation of Randomised Selection
"""
Naive Approach
---------
Parameters
---------
An arry with n distinct numbers
---------
Returns
---------
i(th) order statistic, i.e: i(th) smallest element of the input array
---------
Time Complexity
---------
O(n.log... | 363 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | Editors Editors
Niklas Elmqvist, University of Maryland
David S. Ebert, University of Oklahoma Synthesis Lectures on Visualization publishes 50- to 100-page publications on topics pertaining to
scientific visualization, information visualization, and visual analytics. Potential topics include, but
are not limited to: sc... | 9,862 | academic |
common_corpus_Github Open Source | 2,021 | <?php
namespace TecSecret\BrazilCustomerAttributes\Config\Backend;
use Magento\Framework\App\Cache\TypeListInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\Config\Value as ConfigValue;
use Magento\Framework\Data\Collection\AbstractDb;
use Magento\Framework\Model\Context;
use... | 538 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import gym
import pybullet as p
import numpy as np
from gym_delta_robot_trampoline.resources.delta_robot_trampoline import Omnid_Simulator
import matplotlib.pyplot as plt
import os
import pybullet_data
"""
Action space (1,3) : [theta_1_torque, theta_2_torque, theta_3_torque]
Observation space (1,18) : [3 joint_positio... | 1,095 | cc:Github Open Source |