text stringlengths 2 99.9k | meta dict |
|---|---|
/*++
Copyright (c) 2019-2020 changeofpace. All rights reserved.
Use of this source code is governed by the MIT license. See the 'LICENSE' file
for more information.
Module Name:
debug_register_facade.h
Abstract:
This header defines the debug register facade interface.
Author:
changeofpace
Environme... | {
"pile_set_name": "Github"
} |
INIT
Init
NEXT
Next
INVARIANT Inv
| {
"pile_set_name": "Github"
} |
#include "ofxBaseGui.h"
#include "ofImage.h"
#include "ofBitmapFont.h"
#include "ofXml.h"
#include "ofJson.h"
using namespace std;
void ofxGuiSetFont(const string & fontPath, int fontsize, bool _bAntiAliased, bool _bFullCharacterSet, int dpi){
ofxBaseGui::loadFont(fontPath, fontsize, _bAntiAliased, _bFullCharacterSe... | {
"pile_set_name": "Github"
} |
{
"type": "bundle",
"id": "bundle--45a8f1d1-900c-410a-b2ed-4678150ae662",
"spec_version": "2.0",
"objects": [
{
"id": "relationship--91a362c7-a111-4a1e-8978-1afcc110e5cf",
"created_by_ref": "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5",
"description": "[Mos... | {
"pile_set_name": "Github"
} |
function foo(x) {
function bar() {
x = function i_am_reachable() {}
}
bar();
return x;
}
var y = foo(null);
y();
| {
"pile_set_name": "Github"
} |
// SetProperties.h
#ifndef __SETPROPERTIES_H
#define __SETPROPERTIES_H
#include "Property.h"
HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
#endif
| {
"pile_set_name": "Github"
} |
#!/usr/bin/python
#
# \author Lukasz Kolasa (Maczuga)
#
# NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
# Copyright (C) 2014 by authors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Softw... | {
"pile_set_name": "Github"
} |
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEAtoSDkc6J3oZTWnWMiN9L9SY/JYYQAbolok0pJSgi6mY8AX1n
0guMNNs8YtkgB/Y7ttFwia1GrsD6talwqfwqlwv61YGa85bg5aSaXoBfQIpULxjs
Ya2YVeJKqToxlRO/LjpqX8YjsjXq5qCdDlRPLoId7Pyy0zSv6pggF7hGE0HHALzR
Ij191zwQomhZUgpFDUtM6ddpiTT+N/ihfctAm7WLNYFyh5piVUqY0WJnLiSVHx8T
a1dmEd3pOjuCCCRSJZy8YKY0QbHg... | {
"pile_set_name": "Github"
} |
/*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is... | {
"pile_set_name": "Github"
} |
description: Insert into article table with a new author
url: /v1/graphql
status: 200
response:
data:
AddArticles:
affected_rows: 2
returning:
- title: Article 4 by new author
content: Content for Article 4
author:
AuthorId: 3
name: Author 3
query:
query: |
... | {
"pile_set_name": "Github"
} |
// @(#)root/proofd:$Id$
// Author: G. Ganis June 2007
/*************************************************************************
* Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* ... | {
"pile_set_name": "Github"
} |
// -*-Mode: C++;-*- // technically C99
// * BeginRiceCopyright *****************************************************
//
// $HeadURL$
// $Id$
//
// --------------------------------------------------------------------------
// Part of HPCToolkit (hpctoolkit.org)
//
// Information about sources of support for research an... | {
"pile_set_name": "Github"
} |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/CloudDocsDaemon
*/
@interface BRCAcceptShareOperation : _BRCOperation <BRCOperationSubclass> {
id /* block */ _acceptShareCompletionBlock;
CKShareMetadata * _shareMetadata;
}
@property (nonatomic, copy) id /... | {
"pile_set_name": "Github"
} |
<?php
/***********************************************
DAVE PHP API
https://github.com/evantahler/PHP-DAVE-API
Evan Tahler | 2011
I am a way to test that cahce functions are working
I'll store and return a user provided variable
***********************************************/
// I'll use HASH as the variable to log b... | {
"pile_set_name": "Github"
} |
module PullRequestHelpers
# Creates a mock pull request in json format.
def mock_pull_request
{
'payload' => {
'pull_request' => {
'title' => Faker::Lorem.words.first,
'_links' => {
'html' => {
'href' => Faker::Internet.url
}
... | {
"pile_set_name": "Github"
} |
//*****************************************************************************
//
// Copyright (C) 2004-2006, International Business Machines
// Corporation and others. All Rights Reserved.
//
// file name: icuio.txt
// encoding: US-ASCII
// tab size: 4 (not used)
// indentation:4
//
// created on: 2004Ap... | {
"pile_set_name": "Github"
} |
<?php
error_reporting(E_ALL);
if($argc < 2)
exit("Usage: php $argv[0] <file>\n");
fixDir($argv[1]);
function fixDir($dir) {
if(is_dir($dir)) {
if($d = opendir($dir)) {
while($f = readdirto($d)) {
if($f == '.' || $f == '..')
continue;
fixDir($dir.'/'.$f);
}
closedir($d);
}
}
else if(preg_... | {
"pile_set_name": "Github"
} |
# Timer.js
[](https://travis-ci.org/husa/timer.js)
Simple and lightweight library without any dependencies
to create and manage, well, _timers_.
[Demo](https://husa.github.io/timer.js)
### Installation
The easiest way to install timer.js is via... | {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding='UTF-8'?>
<availabilityZones
xmlns:os-availability-zone="http://docs.openstack.org/compute/ext/availabilityzone/api/v1.1">
<availabilityZone name="zone-1">
<zoneState available="True" />
<metadata />
</availabilityZone>
<availabilityZone name="zone-2">
... | {
"pile_set_name": "Github"
} |
title: Bitrise.io Cache:Push
summary: Updates the Cache, if required
description: |-
This step checks whether the cache has to be updated (based on the
`Cache Paths` and `Ignore Paths from change check` inputs).
If it has to be updated, the step will create a new cache archive and upload it.
It won't update/up... | {
"pile_set_name": "Github"
} |
# SPDX-License-Identifier: GPL-2.0-only
config UBIFS_FS
tristate "UBIFS file system support"
select CRC16
select CRC32
select CRYPTO if UBIFS_FS_ADVANCED_COMPR
select CRYPTO if UBIFS_FS_LZO
select CRYPTO if UBIFS_FS_ZLIB
select CRYPTO_LZO if UBIFS_FS_LZO
select CRYPTO_DEFLATE if UBIFS_FS_ZLIB
select CRYPTO_HAS... | {
"pile_set_name": "Github"
} |
--- libvpx-1.6.1/build/make/configure.sh.orig 2017-04-18 07:55:35.521235500 -0400
+++ libvpx-1.6.1/build/make/configure.sh 2017-04-18 08:03:57.773345200 -0400
@@ -636,13 +636,13 @@ post_process_cmdline() {
}
setup_gnu_toolchain() {
- CC=${CC:-${CROSS}gcc}
- CXX=${CXX:-${CROSS}g++}
- AR=${AR:-${CROSS}ar}
- LD=${... | {
"pile_set_name": "Github"
} |
#!/bin/bash
# Copyright 2016 Google Inc. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
. $(dirname $0)/../common.sh
set -x
rm -rf $CORPUS fuzz-*.log
mkdir $CORPUS
[ -e $EXECUTABLE_NAME_BASE ] && ./$EXECUTABLE_NAME_BASE -artifact_prefix=$CORPUS/ -exit_on_src_pos=re2/dfa.cc:474 -e... | {
"pile_set_name": "Github"
} |
<library>
<!-- Control Panel -->
<!-- Written for Micropolis -->
<!-- By Don Hopkins -->
<!-- Licensed under GPLv3 -->
<class name="controlpanel"
clip="true"
>
<attribute name="active" value="true"/>
<attribute name="gap" value="5"/>
<attribute name="sliderWidth" value="200"/>
... | {
"pile_set_name": "Github"
} |
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Xml.Linq;
using Emby.Dlna.Common;
using Emby.Dlna.Ssdp;
namespace Emby.Dlna.PlayTo
{
public class TransportCommands
{
private const string CommandBase = "<?xml ver... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `BinaryHeap` struct in crate `collections`.">
<meta name="k... | {
"pile_set_name": "Github"
} |
/* This file only exists (temporarily) until the
custom styling can be replaced with the
implementation of the upstream project.
*/
blockquote {
padding: 0 20px;
margin: 0 0 20px;
font-size: inherit;
border-left: 5px solid #eee;
}
| {
"pile_set_name": "Github"
} |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "Li... | {
"pile_set_name": "Github"
} |
classes=1000
train = /data/imagenet/imagenet1k.train.list
valid = /data/imagenet/imagenet1k.valid.list
backup = /home/pjreddie/backup/
labels = data/imagenet.labels.list
names = data/imagenet.shortnames.list
top=5
| {
"pile_set_name": "Github"
} |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... | {
"pile_set_name": "Github"
} |
<header>Recurs WebNFS</header>
Si aquest opció està posada, aquest recurs estarà disponible per als
clients WebNFS. Només es pot designar un recurs per servidor com a
recurs WebNFS.
<hr>
| {
"pile_set_name": "Github"
} |
#ifndef BOOST_SMART_PTR_DETAIL_SPINLOCK_SYNC_HPP_INCLUDED
#define BOOST_SMART_PTR_DETAIL_SPINLOCK_SYNC_HPP_INCLUDED
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
//
// Copyright (c) 2008 Peter Dimov
//
// Distributed under the Boost Sof... | {
"pile_set_name": "Github"
} |
//:
// \file
// \brief an executable to prepare location hypotheses for volumetric matcher
// \author Ozge C. Ozcanli
// \date Oct 11, 2012
#include "vul/vul_arg.h"
#include <boxm2/volm/boxm2_volm_locations.h>
#include <boxm2/volm/boxm2_volm_wr3db_index_sptr.h>
#include <boxm2/volm/boxm2_volm_wr3db_index.h>
#include ... | {
"pile_set_name": "Github"
} |
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* th... | {
"pile_set_name": "Github"
} |
> 了解Flink是什么,Flink应用程序运行的多样化,对比业界常用的流处理框架,Flink的发展趋势,Flink生态圈,Flink应用场景及Flink如何进行高效的Flink学习。
# 0 [相关源码](https://github.com/Wasabi1234)
# 1 前言
## 1.1 功能

## 1.2 用户
- 国际

// An emptyCtx is never canceled, has no values, and has no deadline. It is not
... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2011 The Guava 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 ... | {
"pile_set_name": "Github"
} |
@prefix : <http://example/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:x1 :p 1 .
:x2 :p "1" .
:x3 :p "1"@en .
:x4 :p 1.5 .
:x5 :p "2008-04-29T09:13:15+01:00"^^xsd:dateTime .
:x6 :p "0008-04-29T09:13:15-01:00"^^xsd:dateTime .
:x7 :p "-3000-04-29T09:13:15Z"^^xsd:dateTime .
# Not encoded inline
:x8 :p... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">ScreenRecordingSample</string>
</resources>
| {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\CssSelector;
use Symfony\Component\CssSelector\Parser... | {
"pile_set_name": "Github"
} |
1 : Bool
| {
"pile_set_name": "Github"
} |
#!/bin/bash
DEFAULT_CLANG_LIB=libstdc++
clang_lib=${1:-$DEFAULT_CLANG_LIB}
echo "Building clang .so"
clang++ -std=c++11 -stdlib=$clang_lib ../unit_test_dll.cpp -shared -o unit_test_dll.so -fPIC -fvisibility=hidden -D__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 -D__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 -D__GCC_HAVE_SYNC_COMPARE_AND_... | {
"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.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.cognitiveservices.search.imagesearch;
import com.microsoft.... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script src="../../lib/preloadjs-NEXT.js"></script>
<script src="../../src/preloadjs/loaders/FontLoader.js"></script>
<script>
var fontConfig = {
src: [
"fonts/regul-book.woff",
"fonts/regul-bold.woff"
... | {
"pile_set_name": "Github"
} |
/*
Copyright 2019 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, ... | {
"pile_set_name": "Github"
} |
<template>
<div ref='dvtop' @click="getshow" class="read" :style="{backgroundColor:getcolor.background}">
<div v-if="datashow" class="readheader">
<span @click="getspan" class="mui-icon mui-icon-arrowleft read-span"></span>
<span class="readspan">{{getBook.title}}</span>
<span @click="gethuanyua... | {
"pile_set_name": "Github"
} |
{% load menu_tags %}
{% if menu_items %}
<ul>
{% for item in menu_items %}
<li class="{{ item.active_class }}">
<a href="{{ item.href }}">{{ item.text }}</a>
{% if item.has_children_in_menu %}
{% sub_menu item %}
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
| {
"pile_set_name": "Github"
} |
# MCUX driver settings
CONFIG_ETH_MCUX=y
CONFIG_PTP_CLOCK_MCUX=y
| {
"pile_set_name": "Github"
} |
--TEST--
phpunit --verbose --order-by=reverse ../_files/DependencySuccessTest.php
--FILE--
<?php
$_SERVER['argv'][1] = '--no-configuration';
$_SERVER['argv'][2] = '--debug';
$_SERVER['argv'][3] = '--verbose';
$_SERVER['argv'][4] = '--order-by=reverse';
$_SERVER['argv'][5] = '--resolve-dependencies';
$_SERVER['argv'][6]... | {
"pile_set_name": "Github"
} |
function Poller(config)
{
// CONFIGURABLE
var endpoints = {
up: "/status/poll", // url to poll when the server is up
down: "/status" // url to poll at regular intervals when the server is down
};
var timeout = 60000 * 2; // how many ms between polling attempts
var intervalMs = 1000; // ms between polls wh... | {
"pile_set_name": "Github"
} |
/*
* HCS API
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* API version: 2.1
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package hcsschema
type Device struct {
// The interface class guid of the device... | {
"pile_set_name": "Github"
} |
# volsample
MIT-licensed volume rendering research framework.

Teaser video [here](https://raw.githubusercontent.com/huwb/volsample/master/img/volrender_800x450_30fps.mp4).
Draft slides describing latest approach [here](https://raw.g... | {
"pile_set_name": "Github"
} |
/******************************************************************************
* Copyright (c) 2004, 2008 IBM Corporation
* All rights reserved.
* This program and the accompanying materials
* are made available under the terms of the BSD License
* which accompanies this distribution, and is available at
* http:... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.pl... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2011 Andes Technology Corporation
* Copyright (C) 2010 Shawn Lin (nobuhiro@andestech.com)
* Copyright (C) 2011 Macpaul Lin (macpaul@andestech.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* publ... | {
"pile_set_name": "Github"
} |
/* Shape 2D hexagon */
float sHex(in vec2 p, in float w) {
vec2 q = abs(p);
float d = max((q.x * 0.866025 + q.y * 0.5), q.y) - w * 0.5; // * 0.4330125
return d * 2.0;
}
float hex(in vec2 p, in float w) {
float d = sHex(p, w);
return fill(d);
}
float hex(in vec2 p, in float w, in float t) {
f... | {
"pile_set_name": "Github"
} |
// Copyright 2014 Google LLC
//
// 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 ... | {
"pile_set_name": "Github"
} |
package com.dianrong.common.techops.action;
import com.dianrong.common.techops.util.PureHttpRequestUtil;
import com.dianrong.common.uniauth.common.bean.request.SuperAdminParam;
import com.dianrong.common.uniauth.common.util.JsonUtil;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.slf4j.Logger;
i... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <SAObjects/SABaseClientBoundCommand.h>
@class NSArray;
@interface SADIAGSetLatencyDiagnosticConfiguration : SABaseClientBoundCommand
{
}
+ (id)setLatencyDiagnosticConfigu... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2009-2010 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 ap... | {
"pile_set_name": "Github"
} |
[
"orders",
"general",
"categories",
"items",
"attributes",
"order_statuses",
"shipping_types"
]
| {
"pile_set_name": "Github"
} |
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpcontainertreeview-dnd.c
* Copyright (C) 2003-2009 Michael Natterer <mitch@gimp.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public Li... | {
"pile_set_name": "Github"
} |
module Types
class WordType < Types::BaseObject
field :id, ID, null: false
field :verse_id, Integer, null: true
field :chapter_id, Integer, null: true
field :position, Integer, null: true
field :text_madani, String, null: true
field :text_indopak, String, null: true
field :text_simple, Str... | {
"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... | {
"pile_set_name": "Github"
} |
<?php
return [
/*
* The driver to use when listening for incoming emails.
* It defaults to the mail driver that you are using.
*
* Supported drivers: "log", "mailgun", "sendgrid", "postmark"
*/
'driver' => env('MAILBOX_DRIVER', 'log'),
/*
* The model class to use when conver... | {
"pile_set_name": "Github"
} |
/*
* *****************************************************************************
* Copyright (C) 2014-2020 Dennis Sheirer
*
* 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 versio... | {
"pile_set_name": "Github"
} |
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objects = {
/* Begin PBXBuildFile section */
C47DB4501BB750D7001D0166 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C47DB44F1BB750D7001D0166 /* AppDelegate.swift */; };
C47DB4551BB750D7001D0166 /* Main.storyboard in R... | {
"pile_set_name": "Github"
} |
{
"apiVersion": "apps/v1",
"kind": "Deployment",
"metadata": {
"name": "crunchy-grafana",
"labels": {
"app.kubernetes.io/name": "{{ app_name }}"
}
},
"spec": {
"replicas": 1,
"selector": {
"matchLabels": {
"name": "{{ grafana_... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>101 on 阳明的博客</title>
<link>https://www.qikqiak.com/tags/101/</link>
<description>Recent content in 101 on 阳明的博客</description>
<generator>Hugo -- gohugo.io</generator>
... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
import 'package:flutter_web/gestures.dart';
import 'package:test/test.dart';
typedef void GestureArenaCallback(Object key);
const int primaryKey = 4;
c... | {
"pile_set_name": "Github"
} |
#if !defined(BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES)
#ifndef BOOST_PHOENIX_FUNCTION_DETAIL_FUNCTION_OPERATOR_HPP
#define BOOST_PHOENIX_FUNCTION_DETAIL_FUNCTION_OPERATOR_HPP
#include <boost/phoenix/function/detail/preprocessed/function_operator.hpp>
#endif
#else
#if !BOOST_PHOENIX_IS_ITERATING
#ifnde... | {
"pile_set_name": "Github"
} |
# [Muscle Flash Cards](http://alexa.amazon.com/#skills/amzn1.ask.skill.039a0d3f-0a50-4f72-b88f-d7cf2ba310d4)
 2016 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"
} |
// Go support for Protocol Buffers - Google's data interchange format
//
// Copyright 2010 The Go Authors. All rights reserved.
// https://github.com/golang/protobuf
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017-2020 47 Degrees Open Source <https://www.47deg.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless ... | {
"pile_set_name": "Github"
} |
cask "astah-professional" do
version "8.2.0,b743f7"
sha256 "5c2a2931bb682e71c422d2b3abd16e53106fcc571f85c3f0a7f3a2f00ed3998e"
# cdn.change-vision.com/files/ was verified as official when first introduced to the cask
url "https://cdn.change-vision.com/files/astah-professional-#{version.before_comma.dots_to_unde... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_34) on Tue May 26 09:04:15 BST 2015 -->
<TITLE>
Uses of Class org.apache.fop.util.LogUtil (Apache FOP 2.0 API)
</TITLE>
<META NAME="date" CONTENT="2... | {
"pile_set_name": "Github"
} |
// CodeContracts
//
// Copyright (c) Microsoft Corporation
//
// All rights reserved.
//
// MIT License
//
// 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 wit... | {
"pile_set_name": "Github"
} |
// Provide more realistic default for *integration* tests
jasmine.DEFAULT_TIMEOUT_INTERVAL = 15000;
| {
"pile_set_name": "Github"
} |
using System;
using System.Xml;
namespace Protobuild
{
internal interface INuGetReferenceDetector
{
void ApplyNuGetReferences(
string rootPath,
string packagesPath,
XmlDocument document,
XmlNode nuget);
}
}
| {
"pile_set_name": "Github"
} |
---
title: Service Health の概要 | Microsoft Docs
description: お使いの Azure アプリが現在および将来の Azure サービスの問題やメンテナンスの影響をどのように受けるかに関するカスタマイズした情報。
ms.topic: conceptual
ms.date: 05/10/2019
ms.openlocfilehash: 2f2f0c8bf2cf4fe5beae7d48b198a23edba4e9ae
ms.sourcegitcommit: 3d79f737ff34708b48dd2ae45100e2516af9ed78
ms.translationtype: HT
m... | {
"pile_set_name": "Github"
} |
cheats = 5
cheat0_desc = "Infinite Lives"
cheat0_code = "Z 8 37274 0 0"
cheat0_enable = false
cheat1_desc = "Fall Any Height"
cheat1_code = "Z 8 33601 24 0"
cheat1_enable = false
cheat2_desc = "Infinite Candle Light"
cheat2_code = "Z 8 37163 0 0"
cheat2_enable = false
cheat3_desc = "Less moving enemies"
cheat3_code... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef TOOLS_ARCH_ALPHA_UAPI_ASM_MMAN_FIX_H
#define TOOLS_ARCH_ALPHA_UAPI_ASM_MMAN_FIX_H
#define MADV_DODUMP 17
#define MADV_DOFORK 11
#define MADV_DONTDUMP 16
#define MADV_DONTFORK 10
#define MADV_DONTNEED 6
#define MADV_FREE 8
#define MADV_HUGEPAGE 14
... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<html lang="" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Polar Area · GitBook</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta na... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2020 Vasyl Teliman
//
// 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"
} |
#region License
/*
* Copyright © 2002-2011 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... | {
"pile_set_name": "Github"
} |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms o... | {
"pile_set_name": "Github"
} |
;; dspprims.lsp -- interface to dsp primitives
;; ARESON - notch filter
;;
(defun areson (s c b &optional (n 0))
(multichan-expand #'nyq:areson s c b n))
(setf areson-implementations
(vector #'snd-areson #'snd-aresonvc #'snd-aresoncv #'snd-aresonvv))
;; NYQ:ARESON - notch filter, single channel
;;
(defun ny... | {
"pile_set_name": "Github"
} |
namespace Essensoft.AspNetCore.Payment.Alipay.Response
{
/// <summary>
/// AlipayOpenPublicLifeLabelModifyResponse.
/// </summary>
public class AlipayOpenPublicLifeLabelModifyResponse : AlipayResponse
{
}
}
| {
"pile_set_name": "Github"
} |
FROM biocontainers/biocontainers:debian-stretch-backports
MAINTAINER biocontainers <biodocker@gmail.com>
LABEL software="bioconductor-metagenomeseq" \
container="bioconductor-metagenomeseq" \
about.summary="GNU R statistical analysis for sparse high-throughput sequencing" \
about.home="https://biocond... | {
"pile_set_name": "Github"
} |
// Copyright Aleksey Gurtovoy 2001-2004
// Copyright Peter Dimov 2001-2003
//
// 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)
//
// Preprocessed version of "boost/mpl/placeholders.hpp" header
// -- ... | {
"pile_set_name": "Github"
} |
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {
}
@Get()
getHello(): string {
return this.appService.getHello();
}
}
| {
"pile_set_name": "Github"
} |
name human
geneUrl ../cgi-bin/hgGene?org=Human&hgg_gene=%s&hgg_chrom=none
sorterUrl ../cgi-bin/hgNear?org=Human&near_search=%s
name mouse
geneUrl ../cgi-bin/hgGene?org=Mouse&hgg_gene=%s&hgg_chrom=none
sorterUrl ../cgi-bin/hgNear?org=Mouse&near_search=%s
name rat
geneUrl ../cgi-bin/hgGene?org=Rat&hgg_gene=%s&hgg_chrom... | {
"pile_set_name": "Github"
} |
/**
* @license
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be f... | {
"pile_set_name": "Github"
} |
// -*- C++ -*-
//===--------------------------- wctype.h ---------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===------------... | {
"pile_set_name": "Github"
} |
from "base/iostream-clifwrap.h" import *
from "itf/options-itf-clifwrap.h" import *
from "fstext/lattice-weight-clifwrap.h" import *
from "fstext/vector-fst-clifwrap.h" import *
from "hmm/transition-model-clifwrap.h" import *
from "lat/word-align-lattice.h":
namespace `kaldi`:
class WordBoundaryInfoNewOpts:
... | {
"pile_set_name": "Github"
} |
version https://git-lfs.github.com/spec/v1
oid sha256:a327452bec258180530e1d797e4bcc53f991df0da86438b42b2825fe842d68b3
size 8647
| {
"pile_set_name": "Github"
} |
NEAL
====
**NEAL** (**N**\ ot **E**\ xactly **A** **L**\ inter) is a language-independent code analysis tool that aims to enable more people to write quality enforcement rules.
Example
-------
One of the simplest rules we have at Uber is to restrict the use of `Forced-Values in Swift`__. (`This post`__ explains some... | {
"pile_set_name": "Github"
} |
c
c This file is part of the SAMRAI distribution. For full copyright
c information, see COPYRIGHT and LICENSE.
c
c Copyright: (c) 1997-2020 Lawrence Livermore National Security, LLC
c Description: m4 include file defining routine to compute solution to
c Riemann problem in 3d.
c
define(rarefvel,`d... | {
"pile_set_name": "Github"
} |
"""
Here we have Python 3.7 grammars and associated customization
for the both full language and the subset used in lambda expressions.
"""
from decompyle3.parsers.p37.base import *
from decompyle3.parsers.p37.lambda_expr import *
from decompyle3.parsers.p37.full import *
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.