text stringlengths 2 99k | meta dict |
|---|---|
// Package arn provides a parser for interacting with Amazon Resource Names.
package arn
import (
"errors"
"strings"
)
const (
arnDelimiter = ":"
arnSections = 6
arnPrefix = "arn:"
// zero-indexed
sectionPartition = 1
sectionService = 2
sectionRegion = 3
sectionAccountID = 4
sectionResource = 5
... | {
"pile_set_name": "Github"
} |
set hive.exec.post.hooks=org.apache.hadoop.hive.ql.hooks.PostExecutePrinter,org.apache.hadoop.hive.ql.hooks.PrintCompletedTasksHook;
CREATE TABLE src_4(
key STRING,
value STRING
)
;
CREATE TABLE src_5(
key STRING,
value STRING
)
;
explain
from src b
INSERT OVERWRITE TABLE src_4
select *
where b.key... | {
"pile_set_name": "Github"
} |
spring:
jpa:
database: h2
properties.hibernate.dialect: org.hibernate.dialect.H2Dialect
hibernate:
ddl-auto: update
show-sql: true
properties:
hibernate:
format_sql: true
use_sql_comments: true
datasource:
url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EX... | {
"pile_set_name": "Github"
} |
type=xar
version=1.0 | {
"pile_set_name": "Github"
} |
import asyncio
from .. import exceptions
class Lock:
__slots__ = ('_point', 'key', '_lock', 'loop', 'timeout')
def __init__(self, point, key, lock, loop=None, timeout=None):
self._point = point
self._lock = lock
self.key = key
self.loop = loop
self.timeout = timeout... | {
"pile_set_name": "Github"
} |
/* Copyright (c) 2014, Nokia
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pr... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2008-2011 Atheros Communications Inc.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" A... | {
"pile_set_name": "Github"
} |
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license an... | {
"pile_set_name": "Github"
} |
import castArray from "./castArray";
import clone from "./clone";
import cloneDeep from "./cloneDeep";
import cloneDeepWith from "./cloneDeepWith";
import cloneWith from "./cloneWith";
import conformsTo from "./conformsTo";
import eq from "./eq";
import gt from "./gt";
import gte from "./gte";
import isArguments from "... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<div id="test">Click/tap me</div>
<script>
'use strict';
var el = document.getElementById('test');
var valueSettableByTest = 0;
var valueToTest = 0;
el.addEventListener('click', function() {
valueToTest = valueSettableByTest;
});
</script>
</body>
</html>
| {
"pile_set_name": "Github"
} |
---
- debug:
msg: |
################### Test Load Balancer Enaabled ####################
You have enabled the loadbalancer role that is only intended for
testing purposes, and should not be used in a produciton setting.
####################################################################
- ... | {
"pile_set_name": "Github"
} |
allow-deny@1.1.0
autoupdate@1.3.12
babel-compiler@6.24.7
babel-runtime@1.1.1
base64@1.0.10
binary-heap@1.0.10
boilerplate-generator@1.3.0
caching-compiler@1.1.9
callback-hook@1.0.10
check@1.2.5
ddp@1.4.0
ddp-client@2.2.0
ddp-common@1.3.0
ddp-server@2.1.1
diff-sequence@1.0.7
dynamic-import@0.2.1
ecmascript@0.9.0
ecmascr... | {
"pile_set_name": "Github"
} |
Description of product LCD-OLinuXino-4.3RTS
LCD-OLinuXino-4.3RTS is is a 4.3 inch display with resolution of 800x480 pixels and resistive touch screen.
It uses LCD-DRIVER board, instead the original board design of the original
LCD-OLinuXino-4.3 (without the plus).
In LCD-OLinuXino-4.3RTS the touschreen uses digita... | {
"pile_set_name": "Github"
} |
# Copyright 2007 Google, Inc. All Rights Reserved.
# Licensed to PSF under a Contributor Agreement.
"""Fixer for dict methods.
d.keys() -> list(d.keys())
d.items() -> list(d.items())
d.values() -> list(d.values())
d.iterkeys() -> iter(d.keys())
d.iteritems() -> iter(d.items())
d.itervalues() -> iter(d.values())
d.v... | {
"pile_set_name": "Github"
} |
ADD_SUBDIRECTORY(SSE)
ADD_SUBDIRECTORY(AltiVec)
ADD_SUBDIRECTORY(NEON)
ADD_SUBDIRECTORY(Default)
| {
"pile_set_name": "Github"
} |
<?php
/* Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2006-2017 Regis Houssin <regis.houssin@inodbox.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 Foun... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
// Benchstat computes and compares statistics about benchmarks.
//
// Usage:
//
// benchstat [-delta-test name] [-geomean] [-html] [-sort order] old.txt [new.t... | {
"pile_set_name": "Github"
} |
/**
* Checks if a `cache` value for `key` exists.
*
* @private
* @param {Object} cache The cache to query.
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function cacheHas(cache, key) {
return cache.has(key);
}
module.exp... | {
"pile_set_name": "Github"
} |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S10.1.6_A1_T1;
* @section: 10.1.6;
* @assertion: The activation object is initialised with a property with name arguments and attributes {DontDelete};
* @description: Che... | {
"pile_set_name": "Github"
} |
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
require('../../js/transition.js')
require('../../js/alert.js')
require('../../js/button.js')
require('../../js/carousel.js')
require('../../js/collapse.js')
require('../../js/dropdown.js')
require('../../... | {
"pile_set_name": "Github"
} |
!
! This file is a part of the NsCDE - Not so Common Desktop Environment
! Author: Hegel3DReloaded
! Licence: GPLv3
!
Editres.Geometry: 456x531-86-10
Editres*font: -*-lucida-medium-r-normal-*-12-*-*-*-*-*-*
Editres.paned.porthole.background: NSCDE_BG_COLOR_4
Editres*box*background: NSCDE_BG_COLOR_2
Editres*background:... | {
"pile_set_name": "Github"
} |
/*
Copyright 2017 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"
} |
"use strict";
require("retape")(require("./index")) | {
"pile_set_name": "Github"
} |
#################################################################################
# The MIT License #
# Copyright (c) 2018 Fulcrum Genomics LLC #
# Permission is hereby granted, free of charge, to any person obtaining a ... | {
"pile_set_name": "Github"
} |
cmake_minimum_required(VERSION 2.8.3)
project(opt_utils)
set(CMAKE_BUILD_TYPE RelWithDebInfo)
find_package(catkin REQUIRED COMPONENTS cmake_modules roscpp rosconsole image_transport cv_bridge opt_msgs)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
link_directories(${OpenCV_LIB_DIR})
find_pa... | {
"pile_set_name": "Github"
} |
/* WARNING: do not edit! */
/* Generated by Makefile from include/crypto/dso_conf.h.in */
/*
* Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* i... | {
"pile_set_name": "Github"
} |
//
// JXUserViewController.m
//
// Created by flyeagleTang on 14-4-3.
// Copyright (c) 2014年 Reese. All rights reserved.
//
#import "JXUserViewController.h"
#import "JXLabel.h"
#import "JXImageView.h"
#import "AppDelegate.h"
#import "JXLoginViewController.h"
#import "JXCell.h"
@interface JXUserViewController ()
@... | {
"pile_set_name": "Github"
} |
<?php
namespace Dtc\QueueBundle\Controller;
use Dtc\QueueBundle\Doctrine\DoctrineJobManager;
use Dtc\QueueBundle\Exception\UnsupportedException;
use Dtc\QueueBundle\Model\BaseJob;
use Dtc\QueueBundle\Model\Worker;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Reque... | {
"pile_set_name": "Github"
} |
#' Summary of resampled performance estimates
#'
#' This function uses the out-of-bag predictions to calculate overall
#' performance metrics and returns the observed and predicted data.
#'
#' The mean and standard deviation of the values produced by
#' \code{\link{postResample}} are calculated.
#'
#' @param obs A v... | {
"pile_set_name": "Github"
} |
package gorocksdb
// #include "rocksdb/c.h"
import "C"
import (
"errors"
"io"
)
// WriteBatch is a batching of Puts, Merges and Deletes.
type WriteBatch struct {
c *C.rocksdb_writebatch_t
}
// NewWriteBatch create a WriteBatch object.
func NewWriteBatch() *WriteBatch {
return NewNativeWriteBatch(C.rocksdb_writeb... | {
"pile_set_name": "Github"
} |
\mycommand[optionalargument]
{
first mandatory
}
{
second mandatory
} after text
| {
"pile_set_name": "Github"
} |
#!/bin/bash
# This file is part of the LibreOffice project.
#
# 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/.
# This script prints lines from .ui files, where the trans... | {
"pile_set_name": "Github"
} |
# @generated by autocargo from //hphp/hack/src/parser/api:direct_decl_parser
[package]
name = "direct_decl_parser"
edition = "2018"
version = "0.0.0"
include = ["../../direct_decl_parser.rs"]
[lib]
path = "../../direct_decl_parser.rs"
[dependencies]
direct_decl_smart_constructors = { path = "../../../../decl/direct_d... | {
"pile_set_name": "Github"
} |
'use strict';
var common = require('../common');
var assert = require('assert');
var path = require('path'),
Buffer = require('buffer').Buffer,
fs = require('fs'),
filename = path.join(common.tmpDir, 'write.txt'),
expected = new Buffer('hello'),
openCalled = 0,
writeCalled = 0;
fs.open(filenam... | {
"pile_set_name": "Github"
} |
// Copyright 2012 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 packet
import (
"crypto"
"crypto/rand"
"io"
"time"
)
// Config collects a number of parameters along with sensible defaults.
// A nil *Config is v... | {
"pile_set_name": "Github"
} |
package com.yourpackagename.yourwebproject.common;
import com.yourpackagename.yourwebproject.api.common.ApiRoute;
import com.yourpackagename.yourwebproject.webapp.common.Route;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.ImportResource;
import javax.annotat... | {
"pile_set_name": "Github"
} |
// Copyright 2008-2009 Google 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 ... | {
"pile_set_name": "Github"
} |
# Contributing
1. Sign one of the contributor license agreements below.
1. Get the package:
`go get -d google.golang.org/appengine`
1. Change into the checked out source:
`cd $GOPATH/src/google.golang.org/appengine`
1. Fork the repo.
1. Set your fork as a remote:
`git remote add fork git@github.com:GITH... | {
"pile_set_name": "Github"
} |
<?php
namespace Drupal\commerce_order;
use Drupal\commerce\AvailabilityCheckerInterface as LegacyCheckerInterface;
use Drupal\commerce\Context;
use Drupal\commerce_order\Entity\OrderItemInterface;
/**
* Runs the added checkers to determine the availability of an order item.
*
* If any checker returns an "unavaila... | {
"pile_set_name": "Github"
} |
package com.thomsonreuters.upa.shared;
import com.thomsonreuters.upa.transport.Channel;
import com.thomsonreuters.upa.valueadd.domainrep.rdm.login.LoginRTT;
import com.thomsonreuters.upa.valueadd.domainrep.rdm.login.LoginRequest;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import jav... | {
"pile_set_name": "Github"
} |
'use strict';
const coreEvents = require('./coreEvents');
const coreUtils = require('./coreUtils');
const coreWebsocket = require('./coreWebsocket');
const globalObject = require('./globalObject');
const assetsModule = {};
// Create internal event that other modules may subscribe to
coreEvents.createEvent('asset');
... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
use Magento\Framework\Api\DataObjectHelper;
use Magento\InventoryApi\Api\Data\SourceInterface;
use Magento\InventoryApi\Api\Data\SourceInterfaceFactory;
use Magento\InventoryApi\Api\SourceRe... | {
"pile_set_name": "Github"
} |
include LICENSE
include README.rst
include CHANGES.rst
include pyproject.toml
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2016 Apple 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 a... | {
"pile_set_name": "Github"
} |
# Changelog
## 0.7.3 (2017-08-05)
* Improvement: Support Événement 3.0 a long side 2.0 and 1.0
(#108 by @WyriHaximus)
* Readme: Corrected loop initialization in usage example
(#109 by @pulyavin)
* Travis: Lock linux distribution preventing future builds from breaking
(#110 by @clue)
## 0.7.2 ... | {
"pile_set_name": "Github"
} |
SOCKS
=====
[](https://godoc.org/h12.io/socks)
SOCKS is a SOCKS4, SOCKS4A and SOCKS5 proxy package for Go.
## Quick Start
### Get the package
go get -u "h12.io/socks"
### Import the package
import "h12.io/socks"
### Create a SOCKS proxy dialling function... | {
"pile_set_name": "Github"
} |
package devCamp.WebApp.services;
import org.codehaus.jettison.json.JSONArray;
import org.codehaus.jettison.json.JSONException;
import org.codehaus.jettison.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework... | {
"pile_set_name": "Github"
} |
---
file:
/etc/default/mailhog:
exists: true
filetype: file
owner: root
group: root
mode: "0644"
contains:
- 'DAEMON_ARGS="-smtp-bind-addr 1.2.3.4:2525"'
| {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 1b94a1a0ae5d509488c6242454216bdb
timeCreated: 1455373897
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
import argparse
import os
from collections import defaultdict
import pandas
import matplotlib.pyplot as plt
def results_to_csv(inputs, out):
results = defaultdict(list)
keys = list()
for fname in inputs:
with open(fname) as fd:
data = fd.read()
data = data.split("\n")
... | {
"pile_set_name": "Github"
} |
(module
(memory 256 256)
(type $0 (func (param i32)))
(type $1 (func))
(type $2 (func (result i32)))
(func $b14 (type $2)
(drop
(if (result i32) ;; with shrinking, this can become a select
(i32.const 1)
(block $block1 (result i32)
(i32.const 12)
)
(block $bl... | {
"pile_set_name": "Github"
} |
/****************************************************************************
*
* Copyright (c) 2018 PX4 Development Team. 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. Redistri... | {
"pile_set_name": "Github"
} |
:020000020000FC
:100000007BCEC0C10000000020C000008DC00000F9
:10001000000097C00000000000000000020304067A
:10002000080C10182030406080000406080C1018DE
:100030002030406080A0C0000003070F1F000D0D9E
:100040000403060D0503030202004FB662FD0CC057
:10005000552041F00994C52DC095089483FDC7959E
:10006000C4BD64604FBE1895C0916400089483F... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>Mess... | {
"pile_set_name": "Github"
} |
/* Source generated by crazyvoids source generating tool **/
#include "libSceContentExport.h"
void sceContentExportCancel() { for(;;){} }
void sceContentExportFinish() { for(;;){} }
void sceContentExportFromData() { for(;;){} }
void sceContentExportFromDataWithThumbnail() { for(;;){} }
void sceContentExportFromFile() ... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* 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; either version 2.1 of the License, or (at your option)
* any la... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requi... | {
"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"
} |
/**
* 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
* distributed ... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2011, The University of Southampton and the individual contributors.
* 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 ... | {
"pile_set_name": "Github"
} |
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public"
OTHER_LDFLAGS = -framework "CFNetwork" -framework "Security"
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURAT... | {
"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: GareoultWhiteBalanced
m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _EMISSION... | {
"pile_set_name": "Github"
} |
define(function () {
// Catalan
return {
errorLoading: function () {
return 'La càrrega ha fallat';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;
var message = 'Si us plau, elimina ' + overChars + ' car';
if (overChars == 1) {
mess... | {
"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"
} |
/* Sirikata
* asyncUtil.hpp
*
* Copyright (c) 2010, Behram Mistree
* 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 copyr... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: f22bcc84a5f4a1944b075a2c4ac71493
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 100100000
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
// Copyright 2005-2009 Daniel James.
// 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)
// Based on Peter Dimov's proposal
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf
// issue 6.18.
// T... | {
"pile_set_name": "Github"
} |
import sinon from 'sinon';
import expect from 'expect.js';
import ngMock from 'ng_mock';
import { DocSourceProvider } from '../../data_source/doc_source';
import { DocDataRequestProvider } from '../request/doc_data';
describe('Courier DocFetchRequest class', function () {
let storage;
let source;
let defer;
l... | {
"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/. */
package InternalClassPackage {
class InternalClass {
internal var array:Array;
internal var boo... | {
"pile_set_name": "Github"
} |
.wheel {
position: absolute;
width: 500px;
height: 500px;
border: 2px solid black;
border-radius: 50%;
margin-left: 50px;
}
.line {
position: absolute;
width: 50%;
height: 2px;
left: 50%;
top: 50%;
background-color: black;
transform-origin: 0% 0%;
}
.line:nth-of-type(2) {
transform: rot... | {
"pile_set_name": "Github"
} |
<?php
use Foo\Bar; /*
* This multi-line comment shouldn't be allowed here.
*/
class Baz
{
}
| {
"pile_set_name": "Github"
} |
/*-----------------------------------------------------------------------------+
Copyright (c) 2008-2009: Joachim Faulhaber
+------------------------------------------------------------------------------+
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENCE.txt or c... | {
"pile_set_name": "Github"
} |
import codecs
import locale
import os
import pytest
from pandas._config.localization import can_set_locale, get_locales, set_locale
from pandas.compat import is_platform_windows
import pandas as pd
_all_locales = get_locales() or []
_current_locale = locale.getlocale()
# Don't run any of these tests if we are on ... | {
"pile_set_name": "Github"
} |
/*
Copyright 2014 Rohith All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writi... | {
"pile_set_name": "Github"
} |
# This is the official list of TensorFlow authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS files.
# See the latter for an explanation.
# Names should be added to this file as:
# Name or Organization <email address>
# The email address is not required for organizations.
Google Inc.
Yuan Ta... | {
"pile_set_name": "Github"
} |
//-----------------------------------------------------------------------------
//
// ImageLib Sources
// Copyright (C) 2000-2017 by Denton Woods
// Last modified: 03/07/2009
//
// Filename: src-IL/include/il_jpeg.h
//
// Description: Jpeg (.jpg) functions
//
//----------------------------------------------------------... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2002-2012 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 a... | {
"pile_set_name": "Github"
} |
package pack;
import java.util.List;
public class Foo {
public static class List {
public void isInnerList() {}
}
public static List innerList() { throw new Error(); }
}
| {
"pile_set_name": "Github"
} |
// WARNING: DO NOT EDIT THIS FILE. THIS FILE IS MANAGED BY SPRING ROO.
// You may push code into the target .java compilation unit if you wish to edit any member(s).
package nl.bzk.brp.model.data.ber;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import nl... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 MovingBlocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | {
"pile_set_name": "Github"
} |
# Be sure to restart your server when you modify this file.
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Mime::Type.register_alias "text/html", :iphone
| {
"pile_set_name": "Github"
} |
function Logger() {
let name, _i, _len, _ref;
_ref = ['log', 'info', 'warn', 'error'];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
name = _ref[_i];
this[name] = (function (name) {
return function () {
let args, e;
args = 1 <= arguments.length ? [].slice.call(arguments, 0) : [... | {
"pile_set_name": "Github"
} |
// go run mksysnum.go https://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT = 1 // { void sys_e... | {
"pile_set_name": "Github"
} |
use strict;
use vars qw($VERSION);
$::VERSION = "ESSAYKEYNOTE Script: 1.6.2";
print "\n\n$::VERSION\n\n";
use FindBin;
use lib "$FindBin::Bin";
use Getopt::Long;
use Cwd;
use lib "$FindBin::Bin\\..\\..\\Resources\\Perl";
use ExploitUtils qw(
$EU_LOGFILE
$EU_VERBOSE
$EU_BATCHMOD... | {
"pile_set_name": "Github"
} |
// export * from './bad-request.filter';
export * from './constraint-errors';
| {
"pile_set_name": "Github"
} |
function createModalService() {
var srv = this;
srv.show = function(title, message) {
$("#modal-header").html(title);
$("#modal-body").html(message);
$("#modal").modal("show");
}
return this;
} | {
"pile_set_name": "Github"
} |
owner = CHI
controller = CHI
add_core = CHI
add_core = CHC
infra = 4
infra = 4
infra = 4
infra = 4
1938.5.9 = {
controller = JAP
}
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
from .models import User
from .constants import USER_ROLE, ADMIN, USER, USER_STATUS, NEW, ACTIVE | {
"pile_set_name": "Github"
} |
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#Mining the Social Web, 2nd Edition\n",
"\n",
"##Appendix C: Python and IPython Notebook Tips & Tricks\n",
"\n",
... | {
"pile_set_name": "Github"
} |
package io.swagger.codegen.cmd;
import ch.lambdaj.function.convert.Converter;
import com.google.common.base.CaseFormat;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.samskivert.mustache.Mustache;
import io.airlift.airline.Command;
import io.airlift.airline.Op... | {
"pile_set_name": "Github"
} |
//
// ArticleModel.h
//
// Copyright (c) 2019 dequanzhu
//
// 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, mod... | {
"pile_set_name": "Github"
} |
.modal-dialog
.modal-content
form#g-group-edit-form.modal-form(role="form")
.modal-header
button.close(data-dismiss="modal", aria-hidden="true", type="button") ×
h4.modal-title
if (group)
| Edit group
else
| Create group
.modal-body
... | {
"pile_set_name": "Github"
} |
package io.quarkus.hibernate.search.elasticsearch.runtime.graal;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
/**
* Force two phase-boot so that bootstrap code can be DCEd.
*/
@TargetClass(className = "org.hibernate.search.mapper.orm.bootstrap.impl.HibernateOrmInt... | {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gu</groupId>
<ar... | {
"pile_set_name": "Github"
} |
%description:
Test that gate size assignments in the super type take effect.
%file: test.ned
import testlib.Dump;
module Node
{
gates:
input g[] @loose;
connections allowunconnected:
}
network TestBase
{
parameters:
int p;
submodules:
n: Node {
gates:
... | {
"pile_set_name": "Github"
} |
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft... | {
"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.
#ifndef CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_
#define CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_CONTAINER_COCOA_H_
#include <stddef.... | {
"pile_set_name": "Github"
} |
using Microsoft.SharePoint.Client;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Core.EmbedJavaScript.WeekNumbersWeb
{
public partial class Default : System.Web.UI.Page
{
protected void Page_PreInit(... | {
"pile_set_name": "Github"
} |
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or... | {
"pile_set_name": "Github"
} |
/* *** ODSATag: DFS *** */
static void DFS(Graph G, int v) {
PreVisit(G, v);
G.setValue(v, VISITED);
int[] nList = G.neighbors(v);
for (int i=0; i< nList.length; i++)
if (G.getValue(nList[i]) != VISITED)
DFS(G, nList[i]);
PostVisit(G, v);
}
/* *** ODSAendTag: DFS *** */
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.