source stringclasses 40
values | date int32 2.02k 2.02k | text stringlengths 61 2.1M | token_count int32 50 1.16M | category stringclasses 38
values |
|---|---|---|---|---|
common_corpus_Github Open Source | 2,021 | import * as React from 'react';
import classNames from 'classnames';
import dayjs from 'dayjs';
import { getComponent } from '../../components-registry';
import { mapStylesToClassNames as mapStyles } from '../../utils/map-styles-to-class-names';
import getPageUrlPath from '../../utils/get-page-url-path';
import Link fr... | 2,409 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #
# @lc app=leetcode.cn id=122 lang=python3
#
# [122] 买卖股票的最佳时机 II
#
# @lc code=start
class Solution:
def maxProfit(self, prices: List[int]) -> int:
# @lc code=end
| 67 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Decompiled with JetBrains decompiler
// Type: MercadoPago.DataStructures.PaymentMethod.Settings
// Assembly: MercadoPago, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 0C24A3BA-51C0-4EAB-8180-D4EA12994FDF
// Assembly location: C:\Users\Laucha\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug... | 268 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | def isValidSudoku(board)
rowbuckets = Array.new(9) { Hash.new }
colbuckets = Array.new(9) { Hash.new }
boxbuckets = Array.new(9) { Hash.new }
0.upto(8) do |i|
0.upto(8) do |j|
char = board[i][j]
next if char == '.'
return false if rowbuckets[i][char]
rowbuckets[i][char] = true
... | 177 | cc:Github Open Source |
common_corpus_UK Hansard – Written Answers | 2,021 | To ask the Secretary of State for Health and Social Care, with reference to his Department's Family Hubs: Growing up Well project, what role the Office for Health Promotion will play in the (a) siting of, (b) access to and (c) audit of family hubs. | 59 | cc:UK Hansard – Written Answers |
common_corpus_Github Open Source | 2,021 | ' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
Imports System.Collections.Immutable
Imports Microsoft.CodeAnalysis.VisualBasic.Symbols
Namespace Microsoft.CodeAnalysis.VisualBasic
''' <summary>
'... | 952 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 山东省阳谷县人民法院执 行 裁 定 书(2021)鲁1521执181号申请执行人:仇士来,男,1968年6月14日出生,汉族,农民,住阳谷县。被执行人:于慎旺,男,1962年11月10日出生,汉族,农民,住阳谷县。申请执行人仇士来与被执行人于慎旺机动车交通事故责任纠纷一案,本院作出的(2019)鲁1521民初240号民事判决已产生法律效力。依该判决确定:于慎旺于判决生效后十日内赔偿仇士来被扶养人生活费9100元。如被告未按本判决指定的期间履行给付金钱义务,应当依照《中华人民共和国民事诉讼法》第二百五十三条之规定,加倍支付迟延履行期间的债务利息。案件受理费50元,减半收取为25元,由于慎旺负担。(仇士来已预交159元,故于慎旺应连同上... | 801 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/env python3.7
# words.py
"""Module for words and word lists."""
# stand lib
from typing import List
from typing import Text
# custom
from constants import (
ALPHABET,
ENGLISH_VOCAB,
GOOD_PUNCT,
IRR_NOUNS,
JAP_VOCAB,
NOUNS,
PROP_NOUNS,
VERBS,
... | 1,777 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package typingsSlinky.activexAccess.Access
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 SubReport extends StObject {
@JSName("Access.SubReport_typekey"... | 500 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import asyncio
import json
from datetime import datetime
from discord.ext import commands, tasks
from util import Handlers
class Tasks(commands.Cog, name="Tasks"):
"""
This cog handles all the tasks which are executed every x time and stores the data in the database.
"""
def __init__(self, fff):
... | 1,282 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 广东省中山市第二人民法院 执 行 裁 定 书 (2021)粤2072执2026号之一 申请执行人:中山市古镇三奕灯饰门市部,住所地广东省中山市古镇。主要负责人:莫建和。 被执行人:中山市古镇云盘灯饰门市部,住所地广东省中山市古镇。主要负责人:张建明。 被执行人:张建明,男,1963年10月21日出生,汉族,住浙江省海宁市。 关于申请执行人中山市古镇三奕灯饰门市部与被执行人中山市古镇云盘灯饰门市部、张建明买卖合同纠纷一案,(2020)粤2072民初14028号民事调解书已经发生法律效力。因被执行人没有履行,申请执行人依法向本院申请强制执行,依据上述生效法律文书及申请执行人的强制执行申请,本院于2021年02月05日立案执行,被执行人中... | 1,227 | cc:Chinese-Court-Decisions |
common_corpus_USPTO | 2,021 | The disclosed flowchart and block diagrams illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a modu... | 2,522 | formal_gov |
common_corpus_Github Open Source | 2,021 | import copy
from collections import defaultdict
from nltk.tree import *
from generative_playground.codec.cyk import *
from rdkit.Chem import MolFromSmiles
from .hypergraph_grammar import HypergraphTree, apply_rule
from .hypergraph_parser import hypergraph_parser
from .hypergraph import replace_nonterminal
def parse(... | 1,573 | cc:Github Open Source |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | SCP-5347
rating: +21+x
by Elunerazim
A Manifestation of SCP-5347-1 off the coast of Carpenteria, California (Right).
Item #: SCP-5347
Object Class: Gödel-Euclid Gödel-Keter
Special Containment Procedures: SCP-5347-1 is currently uncontainable by Foundation efforts due to the failsafes of those who did not flee to ... | 839 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | namespace UniversityRegistrar.Models
{
public class DepartmentStudent
{
public int DepartmentStudentId { get; set; }
public int StudentId { get; set; }
public int DepartmentId { get; set; }
public virtual Student Student { get; set; }
public virtual Department Department { get; set; }
}... | 74 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
Copyright 2020 The Kubernetes 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
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | 382 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
* ARQUIVO: lib/utils/getRandom.h
*
* TÍTULO: RELATÓRIO DE TRABALHO DE LABORATÓRIO 2
* ENVIADO POR: Gustavo Simões e Izabelle Custodia Teixeira Sebastiao.
* Todo o código tem como autores Gustavo Simões e Izabelle C. T. Sebastião.
*
* CURSO: Linguagem de progrmação 1 do curso de Enh... | 273 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package CSVValidation
import CSVValidation.WarningsAndErrors.{Errors, Warnings}
import CSVValidation.traits.OptionExtensions.OptionIfDefined
import org.apache.commons.csv.{CSVFormat, CSVParser, CSVRecord, QuoteMode}
import java.io.File
import java.net.URI
import java.nio.charset.Charset
import java.time.ZonedDateTime... | 2,753 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 东港市人民法院执 行 裁 定 书(2021)辽0681执2597号之二被执行人:单桂荣,女,汉族,1966年10月07日生,住东港市。本院依据已经发生法律效力的东港市人民法院作出的判决,责令被执行人履行上述法律文书确定的义务。但被执行人单桂荣至今未履行。依照《中华人民共和国民事诉讼法》第二百四十二条、《最高人民法院关于适用〈中华人民共和国民事诉讼法〉的解释》第四百八十七条规定,裁定如下:冻结被执行人单桂荣在中国邮政储蓄银行03×××02账户内存款人民币650.00元,冻结期限为十二个月。本裁定立即执行。审判员 高玉滨二〇二一年七月二十八日书记员 李巍巍 关注微信公众号“马克数据网” | 333 | cc:Chinese-Court-Decisions |
common_corpus_Creative Commons Common Crawl (CCC) | 2,021 | Next Article in Journal
Flame Retardancy of Sorbitol Based Bioepoxy via Combined Solid and Gas Phase Action
Previous Article in Journal
Tannic Acid as a Bio-Based Modifier of Epoxy/Anhydride Thermosets
Previous Article in Special Issue
An Osteoconductive Antibiotic Bone Eluting Putty with a Custom Polymer Matrix
Articl... | 14,587 | cc:Creative Commons Common Crawl (CCC) |
common_corpus_Github Open Source | 2,021 | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use App\clientes;
class clientesController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function catClientes()
{
... | 546 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | open OUnit2
open Util
let temp_traildb_file () =
let path = Filename.temp_file "traildb_" "_test" in
path ^ ".tdb"
let check_empty_db test_ctxt =
let file = temp_traildb_file () in
create_traildb ~file ~fields:["field1";"field2"] ~events:[] ;
assert_equal 3L (traildb_num_fields file);
assert_equal... | 501 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.trib3.json.modules
import com.fasterxml.jackson.databind.ObjectMapper
import com.google.inject.multibindings.MapBinder
import com.google.inject.name.Names
import com.trib3.json.ObjectMapperProvider
import dev.misfitlabs.kotlinguice4.KotlinModule
import dev.misfitlabs.kotlinguice4.typeLiteral
import kotlin.... | 221 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 重庆市第一中级人民法院执 行 裁 定 书(2020)渝01执2096号之五申请执行人:西南证券股份有限公司,住所地重庆市江北区桥北苑8号。统一社会信用代码91500000203291872B。法定代表人:廖庆轩。被执行人:唐军,男,汉族,1987年9月13日出生,住四川省达县。被执行人:张林,男,汉族,1987年3月14出生,住广东省东莞市东城区。本院于2020年10月20日立案执行西南证券股份有限公司申请执行唐军、张林证券纠纷一案,执行依据为本院(2019)渝01民初418号民事判决书,执行标的为34990000元。2020年10月21日,本院向被执行人发出执行通知书,责令被执行人履行生效法律文书确定的义务,但被执行人至今未履行其... | 1,298 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /****************************************************************************
Copyright (c) 2008 Deepak Chandran
Contact: Deepak Chandran (dchandran1@gmail.com)
see COPYRIGHT.TXT
The python interpreter that runs as a separate thread and can accept strings to parse and execute
***********************************... | 420 | cc:Github Open Source |
common_corpus_French-Science-Pile | 2,021 | Contrasting Functions of Mitogen- and Stress-activated Protein Kinases 1 and 2 in Recognition Memory and In Vivo Hippocampal Synaptic Transmission Elise Morice, Valérie Enderlin, Sophie Gautron, Serge Laroche
HAL is a multi-disciplinary open access archive for the deposit and dissemination of scientific research docum... | 11,174 | cc:French-Science-Pile |
common_corpus_Github Open Source | 2,021 | // ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... | 607 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright (c) 2012 Jonathan Perry
* This code is released under the MIT license (see LICENSE file).
*/
#pragma once
#include <vector>
#include <stdint.h>
#include <tr1/memory>
#include "../ILLRDecoder.h"
#include "LTParityNeighborGenerator.h"
/**
* \ingroup fountain
* \brief Decoder for LT codes
*/
class ... | 417 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using System;
namespace Netduino.IP
{
internal class Socket : IDisposable
{
protected int _handle;
protected bool _isDisposed = false;
////const int MAX_TX_DATAGRAM_LENGTH = 1500; /* 1500 bytes */
////byte[] _txDatagramBuffer;
protected const UInt32 IP_ADDRESS_ANY = ... | 1,268 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
"""heap - A Priority Queue based on the `heapq` module."""
import heapq
import itertools
from typing import Generic, TypeVar, List, Dict, Generator, Optional, Iterator
from typing import Tuple, cast
T = TypeVar('T')
ENTRY_T = Tuple[int, int, List[Optional[T]]]
class He... | 845 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Import many python files in bash script
I have a problem with the import file in the bash script.
My project directory looks like this:
project
├── folder1
│ └── file1.py
├── folder2
│ └── file2.py
├── data
│ └── example.txt
├── utils
│ ├── __init__.py
│ └── globals.py
└── run.sh
The globals.py file contains... | 682 | misc_reference |
common_corpus_Github Open Source | 2,021 | import 'package:flutter/material.dart';
import 'package:voice/components/PersonalCenter/PersonalPage/Info/VideoItem.dart';
import 'package:voice/model/VideoModel.dart';
class VideoInfo extends StatelessWidget {
final List<VideoModel> videoList;
final Function refreshCallback;
VideoInfo({
Key key,
this.vi... | 190 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 朝阳市双塔区人民法院民 事 裁 定 书(2021)辽1302民特732号申请人:吴果娜,女,1983年1月25日出生,汉族,住朝阳市双塔区。被申请人:吴尚财,男,1948年10月28日出生,汉族,住朝阳市双塔区。申请人吴果娜与被申请人吴尚财申请宣告自然人无民事行为能力一案,本院于2021年9月8日立案。申请人吴果娜于2021年9月14日向本院提出撤诉申请。本院认为,申请人的撤诉申请,是在法律允许范围内对自己的权利所作的处分。符合法律规定的撤诉条件,应予准许。依照《中华人民共和国民事诉讼法》第一百四十五条第一款之规定,裁定如下:准许申请人吴果娜撤回起诉。审判员 李欣二〇二一年九月十四日书记员 闫旭 来源:马 克 数 据 网 | 378 | cc:Chinese-Court-Decisions |
common_corpus_StackExchange | 2,021 | I want to make a paragraph under a heading
so I'm sorta new to CSS, not that new I've been doing web development for around a month. I'm trying to make this text go below the heading with my name, heres my css and html for reference
.coologo {
width: 230px;
border: white;
border-radius: 6969px;
border-style: ... | 599 | misc_reference |
common_corpus_Github Open Source | 2,021 | using System;
namespace SimpleSoft.Database
{
/// <summary>
/// Represents an entity with an unique identifier to be used
/// across multiple systems
/// </summary>
/// <typeparam name="TId">The external id type</typeparam>
public interface IHaveExternalId<TId> where TId : IEquatable<TId>
... | 181 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import Document, { Head, Html, Main, NextScript } from 'next/document';
export default class MyDocument extends Document {
render() {
return (
<Html>
<Head>
<link
rel="shortcut icon"
href="/talia-icon-black.png"
type="image/png"
/>
</H... | 98 | cc:Github Open Source |
common_corpus_Open-Science-Pile | 2,021 | These drugs, along with other medicines, were included
in the 5th and 6th editions of the COVID-19 Prevention,
Diagnostics and Treatment Guidelines published in China in
January-February 2020. Hydroxychloroquine was included in
the COVID-19, New Coronavirus Infection Interim Prevention,
Diagnostics and Treatment Guidel... | 14,955 | cc:Open-Science-Pile |
common_corpus_Github Open Source | 2,021 | using CoreMe.Core.Domains.Common;
using System;
namespace CoreMe.Service.Core.User.Input
{
public class UserPagingDto : PagingDto
{
public string Username { get; set; }
public string Nickname { get; set; }
public int IsEnable { get; set; }
public long RoleId { get; set; }
... | 91 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 贵州省遵义市汇川区人民法院民 事 判 决 书(2021)黔0303民初3918号原告:冯光容,男,汉族,1946年4月4日出生,住贵州省遵义市汇川区。被告:遵义华宏林木产业有限公司,住所地:贵州省遵义市汇川区泗渡镇观坝村建新组,统一社会信用代码:91520303050815830K。法定代表人:冯春梅。原告冯光容与被告遵义华宏林木产业有限公司(以下简称华宏林木公司)土地租赁合同纠纷一案,本院于2021年5月8日立案受理后,依法适用简易程序,公开开庭进行了审理,原告冯光容到庭参加了诉讼,被告华宏林木公司经本院合法传唤无正当理由未到庭参加诉讼。本案现已审理终结。原告冯光容向本院提出诉讼请求:一、被告进行耕地恢复交由原告使用,或赔偿耕地恢... | 3,726 | cc:Chinese-Court-Decisions |
common_corpus_StackExchange | 2,021 | React: how to pass / populate specific data into a component?
I want to build an easily maintainable and consistent layout component for team member biographies that are spread across multiple individual pages such as:
JohnDoe.JS
JaneDoe.Js
JonathanDoe.Js
I want to map a specific set of data onto a prebuild component,... | 689 | misc_reference |
common_corpus_Github Open Source | 2,021 | /*
* Freescale i.MX28 APBH Register Definitions
*
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
* on behalf of DENX Software Engineering GmbH
*
* Based on code from LTIB:
* Copyright 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute ... | 7,200 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // On the Edge Editor
//
// Copyright © 2004-2021 Jukka Tykkyläinen
//
// 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 u... | 7,274 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 河北省黄骅市人民法院 刑 事 判 决 书 (2021)冀0983刑初97号 公诉机关河北省黄骅市人民检察院。 被告人孙某某,男,1987年11月4日出生,汉族,小学文化,个体,户籍地河北省沧州市黄骅市,住河北省沧州市黄骅市。因涉嫌犯贩卖毒品罪,于2020年11月15日被黄骅市公安局刑事拘留,于2020年11月25日被黄骅市公安局执行逮捕。现羁押于河北省黄骅市看守所。 黄骅市人民检察院以黄检一部刑诉(2021)Z59号起诉书指控被告人孙某某犯贩卖毒品罪,向本院提起公诉。本院于2021年2月18日受理后,依法适用简易程序,实行独任审判,利用远程庭审系统公开开庭审理了本案。黄骅市人民检察院指派检察员王辉通过远程视频出庭支持公诉,被告人孙某... | 1,557 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | /*
SPDX-License-Identifier: Apache-2.0
*/
// ==== Invoke Wallets ====
// peer chaincode invoke -C mychannel -n wallets -c '{"Args":["init"]}'
// peer chaincode invoke -C mychannel -n wallets -c '{"Args":["addWallet","name","price"]}'
// peer chaincode invoke -C mychannel -n wallets -c '{"Args":["addBalance","name","p... | 3,384 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | using Newtonsoft.Json;
using System;
using System.Linq;
namespace InfiniteFlightLiveClient.Types
{
public class UserGradeInfo
{
[JsonProperty("userId")]
public Guid UserId { get; set; }
[JsonProperty("virtualOrganization")]
public string VirtualOrganization { get; set; }
... | 154 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 湖南省长沙市开福区人民法院结 案 通 知 书(2021)湘0105执恢1542号申请执行人何云波申请执行被执行人湖南久丰国际商品现货交易市场有限公司(现更名为湖南申元国际贸易有限责任公司)合同纠纷一案,申请执行人依据(2019)湘0105民初11273号民事判决书所申请执行的内容,经本院执行现已结案。特此通知。二〇二一年六月二十一日 来源:百度“马 克 数据网” | 189 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | 'use strict';
var browserify = require('browserify');
var b = browserify();
var dogrSrc;
b.add('./src/dogr.js');
b.bundle(null, function(err, src){
dogrSrc = src;
});
module.exports = function(app) {
app.get('/dogr.js', function(req, res){
res.send(dogrSrc);
});
};
| 78 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Somehow appending another list changes a different list (Python)
When I run this code I get an error that the list index is out of range because the index of dataLoopVar is out of the range of the trueDataList, even though this should not be possible. Somehow dataLoopVar is changing the value of trueDataList when I'm a... | 477 | misc_reference |
common_corpus_Github Open Source | 2,021 | extends VisibilityNotifier
export (Resource) var biome_resource = null
export (Vector2) var chunk_size = Vector2(10, 10)
export (Vector2) var chunk_position = Vector2(0, 0)
export (Transform) var terrain_inv_transform
export (Vector2) var terrain_size = Vector2(1, 1)
export (Vector2) var terrain_pivot = Vector2(0.5, 0... | 1,098 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // This file is part of the uutils coreutils package.
//
// (c) Derek Chiang <derekchiang93@gmail.com>
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
#[macro_use]
extern crate uucore;
use clap::{crate_version, App, Arg};
use std::path:... | 613 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React, { useEffect } from 'react';
import { Navbar, Container, Row, Col, ButtonToolbar, Button } from 'react-bootstrap';
import { Form, Input, Select, SelectOption } from '../../../components/common/form';
import { fetchUserDetail, getUpdateUserAction } from 'actionCreators/usersActionCreator';
import { useDispa... | 1,662 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.swiftboot.sheet.meta;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.util.HashMap;
import java.util.Map;
/**
* @author swiftech
* @see SheetId
*/
public class SheetIdTest {
/**
* Test the equation of SheetId by equals() and hashCode()
*/
@Tes... | 283 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import React, { useEffect, useState } from "react";
export default function () {
const [nowTime, setNowTime] = useState(new Date().toLocaleString("ja-JP"));
useEffect(() => {
setInterval(() => {
setNowTime(new Date().toLocaleString("ja-JP"));
}, 100);
}, []);
return <h4>現在時刻:{nowTime}</h4>;
}
| 92 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Why did my CSS for replacing a list item bullet with a background icon stop working?
This CSS used to work with social media icons replacing list item bullets, but now it is giving me a list showing the bullets, the icons, and the text smashed together.
Why has "list-style: none;" stopped working?
.social-follow {
... | 2,602 | misc_reference |
common_corpus_Chinese-Court-Decisions | 2,021 | 盖州市人民法院执 行 裁 定 书(2021)辽0881执764号之二被执行人:邵雷,男,汉族,1979年09月13日生,住鲅鱼圈区。本院依据已经发生法律效力的盖州市人民法院作出的判决,责令被执行人履行上述法律文书确定的义务。但被执行人邵雷至今未履行。依照《中华人民共和国民事诉讼法》第二百四十二条、《最高人民法院关于适用〈中华人民共和国民事诉讼法〉的解释》第四百八十七条规定,裁定如下:冻结被执行人邵雷在中国建设银行6236680XXX1080626_156_1账户内存款人民币250219.00元,冻结期限为十二个月。本裁定立即执行。审判员 周显广二〇二一年五月七日书记员 沈国纬 微信公众号“马克数据网” | 327 | cc:Chinese-Court-Decisions |
common_corpus_OpenAlex | 2,021 | Evaluation of connectivity map
shows limited reproducibility
in drug repositioning
OPEN Nathaniel Lim1,3 & Paul Pavlidis2,3* The Connectivity Map (CMap) is a popular resource designed for data-driven drug repositioning using
a large transcriptomic compendium. However, evaluations of its performance are limited. We u... | 25,139 | academic |
common_corpus_Github Open Source | 2,021 | // Code generated by go-swagger; DO NOT EDIT.
package identities
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// New creates a new identities AP... | 1,821 | cc:Github Open Source |
common_corpus_OpenAlex | 2,021 | 1
|
BACKGROUND (REEIs) (Gowrishankar & Levin, 2017; Russell‐Bennett et al., 2019). For
example, one study reported that more energy efficient buildings could
eliminate 550 million metric tons of CO2 equivalent emissions annually
by 2050 (Gowrishankar & Levin, 2017). In addition to reducing energy
use and emissions, REE... | 15,249 | academic |
common_corpus_Github Open Source | 2,021 | import React, { useEffect, useState } from 'react'
export type TCircleSteperProps = {
size: number
totalStep?: number
spaceAngle?: number
currentStep: number
stopColor1?: string
stopColor2?: string
spacing?: number
}
const polarToCartesian = (
centerX: number,
centerY: number,
radius: number,
an... | 845 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package pl.edu.agh.xinuk.model
import pl.edu.agh.xinuk.config.XinukConfig
import scala.math.Ordering
final case class Signal(value: Double) extends AnyVal with Ordered[Signal] {
def +(other: Signal): Signal = Signal(value + other.value)
def -(other: Signal): Signal = Signal(value - other.value)
def *(factor... | 525 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | @extends('layouts.website.app')
@section('main')
<section class="inner-hero bg_img" data-background="{{ asset('public/website/assets/images/list-games/inner-hero.jpg')}}">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="page-title">{{ $data1}}</h2>
... | 1,541 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
library tine_alpha;
use tine_alpha.sim_data_types.all;
entity core_tb is
end core_tb;
architecture behavioral of core_tb is
component core is
generic( sim_en: boolean := true
);
port( clk: in std_logic;
rst: in std_logic;... | 934 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 大连市甘井子区人民法院执 行 裁 定 书(2021)辽0211执恢477号申请人:由群,女。委托代理人:赵云,辽宁申智律师事务所律师。被执行人:通化市博大房地产开发有限公司。法定代表人:刘帅,系该公司总经理。被执行人:刘帅,男。被执行人:刘恩广,男。申请执行人由群与被执行人通化市博大房地产开发有限公司、刘帅、刘恩广民间借贷纠纷一案,本院于2020年1月19日作出(2019)辽0211民初6086号民事判决书,该判决书已经发生法律效力。判决涉及给付内容如下:被执行人通化市博大房地产开发有限公司、刘帅、刘恩广自判决发生法律效力之日起十日内共同向申请人由群偿还借款1,200,000元并支付利息6,000元(按年利率6%,从2017年9月1... | 923 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 四川省通江县人民法院 结 案 通 知 书 (2021)川1921执242号 闫海艳(申请执行人)、张修贵(被执行人): 闫海艳与张修贵婚姻家庭纠纷一案,申请执行标的共计50000.00元。经本院立案执行,现已强制执行到位50000.00元。本院已于2021年2月25日将该款转付给闫海艳。至此,闫海艳向本院申请执行的(2020)川1921民初770号民事调解书已全部执行完毕,现已结案。 特此通知。 二〇二一年二月二十五日 搜索“马 克 数 据 网” | 220 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not u... | 1,106 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
public $timestamps = false;
public function post(){
return $this->belongsTo('App\Post');
}
protected $fillable = [
'author',
'text',
'published_at',
'post_id'
];
... | 92 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import { classReference } from '../native/references';
import { AFGFactoryHologram } from './AFGFactoryHologram';
import { AFGRailroadTrackHologram } from './AFGRailroadTrackHologram';
import { UFGRecipe } from './UFGRecipe';
import { UFGTrainPlatformConnection } from './UFGTrainPlatformConnection';
export interface ... | 239 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <template>
<app-layout>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
<form @submit.prevent="onSubmitForm">
<div class="mb-4">
... | 561 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 辽宁省瓦房店市人民法院 民 事 裁 定 书 (2021)辽0281民初3961号 原告:大连瑞祥物业管理有限公司,住所地辽宁省大连市沙河口区五一路瑞祥园8号2单元6层1号。 统一社会信用代码:91210204759915919X。 法定代表人:谢新宇,该公司总经理。 委托诉讼代理人:张佳丽,女,1997年6月21日出生,满族,该公司法务专员,住辽宁省彰武县。 委托诉讼代理人:齐新,男,1993年6月8日出生,汉族,该公司法务专员,住内蒙古兴安盟突泉县。 被告:杨成杰,男,1969年6月20日出生,汉族,住瓦房店市。 原告大连瑞祥物业管理有限公司与被告杨成杰物业服务合同纠纷一案,本院于2021年4月29日立案。原告大连瑞祥物业管理有限... | 619 | cc:Chinese-Court-Decisions |
common_corpus_Chinese-Court-Decisions | 2,021 | 西安市莲湖区人民法院 西安市莲湖区人民法院刑事判决书 (2021)陕0104刑初119号公诉机关西安市莲湖区人民检察院。被告人李某,男,1987年12月5日出生,身份证号码李某610425198712053776,汉族,小学文化程度,无业,户籍地陕西省礼泉县XX镇XX村XX组,现住西安市莲湖区XX路XX号楼XX单元XX室。2020年3月23日自动投案,次日因涉嫌犯故意伤害罪被西安市公安局莲湖分局取保候审,2020年10月29日被依法逮捕。现羁押于西安市莲湖区看守所。被告人郑某佳,男,1987年1月20日出生,身份证号码XXXXXXXXXXXXXXXXXX,汉族,初中文化程度,无业,户籍地陕西省礼泉县,现住西安市,... | 1,683 | cc:Chinese-Court-Decisions |
common_corpus_OpenAlex | 2,021 | © The Author(s). 2021 Open Access This article is licensed under a Creative Commons Attribution 4.0 International License,
which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give
appropriate credit to the original author(s) and the source, provide a link to the... | 21,811 | academic |
common_corpus_Github Open Source | 2,021 | import { Step, Stepper } from '@components/ui';
import { Grid } from '@material-ui/core';
import isShippingSameAsBilling from '@utils/isShippingSameAsBilling';
import { useRouter } from 'next/router';
import React, { useEffect, useState } from 'react';
import { useLocalStorage } from 'react-use';
import { CartQuery, Ch... | 1,083 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | // Claxon -- A FLAC decoding library in Rust
// Copyright 2017 Ruud van Asseldonk
//
// 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 has been included in the root of the repository.
// This file contains a m... | 1,345 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
use SlownLS\Auth\User;
if( isset($_POST["username"], $_POST["password"], $_POST["password_confirm"], $_POST["email"])
&& !empty($_POST["username"]) && !empty($_POST["password"])
&& !empty($_POST["password_confirm"]) && !empty($_POST["email"]) ){
$username = htmlspecialchars($_POST["username"]);
... | 167 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package day39_0709
fun max(a:Int, b:Int):Int{
var j:Int
if(a > b)
j = a
else
j = b;
return j;
}
fun chooseMax(arg1: Int, arg3: (arg4: Int) -> Int):Int{
return arg3.invoke(arg1)
}
fun fromArg(arg:String){
print(arg+"\n")
}
fun operateArgMethod(arg1:String,arg2:(arg:String)-... | 205 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package org.deltaecore.core.generation.interpreter;
import java.util.List;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.ecore.EAttribute;
import org.deltaecore.core.generation.general.DENameGenerator;
import org.deltaecore.core.decoredialect.*;
public class DEAbstractDeltaDialectInterpreterCreator
... | 2,791 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /**
*
*/
package org.bgp4j.apps.easybox;
import javax.enterprise.util.AnnotationLiteral;
import org.bgp4j.weld.SeApplicationBootstrap;
/**
* @author rainer
*
*/
public class EasyboxDaemon {
public static void main(String[] args) {
SeApplicationBootstrap.bootstrapApplication(args, new AnnotationLiteral<Easyb... | 109 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
.. module:: collimator
:platform: Unix
:synopsis: the top-level submodule of T_System that contains the classes related to collimator of T_System's Target Locking System.
.. moduleauthor:: Cem Baybars GÜÇLÜ <cem.baybars@gmail.com>
"""
import threading
from math ... | 1,909 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | import asyncio
from inspect import iscoroutinefunction
from typing import Any, Callable, Coroutine, Generic, Iterable, Optional, Union
from fastapi import Query
from fastapi_module import enhanced_cbd
from tortoise.queryset import QuerySet
from {{cookiecutter.package_name}}.config import settings
from .pagination_dt... | 355 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /*
* Copyright 2015 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable l... | 5,317 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package stdlib
import (
"fmt"
"github.com/gammazero/deque"
"github.com/pieterclaerhout/go-log"
"github.com/vulogov/derBund/internal/vm"
)
func mergeQueue(q *deque.Deque, e1 *vm.Elem, e2 *vm.Elem) {
q1 := e1.Value.(*deque.Deque)
q2 := e2.Value.(*deque.Deque)
for i := 0; i < q1.Len(); i++ {
q.PushBack(q1.At(... | 708 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | /* A Bison parser, made by GNU Bison 3.5.1. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by t... | 65,976 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | #!/bin/bash
echo "------ environment vars ------"
env | grep -i virtual
env | grep -i venv
PYTHON_MAIN=${PYTHON_MAIN:-~/app}
echo "PYTHON_MAIN=${PYTHON_MAIN}"
#########################################################################
#### ---- Customization for multiple virtual python environment ---- ####
#### ... | 373 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | extends Node2D
# Declare member variables here. Examples:
# var a = 2
export (PackedScene) var Condor
onready var bg_chase = preload("res://asset/audio/bg/desert_chase.ogg")
# Called when the node enters the scene tree for the first time.
func _ready():
randomize()
$player/Camera2D.enabled = true
$VacTimer.start... | 972 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | package com.tongji.boying.controller;
import com.tongji.boying.common.api.CommonResult;
import com.tongji.boying.dto.showParam.SmsCategoryParam;
import com.tongji.boying.model.BoyingCategory;
import com.tongji.boying.service.SmsCategoryService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperat... | 512 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | use crate::entity::{ProtoEntity, ToEntity};
use crate::p4rt::pipeconf::DefaultPipeconf;
use crate::p4rt::pure::get_meter_id;
use rusty_p4_proto::proto::v1::{Index, MeterConfig, MeterEntry};
#[derive(Clone, Debug)]
pub struct Meter {
pub name: &'static str,
pub index: i64,
pub cburst: i64,
pub cir: i64,... | 250 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 安乡县人民法院执 行 案 件 结 案 通 知 书(2021)湘0721执747号裕隆汽车金融(中国)有限公司、梁发阳本院执行的裕隆汽车金融(中国)有限公司申请梁发阳借款合同纠纷一案,经强制执行,已全部执行完毕。根据最高人民法院《关于执行案件立案、结案问题的意见》第十五条之规定,该案按强制执行方式结案。审判员 石毅二〇二一年八月二十七日书记员 周凤 关注公众号“马克数据网” | 204 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | const path = require("path");
const awaitableFs = require("./AwaitableFs");
module.exports = class EventStore {
constructor(folder, options) {
this.folder = folder;
this._createHeaders = options.createHeaders || (() => ({time: new Date().toISOString()}));
this._fs = options.fs || awaitableFs;
this._console... | 872 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?= $this->extend('admin/base') ?>
<?= $this->section('admin') ?>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<?php if (session()->get('success')): ?>
<div class="alert alert-success alert-dismissable">
<button type="button" class="cl... | 1,921 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Liveinteraction\V20201214\Models\RecallMessageRequest;
use AlibabaCloud\Tea\Model;
class requestParams extends Model
{
/**
* @description 操作者ID
*
* @var string
*/
public $appUid;
/**
* @desc... | 767 | cc:Github Open Source |
common_corpus_USPTO | 2,021 | The heating station has two heat screens that have identical surface areas and that are equipped with infrared flat radiators and arranged at a distance of 250 mm from each other. Each heat screen surface is larger than the plate surface. Both heat screens are maintained at a temperature of 360 degrees C. The plate wit... | 1,755 | formal_gov |
common_corpus_Github Open Source | 2,021 | import os
import requests
from PySide6.QtCore import Slot, QObject
from pytube import YouTube, exceptions
class BackEnd(QObject):
def __init__(self, app):
super().__init__()
self.app = app
self.file_size = 0
@Slot(result=bool)
def check_internet(self):
url = "https://... | 129 | cc:Github Open Source |
common_corpus_StackExchange | 2,021 | Cannot locate an element inside of an map marker container / clicking to a red dot
i was wondering if it is possible to locate an element inside of an map marker container. If i go over it by inspecting it it returns me something like this and i cannot access inside of it.
<div id="map_markerContainer" style="position:... | 557 | misc_reference |
common_corpus_USPTO | 2,021 | Capturing transaction context
ABSTRACT
Disclosed are systems and methods of capturing sensor data associated with a retail location. The systems and methods further include a point-of-sale device for processing customer transactions and generating an event trigger for capturing sensor data from one or more of the sen... | 8,471 | formal_gov |
common_corpus_Github Open Source | 2,021 | import React from 'react';
const Export = props => (
<svg viewBox="0 0 960 960" width="1em" height="1em" {...props}>
<defs />
<g id="Layer_2" data-name="Layer 2">
<g id="icon">
<path
className="cls-1"
d="M832 352a32 32 0 0 0-32 32v416a96.11 96.11 0 0 1-96 96H160a96.11 96.11 ... | 421 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 云南省昆明市官渡区人民法院民 事 裁 定 书(2021)云0111民初2431号原告:昆明市公共租赁住房开发建设管理有限公司。住所:云南省昆明市东风东路**金泰大厦**。法定代表人:胡斌,董事长。委托代理人:杨凯翔、郭瑾璇,北京盈科(昆明)律师事务所律师,特别授权代理。被告:司文飞,男,彝族,1981年6月20日出生,身份证住址云南省红河哈尼族彝族自治州开远市。原告昆明市公共租赁住房开发建设管理有限公司诉被告司文飞房屋租赁合同纠纷一案,本院于2021年1月22日立案受理,审理过程中,原告昆明市公共租赁住房开发建设管理有限公司向本院申请撤诉,经审查,原告昆明市公共租赁住房开发建设管理有限公司的撤诉申请系其真实意思表示,符合法律规定。据... | 593 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | <template>
<div class="menu sticky">
<h1 class="subtitle has-text-centered">Categories</h1>
<ul class="menu-list">
<CategoryItem
v-for="category in categories"
:category="category"
:key="category.id"
:active="active === category.id ? true : false"
@changeCategory=... | 177 | cc:Github Open Source |
common_corpus_Github Open Source | 2,021 | <?php
/*
* Created on Sep 19, 2006
*
* API for MediaWiki 1.8+
*
* Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; ei... | 708 | cc:Github Open Source |
common_corpus_Chinese-Court-Decisions | 2,021 | 四川省成都高新技术产业开发区人民法院 民 事 判 决 书 (2020)川0191民初10152号 原告:柯小亮,男,1973年10月22日出生,汉族,住成都市高新区。 委托诉讼代理人:牛青原,四川亚峰律师事务所律师,一般授权代理人。 委托诉讼代理人:任志强,四川亚峰律师事务所律师,一般授权代理人。 被告:叶永忠,男,1980年1月24日出生,汉族,住成都市天府新区。 原告柯小亮与被告叶永忠民间借贷纠纷一案,本院于2020年10月13日立案后,依法适用简易程序于2021年3月1日公开开庭进行了审理。原告柯小亮及其诉讼代理人牛青原、任志强到庭参加诉讼,被告叶永忠经本院合法传唤未到庭参加诉讼,本院依法缺席审理。本案现已审理终结。 柯小亮向... | 2,110 | cc:Chinese-Court-Decisions |
common_corpus_Github Open Source | 2,021 | import React from 'react'
import { ArrowLeftOutlined } from '@ant-design/icons'
import './index.scss'
import { Button } from 'antd'
export interface RadioSelectType {
key: string
label: string
icon?: React.ReactNode
}
interface RadioSelectProps {
options: RadioSelectType[]
selectedOption: null | s... | 562 | cc:Github Open Source |