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_USPTO | 2,021 | A gNB separately encodes and transmits each DCI format in a respectivePDCCH. When applicable, a RNTI for a UE that a DCI format is intendedfor masks a CRC of the DCI format codeword in order to enable the UE toidentify the DCI format. For example, the CRC can include 16 bits or 24bits and the RNTI can include 16 bits o... | 12,169 | formal_gov |
common_corpus_Github Open Source | 2,021 | var $ = window.vwo_$ || window.$;
var _ = window.vwo__ || window._;
var VWO = window.VWOInjected || window.VWO || {};
/**
* Compares two DOMNodes and determines how closely they
* match.
*
* @class
* @memberOf VWO
*/
VWO.DOMNodeComparator = function (params) {
$.extend(true, this, params);
};
VWO.DOMNodeCompa... | 3,090 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /* 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/. */
#version 150
#define SERVO_GL3
uniform mat4 uTransform;
uniform vec4 uOffsets[32];
uniform vec4 uClipRects[64];
... | 537 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Why does ListView widget returns items as columns?
I'm new to flutter and I'm trying to achieve a simple layout, where the layout is a column of widgets the first item in the column is a text widget, and the second item is a row that contains multiple elevated buttons, this is my code it renders the elevated buttons on... | 591 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省无棣县人民法院民 事 判 决 书(2021)鲁1623民初2450号原告:山东无棣农村商业银行股份有限公司,住所地:无棣县海丰十一路71号。法定代表人:孟祥亮,该公司董事长。委托诉讼代理人:杨恒,山东莫同律师事务所律师。被告:高式喜,男,1953年8月6日出生,汉族,住山东省无棣县。被告:司金环,女,1954年5月10日出生,汉族,住山东省无棣县。被告:高卫华,男,1976年9月1日出生,汉族,住山东省无棣县。被告:王洪梅,女,1979年8月16日出生,汉族,住山东省无棣县。原告山东无棣农村商业银行股份有限公司(以下简称无棣农商银行)与被告高式喜、司金环、高卫华、王洪梅金融借款合同纠纷一案,本院于2021年7月9日立案后,依法... | 2,688 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | % Generated by roxygen2: do not edit by hand
% Please edit documentation in R/GCT.R
\name{GCT}
\alias{GCT}
\title{Initialize an object of class \code{GCT}}
\usage{
GCT(
mat = NULL,
rdesc = NULL,
cdesc = NULL,
src = NULL,
rid = NULL,
cid = NULL,
matrix_only = FALSE
)
}
\arguments{
\item{mat}{a matrix}
\it... | 622 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // ref: https://www.codewars.com/kata/529adbf7533b761c560004e5
object Sol {
def fib(n: Int, curr: BigInt = 1, next: BigInt = 1): BigInt = {
n match {
case 0 => curr
case 1 => curr
case _ => fib(n - 1, next, curr + next)
}
}
} | 92 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Convert SQL Query to Hibernate CriteriaQuery
I'd like to convert it to use the javax.persistence.criteria.CriteriaBuilder, but am unsure what do, any help is much appreciated!
SELECT * FROM User u INNER JOIN Teacher t ON t.emp_id = u.emp_id WHERE u.college_id=:college_id AND u.Book.sub_code=:sub_code AND t.lang=:lang
... | 610 | misc_reference |
common_corpus_Github Open Source | 2,021 | package Tkx::MegaConfig;
use strict;
our $VERSION = '1.10_03';
my %spec;
sub _Config {
my $class = shift;
while (@_) {
my($opt, $spec) = splice(@_, 0, 2);
$spec{$class}{$opt} = $spec;
}
}
sub m_configure {
my $self = shift;
my @rest;
while (@_) {
my($opt, $val) = splice(@_, 0, 2);
my $sp... | 1,421 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright 2017 LMAX Ltd.
*
* 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 l... | 1,010 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省深圳市福田区人民法院民 事 判 决 书(2020)粤0304民初52617号原告:蔡玉珍,女,汉族,1986年2月22日出生,住址广东省东莞市。被告:丁钰,女,汉族,1978年4月28日出生,住址广东省深圳市福田区。上列原告蔡玉珍诉被告丁钰房屋租赁合同纠纷一案,本院于2020年9月15日立案后,依法适用简易程序,于2021年1月5日进行了公开开庭审理,原告蔡玉珍、被告丁钰到庭参加诉讼。本案现已审理终结。原告诉请判令:1、解除双方签订的《房屋租赁合同》;2、被告返还原告自2020年7月17日至2020年7月31日的租金2032.25元;3、被告返还原告剩余未扣除的水电杂费557.09元;4、被告双倍赔偿原告定金8400元;5、被... | 5,544 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | using System.Linq; using System.Collections.Generic; namespace ExpressionEvaluatorForDotNet { public class HL7V27SegmentLOC { public HL7V2Message message { get; init; } public string Id { get { return @"LOC"; } } public string SegmentId { get { return @"LOC"; } } public string LongName { get { return @"Location Identif... | 31,217 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using UnityEngine.Rendering;
namespace UnityEngine.PostProcessing
{
public sealed class FogComponent : PostProcessingComponentCommandBuffer<FogModel>
{
private static class Uniforms
{
internal static readonly int _FogColor = Shader.PropertyToID("_FogColor");
internal static readonly int _Density = Shader.... | 877 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// An EDAnalyzer module that reads back the hits created by the calorimeter and produces an ntuple
//
// Original author Bertrand Echenard
//
#include "art/Framework/Core/EDAnalyzer.h"
#include "art/Framework/Core/ModuleMacros.h"
#include "art/Framework/Principal/Event.h"
#include "art/Framework/Principal/Run.h"
#in... | 2,791 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | How to initialize Angular service, custom class from component?
I use a Angular Elements
My application has bootstrapped component as MapComponent.
Also there is a core class MapCore that contains all domain logic:
class MapCore {
constructor(props: Props) {
// Config here
}
}
This core class should be sh... | 863 | misc_reference |
common_corpus_Github Open Source | 2,021 | import React from 'react';
import Link from 'next/link';
import { Layout, Row, Col, Badge } from 'antd';
import { ShoppingCartOutlined, GithubOutlined } from '@ant-design/icons';
import { useCartSelector } from '../../../selectors';
import './MainNav.less';
const { Header } = Layout;
const MainNav = () => {
const {... | 316 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.jtikz;
import com.itextpdf.awt.PdfGraphics2D;
import com.itextpdf.text.Document;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfTemplate;
import com.itextpdf.text.pdf.PdfWriter;
import com.saemann.gulli.view.timeline.CapacityTimelinePanel;
import java.awt.*;
import java.awt.fo... | 5,720 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | from typing import Dict, List, Optional, Callable
from django_koldar_utils.django_toolbox import auth_decorators
from django_koldar_utils.graphql_toolsbox.GraphQLHelper import GraphQLHelper
from django_koldar_utils.graphql_toolsbox.graphql_types import TGrapheneArgument, TGrapheneWholeQueryReturnType
from django_grap... | 282 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Expectation of a game where player doubles the bet every time he wins
Player P plays a game whereby he bets on an event E occuring.
Event E occurs with probability q. So ¬E occurs with probability (1 - q)
The payoff per round is 1:1 -> For every 1 unit P bets on E , if E occurs, E collects 1 unit as the payoff, and k... | 1,701 | misc_reference |
common_corpus_French-Science-Pile | 2,021 | Co of , , Robert Rug , , Hima Hassen
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 research institutions in France or abroad, or from public or private research centers. L’a... | 11,914 | cc:French-Science-Pile |
common_corpus_Chinese-Court-Decisions | 2,021 | 浙江省玉环市人民法院 执 行 裁 定 书 (2020)浙1021执4283号之一 申请执行人:台州银行股份有限公司玉环支行,住所地玉环市。 主要负责人:陈熹,行长。 委托诉讼代理人:陈泓晓,男,1984年11月8日出生,汉族,住温岭市。 委托诉讼代理人:赵镇,男,1986年5月18日出生,汉族,住上海市黄浦区。 被执行人:黄益林,男,1970年3月13日出生,汉族,住玉环市。 被执行人:郏金平,男,1974年3月29日出生,汉族,住玉环市。 申请执行人台州银行股份有限公司玉环支行与被执行人黄益林、郏金平信用卡纠纷一案,本院作出的(2020)浙1021民初5309号民事调解书已于2020年11月23日生效。经申请执行人申请,本院于20... | 1,736 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.21"
ext.hilt_version = '2.33-beta'
ext.shimmer_version = "0.5.0"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.a... | 401 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | What use is $L^2$-convergence for Fourier series?
I'm working through some notes for my signal processing class and there's something elementary that baffles me. We spent lots of hours and dozens of pages setting up the entire theory of Hilbert spaces in order to define the Fourier series of a square integrable periodi... | 1,214 | misc_reference |
common_corpus_Github Open Source | 2,021 | import 'dart:async';
import 'package:flutter/material.dart';
import 'package:mgramseva/model/userProfile/user_profile.dart';
import 'package:mgramseva/repository/user_profile_repo.dart';
import 'package:mgramseva/utils/error_logging.dart';
class UserProfileProvider with ChangeNotifier {
var streamController = Strea... | 239 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1 generiert
// Siehe <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2019.0... | 1,600 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //===--- Tools.cpp - Tools Implementations ------------------------------*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | 26,611 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
workdir=$(pwd)
dnf install -y go jq
git clone https://github.com/google/stenographer
cd stenographer
go get github.com/google/stenographer
mkdir -p /usr/local/go/bin
ln -s /usr/bin/go /usr/local/go/bin/go
mkdir -p /etc/stenographer/certs
cp ../config/steno.conf /etc/stenographer/config
mkdir /stenopacket... | 160 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from 'react'
import { Link } from 'gatsby'
import discord from '../img/social/discord.svg'
import kofi from '../img/social/Ko-fi_Icon_RGB_rounded.png'
import github from '../img/github-icon.svg'
import facebook from '../img/social/facebook_old.svg'
const Footer = class extends React.Component {
render(... | 641 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
namespace Drupal\Tests\state_machine\Unit\Plugin\Workflow;
use Drupal\Core\Entity\EntityInterface;
use Drupal\state_machine\Guard\GuardFactoryInterface;
use Drupal\state_machine\Guard\GuardInterface;
use Drupal\state_machine\Plugin\Workflow\Workflow;
use Drupal\Tests\UnitTestCase;
use Prophecy\Argument;
/**
*... | 1,866 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package netty.second.client;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
import lombok.extern.slf4j.Slf4j;
import java.util.List;
/**
* 自定义解码器
* @author gaoguangjin
*/
@Slf4j
public class MyClientDecoder extends ByteToMessageDe... | 163 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import {createSelector} from 'reselect';
const chatSelector = state => state.chat;
export const chatConnectedSelector = createSelector(
chatSelector,
chat => chat.connected,
);
export const chatErrorSelector = createSelector(
chatSelector,
chat => chat.error,
);
export const chatLoadingSelector = createSele... | 76 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
using System.Collections.Generic;
using System.IO;
using System.Xml;
using System.Xml.Resolvers;
using System.Xml.Schema;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.Text;
using Xml.Schema.Linq.Extensions;
namespace Xml.Schema.Linq.Tests
{
public static class Utilities
{
... | 734 | cc:Github Open Source |
common_corpus_French-Science-Pile | 2,021 | OMOM 26 12 BnO 27 11 6 13 pastel-00004528, version 1 - 21 Jul 2010 HO 10 7 5 1 9 8 OH 2 25 Chemical Formula: C23H36O5 Exact Mass: 392,26 Carbinol 66: Colorless oil; ["] 20 = –42 (c 1.0, CHCl3); IR (film): ν = 3390, 1452, 1375, D 1143, 1090, 1033, 902, 736, 698 cm-1; 1H-NMR (CDCl3, 500 MHz): δ = 1.27 (s, 3H, Me-27), 1.3... | 19,963 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | import React from 'react';
import { Text, View } from 'react-native';
import { useThemeContext } from '../../../context/ThemeContext';
import styles from './styles';
const Header: React.FC = (props) => {
const { children } = props;
const { theme } = useThemeContext();
return (
<View style={[styles.headerCo... | 128 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Turning to FIG. 41, embossed filter media sheet 294 is provided that is the same as that of FIG. 39, and of the embodiment shown in the machine assembly line 10 of FIG. 1, but in which the trimming operation has been used to cut from opposed side edges 78, 80 at cut lines 296, 298 using the trim knife 76 shown in the m... | 8,542 | formal_gov |
common_corpus_Github Open Source | 2,021 | <?php
class EclpGoodsSaveGoodsRecordRequest
{
private $apiParas = array();
public function getApiMethodName(){
return "jingdong.eclp.goods.saveGoodsRecord";
}
public function getApiParas(){
return json_encode($this->apiParas);
}
public function check(){
}
public function putOtherTextParam($key, ... | 3,123 | cc:Github Open Source |
common_corpus_Eurlex | 2,021 | C_2022015FR.01018401.xml
12.1.2022
FR
Journal officiel de l'Union européenne
C 15/184
P9_TA(2021)0257
Le droit du Parlement d'être informé au sujet de l'évaluation en cours des plans nationaux pour la reprise et la résilience
Résolution du Parlement européen du 20 mai 2021 sur le droit du Parl... | 2,211 | cc:Eurlex |
common_corpus_Github Open Source | 2,021 | package hooks
import (
"os"
"os/exec"
"strings"
"github.com/dropseed/deps/internal/output"
"github.com/dropseed/deps/internal/pullrequest"
)
func RunPullrequestHook(pr pullrequest.PullrequestAdapter, hookName string) error {
hookCmd := pr.GetSetting(hookName)
if hookCmd == nil {
return nil
}
output.Even... | 190 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 |  陕 西 省 西 安 市 长 安 区 人 民 法 院 民 事 判 决 书 (2020)陕0116民初9800号 原告:重庆智欣华建材有限公司,住所地重庆市沙坪坝区,统一社会信用代码91500106MA5U3ATW32。法定代表人:杨栋斌,公司董事长。 委托诉讼代理人:朱荣,重庆智天律师事务所律师。被告:中铁建工集团有限公司,住所地北京市丰台区楼,统一社会信用代码91110000710921189P。法定代表人:张建喜,公司总经理。被告:中铁建工集团有限公司西北分公司,住所地西安市高新区楼,统一社会信用代码XXXXXXXXXXXXXX0534。负责人:于建忠,公司总经理。共同委托诉讼代理人:李帅... | 4,099 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /*
* MIT License
*
* Copyright (c) 2021 Boston Vanseghi
*
* 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 the rights
* to use, copy, ... | 1,080 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Color engine : RGB, alpha, chromaKey, saturation/contrast/brightness
*
* vertex program
*
* Copyright (c) 2014 Antoine Rousseau <antoine@metalu.net>
* BSD Simplified License, see the file "LICENSE.txt" in this distribution.
* See https://github.com/Ant1r/ofxPof for documentation and updates.
*/
#versio... | 157 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省长沙市天心区人民法院执 行 裁 定 书(2021)湘0103执1110号申请执行人:长沙农村商业银行股份有限公司天心支行。负责人:邝斌。被执行人:黄学军,男。被执行人:王米珍,女。上列申请执行人与被执行人借款合同纠纷一案,于2021年1月14日经本院审结,该案(2021)湘0103民特41号民事裁定书已经发生法律效力,并立案执行。被执行人至今未履行生效法律文书所确定的法律义务,现被执行人尚欠申请执行人借款本金670503.69元,利息15033.1元,罚息144.96元,律师费18642.24元,执行费9443元,共计713766.99元。依照《中华人民共和国民事诉讼法》第一百五十四条第一款第(十一)项、第二百四十条、第二百四... | 625 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | group 'io.manbang.frontend.thresh'
version '1.0-SNAPSHOT'
buildscript {
ext{
kotlin_version = '1.3.72'
}
repositories {
maven {url 'https://maven.aliyun.com/repository/google'}
maven {url 'http://maven.aliyun.com/mvn/repository/'}
maven {url 'http://maven.aliyun.com/nexus/co... | 499 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright 2021 Typelevel
* Modifications by Pierre Kisters
*
* 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 require... | 1,847 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 淮安市清江浦区人民法院民 事 裁 定 书(2021)苏0812民初1449号之一申请人:郭新军,男,汉族,1970年1月20日出生,住淮安市清江浦区。被申请人:景志富,男,汉族,1983年12月27日出生,住淮安市清江浦区。申请人郭新军诉被申请人景志富买卖合同纠纷一案,本院于2021年2月18日作出(2021)苏0812民初1449号民事裁定书,冻结被申请人景志富名下的银行存款1万元或查封、扣押其相应价值的财产,并对申请人提供的担保物,即申请人郭新军所有的车牌号为苏HF09208的汽车一辆进行查封。现本案已审理终结,申请人与被申请人已达成调解协议,故申请人向本院申请解除对被申请人景志富的保全措施及对担保物的查封措施。本院经审查认为,... | 640 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /* eslint-disable import/newline-after-import */
/* eslint-disable import/first */
import dotenv from 'dotenv-json'
dotenv({ path: 'cypress.env.json' })
import AdminJS from 'adminjs'
import AdminJSSequelize from '@adminjs/sequelize'
import { connect, sessionStore, authenticate, createAdmin } from './databases/sequeli... | 153 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | export class Scene extends Phaser.Scene {
physics: Phaser.Physics.Arcade.ArcadePhysics;
make: Phaser.GameObjects.GameObjectCreator;
add: Phaser.GameObjects.GameObjectFactory;
load: Phaser.Loader.LoaderPlugin;
scene: Phaser.Scenes.ScenePlugin;
input: Phaser.Input.InputPlugin;
tweens: Phaser.Tweens.Tween... | 162 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.cosmos.implementation.directconnectivity;
import com.azure.cosmos.implementation.BadRequestException;
import com.azure.cosmos.implementation.ConflictException;
import com.azure.cosmos.implementation.Conne... | 4,964 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React, { Component } from 'react';
import _ from 'lodash';
import {
Modal, Form, Input, Select, Icon,
} from 'choerodon-ui';
import { stores, Content, axios } from 'choerodon-front-boot';
import './CreateBranch.scss';
import './commom.scss';
const { AppState } = stores;
const { Sidebar } = Modal;
const { Opti... | 2,471 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 浙江省磐安县人民法院执 行 裁 定 书(2021)浙0727执124号申请执行人:应正兴,男,1963年5月5日出生,住磐安县。被执行人:傅正彬,男,1969年11月12日出生,住磐安县。本院在执行申请执行人应正兴与被执行人傅正彬民间借贷纠纷的(2019)浙0727民特304号民事裁定书一案中,双方当事人在执行过程中达成执行和解协议,且需要长期履行。本院认为,双方当事人在执行过程中达成执行和解协议,且需长期履行的,可以终结执行。如被执行人未按和解协议履行的,申请执行人可以申请恢复原生效法律文书的执行。依照《中华人民共和国民事诉讼法》第一百五十四条第一款第(八)项、第二百五十七条第(六)项的规定,裁定如下:终结(2021)浙0727执... | 432 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /// Copyright axetroy
import * as fs from "fs";
import * as path from "path";
import { URL } from "url";
import { pathExistsSync, normalizeFilepath } from "../utils";
import { DenoExtension } from "./types";
type HTTPHeaders = { [key: string]: string };
type MetaFileContent = {
url: string;
headers: HTTPHeaders;... | 818 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | //
// Copyright © 2019 Frollo. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by app... | 1,660 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
*
* Copyright 2017 Florian Erhard
*
* 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 applica... | 4,145 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | @extends('layouts.admin.layouts')
@section('content')
@include('layouts.admin.includes.sidebar')
<!-- Header -->
@include('layouts.admin.includes.header')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
... | 1,019 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | @page
@model CPL20Archive.Pages.Sessions.Period7Model
@{
}
<div class="top-title-area bg-img-charcoal-eticket">
<div class="container">
<h1 class="title-page">Sessions by Period</h1>
</div>
</div>
<div class="gap"></div>
<div class="container">
<div class="demo-buttons">
<a asp-page="Workshops" class="btn... | 2,755 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #pragma once
#include "../include/libclang.hpp"
#include "field_info.hpp"
#include <string>
#include <vector>
struct TypeInfo
{
std::string name;
long long size; // in bytes
unsigned hash;
std::vector<FieldInfo> fields;
};
| 57 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Shell : MonoBehaviour {
float XSpeed;
float Acceleration = 96;
float TopSpeed = 280;
float ray_length = 16;
float ray_offset = 8;
bool _is_moving = false;
Animator animator;
public AudioCli... | 755 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Get the data from multiple URL API
I'm currently new at coding, and I'm trying to get the GDP of Mexico using the API of the government. The problems is that this API only let me select 10 economic indicators at a time. So for the data that I want I need 100 URL APIs :S
Is there a way that I can put all the URL links a... | 142 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 文书内容江苏省昆山市人民法院民 事 裁 定 书(2021)苏0583民初12841号原告:苏州安邦物业服务股份有限公司,统一社会信用代码:91320594778670013E,住所地苏州工业园区东延路**顺达商业广场****。法定代表人:周雪峰,该公司董事长。委托诉讼代理人:徐旭,北京市中银(苏州)律师事务所律师。被告:熊金荣,男,1972年11月24日出生,汉族,住江苏省无锡市锡山区。原告苏州安邦物业服务股份有限公司与被告熊金荣物业服务合同纠纷一案,原告于2021年5月31日向本院申请撤诉,且并未交纳诉讼费,故本案依照法律规定按撤诉处理。本院认为,原告申请撤诉于法不悖,且未交纳诉讼费,故予以准许,依照《中华人民共和国民事诉讼法》第... | 433 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import {Component, Injector, OnInit} from '@angular/core';
import {NaturalAbstractDetail} from '@ecodev/natural';
import {ExpenseClaimService} from '../services/expenseClaim.service';
import {
CurrentUserForProfile_viewer,
ExpenseClaimStatus,
ExpenseClaimType,
UserRole,
} from '../../../shared/generated... | 365 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<div class="form-config-container">
<el-form label-position="top" size="small">
<el-form-item label="标签对齐方式">
<el-radio-group v-model="data.labelPosition">
<el-radio-button label="left">左对齐</el-radio-button>
<el-radio-button label="right">右对齐</el-radio-button>
... | 417 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Error Recyclerview view Holder on private access adapter class
this is my recycler adapter class where I want to add a comments list but it shows me this error I also make a custom recycler view of another adapter class which is for Exo player but it doesn't give me any issue.
public class commentListAdapter extends Re... | 607 | misc_reference |
common_corpus_Github Open Source | 2,021 | package main
import (
"fmt"
"github.com/gdamore/tcell"
"github.com/rivo/tview"
)
const ips = "ips"
const hostnames = "hostnames"
const useragents = "useragents"
const vendor = "vendor"
const applications = "applications"
const seen = "seen"
const lastseen = "lastseen"
const firstseen = "firstseen"
type gui stru... | 980 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | The characteristic curve 33 requires no perfect apochromatization of the focusing optics 10. At perfect apochromatization, the transverse chromatic aberration would also disappear around the second centroid wavelength 31. Since this is not demanded, but only that the transverse chromatic aberration must remain within t... | 3,248 | formal_gov |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省日照市东港区人民法院 民 事 判 决 书 (2020)鲁1102民初9397号 原告:日照元鼎包装有限公司,住所日照市山海天旅游度假区两城镇梁乡二路以西、龙山一路以北,统一社会信用代码91371100MA3DDB6J92。 法定代表人:郑明京,总经理。 委托诉讼代理人:王明铭,女,系该公司员工。 委托诉讼代理人:秦玉华,山东中论律师事务所律师。 被告:青岛顺美苑食品有限公司,住所地青岛市即墨市通济街道办事处潘家官庄村,统一社会信用代码91370282MA3DPX9LX4。 法定代表人:张毅,总经理。 委托诉讼代理人:牛舜尧,青岛城阳凯盛法律服务所法律服务工作者。 委托诉讼代理人:郭可颜,青岛城阳凯盛法律服务所法律服务工作者。 ... | 6,494 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 成都市郫都区人民法院 民 事 裁 定 书 (2021)川0117民初3155号 原告:李进松,男,1978年9月22日出生,汉族,住四川省郫县。 被告:甘肃阿尔康**物工程股份有限公司,住所:庆阳市西峰区安定东路565号。 法定代表人:陈路,职务不详。 原告李进松与被告甘肃阿尔康**物工程股份有限公司保证合同纠纷一案,本院于2021年3月12日立案后,原告李进松于2021年6月30日向本院提出撤诉申请。 本院认为,原告李进松申请撤诉系其自由处分民事诉讼权利的行为,符合相关法律规定。依照《中华人民共和国民事诉讼法》第一百四十五条第一款、第一百五十四条第一款第(五)项的规定,裁定如下: 准许原告李进松撤回起诉。 本案减半后收取案件受理费... | 440 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import * as React from 'react';
import { withTranslation, WithTranslation } from 'react-i18next';
import { connect } from 'react-redux';
import { Dispatch } from 'redux';
import { Form, Icon, Message, Segment } from 'semantic-ui-react';
import { AppAction } from '../../actions';
import { setPreference } from '../../ac... | 874 | cc:Github Open Source |
common_corpus_Court Listener | 2,021 | Filed 3/17/21 In re Levi H. CA5
NOT TO BE PUBLISHED IN THE OFFICIAL REPORTS
California Rules of Court, rule 8.1115(a), prohibits courts and parties from citing or relying on opinions not certified for
publication or ordered published, except as specified by rule 8.1115(b). This opinion has not bee... | 3,372 | cc:Court Listener |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省广州市越秀区人民法院民 事 判 决 书(2021)粤0104民初18722号原告:北京拉卡拉小额贷款有限责任公司,住所地北京市海淀区北清路中关村壹号D1座11层1101。法定代表人:徐氢,董事长。委托诉讼代理人:李敏敏、温天助,该司职员。被告:张冬冬,男,1988年2月8日出生,汉族,住湖北省枣阳市。原告北京拉卡拉小额贷款有限责任公司与被告张冬冬小额借款合同纠纷一案,本院依据《全国人民代表大会常务委员会关于授权最高人民法院在部分地区开展民事诉讼程序繁简分流改革试点工作的决定》,于2021年3月30日立案后,依法适用小额诉讼程序,公开开庭进行了审理。本案现已审理终结。案件事实一、借款合同的约定情况:合同名称:《易分期业务贷款合同... | 1,531 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | <?php
use Illuminate\Database\Seeder;
use App\Fornecedor;
class FonrecedorSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// Instanciando o objeto
$fornecedor = new Fornecedor();
$fornecedor->nome = 'Fornecedor 1... | 273 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Name: SeaOfThieves, Version: 2.0.23
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//--------------------------------------------... | 1,037 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Software License for MTL
//
// Copyright (c) 2007 The Trustees of Indiana University.
// 2008 Dresden University of Technology and the Trustees of Indiana University.
// 2010 SimuNova UG (haftungsbeschränkt), www.simunova.com.
// All rights reserved.
// Authors: Peter Gottschling and A... | 989 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "test_harness/test_harness.hpp"
#include <level_zero/zes_api.h>
#include "utils/utils.hpp"
namespace lzt = level_zero_tests;
namespace level_zero_tests {
uint32_t get_power_handle_count(zes_device_handle_t device) ... | 619 | cc:Github Open Source |
common_corpus_Spanish-Science-Pile | 2,021 | Dirigida por Vicente Riva Palacio. México: Ballescá y Comp., Editores, [sin año].
Sobre los autores
Gabriel Torres Puga
Doctor en Historia. Profesor investigador en el Centro de Estudios Históricos de El Colegio de México. Estudia la historia de la Inquisición, de la
censura y de la comunicación política en la época co... | 422 | cc:Spanish-Science-Pile |
common_corpus_Github Open Source | 2,021 | // Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
// the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
// reserved. See files LICENSE and NOTICE for details.
//
// This file is part of CEED, a collection of benchmarks, miniapps, software
// libraries and APIs for effic... | 7,803 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 安徽省舒城县人民法院 执 行 裁 定 书 (2021)皖1523执恢407号之三 申请人:安徽舒城农村商业银行股份有限公司,住安徽省六安市舒城县城关镇桃溪路89号。 法定代表人:孔凡宏,行长。 委托诉讼代理人:吴本俊,公司员工。 委托诉讼代理人:张忠春,公司员工。 被执行人:江吉林,男,1962年1月26日出生,汉族,住舒城县。 本院在执行申请人安徽舒城农村商业银行股份有限公司与被执行人江吉林金融借款纠纷一案中,冻结了江吉林银行账户×××64.92元,现因申请人安徽舒城农村商业银行股份有限公司撤回执行申请。依照《最高人民法院关于人民法院执行工作若干问题的规定(试行)》第四十五条、《最高人民法院关于... | 492 | cc:Chinese-Court-Decisions |
common_corpus_OpenAlex | 2,021 | Iraqi Journal of Agricultural Sciences –2021:52(2):377-391 Iraqi Journal of Agricultural Sciences –2021:52(2):377-391 Al-Sa'ady & Aziz IMMOBILIZATION AND APPLICATION OF PARTIAL PURIFIED
LOVASTATIN PRODUCED FROM LOCAL ISOLATE ASPERGILLUS
TERREUS A50 USING SOLID STATE FERMENTATION G. M. Aziz G. M. Aziz
Prof. A. J. R. ... | 21,966 | academic |
common_corpus_Github Open Source | 2,021 | # gensim modules
import sys
import numpy
import pickle
import logging
import multiprocessing
from gensim import utils
from os.path import isfile, join, exists
from os import makedirs
from random import shuffle
from gensim.models.doc2vec import TaggedDocument
from gensim.models import Doc2Vec
from sklearn.ensemble impo... | 1,312 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | const form = $("form");
const username = $("#username");
const email = $("#email");
const password = $("#password");
const bio = $("#bio");
form.on("submit", async (e) => {
e.preventDefault();
const res = await fetch("/api/users/register", {
method: "POST",
headers: {
'Content-Type... | 175 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using UnityEngine;
using UnityEngine.UI;
using System.Collections;
namespace SS3D.Engine.Inventory.UI
{
/// <summary>
/// Allows the Body Target user interface to be collapsible by clicking a button.
/// </summary>
public class ToggleBodyTargetUI : MonoBehaviour
{
private Button ExpandButton;
private CanvasG... | 380 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | namespace DPS.Models
{
public class CreationModel
{
public CreationModel()
{
}
public Book[] books { get; set; }
public Genre[] genres { get; set; }
public AuthorRealName[] authors { get; set; }
public AuthorNickname[] nicknames { get; s... | 74 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | Tone mapping circuit, image sensing device and operation method thereof
ABSTRACT
A tone mapping circuit includes: a tone mapping unit suitable for generating a corrected color image by correcting an input image corresponding to pixel data provided from a pixel array; and a noise removing unit suitable for calculating... | 10,143 | formal_gov |
common_corpus_Github Open Source | 2,021 | var chai = require('chai'),
jsdom = require("jsdom");
global.window = jsdom.jsdom().createWindow();
global.document = window.document;
global.navigator = window.navigator;
L = require('leaflet');
require('..');
chai.should();
describe("L.OSM.Mapnik", function () {
it("has the appropriate URL", function (... | 1,335 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Episode Title Card
Everything About Fiction You Never Wanted to Know.
Jump to navigation Jump to search
After the Title Sequence, but before the first act, many shows will put in an intertitle displaying the episode's title. For some shows, the title will be animated and a character from the series will read the titl... | 1,919 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | @inherits Custom.Hybrid.Razor12
@using ToSic.Razor.Blade;
@{
var mapSettings = AsDynamic(Content.Presentation.GoogleMaps, Settings.GoogleMaps);
var secureData = GetService<ToSic.Sxc.Services.ISecureDataService>();
// Decrypt the Api key and find out where it's from. If it's from preset, then we must show the w... | 142 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System.Collections.Generic;
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under t... | 1,105 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/**********************************************************************
Sega Saturn Joypad emulation
**********************************************************************/
#include "emu.h"
#include "joy.h"
//*********************************************... | 690 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
namespace PuertsStaticWrap
{
public static class UnityEngine_UI_Navigation_Wrap
{
[Puerts.MonoPInvokeCallback(typeof(Puerts.V8ConstructorCallback))]
private static IntPtr Constructor(IntPtr isolate, IntPtr info, int paramLen, long data)
{
try
... | 2,559 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { Scene } from "../../../scene";
import { ISceneComponent } from "../../../sceneComponent";
import { ProceduralTexture } from "./proceduralTexture";
declare module "../../../abstractScene" {
interface AbstractScene {
/**
* The list of procedural textures added to the scene
* @see ht... | 304 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | width = 1;
height = 1;
depth = 1;
lc = height/21;
holeWidth = width/2;
factor = 1/1.5;
// Points in counterclockwise order
Point(1) = {0, 0, -height, lc};
Point(2) = {width, 0, -height, lc};
Point(3) = {width, 0, 0, lc};
Point(4) = {holeWidth, 0, 0, lc};
Point(5) = {0, 0, 0, lc};
Point(6) = {holeWidth, depth/2, 0, lc... | 688 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React from "react"
import styled from "styled-components"
const Header = styled.div`
width: 100%;
display: flex;
justify-content: center;
background-image: url('https://www.alergologkrosno.pl/wp-content/uploads/2015/12/bgn-grad-1.png');
background-color: ${({ theme }) => theme.colors.specialColor};
background-... | 1,492 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import string
from contextlib import suppress
from typing import Optional, Tuple
from random import choice
import json
from discord import Message, Guild, Member
from src.emoji_manager import EmojiManager
from lib.reggy.reggy import Reggy
from lib.response_grammar.response import parse as parse_response, NodeType
fro... | 2,930 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省佛山市三水区人民法院民 事 裁 定 书(2021)粤0607民初4415号申请人:梁荣光,男,1957年9月28日出生,汉族,住广东省佛山市南海区。委托诉讼代理人:潘正兵,广东华生律师事务所律师。担保人:天安财产保险股份有限公司广东省分公司营业部,住所地广东省广州市天河区体育西路111-115单号23楼A、B、C单元,统一社会信用代码91440101078412558D。负责人:李华林,该营业部总经理。被申请人:佛山市恒福兴达医疗经营管理有限公司,住所地广东省佛山市三水区云东海街道德兴北路1号恒福新里程花园二区2座103、104号,统一社会信用代码91440607MA4X2M8X6Y。法定代表人:林杰龙。被申请人:佛山市恒福兴... | 922 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | const yfm001 = require('./yfm001');
const yfm002 = require('./yfm002');
const yfm003 = require('./yfm003');
module.exports = {
yfm001,
yfm002,
yfm003,
};
| 53 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | const { writeJSON } = require('./utils');
const API = {
bilibili:
'https://api.bilibili.com/x/space/bangumi/follow/list?type=1&follow_status=0&pn=1&ps=15&vmid=194714175&ts=1597596481239',
};
// bilibili
writeJSON({
filename: 'database/bilibili.json',
url: API.bilibili,
fmtData(data, container) {
data.... | 170 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package typingsSlinky.semanticUiProgress.anon
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.`|`
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
/* Inlined std.Pick<semantic-ui-progress.SemanticUI.ProgressSettings._Impl, 'preci... | 197 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* 在C语言中,动态分配内存用 malloc() 函数,释放内存用 free() 函数。如下所示:
\code
int *p = (int*) malloc( sizeof(int) * 10 ); //分配10个int型的内存空间
free(p); //释放内存
\endcode
* 在C++中,这两个函数仍然可以使用,但是C++又新增了两个关键字,new 和 delete:new 用来动态分配内存,delete 用来释放内存。
\code
int *p = new int; //分配1个int型的内存空间
delete p; //释放内存
\endcode
* new 操作符会根据后面的... | 939 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | local asserts = require 'testing.asserts'
local test_runner = require 'testing.test_runner'
local region_colors = require 'language.region_colors'
local set = require 'common.set'
local tests = {}
function tests.shuffledFloors_shouldFailIfNoRegionsDefined()
local colorer = region_colors.createShuffledFloors({})
... | 428 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
... | 915 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.flink.state;
import org.apache.flink.api.common.functions.RichFlatMapFunction;
import org.apache.flink.api.common.state.ValueState;
import org.apache.flink.api.common.state.ValueStateDescriptor;
import org.apache.flink.api.common.typeinfo.TypeHint;
import org.apache.flink.api.common.typeinfo.TypeInformatio... | 518 | cc:Github Open Source |