text stringlengths 2 99.9k | meta dict |
|---|---|
/*
* 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"
} |
yet another brainless teen flick , this one is about , surprise , drugs and sex .
stars katie holmes and sarah polly couldn't look more bored .
their characters are cardboard cut-outs of every cliched teenager out there .
one thing you need to know is i really hated this movie .
everything about it annoyed the hell... | {
"pile_set_name": "Github"
} |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ymate-platform-parent</artifactId>
<groupId>net.ymate.platform</g... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl -w
#
# flamegraph.pl flame stack grapher.
#
# This takes stack samples and renders a call graph, allowing hot functions
# and codepaths to be quickly identified. Stack samples can be generated using
# tools such as DTrace, perf, SystemTap, and Instruments.
#
# USAGE: ./flamegraph.pl [options] input.tx... | {
"pile_set_name": "Github"
} |
// go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build aix,ppc64
package unix
import (
"unsafe"
)
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func utimes(path string, times *[2]Tim... | {
"pile_set_name": "Github"
} |
/*
* Driver for ST5481 USB ISDN modem
*
* Author Frode Isaksen
* Copyright 2001 by Frode Isaksen <fisaksen@bewan.com>
* 2001 by Kai Germaschewski <kai.germaschewski@gmx.de>
*
* This software may be used and distributed according to the terms
* of the GNU General Public License, incor... | {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElementNaming", "ElementNaming.csproj", "{D60A5C3D-361C-49D7-B258-CD71BDCE641B}"
EndProject
Global
GlobalSection(TeamFoundationVersionControl) = preSolution
SccNumberOfProjects = 2
... | {
"pile_set_name": "Github"
} |
{
"created_at": "2015-02-27T22:28:14.818027",
"description": "More CSS Loaders & Spinners",
"fork": false,
"full_name": "callmenick/css-loaders-spinners-2",
"language": "CSS",
"updated_at": "2015-02-27T23:42:18.657110"
} | {
"pile_set_name": "Github"
} |
# Copyright (C) 2020 Mnumi
# This file is distributed under the same license as the MnumiDesigner plugin.
msgid ""
msgstr ""
"Project-Id-Version: mnumidesigner 0.6\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mnumidesigner\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:po="http://www.example.com/PO1"
targetNamespace="http://www.example.com/PO1">
</xsd:schema>
| {
"pile_set_name": "Github"
} |
/*M*
// PVCS:
// $Workfile: imb_api.h $
// $Revision: 1.2 $
// $Modtime: Jul 22 2002 16:40:32 $
// $Author: iceblink $
//
// Combined include files needed for imbapi.c
//
*M*/
/*----------------------------------------------------------------------*
The BSD License
Copyright (c) 2002, In... | {
"pile_set_name": "Github"
} |
import browser from 'webextension-polyfill';
const message = 'Add Wit Speech API and tryEnglishSpeechModel option';
const revision = 'nOedd0Txqd';
const downRevision = 'UidMDYaYA';
const storage = browser.storage.local;
async function upgrade() {
const changes = {
witSpeechApiKeys: {},
tryEnglishSpeechMod... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="9.00"
Name="DWriteHelloWorld"
ProjectGUID="{278F0E88-6143-4C81-9400-7DD14C9ABDE6}"
RootNamespace="TextFormat"
Keyword="Win32Proj"
TargetFrameworkVersion="196613"
>
<Platforms>
<Platform
Name="Win32"
/>
... | {
"pile_set_name": "Github"
} |
/// Copyright (c) 2009 Microsoft Corporation
///
/// 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, this list of conditions and
/// ... | {
"pile_set_name": "Github"
} |
// Copyright Aleksey Gurtovoy 2000-2004
// Copyright Jaap Suter 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/bitor.hpp" header
// -- DO NOT modify by hand!
... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 820ea6e0a2ece1b4896fc68dcbe87d27
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
| {
"pile_set_name": "Github"
} |
---
source: crates/mun_hir/src/expr/validator/tests.rs
expression: "fn foo() {\n let a:int;\n if true { a = 3; } else { a = 4; }\n let b = a + 4; // correct, `a` is initialized either way\n}\n\nfn bar() {\n let a:int;\n if true { a = 3; }\n let b = a + 4; // `a` is possibly-unitialized\n}\n\nfn baz(... | {
"pile_set_name": "Github"
} |
package org.eclipse.umlgen.gen.java.ui.utils;
import java.text.MessageFormat;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
/**
* Utility class to access externalized Strings throughout the UML to Java generator UI.
*
* @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a... | {
"pile_set_name": "Github"
} |
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution Licens... | {
"pile_set_name": "Github"
} |
from __future__ import division, print_function, absolute_import
def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration('io', parent_package, top_path)
config.add_extension('_test_fortran',
sources=['_test_fo... | {
"pile_set_name": "Github"
} |
function show(type)
{
count = 0;
for (var key in methods) {
var row = document.getElementById(key);
if ((methods[key] & type) != 0) {
row.style.display = '';
row.className = (count++ % 2) ? rowColor : altColor;
}
else
row.style.display = 'none... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 Square 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 to ... | {
"pile_set_name": "Github"
} |
includes: ['layer:leadership', 'layer:docker', 'layer:flannel', 'layer:storage', 'layer:tls', 'interface:etcd']
repo: https://github.com/mbruzek/layer-k8s.git
options:
storage:
storage-driver: zfs
mount-point: '/srv/kubernetes'
| {
"pile_set_name": "Github"
} |
import parseToHsla from './parseToHsla';
import hsla from './hsla';
/**
* Adjusts the current hue of the color by the given degrees. Wraps around when
* over 360.
*
* @param color input color
* @param degrees degrees to adjust the input color, accepts degree integers
* (0 - 360) and wraps around on overflow
*/
... | {
"pile_set_name": "Github"
} |
Four
====

