text stringlengths 2 99.9k | meta dict |
|---|---|
var $path = require("path");
module.exports = {
mode: "production",
devtool: "source-map",
entry: {
index: ["core-js/stable", "./index.ts"]
},
output: {
path: $path.join(__dirname, "dist"),
publicPath: "dist/",
filename: "[name].js",
chunkFilename: "[name].js"
},
resolve: {
ex... | {
"pile_set_name": "Github"
} |
// buggy program - faults with a read from kernel space
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
cprintf("I read %08x from location 0xf0100000!\n", *(unsigned*)0xf0100000);
}
| {
"pile_set_name": "Github"
} |
// Copyright 2013 the V8 project authors. All rights reserved.
// Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions o... | {
"pile_set_name": "Github"
} |
/* iCheck plugin Square skin, purple
----------------------------------- */
.icheckbox_square-purple,
.iradio_square-purple {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url(purple.png) no-repeat;
bord... | {
"pile_set_name": "Github"
} |
#
# BSD LICENSE
#
# Copyright (c) Intel Corporation.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, ... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Repository;
use Composer\Downlo... | {
"pile_set_name": "Github"
} |
区块链教程
==========
本教程内容涉及:
- 用 golang 从零开始构建区块链(Bitcoin)系列
- 区块链基础知识
- Ethereum
- Cardano
- Orchid
- Polkadot
- ......
实际上,本教程也是我对于区块链认识的一个剪影。区块链不仅仅是计算机科学,还涉及了政治经济制度,社会分工协作等等很多方面,因此我的关注点不仅在于深度,更在于其广度,更多是站在研究的角度,而非仅仅是一个程序员的视角。
:warning: *在这里打个广告:如果对智能合约感兴趣的话,可以看一下 [zastrin.com](https://cn.zastrin.com/) 的智能合约培训,中文版是我翻... | {
"pile_set_name": "Github"
} |
#! /usr/bin/perl
#
# Copyright (c) 2001-2010, PostgreSQL Global Development Group
#
# $PostgreSQL$
#
# Generate UTF-8 <--> BIG5 conversion tables from
# map files provided by Unicode organization.
# Unfortunately it is prohibited by the organization
# to distribute the map files. So if you try to use this script,
# you... | {
"pile_set_name": "Github"
} |
{
"extends": "dtslint/dt.json",
"rules": {
"callable-types": false,
"dt-header": false,
"no-declare-current-package": false,
"no-redundant-jsdoc": false,
"no-single-declare-module": false,
"prefer-const": false,
"prefer-method-signature": false
}
}
| {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
namespace DotVVM.Samples.BasicSamples
{
public class SampleConfiguration
{
public IReadOnlyDictionary<string, string> AppSettings { get; set; }
private SampleConfiguration(IReadOnlyDictionary<string, string> appSettings)
{
A... | {
"pile_set_name": "Github"
} |
// Copyright 2011 Aaron Jacobs. All Rights Reserved.
// Author: aaronjjacobs@gmail.com (Aaron Jacobs)
//
// 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/licen... | {
"pile_set_name": "Github"
} |
/**
* This file is part of Aion-Lightning <aion-lightning.org>.
*
* Aion-Lightning 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, either version 3 of the License, or
* (at your option) any lat... | {
"pile_set_name": "Github"
} |
/**
* 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... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DwarfCorp.Gui;
using DwarfCorp.Gui.Widgets;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace DwarfCorp.Play.EmployeeInfo
{
public class TaskPanel : Widget
{
public Action<bool> S... | {
"pile_set_name": "Github"
} |
//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors.
//go:generate ucloud-gen-go-api UMem DescribeUMemPrice
package umem
import (
"github.com/ucloud/ucloud-sdk-go/ucloud/request"
"github.com/ucloud/ucloud-sdk-go/ucloud/response"
)
// DescribeUMemPriceRequest is ... | {
"pile_set_name": "Github"
} |
/**
*
* Copyright 2015 Florian Schmaus
*
* 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... | {
"pile_set_name": "Github"
} |
/*
Listfiles
This example shows how print out the files in a
directory on a SD card
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
created Nov 2010
by David A. Mellis
modified 9 Apr 2012
by Tom Igoe
modified 2 Feb 2014
by Scott... | {
"pile_set_name": "Github"
} |
namespace Nemerle.VisualStudio.GUI
{
partial class GoToFileForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true ... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("uploadwidget","pt-br",{abort:"Envio cancelado pelo usuário.",doneOne:"Arquivo enviado com sucesso.",doneMany:"Enviados %1 arquivos com sucesso.",upl... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google Inc.
*
* 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 t... | {
"pile_set_name": "Github"
} |
<?php
$label = new Label();
if(isset($_REQUEST['id']))
{
$label->loadById($_REQUEST['id']);
}
if(isset($_REQUEST['is_new']))
{
$label->name = $_REQUEST['label']['name'];
$label->save();
?>
<script type="text/javascript">
location.href = 'index.php?module=settings&action=list';
</script>
<?php
}
?>
<fo... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
import matplotlib.pyplot as pl
from matplotlib.ticker import MultipleLocator, FuncFormatter
import numpy as np
x = np.arange(0, 4*np.pi, 0.01)
y = np.sin(x)
pl.figure(figsize=(8,4))
pl.plot(x, y)
ax = pl.gca()
def pi_formatter(x, pos):
"""
比较罗嗦地将数值转换为以pi/4为单位的刻度文本
"""
... | {
"pile_set_name": "Github"
} |
#version 430
uniform mat4 fg_ModelViewMatrix;
uniform mat4 fg_ModelViewMatrixInverse;
uniform mat4 fg_ProjectionMatrix;
uniform mat4 fg_ModelViewProjectionMatrix;
uniform mat3 fg_NormalMatrix;
layout(location = 0) out vec4 fg_FragColor;
in vec4 fg_Color_vf;
#define gl_Color fg_Color_vf
in float fg_FogFragCoo... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2018 The Android Open Source Project
~
~ 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/... | {
"pile_set_name": "Github"
} |
/*
* 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 ... | {
"pile_set_name": "Github"
} |
Elixir File(0,17)
ElixirAccessExpressionImpl(ACCESS_EXPRESSION)(0,17)
ElixirInterpolatedCharListSigilLineImpl(INTERPOLATED_CHAR_LIST_SIGIL_LINE)(0,17)
PsiElement(~)('~')(0,1)
PsiElement(c)('c')(1,2)
PsiElement(Char List Sigil Promoter ({, [, <, ", /, (, |, '))('"')(2,3)
ElixirInterpolatedC... | {
"pile_set_name": "Github"
} |
/*
* The MIT License
*
* Copyright (c) 2017, CloudBees, Inc.
*
* 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, c... | {
"pile_set_name": "Github"
} |
bin/ar65
bin/ca65
bin/cc65
bin/chrcvt65
bin/cl65
bin/co65
bin/da65
bin/grc65
bin/ld65
bin/od65
bin/sim65
bin/sp65
%%DATADIR%%/asminc/_file.inc
%%DATADIR%%/asminc/_heap.inc
%%DATADIR%%/asminc/accelerator.inc
%%DATADIR%%/asminc/apple2.inc
%%DATADIR%%/asminc/apple2.mac
%%DATADIR%%/asminc/atari.inc
%%DATADIR%%/asminc/atari... | {
"pile_set_name": "Github"
} |
#include <ctype.h>
int isalnum( int c ) {
return ( ( isalpha( c ) ) || ( isdigit( c ) ) );
}
| {
"pile_set_name": "Github"
} |
import { ParsingComponents } from "../src/results";
test("Test - Create & manipulate date results", () => {
const refDate = new Date();
const components = new ParsingComponents(refDate, { year: 2014, month: 11, day: 24 });
expect(components.get("year")).toBe(2014);
expect(components.get("month")).toBe... | {
"pile_set_name": "Github"
} |
import {parseFont} from '@mesh.js/core';
import {toNumber, toString} from '../utils/attribute_value';
import {parseColor} from '../utils/color';
import Block from './block';
const setDefault = Symbol.for('spritejs_setAttributeDefault');
const setAttribute = Symbol.for('spritejs_setAttribute');
const getAttribute = Sym... | {
"pile_set_name": "Github"
} |
// CS1720: Expression will always cause a `System.NullReferenceException'
// Line: 9
// Compiler options: -warnaserror -warn:1
public class Tester
{
public static void GenericClass<T>(T t) where T : class
{
string s = default(T).ToString();
}
} | {
"pile_set_name": "Github"
} |
---
title: ASP.NET Core 中的用途字符串
author: rick-anderson
description: 了解如何在 ASP.NET Core 数据保护 Api 中使用目的字符串。
ms.author: riande
ms.date: 10/14/2016
no-loc:
- ASP.NET Core Identity
- cookie
- Cookie
- Blazor
- Blazor Server
- Blazor WebAssembly
- Identity
- Let's Encrypt
- Razor
- SignalR
uid: security/data-protection/consum... | {
"pile_set_name": "Github"
} |
//[example_output
> fixture_03 --log_level=message
Running 2 test cases...
setup fixture
running test_case1
running test_case2
teardown fixture
*** No errors detected
//] | {
"pile_set_name": "Github"
} |
function sigmoid(x)
return 1./(1+exp.(-x))
end
abstract type LossFunction end
type SquareLoss <: LossFunction
obj::Function
gradient::Function
function obj(y::Array, y_pred::Array)
return 0.5 * sum(abs2, y - y_pred)
end
function gradient(y::Array, y_pred::Array)
return (y_pre... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 Chen-Yu Tsai <wens@csie.org>
*
* This file is dual-licensed: you can use it either under the terms
* of the GPL or the X11 license, at your option. Note that this dual
* licensing only applies to this file, and not this project as a
* whole.
*
* a) This file is free software; you can redist... | {
"pile_set_name": "Github"
} |
/*
Copyright 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, softw... | {
"pile_set_name": "Github"
} |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
OFF
8 12 18
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
3 2 3 7
3 2 0 1
3 3 1 5
3 7 5 4
3 1 0 4
3 0 2 6
3 7 6 2
3 1 3 2
3 5 7 3
3 4 6 7
3 4 5 1
3 6 4 0
| {
"pile_set_name": "Github"
} |
#[cfg(feature = "mesalock_sgx")]
use std::prelude::v1::*;
use std::time;
#[cfg(feature = "mesalock_sgx")]
use std::untrusted::time::SystemTimeEx;
pub fn micros() -> u64 {
loop {
let now = time::SystemTime::now().duration_since(time::UNIX_EPOCH);
match now {
Err(_) => continue,
... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sat Nov 16 21:43:17 PST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>RuntimeJsonMappingE... | {
"pile_set_name": "Github"
} |
/*
* Tencent is pleased to support the open source community by making QMUI_Android available.
*
* Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the MIT License (the "License"); you may not use this file except in
* compliance with the License. You may obtain ... | {
"pile_set_name": "Github"
} |
module.exports = function (grunt) {
grunt.registerMultiTask('run-test', 'Runs KeeWeb browser-tests', function () {
const done = this.async();
const opt = this.options();
const file = this.files[0].src[0];
const path = require('path');
const puppeteer = require('puppeteer');
... | {
"pile_set_name": "Github"
} |
/* Copyright (C) 2016 NooBaa */
import template from './drop-area.html';
import { noop } from 'utils/core-utils';
import ko from 'knockout';
class DropAreaViewModel {
constructor({
onDrop = noop,
disabled = false,
active = false
}) {
this.dropHandler = onDrop;
this.drag... | {
"pile_set_name": "Github"
} |
LPRLite.1alpha
| {
"pile_set_name": "Github"
} |
REDISTRIBUTION
--------------
This binary distribution contains the below components.
Required components:
The following components are required. CEF will not function without them.
* CEF core library.
* libcef.so
* Unicode support data.
* icudtl.dat
* V8 snapshot data.
* natives_blob.bin
* snapshot_blob.... | {
"pile_set_name": "Github"
} |
Possible post processing of the AST that we might want:
1) SgInitializedName objects in function prototypes could be set to
have the scope of the function definition in the defining declaration
if it exists. This might be better than having the scope be NULL.
| {
"pile_set_name": "Github"
} |
/*
* This file Copyright (C) 2012-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#include <QApplication>
#include <QStyle>
#include <QStylePainter>
#include "FilterBarComboBox.h"
#include "StyleHelper.h"
#include "Utils.h"
namespa... | {
"pile_set_name": "Github"
} |
// numbers only won't match
$foo-color: #123;
.foo {
background: linear-gradient(top, #cc2, #44d);
color: #fff;
}
$bar-color: #123456;
.bar {
background: linear-gradient(top, #CC2, #44D);
color: #FFF;
}
.qux {
color: #cC2;
}
$lower-numbers-color: #123cc2;
$upper-lower-color: #CCCCCc;
$map-vals: (
mixe... | {
"pile_set_name": "Github"
} |
{
"name": "AEB10E",
"description": "An acoustic bass guitar.",
"url": "https://www.ibanez.com/usa/products/detail/aeb10e_2y_08.html"
}
| {
"pile_set_name": "Github"
} |
// Copyright (C) 2012 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_SVM_RANK_TrAINER_ABSTRACT_Hh_
#ifdef DLIB_SVM_RANK_TrAINER_ABSTRACT_Hh_
#include "ranking_tools_abstract.h"
#include "sparse_vector_abstract.h"
#include "function_abstract.h"
#in... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2014 Freddie (Musenkishi) Lust-Hed
~
~ 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/lice... | {
"pile_set_name": "Github"
} |
/*
Theme: Theme Admin
Author: Orchard Team – http://www.orchardproject.net
Copyright: 2010, Orchard. All Rights Reserved
*/
/* Color Palette
**************************************************************
Background: #f3f4f5
Borders:
Text: #333333
Secondary Text:
Main Accent:
Links: 1e5d7d
New Links: #3a822e;
*/
/* ... | {
"pile_set_name": "Github"
} |
#include "xhci-mtk-scheduler.h"
#include <linux/kernel.h> /* printk() */
static struct sch_ep **ss_out_eps[MAX_EP_NUM];
static struct sch_ep **ss_in_eps[MAX_EP_NUM];
static struct sch_ep **hs_eps[MAX_EP_NUM]; //including tt isoc
static struct sch_ep **tt_intr_eps[MAX_EP_NUM];
int mtk_xhci_scheduler_init(void){... | {
"pile_set_name": "Github"
} |
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the abo... | {
"pile_set_name": "Github"
} |
// BatchSky.js
import Geom from '../Geom';
import GLShader from '../GLShader';
import Batch from '../Batch';
const vs = require('../shaders/sky.vert');
const fs = require('../shaders/copy.frag');
class BatchSky extends Batch {
constructor(size = 50, seg = 24) {
const mesh = Geom.sphere(size, seg, true);
const... | {
"pile_set_name": "Github"
} |
# RUN: not llc -run-pass=machineverifier %s -o - 2>&1 | FileCheck %s
# REQUIRES: aarch64-registered-target
--- |
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
target triple = "aarch64--"
define void @valid(i8* %addr) {
entry:
br i1 0, label %if, label %else
if:
br label %exit
else:
br... | {
"pile_set_name": "Github"
} |
package main
import (
"net"
"net/http"
"time"
)
// NewClient creates a new HTTP Client using the ClientConfig values.
func NewClient(cfg ClientConfig) *http.Client {
tr := &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout: cfg.Timeouts.Connect,
KeepAlive: 30 * time.... | {
"pile_set_name": "Github"
} |
<?php
/**
* This file is part of the spiritix/lada-cache package.
*
* @copyright Copyright (c) Matthias Isler <mi@matthias-isler.ch>
* @license MIT
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Spiritix\LadaCache;
... | {
"pile_set_name": "Github"
} |
FROM gradle:4.10.1-jdk8-alpine
# Install imagemagick
USER root
RUN apk --update add imagemagick
# Change user to gradle
# @see https://discuss.gradle.org/t/how-to-run-a-gradle-java-project-in-docker/24838
ADD --chown=gradle . .
EXPOSE 8080
RUN gradle test
RUN gradle shadowJar
CMD java -jar mono-api/build/libs/mono-a... | {
"pile_set_name": "Github"
} |
# See the OWNERS docs at https://go.k8s.io/owners
approvers:
- sig-auth-authenticators-approvers
reviewers:
- sig-auth-authenticators-reviewers
labels:
- sig/auth
| {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2008 Joel de Guzman
Copyright (c) 2001-2008 Hartmut Kaiser
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http:... | {
"pile_set_name": "Github"
} |
// Code generated by "go generate gonum.org/v1/gonum/blas/gonum”; DO NOT EDIT.
// Copyright ©2019 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gonum
import (
cmplx "gonum.org/v1/gonum/internal/cmplx64"
"gonu... | {
"pile_set_name": "Github"
} |
/*
Copyright 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, softw... | {
"pile_set_name": "Github"
} |
import isNode from 'detect-node';
import { expect } from 'chai';
import http from 'http';
import serveStatic from 'serve-static';
import finalhandler from 'finalhandler';
import { GeoTIFF, fromArrayBuffer, writeArrayBuffer, Pool, fromUrls } from '../src/geotiff';
import { makeFetchSource, makeFileSource } from '../src... | {
"pile_set_name": "Github"
} |
//
// SchedulerType+SharedSequence.swift
// RxCocoa
//
// Created by Krunoslav Zaher on 8/27/17.
// Copyright © 2017 Krunoslav Zaher. All rights reserved.
//
import RxSwift
public enum SharingScheduler {
/// Default scheduler used in SharedSequence based traits.
public private(set) static var make: () -> ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... | {
"pile_set_name": "Github"
} |
import makeStyles from '@material-ui/core/styles/makeStyles';
import pushingGutterStyles from './pushingGutter.styles';
const usePushingGutterStyles = makeStyles(pushingGutterStyles);
export { pushingGutterStyles, usePushingGutterStyles };
export { default } from './pushingGutter.styles';
| {
"pile_set_name": "Github"
} |
bin/git-alias
bin/git-archive-file
bin/git-authors
bin/git-back
bin/git-browse
bin/git-brv
bin/git-bulk
bin/git-changelog
bin/git-clear
bin/git-clear-soft
bin/git-coauthor
bin/git-commits-since
bin/git-contrib
bin/git-count
bin/git-cp
bin/git-create-branch
bin/git-delete-branch
bin/git-delete-merged-branches
bin/git-de... | {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
class TopicCustomField < ActiveRecord::Base
belongs_to :topic
end
# == Schema Information
#
# Table name: topic_custom_fields
#
# id :integer not null, primary key
# topic_id :integer not null
# name :string(256) not null
# value :text
# ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 Machine Learning Lab - University of Trieste,
* Italy (http://machinelearning.inginf.units.it/)
*
* 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, either version ... | {
"pile_set_name": "Github"
} |
module.exports = AuthSwitchRequestPacket;
function AuthSwitchRequestPacket(options) {
options = options || {};
this.status = 0xfe;
this.authMethodName = options.authMethodName;
this.authMethodData = options.authMethodData;
}
AuthSwitchRequestPacket.prototype.parse = function parse(parser) {
this.sta... | {
"pile_set_name": "Github"
} |
# Empty dependencies file for gtest.
# This may be replaced when dependencies are built.
| {
"pile_set_name": "Github"
} |
/*********************************************************************NVMH3****
*******************************************************************************
$Revision: #4 $
Copyright NVIDIA Corporation 2008
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED
*AS IS* AND NVIDIA AND ITS SUPPL... | {
"pile_set_name": "Github"
} |
def rawTextInput = '''Given$a$text$file$of$many$lines,$where$fields$within$a$line$
are$delineated$by$a$single$'dollar'$character,$write$a$program
that$aligns$each$column$of$fields$by$ensuring$that$words$in$each$
column$are$separated$by$at$least$one$space.
Further,$allow$for$each$word$in$a$column$to$be$either$left$
just... | {
"pile_set_name": "Github"
} |
"""
uritemplate
===========
The URI templating library for humans.
See http://uritemplate.rtfd.org/ for documentation
:copyright: (c) 2013-2015 Ian Cordasco
:license: Modified BSD, see LICENSE for more details
"""
__title__ = 'uritemplate'
__author__ = 'Ian Cordasco'
__license__ = 'Modified BSD or Apache License,... | {
"pile_set_name": "Github"
} |
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
package fixsetters
import (
"fmt"
"hash/fnv"
"strings"
"sigs.k8s.io/kustomize/kyaml/errors"
"sigs.k8s.io/kustomize/kyaml/yaml"
)
var _ yaml.Filter = &upgradeV1Setters{}
// upgradeV1Setters looks up v1 setters in a Resource and up... | {
"pile_set_name": "Github"
} |
**Esprima** ([esprima.org](http://esprima.org), BSD license) is a high performance,
standard-compliant [ECMAScript](http://www.ecma-international.org/publications/standards/Ecma-262.htm)
parser written in ECMAScript (also popularly known as
[JavaScript](http://en.wikipedia.org/wiki/JavaScript>JavaScript)).
Esprima is c... | {
"pile_set_name": "Github"
} |
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
easyblock = 'ConfigureMake'
name = 'PEAR'
version = '0.9.8'
homepage = 'http://sco.h-its.org/exelixis/web/software/pear/'
description = """PEAR is an ultrafast, memory-efficient and highly accurate pair-end read merger.
It is fully... | {
"pile_set_name": "Github"
} |
import { createMoneyUnit } from "@easymoney/money";
import { createBignumberCalculator } from "./bignumberCalculator";
const createBigNumberMoney = createMoneyUnit(createBignumberCalculator());
export { createBigNumberMoney };
| {
"pile_set_name": "Github"
} |
option(WITH_STATIC_LIB "Build with a static library" OFF)
option(WITH_CMOCKERY_SUPPORT "Install a cmockery header" OFF)
option(UNIT_TESTING "Build with unit testing" OFF)
if (UNIT_TESTING)
set(WITH_STATIC_LIB ON)
endif()
| {
"pile_set_name": "Github"
} |
var composeArgs = require('./_composeArgs'),
composeArgsRight = require('./_composeArgsRight'),
countHolders = require('./_countHolders'),
createCtor = require('./_createCtor'),
createRecurry = require('./_createRecurry'),
getHolder = require('./_getHolder'),
reorder = require('./_reorder'),
... | {
"pile_set_name": "Github"
} |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//+-----------------------------------------------------------------------------
//
//
// Abstract:
// Genera... | {
"pile_set_name": "Github"
} |
if( mount_file_system_set_${mount_tool_file_system_type}(
mount_handle->file_system,
${mount_tool_file_system_type_name},
error ) != 1 )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_SET_FAILED,
"%s: unable to set ${mount_tool_file_system_type_de... | {
"pile_set_name": "Github"
} |
#.rst:
# FindAML
# -------
# Finds the AML codec
#
# This will define the following variables::
#
# AML_FOUND - system has AML
# AML_INCLUDE_DIRS - the AML include directory
# AML_DEFINITIONS - the AML definitions
#
# and the following imported targets::
#
# AML::AML - The AML codec
find_path(AML_INCLUDE_DIR codec... | {
"pile_set_name": "Github"
} |
package com.alibaba.otter.canal.server.embedded;
import java.net.InetSocketAddress;
import java.util.Arrays;
import com.alibaba.otter.canal.instance.manager.model.Canal;
import com.alibaba.otter.canal.instance.manager.model.CanalParameter;
import com.alibaba.otter.canal.instance.manager.model.CanalParameter.HAMode;
i... | {
"pile_set_name": "Github"
} |
description: "Secondary wrong setName with primary"
uri: "mongodb://a,b/?replicaSet=rs"
phases: [
{
responses: [
["a:27017", {
ok: 1,
ismaster: true,
hosts: ["a:27017", "b:27017"],
setName: "rs",
... | {
"pile_set_name": "Github"
} |
module github.com/summerwind/h2spec
go 1.12
require (
github.com/fatih/color v0.0.0-20161025120501-bf82308e8c85
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.0 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/spf13/cobra v0.0.0-20170118185516-dc208... | {
"pile_set_name": "Github"
} |
# 目录
+ [【Q001】网站开发中,如何实现图片的懒加载](html/1.html)
+ [【Q003】什么是防抖和节流,他们的应用场景有哪些](js/3.html)
+ [【Q009】如何实现一个元素的水平垂直居中](css/10.html)
+ [【Q010】了解 React 中的 ErrorBoundary 吗,它有那些使用场景](react/11.html)
+ [【Q011】vue3.0 中为什么要使用 Proxy,它相比以前的实现方式有什么改进](vue/12.html)
+ [【Q013】有没有使用过 react hooks,它带来了那些便利](react/14.html)
+ [【Q014】如何使用 react ... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2008-2015 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// 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 c... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See the LICENSE file in the project root for full license information.
*/
#include "stdafx.h"
extern map<size_t, map<uint32_t, string>> Enum2StrMap;
extern map<size_t, map<string, uint32_t>> Str2EnumMap;
_... | {
"pile_set_name": "Github"
} |
import attr
import itertools
from attr.validators import instance_of
from numbers import Number
from grafanalib.validators import is_interval, is_in, is_color_code, is_list_of
from grafanalib.core import (
RGBA, Percent, Pixels, DashboardLink,
DEFAULT_ROW_HEIGHT, BLANK, GREEN)
ZABBIX_TRIGGERS_TYPE = "alexander... | {
"pile_set_name": "Github"
} |
//This is shared by client and server so it's best to keep that in mind
//for the sake of ds builds.
#include "../game/q_shared.h"
#include "../qcommon/qcommon.h"
| {
"pile_set_name": "Github"
} |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
*
* $Date: 19. March 2015
* $Revision: V.1.4.5
*
* Project: CMSIS DSP Library
* Title: arm_correlate_opt_q15.c
*
* Description: Correlation of Q... | {
"pile_set_name": "Github"
} |
# This is needed only for *compiling* the yuv2rgb.so file (Python module).
# Not needed for just running the Python code with precompiled .so file.
all: yuv2rgb.so
yuv2rgb.so: yuv2rgb.o
gcc -s -shared -Wl,-soname,libyuv2rgb.so -o yuv2rgb.so yuv2rgb.o
yuv2rgb.o: yuv2rgb.c
gcc -fPIC -O3 -fomit-frame-pointer -funroll... | {
"pile_set_name": "Github"
} |
# Description:
# Top-level tutorials files
package(default_visibility = ["//tensorflow:internal"])
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
... | {
"pile_set_name": "Github"
} |
var parent = require('../../es/typed-array');
module.exports = parent;
| {
"pile_set_name": "Github"
} |
local http = require "http"
local shortport = require "shortport"
local slaxml = require "slaxml"
local stdnse = require "stdnse"
local tab = require "tab"
description = [[Enumerates users of a Subversion repository by examining logs of most recent commits.
]]
---
-- @usage nmap --script http-svn-enum <target>
--
-- ... | {
"pile_set_name": "Github"
} |
---
author: jmaciel
comments: true
date: 2014-12-16 00:00:28+00:00
layout: post
redirect_from: /2014/12/stack-overflow-in-japanese
hero: https://i.stack.imgur.com/SvX1q.jpg
slug: stack-overflow-in-japanese
title: Stack Overflowへようこそ
wordpress_id: 15036
tags:
- company
- announcement
- community
- internationalization
-... | {
"pile_set_name": "Github"
} |
const validStages = [
'gs',
'ko',
] as const
type Stage = typeof validStages[number]
export const isValidStage = (value: string): value is Stage =>
validStages.includes(value as Stage)
export default Stage
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.