text stringlengths 2 99.9k | meta dict |
|---|---|
/*
Package openstack contains resources for the individual OpenStack projects
supported in Gophercloud. It also includes functions to authenticate to an
OpenStack cloud and for provisioning various service-level clients.
Example of Creating a Service Client
ao, err := openstack.AuthOptionsFromEnv()
provider, err :=... | {
"pile_set_name": "Github"
} |
Upgrade Notes
=============
This document provides additional documentation
on upgrading your version of chalice. If you're just
interested in the high level changes, see the
`CHANGELOG.rst <https://github.com/aws/chalice/blob/master/CHANGELOG.rst>`__)
file.
.. _v1-2-0:
1.2.0
-----
This release features a rewrite ... | {
"pile_set_name": "Github"
} |
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
message(FATAL_ERROR "${PORT} does not currently support UWP")
endif()
include(vcpkg_common_functions)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO macosforge/alac
REF c38887c5c5e64a4b31108733bd79ca9b2496d987
... | {
"pile_set_name": "Github"
} |
// Copyright 2004-2011 Castle Project - http://www.castleproject.org/
//
// 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"
} |
""" Python Character Mapping Codec cp1006 generated from 'MAPPINGS/VENDORS/MISC/CP1006.TXT' with gencodec.py.
"""#"
import codecs
### Codec APIs
class Codec(codecs.Codec):
def encode(self,input,errors='strict'):
return codecs.charmap_encode(input,errors,encoding_table)
def decode(self,input,errors... | {
"pile_set_name": "Github"
} |
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, mock
, bokeh
, plotly
, chainer
, xgboost
, mpi4py
, lightgbm
, Keras
, mxnet
, scikit-optimize
, tensorflow
, cma
, sqlalchemy
, numpy
, scipy
, six
, cliff
, colorlog
, pandas
, alembic
, tqdm
, typing
, pythonOlder
, isPy27
}:
buildPythonPackage rec {
pname ... | {
"pile_set_name": "Github"
} |
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
func a<C{
var b=Int
enum A{
class a{
let f=(a{ | {
"pile_set_name": "Github"
} |
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT{ ?P foaf:name ?FullName }
WHERE {
SELECT ?P ( CONCAT(?F, " ", ?L) AS ?FullName )
WHERE { ?P foaf:firstName ?F ; foaf:lastName ?L. }
}
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
"""
Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community
Edition) available.
Copyright (C) 2017-2020 THL A29 Limited, a Tencent company. All rights reserved.
Licensed under the MIT License (the "License"); you may not use this file except in co... | {
"pile_set_name": "Github"
} |
/****************************************************************************
* Driver for Solarflare network controllers and boards
* Copyright 2008-2013 Solarflare Communications Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License v... | {
"pile_set_name": "Github"
} |
using Improbable.Worker.CInterop;
namespace Improbable.Gdk.Core
{
public interface IComponentDiffDeserializer
{
uint GetComponentId();
void AddUpdateToDiff(ComponentUpdateOp op, ViewDiff diff, uint updateId);
void AddComponentToDiff(AddComponentOp op, ViewDiff diff);
}
public ... | {
"pile_set_name": "Github"
} |
(*
Copyright 2010 IMDEA Software Institute
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, so... | {
"pile_set_name": "Github"
} |
%%*****************************************************************************
%% sqlpsummary: print summary
%%
%% SDPT3: version 3.1
%% Copyright (c) 1997 by
%% K.C. Toh, M.J. Todd, R.H. Tutuncu
%% Last Modified: 16 Sep 2004
%%*****************************************************************************
f... | {
"pile_set_name": "Github"
} |
'use strict';
var noop = require('./noop');
module.exports = function once (fn) {
var disposed;
function disposable () {
if (disposed) { return; }
disposed = true;
(fn || noop).apply(null, arguments);
}
disposable.discard = function () { disposed = true; };
return disposable;
};
| {
"pile_set_name": "Github"
} |
Please answer these questions before submitting your issue. Thanks!
1. What version of Go and beego are you using (`bee version`)?
2. What operating system and processor architecture are you using (`go env`)?
3. What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program i... | {
"pile_set_name": "Github"
} |
extern const char *foo (void);
const char *
foo (void)
{
return __FILE__;
}
| {
"pile_set_name": "Github"
} |
/*
Copyright 2014 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"
} |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import "NSObject-Protocol.h"
@protocol VKWorldDelegate <NSObject>
- (void)worldDisplayDidChange:(id)arg1;
- (void)worldLayoutDidChange:(id)arg1;
@end
| {
"pile_set_name": "Github"
} |
import copy
class ConditionalPatternBase():
def __init__(self):
pass
class NodeLinkListItem:
def __init__(self, item):
self.item = item
self._count = None
self.nodes = []
def __str__(self):
return "%s %s" % (str(self.item), str(self.count))
@property
def count(self):
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<layout-output xmlns="http://reporting.pentaho.org/namespaces/output/layout-output/table/1.0">
<table col-count="9" row-count="8">
<cols>
<column width="15"/>
<column width="205"/>
<column width="15"/>
<column width="125"/>
<column width="40"/>
<column wid... | {
"pile_set_name": "Github"
} |
// Copyright 2013 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.
// This file contains tests for the copylock checker's
// function declaration analysis.
package a
import "sync"
func OkFunc(*sync.Mutex) {}
func BadFunc(syn... | {
"pile_set_name": "Github"
} |
{
"type": "board_post_edit",
"object": {
"id": 2,
"from_id": -1234,
"date": 1533404708,
"text": "test1",
"topic_owner_id": -1234,
"topic_id": 38446232
},
"group_id": 1234
} | {
"pile_set_name": "Github"
} |
<?php
/*
This is the template for the footer
@package sunsettheme
*/
?>
<footer class="sunset-footer text-center">This is the footer</footer>
<?php wp_footer(); ?>
</body>
</html> | {
"pile_set_name": "Github"
} |
// first row, topology
// second row, number of triangles in the corresponding topology
// static int acceptTopology[2][24] = {{1, 2, 3, 4, 6, 8, 9, 12, 15, 16, 17, 32, 34, 48, 51, 63, 64, 68, 96, 102, 111, 119, 127, 0},
// {1, 1, 2, 1, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 0}};
static int ... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
#########################################################################
##Written by C. S. Schroeder, A Theory of Publishing
##Copyright (C) 2011 Equimind Financial LLC.
##
##Permission is hereby granted, free of charge, to any
##person obtaining a copy of this software and associated
... | {
"pile_set_name": "Github"
} |
/** @jsx jsx */
/* eslint-disable no-return-assign */
/* eslint-disable no-sequences */
import * as THREE from "three"
import { jsx, useColorMode } from "theme-ui"
import { Canvas } from "react-three-fiber"
import Model from "../webgl/model"
import Controls from "../webgl/controls"
import uniforms from "../webgl/unifor... | {
"pile_set_name": "Github"
} |
import { Popover, PopoverDisclosure } from 'reakit/Popover';
import styled, { css } from 'styled-components';
const buttonStyles = css`
padding: 0;
border: 0;
background: transparent;
cursor: pointer;
`;
export const IconButton = styled.button`
${buttonStyles}
`;
export const IconWrapper = styled(Popover)`... | {
"pile_set_name": "Github"
} |
<!ENTITY anchor.end.label "na &konci adresy">
<!ENTITY domainRestriction.label "Omezit na &doménu:">
<!ENTITY collapse.default.no.label "Použít jako výchozí (ne)">
<!ENTITY firstParty.label "Pouze vl&astní filtry">
<!ENTITY preferences.label "Zobrazit &existující filtry...">
<!ENTITY pattern.label "Vyhl... | {
"pile_set_name": "Github"
} |
package com.example.acme.myproject
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication
@SpringBootApplication
class MyProjectApplication {
static void main(String[] args) {
SpringApplication.run(MyProjectApplication, args)
}
}
| {
"pile_set_name": "Github"
} |
back_blue = 7710
back_green = 7710
back_red = 7710
cursor_blue = 20303
cursor_green = 53199
cursor_red = 60909
palette = {13364, 14649, 13621, 53199, 16191, 24929, 31611, 47031, 23387, 59881, 46260, 10794, 19532, 39578, 54484, 42405, 32639, 50372, 14392, 39835, 44461, 64250, 64507, 63479, 22873, 23387, 22873, 53713, 36... | {
"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
* distribute... | {
"pile_set_name": "Github"
} |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://www.w3.org/2001/sw/DataAccess/tests/data-r2/cast/manifest#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
@prefix qt: <http://www.w3.org/2001/sw... | {
"pile_set_name": "Github"
} |
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-cleartimer.html
module Stratosphere.ResourceProperties.IoTEventsDetectorModelClearTim... | {
"pile_set_name": "Github"
} |
odoo.define('hr_attendance.widget', function (require) {
"use strict";
var basic_fields = require('web.basic_fields');
var field_registry = require('web.field_registry');
var RelativeTime = basic_fields.FieldDateTime.extend({
_formatValue: function (val) {
if (!(val && val._isAMome... | {
"pile_set_name": "Github"
} |
/* English/Australia initialisation for the jQuery UI date picker plugin. */
/* Based on the en-GB initialisation. */
jQuery(function($){
$.datepicker.regional['en-AU'] = {
closeText: 'Done',
prevText: 'Prev',
nextText: 'Next',
currentText: 'Today',
monthNames: ['January','February','March','April','May','Ju... | {
"pile_set_name": "Github"
} |
package raml
// Root is interface for anything that could become
// RAML root document
type Root interface {
PostProcess(string, string) error
}
| {
"pile_set_name": "Github"
} |
# 1. 顺序容器 内的元素按其位置存储和访问 (sequential container) vector deque list forward_list array string
容器(container),顾名思义表示对象的集合,这些对象的类型都相同,
每个对象都有一个自己的索引,用这个索引我们就可以方便的访问该对象了。
只有顺序容器的构造函数才接受大小参数,关联容器并不支持。
vector 可变大小数组。支持快速随机访问。在尾部之外的位置插入或删除元素可能很慢。
vector<int> vi(10, -1); // 10个-1
... | {
"pile_set_name": "Github"
} |
######################
# Tracim Config File #
######################
## GENERAL TRACIM config:
# These config are common for all app : REST API, Webdav, etc...
[DEFAULT]
###############
# BASIC SETUP #
###############
# easy setup (shortcut) for setting most common config
# search for "%(param)s" to check where tho... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
set -exo pipefail
DOCKER_FOLDER=.ci/docker
NODE_VERSION=${1:?Nodejs version missing NODE_VERSION is not set}
TAV_VERSIONS=${2}
IS_EDGE=${3:false}
case ${TAV_VERSIONS} in
generic-pool|koa-router|handlebars|jade|pug|finalhandler|restify|fastify|mimic-response|got|bluebird|apollo-server-express|ws|... | {
"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 ... | {
"pile_set_name": "Github"
} |
UNKNOWN_TYPE | creditCard | American Express Discover | | creditCard_1-default
CREDIT_CARD_NAME_FULL | cardholderName | Cardholder's name | | credit-card-cc
CREDIT_CARD_EXP_MONTH | expireMonth | Expiration Date | | credit-card-cc
CREDIT_CARD_EXP_4_DIGIT_YEAR | expireYear | Expiration Date | | credit-card-cc
CREDIT_... | {
"pile_set_name": "Github"
} |
// -*- C++ -*-
/**
* @file diehard.h
* @brief The DieHard allocator.
* @author Emery Berger <http://www.cs.umass.edu/~emery>
*/
#ifndef _DIEHARD_H_
#define _DIEHARD_H_
#if !defined(DIEHARD_REPLICATED)
#error "Must define DIEHARD_REPLICATED to 0 or 1."
#endif
// NB: This include must appear first.
#include "p... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MinerWars.AppCode.Game.GUI.Core;
using MinerWars.AppCode.Game.Localization;
using MinerWars.CommonLIB.AppCode.Networking;
using MinerWarsMath;
using MinerWars.AppCode.Game.Utils;
using MinerWars.AppCode.Game.World;
using SysUti... | {
"pile_set_name": "Github"
} |
custom: https://www.blockchain.com/btc/address/12YW9DJXAucLAx6Gy9tAXgXUPstHXEHnPY
| {
"pile_set_name": "Github"
} |
package utils
import (
"fmt"
)
// Report pretty prints the result of an import.
func Report(name string, successCount, totalCount int, errors []string) {
fmt.Printf("Loaded %d %s", successCount, name)
if successCount < totalCount {
fmt.Printf(" - %d with error", totalCount-successCount)
}
fmt.Printf("\n")
fo... | {
"pile_set_name": "Github"
} |
/// Find &&/|| operations that include the same argument more than once
//# A common source of false positives is when the argument performs a side
//# effect.
///
// Confidence: Moderate
// Copyright: (C) 2010 Nicolas Palix, DIKU. GPLv2.
// Copyright: (C) 2010 Julia Lawall, DIKU. GPLv2.
// Copyright: (C) 2010 Gilles... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Tue Aug 12 22:14:04 PDT 2014 -->
<title>org.apache.nutch.microformats.reltag Class Hierarchy (apache-nutch 1.9 API)</title>
<met... | {
"pile_set_name": "Github"
} |
// Copyright 2020 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.
#ifndef BASE_MEMORY_CHECKED_PTR_H_
#define BASE_MEMORY_CHECKED_PTR_H_
#include <stddef.h>
#include <stdint.h>
#include <utility>
#include "base/check_o... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/routes_file.xsd">
<vType id="DEFAULT_VEHTYPE" sigma="0" maxSpeed="8" length="4"/>
<route id="r0" edges="beg short end"/>
<flow id="flow" route="r0" begin="0" end="20" depart... | {
"pile_set_name": "Github"
} |
# Format: LibreCAD Font 1
# Creator: LibreCAD
# Version: master
# Name: Symbol
# Encoding: UTF-8
# LetterSpacing: 3
# WordSpacing: 6.75
# LineSpacingFactor: 1
# Author: ?
# License: unknown
[0021] !
-0.132743,9;-0.132743,3
-0.132743,0;... | {
"pile_set_name": "Github"
} |
https://az792536.vo.msecnd.net/vms/VMBuild_20150916/VirtualBox/IE8/IE8.Win7.VirtualBox.zip
| {
"pile_set_name": "Github"
} |
#
# Macro file for "TestEm11.cc"
#
# compute the csda range of the primary particle
# with or without fluctuations
#
/control/verbose 2
/run/verbose 2
#
/testem/det/setNbOfAbsor 1
/testem/det/setAbsor 1 Water 5 mm
/testem/det/setSizeYZ 5 mm
#
/testem/phys/addPhysics local
###/testem/phys/addPhysics empenelope
###/... | {
"pile_set_name": "Github"
} |
const AV = require('../utils/leancloud-storage');
class Todo extends AV.Object {
get done() {
return this.get('done');
}
set done(value) {
this.set('done', value);
}
get content() {
return this.get('content');
}
set content(value) {
this.set('content', value);
}
}
AV.Object.register(T... | {
"pile_set_name": "Github"
} |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
*
* $Date: 12. March 2014
* $Revision: V1.4.4
*
* Project: CMSIS DSP Library
* Title: arm_conv_opt_q15.c
*
* Description: Convolution of Q15 seq... | {
"pile_set_name": "Github"
} |
@echo off
go get
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
| {
"pile_set_name": "Github"
} |
# vim-polyglot [![Build Status][travis-img-url]][travis-url]
[travis-img-url]: https://travis-ci.org/sheerun/vim-polyglot.png
[travis-url]: https://travis-ci.org/sheerun/vim-polyglot
A collection of language packs for Vim.
One to rule them all, one to find them, one to bring them all and in the darkness bind them.
... | {
"pile_set_name": "Github"
} |
<?php
/**
* i-MSCP - internet Multi Server Control Panel
* Copyright (C) 2010-2019 by Laurent Declercq <l.declercq@nuxwin.com>
*
* 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 vers... | {
"pile_set_name": "Github"
} |
//===--- ContainerSizeEmptyCheck.cpp - clang-tidy -------------------------===//
//
// 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"
} |
common:
macros:
- IO_CONFIG_OVERRIDE
includes:
- source/board/override_mtb
sources:
board:
- source/board/mtb_wise1570.c
family:
- source/family/st/stm32l486jg/target.c
| {
"pile_set_name": "Github"
} |
using System;
using Dev2.Interfaces;
using System.Runtime.Serialization;
using System.Data.Linq.Mapping;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace Dev2.Runtime.ESB.Execution
{
[Table(Name = "AuditLog")]
[DataContract(Name = "AuditLog", Namespace = "")]
public class Audi... | {
"pile_set_name": "Github"
} |
using System;
namespace Glimpse.Agent.Messages
{
public class AfterExecuteCommandMessage
{
public bool CommandHadException { get; set; }
public DateTime CommandEndTime { get; set; }
public TimeSpan CommandDuration { get; set; }
public TimeSpan? CommandOffset { get; s... | {
"pile_set_name": "Github"
} |
{
"/api/*": "/$1",
"/hero": "/heroes"
}
| {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: MIT
*
* 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,
* modify, merge, publish, ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2013-2017 ARM Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* 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
*
* www.apache.org/licenses/LICEN... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="pref_vpn_excluded_system_apps_entries">
<item>None</item>
<item>All except browsers</item>
<item>All</item>
</string-array>
</resources>
| {
"pile_set_name": "Github"
} |
/*
Copyright 2014 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"
} |
/*
* Copyright 2016 Marco Martin <mart@kde.org>
* Copyright (C) 2016 The Qt Company Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2, or
* (at y... | {
"pile_set_name": "Github"
} |
<?php defined('SYSPATH') OR die('No direct script access.');
/**
* Copyright © 2011–2013 Spadefoot Team.
*
* Unless otherwise noted, LEAP is 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
* ... | {
"pile_set_name": "Github"
} |
; RUN: opt < %s -loop-unroll -unroll-runtime -unroll-allow-partial -S | FileCheck %s
declare void @f() convergent
; Although this loop contains a convergent instruction, it should be
; fully unrolled.
;
; CHECK-LABEL: @full_unroll(
define i32 @full_unroll() {
entry:
br label %l3
l3:
%x.0 = phi i32 [ 0, %entry ],... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2012 CyberAgent
*
* 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 i... | {
"pile_set_name": "Github"
} |
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2011-2012 openxlive.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software a... | {
"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.
package pflag
import (
goflag "flag"
"reflect"
"strings"
)
// flagValueWrapper implements pflag.Value around a flag.Value. The main
// difference here is ... | {
"pile_set_name": "Github"
} |
<?php namespace {namespace};
use Anomaly\Streams\Platform\Ui\Form\FormBuilder;
class {class} extends FormBuilder
{
/**
* The form fields.
*
* @var array|string
*/
protected $fields = [];
/**
* Additional validation rules.
*
* @var array|string
*/
protected $ru... | {
"pile_set_name": "Github"
} |
export * from '../../Textinput.bundle/touch-pad';
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "2.0">
</Bucket>
| {
"pile_set_name": "Github"
} |
#include "test.h"
TEST(test_depack_arc_method2)
{
xmp_context c;
struct xmp_module_info info;
int ret;
c = xmp_create_context();
fail_unless(c != NULL, "can't create context");
ret = xmp_load_module(c, "data/arc-method2");
fail_unless(ret == 0, "can't load module");
xmp_get_module_info(c, &info);
ret = co... | {
"pile_set_name": "Github"
} |
// Copyright 2018-2019 Mozilla
//
// 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, sof... | {
"pile_set_name": "Github"
} |
[Unit]
Description=SSH Per-Connection Server
Wants=dropbearkey.service
After=syslog.target dropbearkey.service
[Service]
Environment="DROPBEAR_RSAKEY_DIR=/etc/dropbear"
EnvironmentFile=-/etc/default/dropbear
ExecStart=-@SBINDIR@/dropbear -i -r ${DROPBEAR_RSAKEY_DIR}/dropbear_rsa_host_key $DROPBEAR_EXTRA_ARGS
ExecReloa... | {
"pile_set_name": "Github"
} |
<?php
function foo(string $a = PHP_VERSION > 1 ? 'a' : 2) {}
function foo2(string $a = PHP_VERSION > 1 ? 'a' : "b") {}
function foo3(string $a = PHP_VERSION > 1 ? 3 : "b") {}
function foo4(string $a = PHP_VERSION > 1 ?? 3) {}
function foo4a(string $a = PHP_VERSION > 1 ?? "b") {}
function foo5(string $a = PHP_VERSI... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2017 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"
} |
/**
* Copyright (c) 2015 Bosch Software Innovations GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
... | {
"pile_set_name": "Github"
} |
<?php defined('BX_DOL') or die('hack attempt');
/**
* Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
* CC-BY License - http://creativecommons.org/licenses/by/3.0/
*
* @defgroup Timeline Timeline
* @ingroup TridentModules
*
* @{
*/
class BxTimelineTemplate extends BxBaseModNotificationsTemplat... | {
"pile_set_name": "Github"
} |
// PR 1346
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
extern bar(void *);
void f(void *cd) {
bar(((void *)((unsigned long)(cd) ^ -1)));
}
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed ... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
// Copyright (c) 2011 The LevelDB Authors. All rights reser... | {
"pile_set_name": "Github"
} |
# KLayout Layout Viewer
# Copyright (C) 2006-2020 Matthias Koefferlein
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.... | {
"pile_set_name": "Github"
} |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import <DevToolsCore/PBXFrameworkWrapperFileType.h>
@interface XCStaticFrameworkWrapperFileType : PBXFrameworkWrapperFileType
{
}
@end
| {
"pile_set_name": "Github"
} |
eclipse.preferences.version=1
encoding//src/main/resources=UTF-8
encoding/<project>=UTF-8
| {
"pile_set_name": "Github"
} |
/*
* Localized default methods for the jQuery validation plugin.
* Locale: DE
*/
$.extend( $.validator.methods, {
date: function( value, element ) {
return this.optional( element ) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test( value );
},
number: function( value, element ) {
return this.optional( element ) || /^-?(?:... | {
"pile_set_name": "Github"
} |
'use strict';
const os = require('os');
const path = require('path');
const homeDirectory = os.homedir();
const {env} = process;
exports.data = env.XDG_DATA_HOME ||
(homeDirectory ? path.join(homeDirectory, '.local', 'share') : undefined);
exports.config = env.XDG_CONFIG_HOME ||
(homeDirectory ? path.join(homeDire... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>readString()</name>
<category>Client</category>
<subcategory>Client</subcategory>
<usage>Application</usage>
<example>
<image></image>
<code><![CDATA[
// Example by Tom Igoe
import processing.net.*;
Client myClient;
String inString;
byte inter... | {
"pile_set_name": "Github"
} |
README.CV -- Condition Variables
--------------------------------
The original implementation of condition variables in
pthreads-win32 was based on a discussion paper:
"Strategies for Implementing POSIX Condition Variables
on Win32": http://www.cs.wustl.edu/~schmidt/win32-cv-1.html
The changes suggested below were m... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2012 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https:... | {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
module PayHelper
end
| {
"pile_set_name": "Github"
} |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
module.metadata = {
"stability": "experimental"
};
const { Ci } = require("chrome");
const { disp... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" ?>
<page>
<title><![CDATA[Release Notes for VisIt 2.7]]></title>
<IM>LLNL-WEB-662419</IM>
<owner><![CDATA[Page Owner Name]]></owner>
<lastchanged><![CDATA[October 30, 2014]]></lastchanged>
<template><![CDATA[l2]]></template>
<content>
<![CDATA[
<link rel="styleshe... | {
"pile_set_name": "Github"
} |
# Maintainer: Antergos Developers <dev@antergos.com>
pkgbase=nemo-extensions
pkgname=(
'nemo-audio-tab'
'nemo-fileroller'
'nemo-preview'
'nemo-python'
'nemo-share'
'nemo-seahorse'
'nemo-dropbox'
'nemo-terminal'
'nemo-emblems'
)
_commit=a0fa86b
pkgver=3.4.0
pkgrel=1
arch=('x86_64')
license=('GPL2')
url="https:... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Sortable - Connect lists</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<link rel="stylesheet" href="../demos.css">
<style>
#sortable1, #sortable2... | {
"pile_set_name": "Github"
} |
# created by tools/tclZIC.tcl - do not edit
set TZData(:America/Grand_Turk) {
{-9223372036854775808 -17072 0 LMT}
{-2524504528 -18432 0 KMT}
{-1827687168 -18000 0 EST}
{294217200 -14400 1 EDT}
{309938400 -18000 0 EST}
{325666800 -14400 1 EDT}
{341388000 -18000 0 EST}
{357116400 -14400 1... | {
"pile_set_name": "Github"
} |
<annotation>
<folder>widerface</folder>
<filename>49--Greeting_49_Greeting_peoplegreeting_49_133.jpg</filename>
<source>
<database>wider face Database</database>
<annotation>PASCAL VOC2007</annotation>
<image>flickr</image>
<flickrid>-1</flickrid>
</source>
<owner>
<flickrid>yanyu</flickrid>
<name>yanyu</name>
</owner>... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.