基于Cocos2d-x框架,并使用MVC架构的一个棋类游戏。
Pure MVC架构,构建可维护的Cocos2d-x游戏。
###使用的框架
Cocos2d-x2.2.3
###apk下载地址
[应用宝](http://a.myapp.com/o/simple.jsp?pkgname=edu.nju.four)
[360手机助手](http://zhushou.360.cn/detail/index/soft_id/1757556?recrefer=SE_D_four#btn-inst... | {
"pile_set_name": "Github"
} |
multiline_literal_with_hil = "${hello
world}" | {
"pile_set_name": "Github"
} |
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.in by autoheader. */
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the <gr... | {
"pile_set_name": "Github"
} |
package gregtech.common.metatileentities.steam;
import gregtech.api.gui.ModularUI;
import gregtech.api.gui.widgets.ProgressWidget;
import gregtech.api.gui.widgets.ProgressWidget.MoveType;
import gregtech.api.gui.widgets.SlotWidget;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.M... | {
"pile_set_name": "Github"
} |
/*
* ICE / OPCODE - Optimized Collision Detection
* http://www.codercorner.com/Opcode.htm
*
* Copyright (c) 2001-2008 Pierre Terdiman, pierre@codercorner.com
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 us... | {
"pile_set_name": "Github"
} |
1.3.6.1.2.1.1.1.0|4|Hardware:VMware, 1 Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz, 4096 MB Memory: Software:UCOS 6.0.0.0-2.i386
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.1348
1.3.6.1.2.1.1.3.0|67|46052
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.25.1.1.0|67|145116313
1... | {
"pile_set_name": "Github"
} |
approvers:
- munnerz
- simonswine
- kragniz
reviewers:
- munnerz
- unguiculus
- kragniz
| {
"pile_set_name": "Github"
} |
// ported from ReShade
#if defined(VERTEX)
#if __VERSION__ >= 130
#define COMPAT_VARYING out
#define COMPAT_ATTRIBUTE in
#define COMPAT_TEXTURE texture
#else
#define COMPAT_VARYING varying
#define COMPAT_ATTRIBUTE attribute
#define COMPAT_TEXTURE texture2D
#endif
#ifdef GL_ES
#define COMPAT_PRECISION mediump
#else... | {
"pile_set_name": "Github"
} |
func p(t)(f){}
func n(f)(f){}
func n(f){} | {
"pile_set_name": "Github"
} |
//---------------------------------------------------------------------
// <copyright file="WrappedIEnumerator`1.cs" company="Microsoft">
// Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
// </copyright>
//--------------------------------... | {
"pile_set_name": "Github"
} |
;
; Definition file of D3DCompiler_41.dll
; Automatic generated by gendef
; written by Kai Tietz 2008
;
LIBRARY "D3DCompiler_41.dll"
EXPORTS
D3DAssemble
DebugSetMute
D3DCompile
D3DDisassemble
D3DDisassemble10Effect
D3DGetDebugInfo
D3DGetInputAndOutputSignatureBlob
D3DGetInputSignatureBlob
D3DGetOutputSignatureBlob
D3DP... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Aug 13 05:30:59 2017
@author: konodera
"""
import pandas as pd
import numpy as np
from tqdm import tqdm
from collections import defaultdict
import utils
utils.start(__file__)
#===========================================================================... | {
"pile_set_name": "Github"
} |
FILE "z.wav" WAVE
TRACK 01 AUDIO
ISRC
INDEX 01 00:00:00
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persis... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2011-2020 libbitcoin developers (see AUTHORS)
* Copyright (c) 2016-2020 metaverse core developers (see MVS-AUTHORS)
*
* This file is part of metaverse.
*
* metaverse is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License with
* a... | {
"pile_set_name": "Github"
} |
CUDA_PATH=/usr/local/cuda
HOST_COMPILER ?= g++
NVCC=${CUDA_PATH}/bin/nvcc -ccbin ${HOST_COMPILER}
TARGET=reduction_sequential reduction_interleaving
INCLUDES = -I${CUDA_PATH}/samples/common/inc
NVCC_FLAGS=-m64 -lineinfo # --resource-usage
IS_CUDA_11:=${shell expr `$(NVCC) --version | grep compilation | grep -Eo -m 1 ... | {
"pile_set_name": "Github"
} |
(import core/prelude ())
(import data/format ())
(import data/struct ())
(import math/numerics ())
(defstruct (matrix (hide make-matrix) matrix?)
"A matrix with a fixed width and height."
(fields
(immutable width width "The width of this matrix.")
(immutable height height "The height of this matrix.")
... | {
"pile_set_name": "Github"
} |
# Summary
[Introduction](./introduction.md)
[Roadmap](./roadmap.md)
- [Topics](./topics/topics.md)
- [Cloud Provider Config](./topics/cloud-provider-config.md)
- [Custom Images](./topics/custom-images.md)
- [Data Disks](./topics/data-disks.md)
- [Ephemeral OS](./topics/ephemeral-os.md)
- [External ... | {
"pile_set_name": "Github"
} |
package soot.util.cfgcmd;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 2003 John Jorgensen
* %%
* This program 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 ve... | {
"pile_set_name": "Github"
} |
-- Adapted from Brady's ICFP '13 paper.
{-# LANGUAGE TypeInType, RebindableSyntax, OverloadedStrings,
FlexibleContexts #-}
module Sec213 where
import qualified Prelude as P
import Data.AChar
import Data.Nat
import Effect.State
import Effect.Exception
import Effect.Random
import Effect.StdIO
import Effec... | {
"pile_set_name": "Github"
} |
# Messages
Kohana has a robust key based lookup system so you can define system messages.
## Getting a message
Use the Kohana::message() method to get a message key:
Kohana::message('forms', 'foobar');
This will look in the `messages/forms.php` file for the `foobar` key:
<?php
return array(
'foobar' => 'He... | {
"pile_set_name": "Github"
} |
{
"deps": [
{
"locator": "../foo"
}
]
} | {
"pile_set_name": "Github"
} |
/*
This file is part of Mitsuba, a physically based rendering system.
Copyright (c) 2007-2014 by Wenzel Jakob and others.
Mitsuba is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License Version 3
as published by the Free Software Foundation.
... | {
"pile_set_name": "Github"
} |
; Check that the index of 'P[outer]' is pulled out of the loop.
; RUN: opt < %s -loop-reduce -S | \
; RUN: not grep "getelementptr.*%outer.*%INDVAR"
target datalayout = "e-p:32:32:32-n32"
declare i1 @pred()
define void @test([10000 x i32]* %P, i32 %outer) {
; <label>:0
br label %Loop
Loop: ; preds = %Loop, %0
%I... | {
"pile_set_name": "Github"
} |
#
# Copyright (c) 2020 Huawei Technologies Co.,Ltd.
#
# openGauss is licensed under Mulan PSL v2.
# You can use this software according to the terms and conditions of the Mulan PSL v2.
# You may obtain a copy of Mulan PSL v2 at:
#
# http://license.coscl.org.cn/MulanPSL2
#
# THIS SOFTWARE IS PROVIDED ON AN "AS I... | {
"pile_set_name": "Github"
} |
{
"@context": {
"@base": "http://example.com/some/deep/directory/and/file#with-a-fragment",
"links": { "@id": "http://www.example.com/link", "@type": "@id", "@container": "@list" }
},
"@id": "relativeIris",
"@type": [
"link",
"#fragment-works",
"?query=works",
"./",
"../",
"../pa... | {
"pile_set_name": "Github"
} |
//////////////////////////////////////////////////////////////////////////////
// Name: wx/aui/auibook.h
// Purpose: wxaui: wx advanced user interface - notebook
// Author: Benjamin I. Williams
// Modified by:
// Created: 2006-06-28
// Copyright: (C) Copyright 2006, Kirix Corporation, All Ri... | {
"pile_set_name": "Github"
} |
/******************************************************************************
*******************************************************************************
**
** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
** Copyright (C) 2005-2008 Red Hat, Inc. All rights reserved.
**
** This copyrig... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
//
// ---------------------------------------------------------------------------
//
// This file was generated by the CEF translato... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CommandDotNet.Prompts;
using CommandDotNet.Rendering;
namespace CommandDotNet.Example.Commands
{
[Command(
Description = "Demonstrates prompting (including passwords) and interceptor method to define opt... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="portable-net45+win+wpa81+wp80" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable-net45+win+wpa81+wp80" />
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework... | {
"pile_set_name": "Github"
} |
{
"name": "Autism Speaks, Inc.",
"displayName": "Autism Speaks",
"properties": [
"autismspeaks.org"
]
} | {
"pile_set_name": "Github"
} |
// Copyright (c) 2006, Google 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:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditi... | {
"pile_set_name": "Github"
} |
FILE(REMOVE_RECURSE
"CMakeFiles/myslam.dir/frame.cpp.o"
"CMakeFiles/myslam.dir/mappoint.cpp.o"
"CMakeFiles/myslam.dir/map.cpp.o"
"CMakeFiles/myslam.dir/camera.cpp.o"
"CMakeFiles/myslam.dir/config.cpp.o"
"CMakeFiles/myslam.dir/visual_odometry.cpp.o"
"../../lib/libmyslam.pdb"
"../../lib/libmyslam.so"
)
#... | {
"pile_set_name": "Github"
} |
// Boost.TypeErasure library
//
// Copyright 2011 Steven Watanabe
//
// 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)
//
// $Id$
#if !defined(BOOST_PP_IS_ITERATING)
#ifndef BOOST_TYPE_ERASURE_CALLABLE_HPP_INCLUDE... | {
"pile_set_name": "Github"
} |
[
{
"data": {
"action": "added",
"calendarTime": "Wed Feb 12 21:38:11 2020 UTC",
"columns": {
"host": "10.0.2.2",
"pid": 12345,
"time": 1581542540,
"tty": "ttys001",
"type": "8",
"username": "runlevel"
},
"decorations": {
"envId... | {
"pile_set_name": "Github"
} |
# Launch Screen Assets
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the... | {
"pile_set_name": "Github"
} |
/**
* @file hyphenate_string.hpp
* @author Ryan Curtin
*
* Hyphenate a string.
*
* mlpack is free software; you may redistribute it and/or modify it under the
* terms of the 3-clause BSD license. You should have received a copy of the
* 3-clause BSD license along with mlpack. If not, see
* http://www.opensou... | {
"pile_set_name": "Github"
} |
/*
* file: TableFactory14.java
* author: Jon Iles
* copyright: (c) Packwood Software 2010
* date: 08/03/2010
*/
/*
* This library 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... | {
"pile_set_name": "Github"
} |
namespace Sitecore.FakeDb.Serialization
{
using System.IO;
using Sitecore.Data;
using Sitecore.Data.Serialization.ObjectModel;
using Sitecore.Diagnostics;
/// <summary>
/// FakeDb template that is deserialized from the file system (uses serialized data from Sitecore or TDS).
/// </summary>
... | {
"pile_set_name": "Github"
} |
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: NetAPI DLL
* FILE: reactos/dll/win32/netapi32/srvsvc.c
* PURPOSE: Server service interface code
* PROGRAMMERS: Eric Kohl <eric.kohl@reactos.org>
*/
/* INCLUDES **************************************************... | {
"pile_set_name": "Github"
} |
{
"a": "b",
"bccccccccccccccccccccccccccccccccccccccnd35Z<b3_{72 tt\u00335Z\b333333Zt\u0333_\b333ccccccccccccccccccccccccccccccccccccccccccccccccccccccccnd35Z<b3_{72 tt\u00335Z\b333333Z5Z\b333333Zt\u0333_c": true,
"obcccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2020 Facebook */
/* "undefine" structs in vmlinux.h, because we "override" them below */
#define bpf_iter_meta bpf_iter_meta___not_used
#define bpf_iter__bpf_map bpf_iter__bpf_map___not_used
#define bpf_iter__ipv6_route bpf_iter__ipv6_route___not_used
#define bpf_... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2006-2011 Michael Niedermayer <michaelni@gmx.at>
* 2010 James Darnley <james.darnley@gmail.com>
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by ... | {
"pile_set_name": "Github"
} |
SELECT
my_var::date as casted_variable,
123::bigint as another_casted_number
FROM boo
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-02-20 19:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('issuer', '0041_badgeinstancebakedimage'),
]
operations = [
migrations.AlterField(
model_name='badgeins... | {
"pile_set_name": "Github"
} |
/*
* dice_hwdep.c - a part of driver for DICE based devices
*
* Copyright (c) Clemens Ladisch <clemens@ladisch.de>
* Copyright (c) 2014 Takashi Sakamoto <o-takashi@sakamocchi.jp>
*
* Licensed under the terms of the GNU General Public License, version 2.
*/
#include "dice.h"
static long hwdep_read(struct snd_hw... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2013 - 2018, Logical Clocks AB and RISE SICS AB. All rights reserved
*
* 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 limitatio... | {
"pile_set_name": "Github"
} |
use v6.d;
unit module Module_6d;
sub core-revision is export { CORE-SETTING-REV }
sub perl-version is export { BEGIN $*PERL.version }
# vim: expandtab shiftwidth=4
| {
"pile_set_name": "Github"
} |
---
title: "Absense of light"
subtitle: "Only lights from space"
author: "Wferr"
avatar: "img/authors/wferr.png"
image: "img/d.jpg"
date: 2015-04-23 12:12:12
---
### Dolor sit amet?
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vestibulum non mi non pulvinar. Donec tempus risus vel ex fringilla tem... | {
"pile_set_name": "Github"
} |
## ml-grinder.pkg
#
# The core of the ML-Grinder library
### Never tell the truth to people who are not worthy of it.
###
### -- Mark Twain,
### Notebook, 1902
local
Author = "Allen Leung... | {
"pile_set_name": "Github"
} |
# /* **************************************************************************
# * *
# * (C) Copyright Paul Mensonides 2002.
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt... | {
"pile_set_name": "Github"
} |
# Generated Thu Jul 11 16:50:38 2019 by ./gen-tests.pl '-n' '250' '-o' 'auth-optional-strict' '-v' 'LOGIN' '-i' 'foo' '-d' '.' '-r' '-s' '%SWAKS% --dump AUTH --to user@host1.nodns.test.swaks.net --from recip@host1.nodns.test.swaks.net --helo hserver --server "ser.ver" --au USER -ap PASS'
auto: REMOVE_FILE,CREATE_FILE,... | {
"pile_set_name": "Github"
} |
: PUSHZ, CX 0 MOVxI, IFZ, CX INCx, THEN, CX PUSHx, ;
: CODE ( same as CREATE, but with native word )
(entry) 0 ( native ) C, ;
: ;CODE JMPn, 0x1a ( next ) RPCn, ;
VARIABLE lblchkPS
: chkPS, ( sz -- )
CX SWAP 2 * MOVxI, CALLn, lblchkPS @ RPCn, ;
| {
"pile_set_name": "Github"
} |
Gear Up
----------------------
.. toctree::
:maxdepth: 4
hardware
pump
CGM
Get your rig parts <edison>
| {
"pile_set_name": "Github"
} |
/**
* The NodeAutoGrow Node Plugin makes textarea expands in height
* to fit its contents automatically.
*
* Usage:
*
* <link rel="stylesheet" href="assets/node-autogrow.css">
* <script type="text/javascript" src="http://yui.yahooapis.com/3.7.3/build/yui/yui-min.js"></script>
* <script type="text/ja... | {
"pile_set_name": "Github"
} |
//
// RealizedElement.swift
// Few
//
// Created by Josh Abernathy on 2/13/15.
// Copyright (c) 2015 Josh Abernathy. All rights reserved.
//
import Foundation
internal func indexOfObject<T: AnyObject>(array: [T], element: T) -> Int? {
for (i, e) in enumerate(array) {
if element === e { return i }
}
return n... | {
"pile_set_name": "Github"
} |
{$O-,Q+,R+}
uses SysUtils;
label cont;
const MaxN = 100;
var x, y : array [1..MaxN * 2] of integer;
valid : boolean;
N, C, i, j, k : integer;
a : extended;
begin
writeln (MaxN);
randseed := 123454321;
for i := 1 to MaxN + MaxN do begin
repeat
valid := true;
a :=... | {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imapi2sample", "imapi2sample.vcproj", "{F19F314A-27A0-42B0-996F-E8E1700EEFF7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32... | {
"pile_set_name": "Github"
} |
'''
MEGAN - Metagenome Analyzer
MEGAN needs to be installed through the installer and a license also needs to
be obtained out of band.
The user needs to set environment variables:
MEGAN_PATH
MEGAN_LICENSE_PATH
MEGAN_DATA_PATH
The data directory can be populated with unzipped archives from
http://ab.inf.uni-tuebingen... | {
"pile_set_name": "Github"
} |
/* 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, software
* distribut... | {
"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 (1.8.0) on Sun Jul 19 11:36:55 PDT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jac... | {
"pile_set_name": "Github"
} |
// MyInt2.cpp
class MyInt2{
public:
MyInt2(int v):val(v){};
friend MyInt2 operator+(const MyInt2& fir, const MyInt2& sec){
return MyInt2(fir.val + sec.val);
}
private:
int val;
};
int main(){
MyInt2 myFive = MyInt2(2) + MyInt2(3);
MyInt2 myFive2 = MyInt2(3) + MyInt2(2);
MyInt2 myTen... | {
"pile_set_name": "Github"
} |
require 'spec_helper'
require 'robe/sash/includes_tracker'
describe Robe::Sash::IncludesTracker do
klass = described_class
let(:m) { Module.new { def foo; end } }
let(:names) { Names.new }
context "after change in environment" do
before do
expect(klass.method_owner_and_inst(m, names)).to eq([nil, t... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
# author: deadc0de6 (https://github.com/deadc0de6)
# Copyright (c) 2017, deadc0de6
#
# test dynamic variables from yaml file
# returns 1 in case of error
#
# exit on first error
set -e
# all this crap to get current path
rl="readlink -f"
if ! ${rl} "${0}" >/dev/null 2>&1; then
rl="realpath"
i... | {
"pile_set_name": "Github"
} |
-- boundary1.test
--
-- db eval {
-- SELECT a FROM t1 WHERE rowid < 140737488355328 ORDER BY x
-- }
SELECT a FROM t1 WHERE rowid < 140737488355328 ORDER BY x | {
"pile_set_name": "Github"
} |
<?php
declare(strict_types=1);
/*
* This file is part of the WebPush library.
*
* (c) Louis Lagrange <lagrange.louis@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Minishlink\WebPush\WebPush;
use Minishlink\WebPu... | {
"pile_set_name": "Github"
} |
'use strict';
const request = require('request');
const debug = require('debug')('core-report');
const __WPO = require('../retcode/log-node');
let host = 'http://fie-api.alibaba-inc.com';
if (process.env.NODE_ENV === 'local') {
host = 'http://127.0.0.1:6001';
}
/**
* 发送fie流程日志
* @param {object} data
*/
function... | {
"pile_set_name": "Github"
} |
// Copyright 2018 The Prometheus 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... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env php
<?php
namespace vierbergenlars\SemVer\Application\SemVer;
require __DIR__ . '/../vendor/autoload.php';
use vierbergenlars\SemVer\version;
use vierbergenlars\SemVer\expression;
use vierbergenlars\SemVer\SemVerException;
$version = false;
$range = array();
$increment = false;
// Get all arguments
... | {
"pile_set_name": "Github"
} |
from __future__ import unicode_literals
import datetime
from django.db import models
from six import python_2_unicode_compatible
__all__ = ('City',)
@python_2_unicode_compatible
class City(models.Model):
"""City."""
name = models.CharField(max_length=255)
info = models.TextField(null=True, blank=True... | {
"pile_set_name": "Github"
} |
//
// NSObject+MJClass.m
// MJExtensionExample
//
// Created by MJ Lee on 15/8/11.
// Copyright (c) 2015年 小码哥. All rights reserved.
//
#import "NSObject+MJClass.h"
#import "NSObject+MJCoding.h"
#import "NSObject+MJKeyValue.h"
#import "MJFoundation.h"
#import <objc/runtime.h>
static const char MJAllowedPropertyNam... | {
"pile_set_name": "Github"
} |
--TEST--
Test touch() function : variation: various valid and invalid paths
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') {
die('skip.. only for Windows');
}
?>
--FILE--
<?php
$workDir = "touchVar5.tmp";
$subDirOrFile = "aSubDirOrFile";
chdir(__DIR__);
mkdir($work... | {
"pile_set_name": "Github"
} |
young_JJ
sammy_JJ
other_JJ
worse_JJR
animated_JJ
white_JJ
popular_JJ
white_JJ
animated_JJ
minor_JJ
classic_JJ
live_JJ
little_JJ
rich_JJ
animated_JJ
unlikely_JJ
receiving_JJ
regional_JJ
theatrical_JJ
sure_JJ
famous_JJ
beantown_JJ
gypsy-like_JJ
public_JJ
added_JJ
earned_JJ
capable_JJ
poor_JJ
insipid_JJ
sugary_JJ
better_J... | {
"pile_set_name": "Github"
} |
require "feature_helper"
RSpec.feature "Presentation" do
scenario "works" do
stub_ci_requests_for_home_page
user = create(:user, :with_oauth_account)
create(:project, repo_name: "jollygoodcode/twemoji", user: user)
create(:project, repo_name: "jollygoodcode/dasherize", user: user)
sign_in_as(user... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('sortedIndexBy', require('../sortedIndexBy'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.