text stringlengths 2 99.9k | meta dict |
|---|---|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ec2
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
"github.com/aws/aws-sdk-go-v2/private/protocol"
"github.com/aws/aws-sdk-go-v2/private/protocol/ec2query"
)
type EnableVolumeIOIn... | {
"pile_set_name": "Github"
} |
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2013 NVIDIA Corporation
// All rights reserved.
//
// Redistribution and use in source... | {
"pile_set_name": "Github"
} |
package org.infinispan.tx;
import static org.infinispan.test.TestingUtil.getCacheObjectName;
import static org.testng.AssertJUnit.assertFalse;
import static org.testng.AssertJUnit.assertTrue;
import javax.management.ObjectName;
import org.infinispan.commons.jmx.MBeanServerLookup;
import org.infinispan.commons.jmx.Te... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
| {
"pile_set_name": "Github"
} |
// +build go1.13
package errors
import (
stderrors "errors"
)
// Is reports whether any error in err's chain matches target.
//
// The chain consists of err itself followed by the sequence of errors obtained by
// repeatedly calling Unwrap.
//
// An error is considered to match a target if it is equal to that targe... | {
"pile_set_name": "Github"
} |
import { Component, OnInit } from '@angular/core';
import { ButtonGroupAlignment } from 'igniteui-angular';
interface IButton {
ripple?: string;
label?: string;
disabled?: boolean;
togglable?: boolean;
selected?: boolean;
color?: string;
bgcolor?: string;
icon?: string;
}
class Button ... | {
"pile_set_name": "Github"
} |
.. _web_resource:
Resource Browser
================
The :guilabel:`Resource Browser` provides a tree showing configuration folders, along with actions to edit and mange resources.
.. figure:: img/browser.png
Resource Browser
User interface elements:
* :guilabel:`Resource tree` is used to explore configurati... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
<dependencies>
<p... | {
"pile_set_name": "Github"
} |
enabled:
- cla
| {
"pile_set_name": "Github"
} |
// Copyright ©2015 The Gonum 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 gonum
import (
"gonum.org/v1/gonum/blas"
"gonum.org/v1/gonum/lapack"
)
// Dlasr applies a sequence of plane rotations to the m×n matrix A. This ... | {
"pile_set_name": "Github"
} |
var config = {
type: Phaser.CANVAS,
parent: 'phaser-example',
width: 800,
height: 600,
scene: {
preload: preload,
create: create
}
};
var game = new Phaser.Game(config);
function preload() {
this.load.image('pic', 'assets/pics/barbarian-loading.png');
this.load.image('... | {
"pile_set_name": "Github"
} |
package me.aflak.bluetooth.interfaces;
import android.bluetooth.BluetoothDevice;
/**
* Created by Omar on 20/12/2017.
*/
public interface DeviceCallback {
void onDeviceConnected(BluetoothDevice device);
void onDeviceDisconnected(BluetoothDevice device, String message);
void onMessage(byte[] message);
... | {
"pile_set_name": "Github"
} |
---
home: true
heroImage: /logo.png
actionText: 快速开始 →
actionLink: /base/preface
footer: MIT Licensed | Copyright © 2018-present enilu
---
<div style="text-align: center">
<Bit/>
</div>
<div class="features">
<div class="feature">
<h2>简单快捷</h2>
<p>基于spring boot快速构建web应用程序,开发,部署,维护方便快捷。</p>
</div>
<div... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2018 The GraphicsFuzz Project 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"
} |
<?php
namespace Trello;
class Manager
{
/**
* @var ClientInterface
*/
protected $client;
/**
* Constructor.
*
* @param ClientInterface $client
*/
public function __construct(ClientInterface $client)
{
$this->client = $client;
}
/**
* Get organiz... | {
"pile_set_name": "Github"
} |
<HTML>
<HEAD>
<TITLE>Natural Selection Manual</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preload... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
module WildCard
open FStar.HyperStack.ST
type t = | A | B
(* These should all be compiled as switches. *)
let int_of_t (x: t): Stack Int32.t (fun _ -> true) (fun _ _ _ -> true) =
match x with
| A -> 0l
| _ -> 0l
let main () =
match int_of_t B with
| 0l -> 0l
| 1l -> 0l
| _ -> 0l
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>CMSIS-DSP: arm_dct4... | {
"pile_set_name": "Github"
} |
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and s... | {
"pile_set_name": "Github"
} |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | {
"pile_set_name": "Github"
} |
/*
* 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 in the hope that it will be use... | {
"pile_set_name": "Github"
} |
/*
* Hak5 WiFi Pineapple NANO board support
*
* Copyright (C) 2018 Sebastian Kinne <seb@hak5.org>
* Copyright (C) 2018 Piotr Dymacz <pepe2k@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched... | {
"pile_set_name": "Github"
} |
[{
"http://example.com/foo": [{"@list": [{"@list": []}]}]
}] | {
"pile_set_name": "Github"
} |
#ifndef VKPP_QUERY_HH
#define VKPP_QUERY_HH
#include <vulkan/vulkan.h>
#include <cstdint>
#include <unordered_map>
#include <string>
#include <vector>
namespace vkpp {
class Device;
class QueryPool final {
public:
QueryPool() = default;
QueryPool(Device& device,
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>glGenVertexArrays - OpenGL 4 Reference Pages</title>
<link rel="stylesheet" type="text/css" href="opengl-man.css"/>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.... | {
"pile_set_name": "Github"
} |
<!doctype linuxdoc system>
<!-- From DOS/Windows HOWTO, by Guido Gonzato -*- linuxdoc -*- -->
<article>
<title> From DOS/Windows to Linux HOWTO
<author> By Guido Gonzato, <tt>ggonza at tin.it</tt>
<date> Version 1.3.5. 31 August 2000.
<abstract>
This HOWTO is dedicated to all the (soon to be former?) DOS an... | {
"pile_set_name": "Github"
} |
// Protocol Buffers for Go with Gadgets
//
// Copyright (c) 2018, The GoGo Authors. All rights reserved.
// http://github.com/gogo/protobuf
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributio... | {
"pile_set_name": "Github"
} |
// -------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
// -----------------------------------------------------------... | {
"pile_set_name": "Github"
} |
{
"images": [
{
"filename": "ic_more_horiz_white_18pt.png",
"idiom": "universal",
"scale": "1x"
},
{
"filename": "ic_more_horiz_white_18pt_2x.png",
"idiom": "universal",
"scale": "2x"
},
{
"fi... | {
"pile_set_name": "Github"
} |
{% extends "base.html" %}
{% block title %}{{ object }}{% endblock %}
{% block main %}
<h1>{{ object }}</h1>
{% endblock %}
| {
"pile_set_name": "Github"
} |
Broadcom NSP (Northstar plus) IOMUX Controller
The NSP IOMUX controller supports group based mux configuration. In
addition, certain pins can be muxed to GPIO function individually.
Required properties:
- compatible:
Must be "brcm,nsp-pinmux"
- reg:
Should contain the register physical address and length for... | {
"pile_set_name": "Github"
} |
// So apparently this all got completely broken by the transition to SIFormat.
// I don't have the energy to find out what's wrong exactly, so I'll just remove
// it entirely for the time being.
#if 0
/* JediRLE0
* Used by several Jedi Engine formats
*******************************************************************... | {
"pile_set_name": "Github"
} |
# Stage 1のコンテナ(アプリケーションをビルド)
FROM golang:1.14.1-alpine3.11 as builder
COPY ./main.go ./
RUN CGO_ENABLED=0 go build -o /go-app ./main.go
# Stage 2のコンテナ(ビルドしたバイナリを内包した実行用コンテナを作成)
FROM scratch
# Stage 1でビルドした成果物をコピー
COPY --from=builder /go-app .
ENTRYPOINT ["./go-app"]
| {
"pile_set_name": "Github"
} |
{
"name": "sly/notification-pusher",
"description": "Standalone PHP library for easy devices notifications push.",
"keywords": [
"apple",
"iphone",
"apns",
"android",
"gcm",
"notification",
"message",
"push",
"pusher"
],
"homepage": "https://github.com/Ph3nol/NotificationPu... | {
"pile_set_name": "Github"
} |
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-1, 1, 50)
y = 1.0/(1.0+np.exp(-5*x))
plt.figure()
plt.plot(x, y)
plt.show() | {
"pile_set_name": "Github"
} |
{
"desc": "Cmotech CGU-628",
"control": 0,
"data": 0
}
| {
"pile_set_name": "Github"
} |
using System.Diagnostics;
using BenchmarkDotNet.Attributes;
namespace Benchmarks
{
public class Serialization
{
private proto.Account _account;
private readonly FBE.proto.AccountModel _writer;
private readonly FBE.proto.AccountModel _reader;
public Serialization()
{
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<actionGroups xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/actionGroupSchema.xsd">
<a... | {
"pile_set_name": "Github"
} |
/* Copyright 2018 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 required by applicable law or a... | {
"pile_set_name": "Github"
} |
import typing
from ..bundle import LilyPondFormatBundle
from ..markups import Markup
from ..new import new
from ..storage import StorageFormatManager
class MarginMarkup:
r"""
Margin markup.
.. container:: example
>>> staff = abjad.Staff("c'4 d'4 e'4 f'4")
>>> margin_markup = abjad.Marg... | {
"pile_set_name": "Github"
} |
from .. utils import TranspileTestCase, BuiltinFunctionTestCase
class ReversedTests(TranspileTestCase):
def test_reversed_list(self):
self.assertCodeExecution("""
print(list(reversed([1,2,3])))
""")
def test_reversed_dunder_reversed(self):
self.assertCodeExecution("""
... | {
"pile_set_name": "Github"
} |
/*
* This file is part of GNU CC.
*
* SPDX-License-Identifier: GPL-2.0+
*/
typedef unsigned int UWtype;
typedef unsigned int UHWtype;
typedef unsigned long long UDWtype;
#define W_TYPE_SIZE 32
typedef unsigned char UQItype;
typedef long SItype;
typedef unsigned long USItype;
typedef long long DItype;
typedef unsi... | {
"pile_set_name": "Github"
} |
//
// BMKRouteSearchResult.h
// BaiduMapAPI_Search
//
// Created by DanielBey on 2019/1/23.
// Copyright © 2019 Baidu. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BMKRouteSearchType.h"
/// 步行路线规划结果类
@interface BMKWalkingRouteResult : NSObject
/// 该路线打车信息
@property (nonatomic, strong) BMKTax... | {
"pile_set_name": "Github"
} |
export GETDNS_ENABLED="no"
export GETDNS_LOGLEVEL='4'
| {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation 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, an... | {
"pile_set_name": "Github"
} |
Typed Arrays
The `for-of` loop in ES6
Rest parameters
The `spread` operator
`WeakMap` in ES6 | {
"pile_set_name": "Github"
} |
original file
-----------------------------------
const h = {
setSubProperty: <
T extends A,
K extends keyof T,
J extends keyof T[K]
>(
property: K,
key: J,
value: T[K][J]
) => {}
}
-----------------------------------
Grammar: TypeScript.tmLanguage
-----------------------... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<DelphiIDETheme modified="2011-03-20 19:20:21" author="Delphi IDE Theme Editor" versionapp="1.0.0.90">
<AdditionalSearchMatchHighlight>
<Bold>False</Bold>
<Italic>False</Italic>
<Underline>False</Underline>
<DefaultForeground>True</DefaultForeground>
<... | {
"pile_set_name": "Github"
} |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Nick Mavrakis <mavrakis.n@gmail.com>, 2016
# Pãnoș <panos.laganakos@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 201... | {
"pile_set_name": "Github"
} |
//
// TLAppStoreCardCell.m
// Example
//
// Created by 故乡的云 on 2018/11/27.
// Copyright © 2018 故乡的云. All rights reserved.
//
#import "TLAppStoreCardCell.h"
@implementation TLAppStoreCardCell {
UIImageView *_imgView;
}
- (UIImageView *)imageView {
if (_imgView == nil) {
_imgView = [[UIImageView al... | {
"pile_set_name": "Github"
} |
const expect = require('chai').expect;
const InspireTree = require('../../' + (process.env.DIST ? 'dist' : 'build') + '/inspire-tree');
describe('TreeNode.prototype.copy', function() {
let tree;
before(function() {
// Create tree
tree = new InspireTree({
data: [{
da... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<!--
Copyright (c) 2012, the Dart project authors.
Please see the AUTHORS file for details.
All rights reserved. Use of this source code
is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=... | {
"pile_set_name": "Github"
} |
################################################################################
#
# Purpose: Execute changes to t1 and roll back to potentially mess up
# REPEATABLE READ queries in other transactions.
#
# - Start transaction
# - Do "bogus" updates
# - ROLLBACK
# - Do "bogus" inserts
# - Do bogus deletes
... | {
"pile_set_name": "Github"
} |
/******************************************************************************
* Product: Adempiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *
* This program is free software, you can redistribute it and/or modify it *
... | {
"pile_set_name": "Github"
} |
<!ENTITY keySnail.updatePluginDialog.title "KeySnail プラグインの更新">
<!ENTITY keySnail.updatePluginDialog.install "インストール">
<!ENTITY keySnail.updatePluginDialog.cancel "キャンセル">
<!ENTITY keySnail.updatePluginDialog.updateFoundMessage
"インストール済みの KeySnail プラグインに更新が見つかりました">
<!ENTITY keySnail.updatePluginDialog.updat... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2010, The Cinder Project
All rights reserved.
This code is designed for use with the Cinder C++ library, http://libcinder.org
Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:
* Redistributions of ... | {
"pile_set_name": "Github"
} |
def f[F[_]] = ()
inline def g = f[[R] =>> Int => R]
val a = g
-----
| {
"pile_set_name": "Github"
} |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may ... | {
"pile_set_name": "Github"
} |
## Esperienza da HTTP/2
La specifica HTTP/2 contenuta nella RFC 7540 è stata pubblicata nel Maggio
2015, un mese prima che QUIC fosse presentato ad IETF per la prima volta.
Con HTTP/2, le fondamenta per modificare HTTP furono gettate; il gruppo di
lavoro responsabile della creazione di HTTP/2 era gia dell'idea che ta... | {
"pile_set_name": "Github"
} |
//*******************************************************************
// Copyright (C) 2001 ImageLinks Inc.
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: David Burken
//
// Description:
// Class for encapsulate projection info given a projection, datum, and
/... | {
"pile_set_name": "Github"
} |
import numpy as np
import theano
import theano.tensor as T
import lasagne as nn
import data
import load
import nn_plankton
import dihedral
import tmp_dnn
import tta
features = [
# "hu",
# "tutorial",
"haralick",
# "aaronmoments",
# "lbp",
# "pftas",
# "zernike_moments",
# "image_siz... | {
"pile_set_name": "Github"
} |
package tc.oc.commons.bukkit.util;
import java.util.Collection;
import java.util.Collections;
import javax.annotation.Nullable;
import com.google.common.collect.ImmutableList;
import org.bukkit.entity.AreaEffectCloud;
import org.bukkit.entity.TippedArrow;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inven... | {
"pile_set_name": "Github"
} |
package io.openvidu.openvidu_android.utils;
import java.io.IOException;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
import javax.ne... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of PhpSpec, A php toolset to drive emergent
* design by specification.
*
* (c) Marcello Duarte <marcello.duarte@gmail.com>
* (c) Konstantin Kudryashov <ever.zet@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with t... | {
"pile_set_name": "Github"
} |
#!/bin/bash
set -e;
export LC_NUMERIC=C;
export LUA_PATH="$(pwd)/../../?/init.lua;$(pwd)/../../?.lua;$LUA_PATH";
# Directory where the prepare.sh script is placed.
SDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)";
[ "$(pwd)/steps" != "$SDIR" ] && \
echo "Please, run this script from the experiment top director... | {
"pile_set_name": "Github"
} |
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Live demonstrations</title>
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/css/datepicker3.css" rel="stylesheet">
<link href="/static/css/styles.... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "Laptop.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "Laptop@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "Laptop@3x.png",
"scale" : "3x"
}
],
"in... | {
"pile_set_name": "Github"
} |
$env:PATH +=";$env:SystemDrive\ProgramData\Chocolatey\bin;$env:SystemDrive\Documents and Settings\All Users\Application Data\chocolatey\bin"
write-host "This should be run from the root of your puppet code base"
choco install ruby -version 2.1.5
$env:PATH += ";$env:SystemDrive\tools\ruby215\bin"
#choco install ruby.d... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<PANASipPhoneConfig>
<Dev>
<Srv>
<Prof>
<Enable PROFILE_ENABLE1="Enabled"/>
<DTMFMethod OUTBANDDTMF_1="Y" OUTBANDDTMF_2="Y" OUTBANDDTMF_3="Y" OUTBANDDTMF_4="Y"/>
<DigitMap DIAL_PLAN_1="1XXXXXXXXXX|X11|480XXXXXXX|602XXXXXXX|623XXXXXXX" DIAL_PLAN_... | {
"pile_set_name": "Github"
} |
// Box model Resets for Joomla / Bootstrap2
.platform-content input {
box-sizing: content-box;
}
legend {
margin-bottom: $leading-margin;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[typ... | {
"pile_set_name": "Github"
} |
//
// BubbleDataEntry.swift
// Charts
//
// Bubble chart implementation:
// Copyright 2015 Pierre-Marc Airoldi
// Licensed under Apache License 2.0
//
// https://github.com/danielgindi/Charts
//
import Foundation
import CoreGraphics
open class BubbleChartDataEntry: ChartDataEntry
{
/// The size of the ... | {
"pile_set_name": "Github"
} |
package uri
import (
"io"
"net/url"
"os"
"path"
"strings"
log "github.com/sirupsen/logrus"
)
type fileReader struct {
fd *os.File
}
func (fr *fileReader) Read(b []byte) (n int, err error) {
return fr.fd.Read(b)
}
func (fr *fileReader) Close() error {
return fr.fd.Close()
}
// FileURIReader can read data ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
The contents of this file are subject to the terms of either the Universal Permissive License
v 1.0 as shown at ht... | {
"pile_set_name": "Github"
} |
# SOME DESCRIPTIVE TITLE.
# Copyright (C) Kovid Goyal
# This file is distributed under the same license as the calibre package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-27 14:01+0530\n"
"PO-Revision-Date: 2020-03-27 04:42+0000\n"
"Last-T... | {
"pile_set_name": "Github"
} |
package top.defaults.pickerviewapp;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will execute on an A... | {
"pile_set_name": "Github"
} |
using Server.Items;
using Server.Mobiles;
using System;
namespace Server.Engines.Quests.Hag
{
public class Blackheart : BaseQuester
{
[Constructable]
public Blackheart()
: base("the Drunken Pirate")
{
}
public Blackheart(Serial serial)
: base(ser... | {
"pile_set_name": "Github"
} |
msgid ""
msgstr ""
"Project-Id-Version: revive-adserver\n"
"Last-Translator: Revive Adserver Team <noreply@revive-adserver.com>\n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2;... | {
"pile_set_name": "Github"
} |
/*
* fs/cifs/smb2pdu.h
*
* Copyright (c) International Business Machines Corp., 2009, 2013
* Etersoft, 2012
* Author(s): Steve French (sfrench@us.ibm.com)
* Pavel Shilovsky (pshilovsky@samba.org) 2012
*
* This library is free software; you can redistribute it and/or modify
... | {
"pile_set_name": "Github"
} |
{
"board_title": "dogapi test",
"height": 768,
"id": 6334,
"widgets": [
{
"height": 20,
"type": "image",
"url": "http://path/to/image.jpg",
"width": 32,
"x": 32,
"y": 7
}
],
"width": 1024,
"created": "2015-12-17T23:06:06.703087+00:00",
"modified": "2015-12-17T... | {
"pile_set_name": "Github"
} |
#ifndef DDEBUG
#define DDEBUG 0
#endif
#include "ddebug.h"
#include <ndk.h>
#include <iconv.h>
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
static ngx_int_t iconv_buf_size;
static ngx_int_t max_iconv_bufs;
static ngx_uint_t ngx_http_iconv_filter_used = 0;
typedef struct {... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2011 LinkedIn, 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 agree... | {
"pile_set_name": "Github"
} |
PACKAGE := @fluent/syntax
GLOBAL := FluentSyntax
include ../common.mk
lint:
@$(ESLINT) --config $(ROOT)/eslint_ts.json --max-warnings 0 src/*.ts
@$(ESLINT) --config $(ROOT)/eslint_test.json --max-warnings 0 test/
@echo -e " $(OK) lint"
.PHONY: compile
compile: esm/.compiled
esm/.compiled: $(SOURCES)
@$(TSC)
@... | {
"pile_set_name": "Github"
} |
Package conf provides support for using environmental variables and command
line arguments for configuration.
It is compatible with the GNU extensions to the POSIX recommendations
for command-line options. See
http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
There are no hard bindings for this p... | {
"pile_set_name": "Github"
} |
if you don't think kevin kline in drag is funny , wait ? til you see will smith in drag-it's even less funny .
by the time jim west ( smith ) disguised himself as a belly dancer to bail his captured comrade , artemus gordon ( kline ) , from the clutches of evil dr . loveless ( branagh ) , i was unequivocally bored by ... | {
"pile_set_name": "Github"
} |
var Promise = require('any-promise')
var assert = require('assert')
module.exports = thenify
/**
* Turn async functions into promises
*
* @param {Function} fn
* @return {Function}
* @api public
*/
function thenify(fn, options) {
assert(typeof fn === 'function')
return createWrapper(fn, options)
}
/**
* ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>pyparsing.pyparsing.ParseExpression</title>
<link rel="stylesheet" href="epydoc.css" type="... | {
"pile_set_name": "Github"
} |
var CoreView = require('backbone/core-view');
var template = require('./options-template.tpl');
/**
* Category filter view
*
*/
module.exports = CoreView.extend({
className: 'CDB-Widget-filter CDB-Widget-contentSpaced CDB-Widget-contentSpaced--sideMargins',
events: {
'click .js-all': '_onSelectAll',
'c... | {
"pile_set_name": "Github"
} |
*> \brief \b CHETRI
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
*> \htmlonly
*> Download CHETRI + dependencies
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/chetri.f... | {
"pile_set_name": "Github"
} |
// Copyright 2014 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 main
import (
"errors"
"flag"
"fmt"
"go/build"
"go/types"
"io/ioutil"
"os"
"path/filepath"
"strings"
)
var (
source = flag.String("s", "", ... | {
"pile_set_name": "Github"
} |
import React from 'react';
import { List, Avatar } from 'antd';
import styles from './index.less';
const data = [
{
title: 'Ant Design Title 1',
},
{
title: 'Ant Design Title 2',
},
{
title: 'Ant Design Title 3',
},
{
title: 'Ant Design Title 4',
},
];
export default () => (
<div cla... | {
"pile_set_name": "Github"
} |
// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build mips,linux
package unix
const (
SYS_SYSCALL = 4000
SYS_EXIT = 4001
SYS_FORK ... | {
"pile_set_name": "Github"
} |
#include "avmplus.h"
/*************************************************
* Perl-Compatible Regular Expressions *
*************************************************/
/* PCRE is a library of functions to support regular expressions whose syntax
and semantics are as close as possible to those of the Perl 5 lang... | {
"pile_set_name": "Github"
} |
--eval;
| {
"pile_set_name": "Github"
} |
// Upload.swift
//
// Copyright (c) 2014–2015 Alamofire Software Foundation (http://alamofire.org/)
//
// 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 withou... | {
"pile_set_name": "Github"
} |
// *** WARNING: this file was generated by pulumigen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as utilities from "../../utilities";... | {
"pile_set_name": "Github"
} |
/* $OpenBSD: eck_prn.c,v 1.15 2018/07/15 16:27:39 tb Exp $ */
/*
* Written by Nils Larsch for the OpenSSL project.
*/
/* ====================================================================
* Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, w... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="date_at_time">%1$s ເວລາ %2$s</string>
<string name="date_time">%1$s, %2$s</string>
<string name="today">ມື້ນີ້</string>
<string name="tomorrow">ມື້ອື່ນ</string>
<string name="yesterday">ມື້ວານນີ້</string>
<string name="monday_initial">M</strin... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.