text stringlengths 2 99.9k | meta dict |
|---|---|
//-------------------------------------------------------------------------
/*
Copyright (C) 1996, 2003 - 3D Realms Entertainment
This file is NOT part of Duke Nukem 3D version 1.5 - Atomic Edition
However, it is either an older version of a file that is, or is
some test code written during the development of Duke Nuk... | {
"pile_set_name": "Github"
} |
#![allow(unused)]
use std::{convert::TryFrom, io};
use libc::{c_int, c_long, c_uint, syscall};
use super::io_uring_params;
const SETUP: c_long = 425;
const ENTER: c_long = 426;
const REGISTER: c_long = 427;
pub(crate) fn setup(
entries: c_uint,
p: *mut io_uring_params,
) -> io::Result<c_int> {
assert!(... | {
"pile_set_name": "Github"
} |
package:
name: meld3
version: 0.6.10
source:
fn: meld3-0.6.10.tar.gz
url: https://pypi.python.org/packages/source/m/meld3/meld3-0.6.10.tar.gz
md5: 42e58624e9d427be7659d7a28e2b0b6f
# patches:
# List any patch files here
# - fix.patch
# build:
# entry_points:
# Put any entry points (scripts to be... | {
"pile_set_name": "Github"
} |
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
# NScD Oak Ridge National Laboratory, European Spallation Source,
# Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
# SPDX - License - Identifier: GPL - 3.0 +
# py... | {
"pile_set_name": "Github"
} |
module Goliath
module Rack
#
# Include this to enable middleware that can perform pre- and
# post-processing.
#
# For internal reasons, you can't do the following as you would in Rack:
#
# def call(env)
# # ... do pre-processing
# status, headers, body = @app.call(env)
... | {
"pile_set_name": "Github"
} |
/******************************************************************************
* SOFA, Simulation Open-Framework Architecture *
* (c) 2006 INRIA, USTL, UJF, CNRS, MGH *
* *
... | {
"pile_set_name": "Github"
} |
/*
Description: Foundation 4 docs style for highlight.js
Author: Dan Allen <dan.j.allen@gmail.com>
Website: http://foundation.zurb.com/docs/
Version: 1.0
Date: 2013-04-02
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #eee;
-webkit-text-size-adjust: none;
}
.hljs-header,
.hljs-deco... | {
"pile_set_name": "Github"
} |
FILE(REMOVE_RECURSE
"CMakeFiles/uarm_generate_messages_cpp"
"/home/ewenwan/ewenwan/catkin_ws/devel/include/uarm/CoordsWithTime.h"
"/home/ewenwan/ewenwan/catkin_ws/devel/include/uarm/Angles.h"
"/home/ewenwan/ewenwan/catkin_ws/devel/include/uarm/CoordsWithTS4.h"
"/home/ewenwan/ewenwan/catkin_ws/devel/include/ua... | {
"pile_set_name": "Github"
} |
// most Object methods by ES6 should accept primitives
var $export = require('./$.export')
, core = require('./$.core')
, fails = require('./$.fails');
module.exports = function(KEY, exec){
var fn = (core.Object || {})[KEY] || Object[KEY]
, exp = {};
exp[KEY] = exec(fn);
$export($export.S + $export.... | {
"pile_set_name": "Github"
} |
Utils/
| {
"pile_set_name": "Github"
} |
package session
import (
"crypto/tls"
"crypto/x509"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/corehandlers"
"github.com/aws/aws-sdk-go/aws/credentials"
"github... | {
"pile_set_name": "Github"
} |
import React from 'react'
import './assets/scss-styles.scss'
export default () => <p id="feature-scss-inclusion">We love useless text.</p>
| {
"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><link rel="apple-touch-icon" sizes="180x180" href="/glide/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/glide/favicon-32x32.png"><link rel="icon" ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2000 Greg Haerr <greg@censoft.com>
* Copyright (c) 1991 David I. Bell
*/
#include <stdlib.h>
#include "serv.h"
/*
* Macro to distinguish cases of clipping.
*/
#define GAPVAL(leftgap, rightgap, topgap, bottomgap) \
(((leftgap) << 3) + ((rightgap) << 2) + ((topgap) << 1) + (bottomgap))
static G... | {
"pile_set_name": "Github"
} |
<div>
<div class="form-group">
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">Menu</div>
<!-- List group -->
<ul class="list-group">
<li class="list-group-item">
<span class="gly... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 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"
} |
/// Source : https://leetcode.com/problems/n-queens-ii/
/// Author : liuyubobobo
/// Time : 2018-01-07
#include <iostream>
#include <vector>
using namespace std;
/// Basic Recursive
/// Time Complexity: O(n^n)
/// Space Complexity: O(n)
class Solution {
public:
int totalNQueens(int n) {
vector<int> r... | {
"pile_set_name": "Github"
} |
package main
import "testing"
import "time"
func TestPrint1(t *testing.T) {
print1()
}
func TestGoPrint1(t *testing.T) {
goPrint1()
time.Sleep(1 * time.Millisecond)
}
| {
"pile_set_name": "Github"
} |
.jqx-widget-classic{}
.jqx-fill-state-normal-classic, .jqx-widget-header-classic{ border-color: #aaa; background-color:#E8E8E8; background-image:-webkit-gradient(linear,0 0,0 100%,from(#fafafa),to(#dadada)); background-image:-moz-linear-gradient(top,#fafafa,#dadada); background-image:-o-linear-gradient(top,#fafafa,... | {
"pile_set_name": "Github"
} |
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modi... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) OpenTX
*
* Based on code named
* th9x - http://code.google.com/p/th9x
* er9x - http://code.google.com/p/er9x
* gruvin9x - http://code.google.com/p/gruvin9x
*
* License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
*
* This program is free software; you can redistribute it and/or mod... | {
"pile_set_name": "Github"
} |
# Gradle 插件
Gradle 的核心为真实世界提供了很少的自动化.
所有的实用特性,类似编译java源码的能力, 是由*插件*提供的. 插件添加了新的任务(如:[JavaCompile](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.compile.JavaCompile.html)),域对象(如:[SourceSet](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.SourceSet.html)),公约(如:Java资源位置是`src/main/java`)以及来自其他插件延伸核心对象... | {
"pile_set_name": "Github"
} |
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* I... | {
"pile_set_name": "Github"
} |
form=词
tags=
萼绿华家萼绿春。
山瓶何处下青云。
浓香气味已醺人。
竹叶传杯惊老眼,
松醪题赋倒纶巾。
须防银字暖朱唇。
残腊晴寒出众芳。
风流勾引破春光。
年年长为此花忙。
夜久莫教银烛灺,
酒边何似玉台妆。
冰肌温处觅馀香。
棐几明窗乐未央。
熏炉茗碗是家常。
客来长揖对胡床。
蟹眼汤深轻泛乳,
龙涎灰暖细烘香。
为君行草写秋阳。
翡翠钗头缀玉虫。
秋蟾飘下广寒宫。
数枝金粟露华浓。
花底清歌生皓齿,
烛边疏影映酥胸。
恼人风味冷香中。
花气天然百和芬。
仙风吹过海中春。
龙涎沈水总销魂。
清润巧萦金缕细,
氤氲偏傍玉脂温。
别来长是惜馀熏。
花气薰人百和香。
少陵佳句是仙方。
空教蜂蝶为花忙。
和露摘来轻换骨,
... | {
"pile_set_name": "Github"
} |
/*
* Process Hacker -
* internal object manager
*
* Copyright (C) 2009-2016 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker 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... | {
"pile_set_name": "Github"
} |
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API l... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright 2014 See AUTHORS file.
*
* 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.a... | {
"pile_set_name": "Github"
} |
gcr.io/google_containers/kube-apiserver-arm:v1.5.6
| {
"pile_set_name": "Github"
} |
template_path: valid_template.json
| {
"pile_set_name": "Github"
} |
var semver = require('semver');
module.exports = function(grunt) {
grunt.registerTask('version', 'Updates the current release version', function() {
var done = this.async(),
pkg = grunt.config('pkg'),
version = grunt.option('ver');
if (!semver.valid(version)) {
throw new Error('Must pr... | {
"pile_set_name": "Github"
} |
<?php
/**
* TechDivision\Import\Repositories\Finders\AbstractFinder
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
*
* PHP version 5
*
* @author Tim Wagne... | {
"pile_set_name": "Github"
} |
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build arm,linux
package unix
import (
"syscall"
"unsafe"
)
func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
func N... | {
"pile_set_name": "Github"
} |
// g2o - General Graph Optimization
// Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
// 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 r... | {
"pile_set_name": "Github"
} |
steel_ stainless _type 302
113 317.70801 8.0600004 6
6 0.001000 14 0.007000 24 0.180000 25 0.010000 26 0.712000 28 0.090000
1.00E-03,1.582E-03 1.25E-03,1.940E-03 1.50E-03,2.286E-03 1.75E-03,2.623E-03
2.00E-03,2.952E-03 2.50E-03,3.588E-03 3.00E-03,4.200E-03 3.50E-03,4.792E-03
... | {
"pile_set_name": "Github"
} |
class AddDescriptionToTeams < ActiveRecord::Migration
def up
add_column :teams, :description, :text
Team.reset_column_information
Team.where(:name => Team::ADMINS).update_all(['description = ?', 'Most powerful users with full spectrum of permissions.'])
add_index :teams, [:organization_id, :name], :un... | {
"pile_set_name": "Github"
} |
# where py object files go (they have a name prefix to prevent filename clashes)
PY_BUILD = $(BUILD)/py
# where autogenerated header files go
HEADER_BUILD = $(BUILD)/genhdr
# file containing qstr defs for the core Python bit
PY_QSTR_DEFS = $(PY_SRC)/qstrdefs.h
# If qstr autogeneration is not disabled we specify the ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2011 The Closure Compiler 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... | {
"pile_set_name": "Github"
} |
TIMESTAMP = 1527915942
SHA256 (gnome3/gnome-terminal-3.28.2.tar.xz) = a283dca4980eecf9184a55aac03fef99f85748461ff190423a2253f3b4557279
SIZE (gnome3/gnome-terminal-3.28.2.tar.xz) = 2094920
| {
"pile_set_name": "Github"
} |
package com.jeesuite.mybatis.plugin.cache;
import java.io.Serializable;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
... | {
"pile_set_name": "Github"
} |
"Filed out from Dolphin Smalltalk 7"!
TextDocument subclass: #XmlPad
instanceVariableNames: 'viewOptions'
classVariableNames: 'RememberPlacementMask'
poolDictionaries: ''
classInstanceVariableNames: ''!
XmlPad guid: (GUID fromString: '{0b798c7b-c80f-46ab-9dd4-d8832b78d33c}')!
XmlPad addClassConstant: 'Rem... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2000-2015 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file exc... | {
"pile_set_name": "Github"
} |
#define Xgreycirc_width 16
#define Xgreycirc_height 16
static char Xgreycirc_bits[] = {
0xe0, 0x07, 0x18, 0x18, 0x04, 0x20, 0xe2, 0x47, 0xf2, 0x4f, 0xb9, 0x9a,
0x59, 0x9d, 0xb9, 0x9a, 0x59, 0x9d, 0xb9, 0x9a, 0x59, 0x9d, 0xf2, 0x4f,
0xe2, 0x47, 0x04, 0x20, 0x18, 0x18, 0xe0, 0x07};
| {
"pile_set_name": "Github"
} |
ccraik@google.com
jreck@google.com | {
"pile_set_name": "Github"
} |
//--------------------------------------------------------------------------------------------------
// $Id $
//
// ElectronEnergyRegressionEvaluate
//
// Helper Class for applying electron energy regression calculation
//
// Authors: A.Takeda, S.Xie, E. Di Marco
//------------------------------------------------------... | {
"pile_set_name": "Github"
} |
obj.foo = hello
obj.bar = bar
obj.xyz = 44
get abc
obj.abc = abc
obj2 in MyConstructor instance? true
obj3 is an Object? true
44
| {
"pile_set_name": "Github"
} |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_Name: TeleportAreaLocked
m_Shader: {fileID: 4800000, guid: 787d7485aa6482341a9f55fa37fb84f1, type: 3}
m_ShaderKeywords: RECEIVE_... | {
"pile_set_name": "Github"
} |
<?php
/**
* authSources_SearchUsers.php
*
* ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23
*
* 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 Software Foundation, either ver... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2013-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule ... | {
"pile_set_name": "Github"
} |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
internal partial class Interop
{
internal partial class Kernel32
{
[DllImport(Libraries.Kernel32, SetLastError = ... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "spinner@2x90.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
} | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2008 Apple Inc. All rights reserved.
* Copyright (C) 2010 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:
*
* 1. Redistributions of source code must retain ... | {
"pile_set_name": "Github"
} |
FROM nodesource/wheezy-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node/pool/main/n/nodejs/nodejs_0.10.43-1nodesource1~wheezy1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(which ... | {
"pile_set_name": "Github"
} |
Redux Favicon
=============
[](https://travis-ci.org/joshwcomeau/redux-favicon)
[](https://www.npmjs.com/package/redux-favicon)
[![Coverag... | {
"pile_set_name": "Github"
} |
using Xunit;
namespace Shouldly.Tests.Strings.DetailedDifference.CaseInsensitive
{
public static class NullScenario
{
[Fact]
public static void ShouldNotShowDifferenceWhenActualIsMissing()
{
var str = (string?)null;
Verify.ShouldFail(() =>
str.ShouldBe("null", S... | {
"pile_set_name": "Github"
} |
{
"name": "keen-dashboards",
"homepage": "https://keenlabs.github.io/dashboards/",
"main": "./dist/keen-dashboards.css",
"authors": [
"Dustin Larimer <dustin@keen.io>",
"Sean Dokko <dokko1230@gmail.com>",
"Ritchie Benevedes <ritchieleeann@gmail.com>"
],
"license": "MIT",
"authors": [
"Dust... | {
"pile_set_name": "Github"
} |
<md-dialog aria-label="pay dialog" ng-style="setDialogWidth()">
<div ng-show="publicInfo.status === 'loading'" layout="row" layout-align="center center" layout-margin layout-padding>
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
</div>
<md-dialog-content ng-show="publicInfo.s... | {
"pile_set_name": "Github"
} |
{
"name": "on-finished",
"description": "Execute a callback when a request closes, finishes, or errors",
"version": "2.3.0",
"contributors": [
{
"name": "Douglas Christopher Wilson",
"email": "doug@somethingdoug.com"
},
{
"name": "Jonathan Ong",
"email": "me@jongleberry.com",... | {
"pile_set_name": "Github"
} |
//
// This file is part of an OMNeT++/OMNEST simulation example.
//
// Copyright (C) 1992-2015 Andras Varga
//
// This file is distributed WITHOUT ANY WARRANTY. See the file
// `license' for details on this and other legal matters.
//
import
"telnetclient",
"exttelnetclient",
"telnetserver",
"cloud";
... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2008-2017 Nicira, 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... | {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgxsEAmr439JoRs7Xc
7OIKgYSbo+bFM1zPrW1V/JZGgKShRANCAARLl7a4+BenigrAVY2rEZxYk0URtji4
NFLScdXF9SPR5zcOCll+Hpyj8KLjbrX+CmsXwgMZrkYM2SOQSlOcd6Ay
-----END PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
var baseIteratee = require('./_baseIteratee'),
createInverter = require('./_createInverter');
/** Used for built-in method references. */
var objectProto = Object.prototype;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.hasOwnProperty;
/**
* This method is like `_.invert` exc... | {
"pile_set_name": "Github"
} |
<?php
/*
|--------------------------------------------------------------------------
| Module API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group w... | {
"pile_set_name": "Github"
} |
# From http://downloads.yoctoproject.org/releases/matchbox/matchbox-panel/0.9/matchbox-panel-0.9.3.tar.bz2.md5
md5 56d1807636f3919e22e51896ab7ccd2e matchbox-panel-0.9.3.tar.bz2
# Locally computed
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
| {
"pile_set_name": "Github"
} |
package endpoints4s.algebra
import endpoints4s.{Invalid, Valid, Validated}
import org.scalatest.freespec.AnyFreeSpec
/**
* Tests that must be run on all [[JsonSchemas]] interpreters.
*/
trait JsonSchemasOptionalFieldsTest extends AnyFreeSpec with JsonSchemasFixtures {
// Abstract over concrete JSON library (su... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0640"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
... | {
"pile_set_name": "Github"
} |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | {
"pile_set_name": "Github"
} |
require('../../modules/es6.symbol');
module.exports = require('../../modules/_core').Symbol['for'];
| {
"pile_set_name": "Github"
} |
/*
* The Sleuth Kit
*
* Contact: Brian Carrier [carrier <at> sleuthkit [dot] org]
* Copyright (c) 2010-2012 Basis Technology Corporation. All Rights
* reserved.
*
* This software is distributed under the Common Public License 1.0
*/
/**
* \file TskImgDB.cpp
* Some common defines used by the framework data mo... | {
"pile_set_name": "Github"
} |
require('../../modules/es6.number.max-safe-integer');
module.exports = 0x1fffffffffffff; | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl
# This file contains an asPHP function for each Node subclass in the S2 compiler.
# If new nodes are added to the S2 compiler in future, this will need to be updated.
package S2::Node;
sub asPHP {
die "asPHP not implemented for $_[0]";
}
sub asPHP_bool {
my ($this, $bp, $o) = @_;
my $ck ... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 1eb18b8db6c77f04c96874806a37143d
folderAsset: yes
timeCreated: 1466714102
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator c... | {
"pile_set_name": "Github"
} |
# $Id: Makefile.kmk $
## @file
# Sub-Makefile for the New VGA BIOS ROM.
#
#
# Copyright (C) 2012 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl -T
# nagios: -epn
#
# Author: Hari Sekhon
# Date: 2014-05-26 19:34:51 +0100 (Mon, 26 May 2014)
#
# https://github.com/harisekhon/nagios-plugins
#
# License: see accompanying LICENSE file
#
$DESCRIPTION = "Nagios Plugin to check whether a Neo4j instance allows a remote shell using the Neo4j REST API... | {
"pile_set_name": "Github"
} |
#ifndef CEREAL_RAPIDXML_PRINT_HPP_INCLUDED
#define CEREAL_RAPIDXML_PRINT_HPP_INCLUDED
// Copyright (C) 2006, 2009 Marcin Kalicinski
// Version 1.13
// Revision $DateTime: 2009/05/13 01:46:17 $
#include "rapidxml.hpp"
// Only include streams if not disabled
#ifndef CEREAL_RAPIDXML_NO_STREAMS
#include <ostream>
... | {
"pile_set_name": "Github"
} |
/* some very targetted corrections to roll back nameclashes between
* Moodle and Bootstrap like .row, .label, .content, .controls
*
* Mostly relies on these styles being more specific than the Bootstrap
* ones in order to overule them.
*/
// .label vs .label
li.activity.label,
.file-picker td.label {
backgroun... | {
"pile_set_name": "Github"
} |
# Datastore MySQL Suite
## Description
The suite runs the following MySQL versions against the SQL datastore unit tests:
- 5.5
- 5.6
- 5.7
- 8.0
A special unit test binary is built from sources that targets the docker
containers running MySQL.
| {
"pile_set_name": "Github"
} |
/*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.util;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.function.BiFunction;
import java.util.function.Funct... | {
"pile_set_name": "Github"
} |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "proto/arg.h"
int main(int argc, char **argv)
{
int nbargs, err_arg, mask;
struct arg *argp;
char *err_msg = NULL;
const char *err_ptr = NULL;
if (argc < 2) {
printf("Usage: %s arg_list [arg_mask]\n"
" mask defaults to 0x8654329... | {
"pile_set_name": "Github"
} |
/*
* light_ws2812_config.h
*
* Created: 18.01.2014 09:58:15
*
* User Configuration file for the light_ws2812_lib
*
*/
#ifndef WS2812_CONFIG_H_
#define WS2812_CONFIG_H_
///////////////////////////////////////////////////////////////////////
// Define I/O pin
///////////////////////////////////////////////////... | {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2009
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Finished-PictureBot_Regex", "Finished-PictureBot_Regex\Finished-PictureBot_Regex.csproj", "{B3569BA8-CE73-... | {
"pile_set_name": "Github"
} |
# --------------------------------------------------------
# Multitask Network Cascade
# Modified from py-faster-rcnn (https://github.com/rbgirshick/py-faster-rcnn)
# Copyright (c) 2016, Haozhi Qi
# Licensed under The MIT License [see LICENSE for details]
# --------------------------------------------------------
impo... | {
"pile_set_name": "Github"
} |
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2002-2011 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// ... | {
"pile_set_name": "Github"
} |
// Intel Media Hardware Codec SDK Interface [8/17/2016 SwordTwelve]
#ifndef INTELHARDCODEC_INTERFACE_H
#define INTELHARDCODEC_INTERFACE_H
#ifdef __cplusplus
class IntelHardCodec_Interface
{
//导出接口
public:
public: //DLL 接口
virtual int WINAPI Init(HWND hWnd,int mode = 1) = 0;
virtual int WINAPI D... | {
"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 use ... | {
"pile_set_name": "Github"
} |
// TODO how to test this route since it points to a file on AWS s3?
describe('GET /export/avatar-:memberId.png', () => {});
| {
"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.
#include "base/macros.h"
#include "net/cookies/cookie_constants.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
TEST(CookieConstantsTe... | {
"pile_set_name": "Github"
} |
//===-- MipsAsmBackend.h - Mips Asm Backend ------------------------------===//
//
// 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"
} |
// -*- mode: c++; c-basic-offset: 4 -*-
#ifndef CLICK_FROMFLANDUMP_HH
#define CLICK_FROMFLANDUMP_HH
#include <click/element.hh>
#include <click/task.hh>
class HandlerCall;
/*
=c
FromFlanDump(FILENAME [, I<KEYWORDS>])
=s traces
reads packets from a DAG file
=d
Reads packets from a file in DAG format, produced by t... | {
"pile_set_name": "Github"
} |
// Tencent is pleased to support the open source community by making TNN available.
//
// Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy o... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2011 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions... | {
"pile_set_name": "Github"
} |
{
"Execute binaries from npm packages.\n%s": "Kjør binærfiler fra npm-pakker.\n%s",
"Package to be installed.": "Pakken som skal installeres.",
"Location of the npm cache.": "Hvor npm-cachen er.",
"Skip installation if a package is missing.": "La være å installere dersom pakken mangler.",
"Path to user npmrc.... | {
"pile_set_name": "Github"
} |
package uk.co.senab.photoview;
import android.app.Dialog;
import android.content.Context;
import android.graphics.drawable.ColorDrawable;
import android.view.Window;
import android.view.WindowManager;
import android.widget.FrameLayout;
import android.widget.ProgressBar;
/**
* Created by Swifty.Wang on 2015/5/29.
*... | {
"pile_set_name": "Github"
} |
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Vicente J. Botet Escriba 2008-2009,2012. 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)
//
// See http://www.... | {
"pile_set_name": "Github"
} |
/* -*- mode: C; c-basic-offset: 3; -*- */
/*--------------------------------------------------------------------*/
/*--- Compiler specific stuff. m_compiler.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary in... | {
"pile_set_name": "Github"
} |
//
// PageVisitedNotifier.h
// PageVisitedCaptureManager
//
// Created by Ophat Phuetkasickonphasutha on 10/2/13.
// Copyright 2013 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "PageVisitedDelegate.h"
@protocol PageVisitedDelegate;
@class FirefoxUrlInfoInquirer;
@interfac... | {
"pile_set_name": "Github"
} |
require('../../modules/es6.math.imul');
module.exports = require('../../modules/_core').Math.imul; | {
"pile_set_name": "Github"
} |
delete 030000 170000
| {
"pile_set_name": "Github"
} |
# [TypeScript for Beginner Programmers](https://ts.chibicode.com)
This is the repository for the TypeScript tutorial website called **[TypeScript for Beginner Programmers](https://ycombinator.chibicode.com/)**.
<p>
<a href="https://ts.chibicode.com/"><img src="public/images/og-index.png" width="600" /></a>
</p>
##... | {
"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 <objc/NSObject.h>
#import "CPSConfigurationChangeObserver-Protocol.h"
@class NSString;
@protocol ICPAgentServiceManager, OS_d... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.