text stringlengths 2 99.9k | meta dict |
|---|---|
<!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"
} |
/* Copyright (c) Colorado School of Mines, 2011.*/
/* All rights reserved. */
/* SUMIGGBZO: $Revision: 1.15 $ ; $Date: 2011/11/16 22:14:43 $ */
#include "su.h"
#include "segy.h"
/*********************** self documentation **********************/
char *sdoc[] = {
" ",
" SUMIGGBZO - MIGr... | {
"pile_set_name": "Github"
} |
package com.paradigmadigital.karchitect
import junit.framework.Assert.assertEquals
import okhttp3.OkHttpClient
import okhttp3.mockwebserver.MockResponse
import okhttp3.mockwebserver.MockWebServer
import org.apache.commons.io.FileUtils
import org.junit.After
import org.junit.Before
import java.io.File
import java.io.IO... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" ?>
<annotation>
<folder>widerface</folder>
<filename>31--Waiter_Waitress_31_Waiter_Waitress_Waiter_Waitress_31_283.jpg</filename>
<source>
<database>wider face Database</database>
<annotation>PASCAL VOC2007</annotation>
<image>flickr</image>
<flickrid>-1</flickrid>
</source>
<owner>
<flickrid>yanyu<... | {
"pile_set_name": "Github"
} |
/*
Copyright (C) 2014 Fredrik Johansson
This file is part of Arb.
Arb is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) ... | {
"pile_set_name": "Github"
} |
set(src
tcp.c
tcp_conn.c
tcp_config.c)
FLB_PLUGIN(in_tcp "${src}" "")
| {
"pile_set_name": "Github"
} |
data = (
'[?]', # 0x00
'[?]', # 0x01
'[?]', # 0x02
'[?]', # 0x03
'[?]', # 0x04
'[?]', # 0x05
'[?]', # 0x06
'[?]', # 0x07
'[?]', # 0x08
'[?]', # 0x09
'[?]', # 0x0a
'[?]', # 0x0b
'[?]', # 0x0c
'[?]', # 0x0d
'[?]', # 0x0e
'[?]', # 0x0f
'[?]', # 0x10
'[?]', # 0x11
'[?]'... | {
"pile_set_name": "Github"
} |
package com.prisma.api.filters.nonEmbedded
import com.prisma.api.ApiSpecBase
import com.prisma.shared.models.ConnectorCapability
import com.prisma.shared.models.ConnectorCapability.{JoinRelationLinksCapability, Prisma2Capability}
import com.prisma.shared.schema_dsl.SchemaDsl
import org.scalatest._
class RelationIsNul... | {
"pile_set_name": "Github"
} |
#pragma once
#include "ofxPDSP.h"
class SineBleep : public pdsp::Patchable{
public:
SineBleep() { patch(); }
SineBleep(const SineBleep & other) { patch(); }
void patch() {
//add inputs / outputs with these methods
addModuleInput("trig", env.in_trig()); // arguments are tag and the Uni... | {
"pile_set_name": "Github"
} |
import PropTypes from 'prop-types'
import React from 'react'
import ReactDOM from 'react-dom'
import config from './config'
import { timeoutsShape } from './utils/PropTypes'
import TransitionGroupContext from './TransitionGroupContext'
export const UNMOUNTED = 'unmounted'
export const EXITED = 'exited'
export const E... | {
"pile_set_name": "Github"
} |
{
"name" : "albino",
"category" : "petpetricub",
"type" : "body",
"frames" : {
"body" : "albino.png"
}
}
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ruleset name="PMD.rul" xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 http://pmd.sourceforge.net/ruleset_2_0_0.xsd">
<descr... | {
"pile_set_name": "Github"
} |
/**
* A specialized version of `_.some` for arrays without support for iteratee
* shorthands.
*
* @private
* @param {Array} [array] The array to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {boolean} Returns `true` if any element passes the predicate check,
* else ... | {
"pile_set_name": "Github"
} |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Input attribution and Variant effect prediction"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this tutorial we illustrate input feature importance attribution and variant effect prediction."
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2008-2014, David Karnok
* The file is part of the Open Imperium Galactica project.
*
* The code should be distributed under the LGPL license.
* See http://www.gnu.org/licenses/lgpl.html for details.
*/
package hu.openig.model;
import java.awt.Rectangle;
/** The view limit records. ... | {
"pile_set_name": "Github"
} |
// license:BSD-3-Clause
// copyright-holders:R. Belmont
/*****************************************************************************
*
* sh4comn.h
*
* SH-4 non-specific components
*
*****************************************************************************/
#pragma once
#ifndef __SH4COMN_H__
#define __... | {
"pile_set_name": "Github"
} |
package timing
import (
"time"
)
const (
nanoPerSecond = 1000000000
)
// FPS returns the number of frames being processed per second,
// supposing a time interval from lastTime to now.
func FPS(lastTime, now time.Time) float64 {
fps := 1 / now.Sub(lastTime).Seconds()
// This indicates that time.Now recorded two ... | {
"pile_set_name": "Github"
} |
//
// JBBarChartView.h
// JBChartView
//
// Created by Terry Worona on 9/3/13.
// Copyright (c) 2013 Jawbone. All rights reserved.
//
// Views
#import "JBChartView.h"
@class JBBarChartView;
@protocol JBBarChartViewDataSource <JBChartViewDataSource>
@required
/**
* The number of bars in a given bar chart is t... | {
"pile_set_name": "Github"
} |
/****************************************************************************
*
* Copyright 2017 Samsung Electronics 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... | {
"pile_set_name": "Github"
} |
package datawave.query.language.functions.lucene;
import datawave.query.jexl.functions.QueryFunctions;
import datawave.query.language.functions.QueryFunction;
import datawave.webservice.query.exception.BadRequestQueryException;
import datawave.webservice.query.exception.DatawaveErrorCode;
import org.apache.lucene.quer... | {
"pile_set_name": "Github"
} |
# Live2D Animator Motion Data
$fps=30
$fadein=0
$fadeout=0
PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0.96,3.38,6.66,10.49,14.47,18.4,22.12,25.25,27.77,29.4,30,30,30,30,30,30,30,30,30,30,30,30,30,29.04,26.62,23.34,19.51,15.53,11.6,7.88,4.75,2.23,0.6
PARAM_ANGLE_Z=0
PARAM_EYE_L_OPEN=1
PARAM_EYE_L_SMILE=0
PA... | {
"pile_set_name": "Github"
} |
AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions
TYPE: lookup
VERSION: 4.0.0
DEFAULT: array('td' => true, 'th' => true)
--DESCRIPTION--
<p>
When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp
are enabled, this directive defines what HTML elements should not be
removede if they have only a non-... | {
"pile_set_name": "Github"
} |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S7.9_A10_T3;
* @section: 7.9;
* @assertion: Check {} for automatic semicolon insertion;
* @description: Checking if execution of "({}) * 1" passes;
*/
//CHECK#1
({}) * 1... | {
"pile_set_name": "Github"
} |
###############################################################################
# Copyright (c) 2016 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is availa... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 LINE Corporation
*
* LINE Corporation licenses this file to you 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 re... | {
"pile_set_name": "Github"
} |
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Runs Chromium's IndexedDB performance test. These test:
Databases:
create/delete
Keys:
create/delete
Indexes:
create/delete
Data access:
Random r... | {
"pile_set_name": "Github"
} |
/*
Copyright 2015 The Kubernetes Authors 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 applicable law or ag... | {
"pile_set_name": "Github"
} |
/* crypto/asn1/a_print.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and no... | {
"pile_set_name": "Github"
} |
//
// UIView+IBExtension.h
// Weibo11
//
// Created by JYJ on 15/12/6.
// Copyright © 2015年 itheima. All rights reserved.
//
#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface UIView (IBExtension)
/// 边线颜色
@property (nonatomic, strong) IBInspectable UIColor *borderColor;
/// 边线宽度
@property (nonatomic, assign) IBIn... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# Copyright 2018 The Blueoil Authors. 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
#
# Unles... | {
"pile_set_name": "Github"
} |
using Bridge.Test.NUnit;
using System;
using System.Globalization;
#if false
namespace Bridge.ClientTest.Format
{
[Category(Constants.MODULE_NUMBERFORMATINFO)]
[TestFixture(TestNameFormat = "NumberFormatInfoTests - {0}")]
public class NumberFormatInfoTests
{
[Test]
public void TypePrope... | {
"pile_set_name": "Github"
} |
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
n = n + '';
var i = n.indexOf('.');
return (i == -1) ? 0 : n.length - i - 1;
}
function getVF(n, opt_pre... | {
"pile_set_name": "Github"
} |
*> \brief <b> DGEESX computes the eigenvalues, the Schur form, and, optionally, the matrix of Schur vectors for GE matrices</b>
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download DGEESX + dependencies
*... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2013 Goldman Sachs.
*
* 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 ... | {
"pile_set_name": "Github"
} |
base height.settings 1
height 325
editor_tags level;stuff
name Power_Jump_heightstick | {
"pile_set_name": "Github"
} |
package sync
import upickle.default.{ReadWriter, macroRW, readwriter}
sealed trait Rpc
object Rpc{
implicit val subPathRw = readwriter[String].bimap[os.SubPath](_.toString, os.SubPath(_))
case class StatPath(path: os.SubPath) extends Rpc
implicit val statPathRw: ReadWriter[StatPath] = macroRW
case class Writ... | {
"pile_set_name": "Github"
} |
### Login Tencent Kubernetes Engine Console
- Follow the instructions to create a [Tencent Cloud Account](https://cloud.tencent.com/register)
- Go to [Console of Tencent Kubernetes Engine ](https://console.cloud.tencent.com/tke2/cluster)
### Create TKE Cluster
- Create a TKE Cluster
- The cluster region need choose... | {
"pile_set_name": "Github"
} |
package profile
import (
"sort"
"time"
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/arn"
"github.com/animenotifier/notify.moe/assets"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/server/middleware"
"github.com/animenotifier/notify.moe/utils"
)
const (... | {
"pile_set_name": "Github"
} |
module.exports = {
siteMetadata: {
title: `Gatsby MDX raw strings`
},
plugins: [
`gatsby-plugin-mdx`,
{
resolve: "gatsby-source-filesystem",
options: {
name: "content",
path: `${__dirname}/content/`
}
}
]
};
| {
"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_10-ea) on Sun Jul 14 20:03:35 PDT 2013 -->
<title>Uses of Class org.codehaus.jackson.map.deser.std.EnumDeserializer.FactoryBasedDeseria... | {
"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 may not u... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (C) 2016 Sam Silverberg sam.silverberg@gmail.com
*
* This file is part of OpenDedupe SDFS.
*
* OpenDedupe SDFS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public ... | {
"pile_set_name": "Github"
} |
#ifndef OCTREE_DEVICE_ALTERNATE_H_
#define OCTREE_DEVICE_ALTERNATE_H_
#include "logs.h"
#ifdef USE_CUDA
#include <cuda.h>
#include <cuda_runtime.h>
// CUDA: various checks for different function calls.
#define CUDA_CHECK(condition) \
do { \
cudaError_t error = condition; \
CHECK(error == cudaSuccess) << ... | {
"pile_set_name": "Github"
} |
from django.contrib import admin
from pycon.pycon_api.models import APIAuth, ProposalData, IRCLogLine
class APIAuthAdmin(admin.ModelAdmin):
list_display = ('name', 'enabled')
class ProposalDataAdmin(admin.ModelAdmin):
list_display = ('proposal',)
class IRCLogLineAdmin(admin.ModelAdmin):
list_display =... | {
"pile_set_name": "Github"
} |
import { _getGroupParticipants } from './get-group-participants';
/**
* Fetches IDs of group participants
* @param {string} groupId Group id
* @param {Function} done Optional callback
* @returns {Promise.<Array|*>} Yields list of IDs
*/
export async function getGroupParticipantIDs(groupId, done) {
const output ... | {
"pile_set_name": "Github"
} |
- cache([conference_id, call, '#splash#callfortracks'],
expires_in: 1.hour) do
.col-md-4.col-sm-4.text-center
%h2
Call for Tracks
%p.lead
We are now accepting custom track requests!
%p
Would you like to host a mini-summit, sub-conference, or hack space?
The submission period for ... | {
"pile_set_name": "Github"
} |
$(document).ready(function(){
module("testProcessingInstructions");
test("testProcessingInstructions", function() {
expect(1);
var input = 'data(<?target content?>) instance of xs:string';
var expected = '<span class="cm-variable cm-def">data</span>(<span class="cm-comment cm-meta"><?target content?... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | {
"pile_set_name": "Github"
} |
package factory
import (
"github.com/ElrondNetwork/elrond-go/core"
"github.com/ElrondNetwork/elrond-go/core/check"
"github.com/ElrondNetwork/elrond-go/core/random"
"github.com/ElrondNetwork/elrond-go/core/throttler"
"github.com/ElrondNetwork/elrond-go/data/state"
"github.com/ElrondNetwork/elrond-go/dataRetriever... | {
"pile_set_name": "Github"
} |
//
// UIView+MASShorthandAdditions.h
// Masonry
//
// Created by Jonas Budelmann on 22/07/13.
// Copyright (c) 2013 Jonas Budelmann. All rights reserved.
//
#import "View+MASAdditions.h"
#ifdef MAS_SHORTHAND
/**
* Shorthand view additions without the 'mas_' prefixes,
* only enabled if MAS_SHORTHAND is defined... | {
"pile_set_name": "Github"
} |
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="utf-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="cp" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatibl... | {
"pile_set_name": "Github"
} |
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
css: {
src: [
'src/*.css'
],
dest: 'dist/theme.css'
},
js : {
src : [
'src/login.js',
... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
namespace Xms.WebResource
{
public interface IWebResourceImporter
{
bool Import(Guid solutionId, List<Domain.WebResource> webResources);
}
} | {
"pile_set_name": "Github"
} |
package pflag
import "strconv"
// -- int8 Value
type int8Value int8
func newInt8Value(val int8, p *int8) *int8Value {
*p = val
return (*int8Value)(p)
}
func (i *int8Value) Set(s string) error {
v, err := strconv.ParseInt(s, 0, 8)
*i = int8Value(v)
return err
}
func (i *int8Value) Type() string {
return "int8... | {
"pile_set_name": "Github"
} |
# https://stackoverflow.com/questions/8683588/understanding-nltk-collocation-scoring-for-bigrams-and-trigrams
from operator import itemgetter
from collections import defaultdict
from nltk.collocations import QuadgramCollocationFinder
from nltk.metrics.association import QuadgramAssocMeasures
def rank_quadgrams(corp... | {
"pile_set_name": "Github"
} |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Andrew Boltachev <andrewboltachev@gmail.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: Django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-01-01 16:10+0100\n"
"PO-Revision-Date: 2013-01-13 18:45+0000\n"
"Last... | {
"pile_set_name": "Github"
} |
'use strict';
var GetIntrinsic = require('../GetIntrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var $Number = GetIntrinsic('%Number%');
var $RegExp = GetIntrinsic('%RegExp%');
var $parseInteger = GetIntrinsic('%parseInt%');
var callBound = require('../helpers/callBound');
var regexTester = require('../hel... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/lib_pub_color_bg_sub" />
<corners android:radius="@dimen/lib_pub_dimen_btn_corner" />
<stroke
android:width="1dp"
android:color="@color/lib_pub_color_text_di... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Classes Reference</title>
<link rel="stylesheet" type="text/css" href="css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="css/highlight.css" />
<meta charset="utf-8">
<script src="js/jquery.min.js" defer></script>
<script src="js/jazz... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
@class NSString, NSURL, NSView, NSWindow;
@protocol FormCompletionPresentationContext
@property(readonly, nonatomic) BOOL shouldSavePa... | {
"pile_set_name": "Github"
} |
<?php
namespace MailThief;
use Exception;
use Illuminate\Contracts\Mail\MailQueue;
use Illuminate\Contracts\Mail\Mailer;
class MailThiefFiveFiveCompatible extends MailThief implements Mailer, MailQueue
{
public function onQueue($queue, $view, array $data, $callback)
{
throw new Exception('MailThief d... | {
"pile_set_name": "Github"
} |
// This icon file is generated automatically.
// tslint:disable
var PicCenterOutlined = { "name": "pic-center", "theme": "outlined", "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M952 792H72c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h880c4... | {
"pile_set_name": "Github"
} |
-- Should all be true
select
cast('abc' as char(10)) = cast('abc' as char(10)),
cast('abc' as char(10)) <= cast('abc' as char(10)),
cast('abc' as char(10)) >= cast('abc' as char(10)),
cast('abc' as char(10)) < cast('abd' as char(10)),
cast('abc' as char(10)) > cast('abb' as char(10)),
cast('abc' as char... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 6cdf782d955034d0bb9ef0463854b30f
timeCreated: 1482443296
licenseType: Pro
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
// { dg-do link { target c++11 } }
// { dg-require-cstdint "" }
//
// 2009-09-29 Paolo Carlini <paolo.carlini@oracle.com>
//
// Copyright (C) 2009-2019 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under th... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2002-2020 Gargoyle Software 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 ... | {
"pile_set_name": "Github"
} |
<h1>Register</h1>
<ul class="tabs">
<li ui-sref-active="active"><a ui-sref="register.step1">Step 1</a></li>
<li ui-sref-active="active"><a ui-sref="register.step2">Step 2</a></li>
<li ui-sref-active="active"><a ui-sref="register.step3">Step 3</a></li>
</ul>
<ui-view></ui-view>
| {
"pile_set_name": "Github"
} |
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
"""Tests of coverage/python.py"""
import os
import sys
import pytest
from coverage import env
from coverage.python import get_zip_bytes, source_for_file
from te... | {
"pile_set_name": "Github"
} |
-----BEGIN RSA PRIVATE KEY-----
MIIEpgIBAAKCAQEA5awwJQ2cJj+mcXOLEmjnUkUVyQZm0Lm8ZlqalPG160ygpL4N
Zf9lOsHiSEuds1uk3maJO1LrOY8sMnjUifzAR2+1+crQD0LLy7v91hcGlXxyc4pk
COL7Zsffgg4Gc4qWKXrbeyBdfB3vAz4hbq9cQp/KadKjjlfJly//E6VICX5mjiaL
KoBaqK4+Z4qhediMCb7bq/4MKatsaQrWGglAf3Rc83ny1d+5LefEuo05mZ2H+JCH
RSoYck3hpg0X/8Ds/pCvx/2irabG... | {
"pile_set_name": "Github"
} |
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
# services "svc1" was not valid:
# * spec.clusterIP: Invalid value: "10.0.0.10": field is immutable
# * spec.por... | {
"pile_set_name": "Github"
} |
OPTION DOTNAME
.text$ SEGMENT ALIGN(256) 'CODE'
EXTERN OPENSSL_ia32cap_P:NEAR
PUBLIC RC4
ALIGN 16
RC4 PROC PUBLIC
mov QWORD PTR[8+rsp],rdi ;WIN64 prologue
mov QWORD PTR[16+rsp],rsi
mov rax,rsp
$L$SEH_begin_RC4::
mov rdi,rcx
mov rsi,rdx
mov rdx,r8
mov rcx,r9
or rsi,rsi
jne $L$entry
mov rdi,QWORD PTR[8+rsp] ... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2019 The JoyQueue 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... | {
"pile_set_name": "Github"
} |
aeedb2d6ccdfadaeace48d04e1b24c7eafdffd1f
| {
"pile_set_name": "Github"
} |
//
// Author: B4rtik (@b4rtik)
// Project: RedPeanut (https://github.com/b4rtik/RedPeanut)
// License: BSD 3-Clause
//
using Microsoft.EntityFrameworkCore;
using static RedPeanut.Models;
namespace RedPeanut
{
public class RedPeanutDBContext : DbContext
{
public RedPeanutDBContext(DbContextOptions<Red... | {
"pile_set_name": "Github"
} |
/// Copyright (c) 2012 Ecma International. All rights reserved.
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
/// "Use Terms"). Any redistribution of this code must retain the above
/// copyrigh... | {
"pile_set_name": "Github"
} |
---
Description: The SWbemEventSource object exposes the following methods.
ms.assetid: 33AFAFEB-ABC8-4F30-95BA-436475A0565F
ms.tgt_platform: multiple
title: SWbemEventSource Methods
ms.topic: reference
ms.date: 05/31/2018
---
# SWbemEventSource Methods
The [**SWbemEventSource**](swbemeventsource.md) object exposes t... | {
"pile_set_name": "Github"
} |
/* $Id: hmac_sha1.h 3553 2011-05-05 06:14:19Z nanang $ */
/*
* Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
* Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as pu... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2014-2015 Kohei Takahashi
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
========================================... | {
"pile_set_name": "Github"
} |
#ifndef ELEMENT_BASES_HPP
#define ELEMENT_BASES_HPP
#include <polyfem/Basis.hpp>
#include <polyfem/Quadrature.hpp>
#include <polyfem/Mesh.hpp>
#include <polyfem/AssemblyValues.hpp>
#include <vector>
namespace polyfem
{
///
/// @brief Stores the basis functions for a given element in a mesh
/// ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2011 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/licenses/LICENSE-2.0
*
* Unless required by app... | {
"pile_set_name": "Github"
} |
{
"version" : "6.0.0",
"timestamp" : 1588893901741,
"path" : "query-validation-tests/between.json",
"schemas" : {
"CSAS_OUTPUT_0.KsqlTopic.Source" : {
"schema" : "`ID` STRING KEY, `SOURCE` STRING",
"serdeOptions" : [ ]
},
"CSAS_OUTPUT_0.OUTPUT" : {
"schema" : "`ID` STRING KEY, `THI... | {
"pile_set_name": "Github"
} |
# e2e tests
## Create new test case
To create new test case you need to create new folder in [test-cases](./test-cases) (as a sample you may use [test-case-sample](./test-case-sample) folder).
New folder's name will be used as name of test case.
Each test case must have at least 3 files:
1. `input.ts` or `input.d.t... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using NetTopologySuite.Geometries;
using NetTopologySuite.Index.Strtree;
namespace NetTopologySuite.Tests.NUnit.Index.Strtree
{
public class STRtreeDemo
{
private static double EXTENT = 100;
private static double MAX_ITEM_EXTENT = 15;
pri... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Jun 9 2015 22:53:21).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2014 by Steve Nygard.
//
#import <Cocoa/NSActionCell.h>
@class NSImage;
@interface KeywordCell : NSActionCell
{
NSImage *mIcon;
struct CGRect mFrame;
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/user_register_other_way_register_tv"
style="@style/UserRegisterFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
... | {
"pile_set_name": "Github"
} |
<?php
namespace Composer\Installers;
class PhiftyInstaller extends BaseInstaller
{
protected $locations = array(
'bundle' => 'bundles/{$name}/',
'library' => 'libraries/{$name}/',
'framework' => 'frameworks/{$name}/',
);
}
| {
"pile_set_name": "Github"
} |
### 火锅表面的白色浮沫该不该捞掉?(组图)
------------------------
#### [首页](https://github.com/gfw-breaker/banned-news/blob/master/README.md) | [手把手翻墙教程](https://github.com/gfw-breaker/guides/wiki) | [禁闻聚合安卓版](https://github.com/gfw-breaker/bn-android) | [网门安卓版](h... | {
"pile_set_name": "Github"
} |
WGL_ARB_pixel_format_float
http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt
WGL_ARB_pixel_format_float
WGL_TYPE_RGBA_FLOAT_ARB 0x21A0
| {
"pile_set_name": "Github"
} |
Виробнича пісочниця у жанрі «баштовий захист» (англ. — Tower Defence, TD).
| {
"pile_set_name": "Github"
} |
" Chained completion that works as I want!
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
" License: This file is placed in the public domain
let s:save_cpo = &cpo
set cpo&vim
let s:pathsep = exists('+shellslash') && !&shellslash
\ ? (get(g:, 'mucomplete#use_only_windows_paths', 0) ? '[\\]' : '[/\\]')
... | {
"pile_set_name": "Github"
} |
// ***************************************************************************
// *
// * Copyright (C) 2013 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
// * Source File: <path>/common/main/bez.xml
// *
// ***********************... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2012 Sven Schnelle <svens@stackframe.org>
#include <linux/platform_device.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/rtc.h>
#include <linux/types.h>
#include <linux/bcd.h>
#include <linux/platform_data/rtc-ds2404.h>
#include <linux/delay.h>... | {
"pile_set_name": "Github"
} |
package org.openapitools.client.infrastructure
import com.squareup.moshi.FromJson
import com.squareup.moshi.ToJson
import org.threeten.bp.OffsetDateTime
import org.threeten.bp.format.DateTimeFormatter
class OffsetDateTimeAdapter {
@ToJson
fun toJson(value: OffsetDateTime): String {
return DateTimeForm... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# Copyright (c) 2012 Giorgos Verigakis <verigak@gmail.com>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS P... | {
"pile_set_name": "Github"
} |
/**
* A specialized version of `_.forEach` for arrays without support for
* iteratee shorthands.
*
* @private
* @param {Array} [array] The array to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @returns {Array} Returns `array`.
*/
function arrayEach(array, iteratee) {
var in... | {
"pile_set_name": "Github"
} |
// OpenArchive.cpp
#include "StdAfx.h"
#include "Common/Wildcard.h"
#include "Windows/FileDir.h"
#include "Windows/PropVariant.h"
#include "../../Common/FileStreams.h"
#include "../../Common/StreamUtils.h"
#include "DefaultName.h"
#include "OpenArchive.h"
using namespace NWindows;
// Static-SFX (for Linux) can b... | {
"pile_set_name": "Github"
} |
package com.marginallyclever.makelangelo.preferences;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.util.prefs.Preferences;
import javax.swing.BorderFactory;
import javax.swing.JCheckBox;
import javax.swing.JPanel;
import com.marginallyclever.makelangelo.Translator;
import com.margin... | {
"pile_set_name": "Github"
} |
<p class="mb-1 is-size-5">
<b>Communities</b>
</p>
<!-- Sections & Pages - Communities -->
{{ with .Site.GetPage "/communities" }}
{{ range (.Sections | union .Pages).ByTitle }}
<!-- Looping through communities-->
<p>
<a {{ if .Params.link }}href="{{ .Params.link }}" target="_blank" rel="noopener" {{ else }}href="{... | {
"pile_set_name": "Github"
} |
package isatty_test
import (
"fmt"
"os"
"github.com/mattn/go-isatty"
)
func Example() {
if isatty.IsTerminal(os.Stdout.Fd()) {
fmt.Println("Is Terminal")
} else if isatty.IsCygwinTerminal(os.Stdout.Fd()) {
fmt.Println("Is Cygwin/MSYS2 Terminal")
} else {
fmt.Println("Is Not Terminal")
}
}
| {
"pile_set_name": "Github"
} |
table_create Entries TABLE_NO_KEY
column_create Entries content COLUMN_SCALAR ShortText
load --table Entries
[
{"content": "<p>groonga and MySQL</p>"}
]
select Entries \
--output_columns ' \
snippet(content, \
"Groonga", "<span class=\\"keyword\\">", "</span>", \
{} \
)'
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.