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
from __future__ import absolute_import, division, print_function __metaclass__ = type from ansible.module_utils import basic from ansible_collections.sodalite.hpc.plugins.modules import slurm_job_info from mock import patch import pytest from .utils import ( AnsibleExitJson, AnsibleFailJson, TestHPCModule, set_mo...
512
cc:Github Open Source
common_corpus_StackExchange
2,021
On the $G$-conjugacy and $C_G(x)$-conjugacy Let $G$ be a finite group and $S=\{g_{1}, g_{2},...,g_{k}\}$ be a system of representatives for its conjugacy classes. For $1\leq i\leq k$, let $C_G(g_{i}):=\{x\in G | xg_{i}=g_{i}x \}$ be the centralizer of $g_{i}$. How could we obtain from $S$ a system of representatives f...
319
misc_reference
common_corpus_Github Open Source
2,021
/*- * #%L * Web resources * %% * Copyright (C) 2005 - 2020 Daniel Sagenschneider * %% * 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-...
441
cc:Github Open Source
common_corpus_Github Open Source
2,021
#!/bin/bash socat -d -d -d TCP-LISTEN:${SOCAT_LISTEN_PORT},fork,forever,reuseaddr,keepalive,keepidle=10,keepintvl=10,keepcnt=2 TCP:${SOCAT_DEST_ADDR}:${SOCAT_DEST_PORT} & xvfb-daemon-run /opt/IBController/scripts/displaybannerandlaunch.sh
82
cc:Github Open Source
common_corpus_Github Open Source
2,021
import re from collections import namedtuple from enum import Enum from typing import Dict, List class Axis: AxisInfo = namedtuple("AxisInfo", ["label", "type", "address", "address_hex"]) class Type(Enum): DAC = "d" FILTER_WHEEL = "w" LENS = "b" LOGIC = "g" MICRO_MIRR...
344
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
吉林省梨树县人民法院结 案 通 知 书(2021)吉0322执保252号申请人四平市汇元融资担保有限公司与被申请人赫星宇、顾珂铭追偿权纠纷一案,本院做出(2021)吉0322民初1921号民事裁定书,裁定查封被申请人赫星宇名下位于四平市铁西区宏信莱茵河畔小区37号楼2单元6层03号、04号、07号房屋的房籍(总价值71万元部分),其中03号价值21万元部分,04号价值25万元部分,07号价值25万元部分,并交由本院执行部门立案执行。在执行过程中,本院到四平市不动产登记中心,经其工作人员查询四平市不动产登记中心电子房屋登记信息结果为,赫星宇现无房屋登记信息,所以该案无标的物可实施保全。故依照最高人民法院印发《关于执行案件立案、结案若干...
402
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import { container, InjectionToken } from "tsyringe"; import { STORAGE_PROVIDER } from "../../../../config/providers"; import { LocalStorageProvider } from "./implementations/LocalStorageProvider"; import { IStorageProvider } from "./IStorageProvider"; interface IStorageMap { [key: string]: InjectionToken<IStorageP...
105
cc:Github Open Source
common_corpus_Github Open Source
2,021
var passed = true; try { eval("new.target;"); passed = false; } catch(e) {} test(passed, true, "new.target cannot be called in global scope"); passed = true; try { eval("eval(\"eval('new.target;')\")"); passed = false; } catch(e) { passed = e instanceof SyntaxError; } test(passed, true, "new.targ...
750
cc:Github Open Source
common_corpus_Github Open Source
2,021
public class ImplementPow { public double myPow(double x, int n) { double res; if (n < 0) { double p = pow(x, -n); res = 1 / p; } else { res = pow(x, n); } return Math.round(res * 100000d) / 100000d; } private double pow(double x, int n) { if (n == 0) { return 1;...
165
cc:Github Open Source
common_corpus_UK Hansard – House of Commons
2,021
One of the times that women most engage with healthcare services is when they are pregnant. My constituent Michelle, a qualified midwife, has contacted me, talking specifically about the importance of retention in midwifery and highlighting the crisis that she says there is. What is my hon. Friend doing to make sure th...
78
cc:UK Hansard – House of Commons
common_corpus_Github Open Source
2,021
[[cat-snapshots]] === cat snapshots The `snapshots` command shows all snapshots that belong to a specific repository or multiple repositories. To find a list of available repositories to query, the command `/_cat/repositories` can be used. Querying the snapshots of a repository named `repo1` then looks as follows. [s...
608
cc:Github Open Source
common_corpus_Github Open Source
2,021
// SetFontAction.h #ifndef SET_FONT_ACTION_H #define SET_FONT_ACTION_H #include "TextAction.h" class SetFontAction : public TextAction { public: SetFontAction(TextState* state, TextStroke* modifier); virtual ~SetFontAction(); virtual status_t Perform(CanvasView* view); virtual status...
126
cc:Github Open Source
common_corpus_Github Open Source
2,021
# Extract a mapbox isochrone and test whether a set of x,y coordinates are in or out of the isochrone. library(httr) library(tidyverse) library(jsonlite) library(sf) library(ggthemes) my_mapbox_token <- "<YOUR MAPBOX TOKEN>" test_xy <- c(-71.122190, 42.373850) within_xy <- c("-71.065700","42.362130") outside_xy <- c...
1,189
cc:Github Open Source
common_corpus_Github Open Source
2,021
package typingsSlinky.arcgisJsApi.esri 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 HistogramViewModelProperties extends StObject { /** * The stati...
758
cc:Github Open Source
common_corpus_Github Open Source
2,021
using System; using System.Collections.Generic; using FluentEvents.Plugins; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Moq; using NUnit.Framework; namespace FluentEvents.Azure.SignalR.UnitTests { [TestFixture] public class FluentEventsPluginOptionsExtension...
501
cc:Github Open Source
common_corpus_French-Science-Pile
2,021
Sensitivity of the Seismic Moment Released During Fluid Injection to Fault Hydromechanical Properties and Background Stress HAL is a multi-disciplinary open access archive for the deposit and dissemination of scientific research documents, whether they are published or not. The documents may come from teaching and res...
10,677
cc:French-Science-Pile
common_corpus_Github Open Source
2,021
/* * Copyright 2013-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
820
cc:Github Open Source
common_corpus_Github Open Source
2,021
import pytest import pandas as pd import os import random import numpy as np import shutil from src.model import GoldenRetriever from src.kb_handler import kb, kb_handler from sklearn.model_selection import train_test_split CONN_STR = os.environ['CONN_STR'] def test_make_query(): gr = GoldenRetriever() kbh...
1,621
cc:Github Open Source
common_corpus_StackExchange
2,021
How to optimize coding numbers game? I want to construct a number with given 6+ inputs. For example if i want to achieve number 280 with inputs [2,4,5,10,30,50,66] i want it to return a string like this: ((2+5) * 4 * 10). I can use input numbers only one time per solution. I wrote a code which basically does; 1- Store ...
823
misc_reference
common_corpus_Github Open Source
2,021
# Copyright (c) 2015 - present Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. import util import gene...
390
cc:Github Open Source
common_corpus_Github Open Source
2,021
'' FreeBASIC binding for CUnit-2.1-3 '' '' based on the C header files: '' CUnit - A Unit testing framework library for C. '' Copyright (C) 2001 Anil Kumar '' Copyright (C) 2004-2006 Anil Kumar, Jerry St.Clair '' '' This library is free software; you can redistribute it and/or '' modify it under the te...
449
cc:Github Open Source
common_corpus_Github Open Source
2,021
jobs (incl. supersource/sink ): 102 RESOURCES - renewable : 2 R - nonrenewable : 4 N - doubly constrained : 0 D ************************************************************************ PRECEDENCE RELATIONS: jobnr. #modes #successors successors 1 1 10 2 4 5 6 8 9 10 11 16 19 ...
17,303
cc:Github Open Source
common_corpus_OpenAlex
2,021
Strong Margin Influence on the Arctic Ocean Barium Cycle Revealed by Pan-Arctic Synthesis Laura M. Whitmore, Alan M. Shiller, Tristan J. Horner, Yang Xiang, Maureen E. Auro, Dorothea Bauch, Frank Dehairs, Phoebe J. Lam, Jingxuan Li, Maria T. Maldonado, et al. To cite this version: Laura M. Whitmore, Alan M. Shiller, Tr...
49,678
academic
common_corpus_Chinese-Court-Decisions
2,021
广西壮族自治区融安县人民法院 行 政 裁 定 书 (2021)桂0224行审2号 申请执行人:柳州市融安生态环境局,住所地:柳州市融安县长安镇新民****。统一社会信用代码:11450200MB1E038397。 负责人:龙东传,局长。 委托代理人:蓝林,该局干部。 被申请人:融安县宏祥页岩砖厂,住,住所地:柳州市融安县长安镇珠玉村富用屯一社会信用代码92450224MA5L3QRA68。 法定代表人:李国祥,厂长。 申请执行人柳州市融安生态环境局于2020年11月10日向本院申请强制执行于2018年11月12日作出的融环罚(2018)18号《融安县环境保护局行政处罚决定书》,执行内容:对融安县宏祥页岩砖厂处以700000元罚款。本...
2,206
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
安徽省合肥市包河区人民法院 民 事 裁 定 书 (2021)皖0111民初8456号 原告:安徽捷宇科技发展有限公司,住所地安徽省合肥市徽州大道东方广场8座904,统一社会信用代码913401003280989611(1-1)。 法定代表人:郑炜昊,该公司总经理。 委托诉讼代理人:杨浩然,该公司员工。 被告:魏彬,男,汉族,1990年11月15日出生,住安徽省宣城市宣州区。 原告安徽捷宇科技发展有限公司与被告魏彬买卖合同纠纷一案。本案在审理过程中,原告于2021年5月25日向本院申请撤诉。经审查,原告的撤诉申请符合法律规定。据此,依照《中华人民共和国民事诉讼法》第一百四十五条第一款规定,裁定如下: 准许原告安徽捷宇科技发展有限公司撤...
428
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
using Shop.Entities.Concrete; using System.Data.Entity; namespace Shop.Core.Tests.Db.EntityFramework.Configuration { class CoreTestContext : DbContext { public DbSet<Category> Categories { get; set; } public CoreTestContext() : base("ShopContext") { Database.SetInitializer...
75
cc:Github Open Source
common_corpus_Github Open Source
2,021
import React from 'react'; export const DownIcon = (props: any) => ( <svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="1em" height="1em" {...props} > <path fill="currentColor" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941...
257
cc:Github Open Source
common_corpus_Github Open Source
2,021
import torch from torch import nn class AutoEncoderLayer(nn.Module): def __init__(self, input_dim, output_dim, training=True, xavier_init=True): super(AutoEncoderLayer, self).__init__() self.in_features = input_dim self.out_features = output_dim self.is_training = training ...
531
cc:Github Open Source
common_corpus_Github Open Source
2,021
#!/bin/sh # PROVIDE: master # REQUIRE: DAEMON # BEFORE: LOGIN # KEYWORD: shutdown # Add the following lines to /etc/rc.conf to enable master: # # master_enable="YES" # master_flags="<set as needed>" # # See master(8) for flags # . /etc/rc.subr name=master rcvar=master_enable load_rc_config $name : ${master_enable:...
257
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
上海市浦东新区人民法院民 事 判 决 书(2021)沪0115民初43121号原告:深圳前海微众银行股份有限公司,住所地广东省深圳市。法定代表人:顾敏,董事长。委托诉讼代理人:刘剑锋,上海市罗顿律师事务所律师。委托诉讼代理人:江家红,上海市罗顿律师事务所律师。被告:李永刚,男,1984年2月23日出生,汉族,住内蒙古自治区。原告深圳前海微众银行股份有限公司与被告李永刚金融借款合同纠纷一案,本院于2021年5月6日立案后,依法适用简易程序,公开开庭进行了审理。原告深圳前海微众银行股份有限公司的委托诉讼代理人刘剑锋到庭参加诉讼,被告李永刚经本院依法传票传唤未到庭应诉,本院依法进行缺席审理。本案现已审理终结。原告深圳前海微众银行股份有限公...
5,658
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
南通市通州区人民法院财 产 保 全 结 果 通 知 书(2021)苏0612执保683号南通宏成建筑机械租赁有限公司:本院在审理你与王林财产保全一案中,根据你提出的财产保全申请,已依法采取了下列财产保全措施:冻结了被申请人王林,中信银行两个账户,共计冻结金额1.69元;财付通支付科技有限公司一个账户,实际冻结金额150.24元;冻结时间自2021年5月26日至2022年5月26日止。按照有关规定,人民法院冻结被申请人的银行存款及其他资金的期限不得超过一年,查封、扣押动产的期限不得超过两年,查封不动产、冻结其他财产权的期限不得超过三年。申请人申请延长期限的,人民法院续行保全的期限不得超过前款规定期限。你方若需延长查封、扣押、冻结财产的...
447
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
#ifndef NULLSPACE_RENDER_LAYER_H_ #define NULLSPACE_RENDER_LAYER_H_ namespace null { enum class Layer { BelowAll, Background, AfterBackground, Tiles, AfterTiles, Weapons, AfterWeapons, Ships, AfterShips, Explosions, Gauges, AfterGauges, Chat, AfterChat, TopMost, Count }; } // namesp...
91
cc:Github Open Source
common_corpus_French Open Data
2,021
LA COUR DE CASSATION, DEUXIÈME CHAMBRE CIVILE, a rendu l'arrêt suivant : <br/> <br/> <br/>CIV. 2<br/> <br/>CM<br/> <br/> <br/> <br/>COUR DE CASSATION<br/>______________________<br/> <br/> <br/>Audience publique du 11 mars 2021<br/> <br/> <br/> <br/> <br/>Rejet<br/> <br/> <br/>M. PIREYRE, président<br/> <br/> <br/> <br/...
2,776
cc:French Open Data
common_corpus_Github Open Source
2,021
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.compute.v2019_11_01.implementation; import com.m...
490
cc:Github Open Source
common_corpus_StackExchange
2,021
How a HDFS directory by year month and day is created? Following the question in this link, there is another question about the creating the directory on Hadoop HDFS. I am new to Hadoop/Flume and I have picked up a project which use Flume to save csv data into HDFS. The setting for the Flume sink will be as follows: co...
329
misc_reference
common_corpus_Chinese-Court-Decisions
2,021
浙江省云和县人民法院 执 行 裁 定 书 (2020)浙1125执532号之一 申请执行人:浙江泰隆商业银行股份有限公司丽水云和支行。住所地云和县浮云街道中山路**,同意社会信用代码91331125589031423E。 负责人:项光庆,系该行行长。 委托代理人:王若楠,系该行员工。 委托代理人:杨玲玲,系该行员工。 被执行人:叶绍少,男,1983年11月09日出生,汉族,住浙江省云和县。 被执行人:马丽芬,女,1986年12月14日出生,汉族,住浙江省景宁畲族自治县。 被执行人:王连伟,男,1983年3月19日出生,汉族,住浙江省云和县。 申请执行人浙江泰隆商业银行股份有限公司丽水云和支行与被执行人叶绍少、马丽芬、王连伟金融借款合...
1,857
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import { SyntaxColors } from '../../types/colors-types'; const tsColors: SyntaxColors = (tokens) => { return [ /** * Classes */ { name: 'Typescript: Class', scope: ['new.expr.ts entity.name.type.ts'], settings: tokens.class.name }, { name: 'Typescript: Language clas...
297
cc:Github Open Source
common_corpus_Github Open Source
2,021
package daggerok; import io.vavr.Tuple; import io.vavr.collection.HashMap; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import java.util.Map; import java.util.function.Function; @SpringBootA...
130
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
福建省南靖县人民法院民 事 裁 定 书(2021)闽0627民初15号申请人:漳州市凯华机械有限公司,住所地福建省漳州市南靖县山城镇鸿钵村,统一社会信用代码:913506273156623329。法定代表人:袁小华,董事长兼总经理。委托诉讼代理人:王振华,福建宣法律师事务所律师。委托诉讼代理人:陈佳玲,福建宣法律师事务所实习律师。被申请人:周松才,男,1981年12月17日出生,汉族,居民,住江西省鄱阳县。本院在审理原告漳州市凯华机械有限公司与被告周松才民间借贷纠纷一案中,申请人漳州市凯华机械有限公司于2021年1月6日向本院提出财产保全申请,请求冻结被申请人周松才银行机构存款(以200000元为限)。华安财产保险股份有限公司向本院...
703
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
// [[[[INFO> // Copyright 2015 Epicycle (http://epicycle.org, https://github.com/open-epicycle) // // 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...
2,070
cc:Github Open Source
common_corpus_Github Open Source
2,021
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
962
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
广东省东莞市第三人民法院执 行 裁 定 书(2021)粤1973执10984号之一申请执行人:东莞珂劲电子有限公司,住所地为广东省东莞市塘厦镇沙湖大道南222号一楼。法定代表人:黄翠连。被执行人:深圳市美莱恒鑫电子有限公司,住所地为广东省深圳市宝安区福海街道新和社区新和同富裕工业区14号四层东。法定代表人:韦全芳。执行申请一、执行依据:本院(2020)粤1973民初10448号民事判决书。二、立案执行日期:2021年7月8日。三、申请执行的债权情况:被执行人应向申请执行人支付货款370816.17元及利息,支付保险费1892.71元,并负担受理费及保全费9410元。执行情况在执行过程中,本院向被执行人发出执行通知书,责令其在限期内履...
853
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import SwipeableViews from 'react-swipeable-views'; import { useTheme } from '@material-ui/core/styles'; import { Helmet } from "react-helmet"; import { Grid, AppBar, Divider, Tabs, Tab, Typography, Box...
2,215
cc:Github Open Source
common_corpus_Github Open Source
2,021
class Api::V1::AuthController < ApplicationController def create user = User.find_by(email: params[:user][:email]) if user && user.authenticate(params[:user][:password]) token = encode_token({ user_id: user.id }) render json: { user: UserSerializer.new(user), jwt: token }, status: :accepted e...
125
cc:Github Open Source
common_corpus_Github Open Source
2,021
package com.example.kafkaeventalarm.manager; import java.time.Duration; import java.time.Instant; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Function; im...
1,662
cc:Github Open Source
common_corpus_Github Open Source
2,021
<template> <v-container fluid> <v-dialog v-model="helpDialog" scrollable persistent :overlay="false" max-width="700px" transition="dialog-transition" > <v-card> <v-toolbar color="primary" dark > <v-toolbar-title> ...
1,558
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
江西省黎川县人民法院 行 政 裁 定 书 (2021)赣1022行审92号 申请人:黎川县自然资源局,住所地黎川县日峰镇日峰路29号华港院内。 法定代表人:吴武才,局长。 被申请人:涂文斌,地址黎川县。 申请人与被申请人土地行政处罚非诉审查一案,申请人于2021年4月14日向本院申请强制执行。本院于2021年4月14日受理后,依法组成合议庭进行了审查,在审查过程中,申请人以移送的材料存在瑕疵为由于2021年4月15日向本院提出撤回执行申请。 本院认为,申请人撤回执行申请,符合法律规定,且不存在损害公共利益和他人合法权益的情形,应予准许。依照《最高人民法院关于适用若干问题的解释》第一百零一条第一款第(十五)项的规定,裁定如下: 准予申...
490
cc:Chinese-Court-Decisions
common_corpus_StackExchange
2,021
CGA Representation of an Ellipse In conformal geometric algebra (CGA), I know the representation of a circle $s$ with center $c$ is: $$ S = H(c) - \frac{1}{2}r^2n_{\infty} $$ That $H(c)$ is the representation of $c$ (i.e., $n_0 + c +‌ \frac{1}{2}c^2n_\infty$). Notice that $n_\infty$ is also denoted by $e_\infty$. Now m...
397
misc_reference
common_corpus_Eurlex
2,021
C_2022109ES.01003501.xml 7.3.2022    ES Diario Oficial de la Unión Europea C 109/35 Auto del Tribunal General de 20 de diciembre de 2021 — Première Vision/EUIPO — Vente-Privee.com (PV) (Asunto T-836/19) (1) (2022/C 109/46) Lengua de procedimiento: francés El Presidente de la Sala Quinta ha resue...
144
cc:Eurlex
common_corpus_Github Open Source
2,021
<section class="content-header"> <h1> Data Pegawai </h1> <ol class="breadcrumb"> <li class="active">Dashboard</li> <li class="active">Data Pegawai</li> <li class="active">Tambah Data</li> </ol> </section> <section class="content"> <div class="box box-primary"> <div class="box-heade...
874
cc:Github Open Source
common_corpus_Github Open Source
2,021
using OpenRasta.Configuration; using OpenRasta.Plugins.Caching.Configuration; using Shouldly; using Tests.Plugins.Caching.contexts; using Xunit; namespace Tests.Plugins.Caching.conditionals.if_modified_since { public class invalid_value : caching { public invalid_value() { given_current_time(now); ...
142
cc:Github Open Source
common_corpus_Github Open Source
2,021
<?php namespace App\Http\Controllers\pharmacyManagement; use App\Http\Controllers\Controller; use App\Models\Procedures; use App\Models\Report; use App\Models\Report_detailes; use App\Models\Sites; use App\Models\Commercial_drugs; use App\Models\App_users; use App\Models\Reports; use App\Models\Types_report; use App\R...
3,868
cc:Github Open Source
common_corpus_Github Open Source
2,021
#!/bin/bash set -euo pipefail mkdir -p data cd data ################################################ # Grabcut # ################################################ curl https://www.robots.ox.ac.uk/~vgg/data/iseg/data/images.tgz -o images.tgz curl https://www.robots.ox.ac.uk/~vgg/d...
499
cc:Github Open Source
common_corpus_Github Open Source
2,021
import { Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { Repository } from 'typeorm'; import { User } from './../../entities/user.entity'; import { UserNameDto } from './dto/username.dto'; @Injectable() export class UserService { constructor( @InjectRepository(U...
390
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
黑龙江省宁安市人民法院民 事 裁 定 书(2021)黑1084民初624号原告:王中尧,男,1974年12月25日出生,住宁安市。委托诉讼代理人:张广辉,宁安市江南法律服务所法律工作者。被告:孟磊,男,1988年3月31日出生,住宁安市。原告王中尧与被告孟磊健康权纠纷一案,本院于2021年3月3日立案。原告王中尧于2021年4月19日向本院提出撤诉申请。本院认为,原告王中尧以双方和解达成协议并履行完毕为由,申请撤诉,符合有关法律规定,应予准许。依照《中华人民共和国民事诉讼法》第一百四十五条第一款规定,裁定如下:准许原告王中尧撤诉。案件受理费164元,减半收取计82元,由原告王中尧负担。审判员  刘文阁二〇二一年四月十九日书记员  伊...
394
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
package com.moqi.scala.ch25 import scala.collection.mutable import scala.collection.mutable.ArrayBuffer /** * 集合构建器 * * @author moqi On 11/25/20 10:48 */ object A01FactoringOutCommonOperations { def main(args: Array[String]): Unit = { val buf = new ArrayBuffer[Int]() val bldr = buf mapResult (_.toArra...
149
cc:Github Open Source
common_corpus_USPTO
2,021
A home button 1722 is provided near the LCD 1719 and is a button for shifting a screen displayed on the LCD 1719 to a predetermined upper screen. When the home button 1722 is pressed by the player, an operation of the player is transmitted to the CPU 1751, after which the CPU 1751 transmits a command to the LCD control...
8,799
formal_gov
common_corpus_Github Open Source
2,021
package org.arcrobotics.ftclib.files.drivebase; public abstract class RobotDrive { public static final double kDefaultRangeMin = -1.0; public static final double kDefaultRangeMax = 1.0; public static final double kDefaultMaxSpeed = 1.0; protected double rangeMin = kDefaultRangeMin; protected doub...
844
cc:Github Open Source
common_corpus_Github Open Source
2,021
package com.fr.swift.cloud.jdbc.exception; import java.sql.SQLException; /** * @author yee * @date 2018/8/26 */ class URLFormatException extends SQLException { private static final String EXAMPLE = "The url should be formatted like\n" + "\n\tjdbc:swift:<mode>://<host>:<port>/<db>.\n\n" + ...
131
cc:Github Open Source
common_corpus_OpenAlex
2,021
Bulletin of Latin American Research, 2021 DOI:10.1111/blar.13215 Bulletin of Latin American Research, 2021 DOI:10.1111/blar.13215 DOI:10.1111/blar.13215 Bulletin of Latin American Research, 2021 © 2021 The Authors. Bulletin of Latin American Research published by John Wiley & Sons Ltd on behalf of Society for Latin Ame...
16,609
academic
common_corpus_Github Open Source
2,021
import { GameMode, Leveling, Multiplier, RandomizingAction, Toggle, } from "./enums"; export interface Settings { gameMode: GameMode; leveling: Leveling; abilities: RandomizingAction; stats: Toggle; keybladeStats: RandomizingAction; bonusModifiers: Toggle; criticalMode: Toggle; reportDepth: RandomizingAct...
246
cc:Github Open Source
common_corpus_Github Open Source
2,021
package typingsSlinky.igniteUi 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 IgScrollMethods extends StObject { /** * Changes the widget language to...
631
cc:Github Open Source
common_corpus_Github Open Source
2,021
import React from "react"; import * as i18n from "../../i18n"; export const LanguageList = ({ onChange, languages = i18n.languages, currentLangCode = i18n.getLanguage().code, }: { languages?: { code: string; label: string }[]; onChange: (langCode: i18n.Language["code"]) => void; currentLangCode?: i18n.Lang...
223
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
黑龙江省肇源县人民法院 执 行 裁 定 书 (2021)黑0622执542号之九 申请执行人:于淑芹,女,汉族,1956年6月12日出生,住黑龙江省肇源县。被执行人:韩志影,女,汉族,1984年08月04日生,住黑龙江省肇源县。 本院依据已经发生法律效力的肇源县人民法院作出的判决,责令被执行人履行上述法律文书确定的义务。但被执行人韩志影至今未履行。依照《中华人民共和国民事诉讼法》第二百四十二条规定,裁定如下:划拨被执行人韩志影在财付通支付科技有限公司085e9858eba99f8f7480951b7@wx.tenpay.com账户内存款人民币2396.57元。 本裁定立即执行。审判员刘大伟二〇二一年四月二十五日书记员曲伟明 搜索“马...
337
cc:Chinese-Court-Decisions
common_corpus_Chinese-Court-Decisions
2,021
山东省滕州市人民法院执 行 裁 定 书(2021)鲁0481执2462号之四申请执行人:陈传龙,男,1996年3月20日出生,汉族,住山东省滕州市。被执行人:陈平,男,1990年1月20日出生,汉族,住四川省南江县。被执行人:李杰,男,1986年2月2日出生,汉族,住山东省滕州市。关于申请执行人陈传龙与被执行人陈平、李杰民间借贷纠纷一案,本院依据已经发生法律效力的(2021)鲁0481民初3785号民事判决书于2021年08月02日冻结了被执行人陈平在6223xxxx6464,0101,0账户内余额人民币652.52元。依照《最高人民法院关于人民法院民事执行中查封、扣押、冻结财产的规定》第二十八条规定,裁定如下:解除对被执行人陈平在...
424
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
Imports System.Collections.Generic Imports Slf4j = lombok.extern.slf4j.Slf4j Imports Onnx = onnx.Onnx Imports SDVariable = org.nd4j.autodiff.samediff.SDVariable Imports SameDiff = org.nd4j.autodiff.samediff.SameDiff Imports Preconditions = org.nd4j.common.base.Preconditions Imports NoOpNameFoundException = org.nd4j.im...
948
cc:Github Open Source
common_corpus_Github Open Source
2,021
<!doctype html> <html lang="en" dir="ltr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="author" content="GeniusOcean"> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <t...
636
cc:Github Open Source
common_corpus_Github Open Source
2,021
<%- include("partials/header"); -%> <div class="bg first-container"> <div class="aboutHeadingContainer"> <h1 class="aboutHeading">ABOUT US</h1> <p class="aboutPara"> The Election Commission was established in accordance with the Constitution on 25th January 1950.</p> </div> </div> <div class="about-sectio...
672
cc:Github Open Source
common_corpus_USPTO
2,021
Ultraviolet pathogen disinfection system ABSTRACT An air treatment system includes a lower cowling configured to be suspended from a ceiling, the lower cowling defining an interior lower cowling surface and configured to be disposable radially outward from and around a fan configured to induce airflow. Further, the a...
9,383
formal_gov
common_corpus_StackExchange
2,021
On a certain integral related to Euler-Masheroni constant When trying to derive Mertens' theorem using Perron's formula, I encountered the following integral: $$ \int_0^1{1-e^{-t}\over t}\mathrm dt-\int_1^\infty{e^{-t}\over t}\mathrm dt $$ which, according to Titchmarsh's The Theory of Riemann Zeta Function, evaluates ...
1,409
misc_reference
common_corpus_Github Open Source
2,021
# Copyright 2019 Jeremy Schulman, nwkautomaniac@gmail.com # # 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 applicabl...
979
cc:Github Open Source
common_corpus_Github Open Source
2,021
GridGame.api_ui = { init: function() { $.each( GridGame.apis, function(i, api) { var space = $('<div>') .addClass('api_space') .addClass('api_' + i); api.sel = $('<select>').data('api-index', i).data('api', api); api.sel.on('change', function() { G...
813
cc:Github Open Source
common_corpus_Github Open Source
2,021
/* * Copyright (C) 2018-2022 FusionSoft * * 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...
382
cc:Github Open Source
common_corpus_Github Open Source
2,021
class QuizUser { final String name, department, section; List quizzesCreated, quizzesToTake; Map quizzesTaken; QuizUser({ this.name, this.department, this.section, this.quizzesCreated, this.quizzesToTake }); Map<String, dynamic> toJson() => { 'name': name, 'dep...
223
cc:Github Open Source
common_corpus_Github Open Source
2,021
public interface Base { fun test() = "Base" } public interface Derived : Base { override fun test() = "Derived" } class Delegate : Derived { override fun test() = "Delegate" } public open class MyClass : Base by Delegate() fun box(): String { <!MANY_IMPL_MEMBER_NOT_IMPLEMENTED, DELEGATED_MEMBER_HID...
99
cc:Github Open Source
common_corpus_Github Open Source
2,021
$cat gitignore # ignore all the informational hidden folders /.git /.idea qteasy/__pycache__/core.cpython-36.pyc *.pyc .idea/workspace.xml *.xml qt_test_temp.ipynb Untitled.ipynb .ipynb_checkpoints/Untitled-checkpoint.ipynb .ipynb_checkpoints/qt_test_temp-checkpoint.ipynb *.pyc qteasy/__pycache__/__init__.cpython-36.p...
508
cc:Github Open Source
common_corpus_Github Open Source
2,021
class NodoAST{ constructor(Valor,Tipo){ this.Valor=Valor; this.Tipo=Tipo; this.Hijos = []; this.ID=0; } agregarHijos(Hijos){ this.Hijos.push(Hijos); } } module.exports= NodoAST; //export default NoditoAST;
75
cc:Github Open Source
common_corpus_Github Open Source
2,021
package com.mrbonono63.create.content.contraptions.components.structureMovement.piston; import static com.simibubi.create.AllBlocks.MECHANICAL_PISTON_HEAD; import static com.simibubi.create.AllBlocks.PISTON_EXTENSION_POLE; import static com.mrbonono63.create.content.contraptions.components.structureMovement.piston.Mec...
2,307
cc:Github Open Source
common_corpus_Github Open Source
2,021
package com.ipusoft.sip.constant; /** * author : GWFan * time : 5/31/21 2:39 PM * desc : */ public class StorageConstant { /** * 坐席信息 */ public static final String SEAT_INFO = "seat_info"; }
70
cc:Github Open Source
common_corpus_Github Open Source
2,021
import os from airflow.models import DAG from sciencebeam_airflow.dags.dag_ids import ScienceBeamDagIds from sciencebeam_airflow.dags.utils import ( get_default_args ) from dags.sciencebeam_convert import ( create_dag as create_sciencebeam_convert_dag, ScienceBeamConvertMacros ) class ConfigProps: ...
441
cc:Github Open Source
common_corpus_Github Open Source
2,021
bower init bower install jquery --save bower install jquery.ui --save bower install normalize.css --save bower install modernizr --save bower install angular --save bower install satellizer --save bower install backbone --save bower install knockout --save bower install highlight --save bower install highcharts --sa...
139
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
江苏省泰兴市人民法院 民 事 裁 定 书 (2021)苏1283民初827号 原告:肖伟,男,1995年1月8日出生,汉族,住泰兴市。 被告:赵婷婷,女,1999年1月8日出生,汉族,住连云港市灌云县。 原告肖伟与被告赵婷婷民间借贷纠纷一案,本院于2021年1月20日立案。原告肖伟在本院依法送达交纳诉讼费用通知后,未在七日内预交案件受理费。 依照《中华人民共和国民事诉讼法》第一百一十八条、第一百五十四条第一款第十一项、《最高人民法院关于适用的解释》第二百一十三条规定,裁定如下: 本案按肖伟撤回起诉处理。 审判员  薛永江 二〇二一年二月四日 书记员  吕 佳 来源:百度搜索“马克数据网”
350
cc:Chinese-Court-Decisions
common_corpus_StackExchange
2,021
Textbook recommendation for linear programming decomposition fundamentals I am looking for a textbook on linear programming decomposition fundamentals. The book should be clear and easy-to-follow for self study and should include examples to illustrate the concepts. Would you see this link? @ A. Omidi Book chapters ...
1,618
misc_reference
common_corpus_Github Open Source
2,021
""" Author: rdbende License: GNU GPLv3 Copyright: 2021 rdbende """ import os import re import tkinter as tk from functools import partial from tkinter import font as tkfont from tkinter import ttk from typing import Any import enchant class BaseTextBox(tk.Text): def __init__( self, master: tk.Mi...
2,075
cc:Github Open Source
common_corpus_Github Open Source
2,021
/* * Copyright 2011 Uwe Krueger. * * 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 ag...
1,616
cc:Github Open Source
common_corpus_Github Open Source
2,021
@extends('layout.layout') @section('content') <div class="flex-center position-ref full-height"> @if (Route::has('login')) <div class="top-right links"> @if (Auth::check()) <a href="{{ url('/home') }}">Home</a> @else ...
169
cc:Github Open Source
common_corpus_Github Open Source
2,021
; A090409: 7*8^n/9+2(-1)^n/9. ; 1,6,50,398,3186,25486,203890,1631118,13048946,104391566,835132530,6681060238,53448481906,427587855246,3420702841970,27365622735758,218924981886066,1751399855088526,14011198840708210,112089590725665678 mov $2,$0 mul $2,3 seq $2,171160 ; a(n) = a(n-1) + 2a(n-2) with a(0)=3, a(1)=4. mov $0...
171
cc:Github Open Source
common_corpus_USPTO
2,021
Database resource management using predictive models ABSTRACT Systems and methods are provided to predict connection configurations in a distributed database environment. In embodiments, a method includes: building, by a computing device, a dynamic machine learning predictive model for a first new node connection in ...
8,988
formal_gov
common_corpus_Github Open Source
2,021
;; -*-scheme-*- ;; Alan Horkan 2004. No copyright. Public Domain. (define (script-fu-guide-new-percent image drawable direction position) (let* ( (width (car (gimp-image-width image))) (height (car (gimp-image-height image))) ) (if (= direction 0) (set! position (/ (* height pos...
335
cc:Github Open Source
common_corpus_Eurlex
2,021
(a) Ali izvede upravljavec [platforme za gostovanje in deljenje datotek], na kateri dajejo uporabniki datoteke z avtorskopravno varovanimi vsebinami javnosti na voljo brez dovoljenja imetnikov pravic, dejanje priobčitve v smislu člena 3(1) Direktive [o avtorski pravici], če – se postopek naložitve izvaja samod...
19,426
cc:Eurlex
common_corpus_Chinese-Court-Decisions
2,021
重庆市江北区人民法院民 事 裁 定 书&#xa0;(2021)渝0105民初17158号&#xa0;原告:成都给米金融服务外包有限公司,住所地四川省成都市锦江区一环路东五段46号1栋5层5、6号,统一社会信用代码91510104MA6DGK9F1W。法定代表人:蓝洪宇,总经理。委托诉讼代理人:刘婷,女,该公司员工。委托诉讼代理人:张吉利,北京宝盈(成都)律师事务所律师。被告:许带,女,1996年5月9日出生,汉族,住广东省廉江市。原告成都给米金融服务外包有限公司与被告许带小额借款合同纠纷一案,本院于2021年7月1日立案。原告成都给米金融服务外包有限公司于2021年9月10日向本院提出撤诉申请。本院认为,原告成都给米金融服务外包有限...
631
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/memory/swap_thrashing_monitor_delegate_win.h" #include <windows.h> #include <winternl.h> #include <memory> #include <vector> #...
2,034
cc:Github Open Source
common_corpus_Github Open Source
2,021
import {PersistentStore} from "../persistent"; import {DefaultInventoryCellState, InventoryCellState, PersistentInventoryCellState} from "./InventoryCellState"; import {UsableDropSerializer} from "../drop"; export interface EquipmentInventoryState { cell(key: string): InventoryCellState; } export class DefaultEquip...
189
cc:Github Open Source
common_corpus_Github Open Source
2,021
package proxypool import ( "container/ring" "context" "errors" "io" "net" "net/http" "net/url" "sync" "time" ) //Pool holds a ring of proxies used to distribute requests type Pool struct { amu sync.Mutex pool *ring.Ring perHost map[string]*ring.Ring } //NewPool returns a new, empty pool func NewPo...
1,029
cc:Github Open Source
common_corpus_Github Open Source
2,021
#!/usr/bin/env python3 # Copyright (c) Yiming Wang # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import argparse import logging import sys import numpy as np try: import kaldi_io except ImportError: raise ImportError('Please inst...
535
cc:Github Open Source
common_corpus_Chinese-Court-Decisions
2,021
安徽省合肥市瑶海区人民法院 民 事 裁 定 书 (2021)皖0102民初5223号 原告:周孝康,男,1936年3月11日出生,汉族,住安徽省合肥市瑶海区。 被告:周本耀(周孝康小儿子),男,1970年1月6日出生,汉族,无固定职业,住址同上。 原告周孝康与被告周本耀物权确认纠纷一案,本院于2021年4月15日立案。周孝康于2021年5月17日向本院提出撤诉申请。 本院认为,周孝康向本院申请撤诉,是其真实意思表示,没有规避法律的行为,依法应予以准许。 依照《中华人民共和国民事诉讼法》第一百四十五条第一款规定,裁定如下: 准许周孝康撤诉。 案件受理费80元,减半收取计40元,由周孝康负担。 审判员  赵先娥 二〇二一年五月十七日 书...
394
cc:Chinese-Court-Decisions
common_corpus_Github Open Source
2,021
#!/usr/bin/php -q <?php /* The MIT License (MIT) Copyright (c) 2015 Gary Smart www.smart-itc.com.au 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 limitati...
1,322
cc:Github Open Source
common_corpus_arXiv
2,021
††⋆Corresponding author # Linear Classifiers in Product Space Forms Puoya Tabaghi†,⋆ tabaghi2@illinois.edu Chao Pan† chaopan2@illinois.edu Eli Chien† ichien3@illinois.edu Jianhao Peng† jianhao2@illinois.edu Olgica Milenković†milenkov@illinois.edu †Coordinated Science Lab, ECE Department University of Illinois at Ur...
45,808
cc:arXiv
common_corpus_Github Open Source
2,021
//! Using `mqttest` as a crate to unittest your client : //! * Start the [tokio] runtime (and optionally a logger). //! * Create a [`Conf`] struct with the desired behavior for your test. //! * Get an [`Mqttest`] struct by [start()]ing it. //! * Connect your client to the server port. //! * Wait for your client(s)...
4,312
cc:Github Open Source
common_corpus_Github Open Source
2,021
<?php namespace App\Http\Controllers\admin; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Model\ProductModel; use App\Model\ProductImageModel; use App\Model\CategoryModel; use App\Model\SubCategoryModel; class ProductController extends Controller { // public function showPage(Requ...
3,508
cc:Github Open Source