text
stringlengths
11
99.9k
meta
dict
We curated a corpus of writing to use in testing. Here, we give the references for all the texts in our "clean" corpus, which contains pieces from vetted and edited magazines such as *The New Yorker* and *Harper's Magazine*; we expect the linter to run nearly cleanly over this corpus, which we occasionally verify by ha...
{ "pile_set_name": "Github" }
#!/usr/bin/python # coding=utf-8 # # <bitbar.title>Ripplecoin Ticker ($1USD)</bitbar.title> # <bitbar.version>v1.0</bitbar.version> # <bitbar.author>impshum</bitbar.author> # <bitbar.author.github>impshum</bitbar.author.github> # <bitbar.desc>Displays current Ripplecoin price for $1 from Coinmarketcap</bitbar.desc> # <...
{ "pile_set_name": "Github" }
> **[instagram-private-api](../README.md)** [Globals](../README.md) / ["responses/insights.service.account.response"](../modules/_responses_insights_service_account_response_.md) / [InsightsServiceAccountResponseAccount_insights_unit](_responses_insights_service_account_response_.insightsserviceaccountresponseaccount_...
{ "pile_set_name": "Github" }
from typing import List from webdnn.backend.webgl.optimize_rules.decompose_softmax import DecomposeSoftmax from webdnn.backend.webgl.optimize_rules.fix_tensordot_texture_shape import FixTensordotTextureShape from webdnn.backend.webgl.optimize_rules.insert_channel_mode_conversion import InsertChannelModeConversion from...
{ "pile_set_name": "Github" }
<Window x:Class="OsEngine.Charts.CandleChart.Indicators.PivotUi" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Pivot" Height="260" Width="586" WindowStartupLocation="CenterScreen" Style="{StaticResource WindowStyl...
{ "pile_set_name": "Github" }
/* Copyright (C) 1992, 1995-2003, 2005-2011 Free Software Foundation, Inc. This file is part of the GNU C Library. 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 3 of the ...
{ "pile_set_name": "Github" }
''' Exceptions used by synapse, all inheriting from SynErr ''' class SynErr(Exception): def __init__(self, *args, **info): self.errinfo = info Exception.__init__(self, self._getExcMsg()) def _getExcMsg(self): props = sorted(self.errinfo.items()) displ = ' '.join(['%s=%r' % (p,...
{ "pile_set_name": "Github" }
package pongo2 import ( "fmt" "math" ) type Expression struct { // TODO: Add location token? expr1 IEvaluator expr2 IEvaluator opToken *Token } type relationalExpression struct { // TODO: Add location token? expr1 IEvaluator expr2 IEvaluator opToken *Token } type simpleExpression struct { negate ...
{ "pile_set_name": "Github" }
/** * This file has no copyright assigned and is placed in the Public Domain. * This file is part of the mingw-w64 runtime package. * No warranty is given; refer to the file DISCLAIMER.PD within this package. */ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 475 #endif #include "rpc.h"...
{ "pile_set_name": "Github" }
AF: Afghanistan AX: 'Åland Islands' AL: Albania DZ: Algeria AS: 'American Samoa' AD: Andorra AO: Angola AI: Anguilla AQ: Antarctica AG: 'Antigua & Barbuda' AR: Argentina AM: Armenia AW: Aruba AU: Australia AT: Austria AZ: Azerbaijan BS: Bahamas BH: Bahrain BD: Bangladesh BB: Barbados BY: Belarus BE: Belgium BZ: Belize ...
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE----- MIIE0DCCA7igAwIBAgIJAMnis+YL+r3QMA0GCSqGSIb3DQEBCwUAMIGgMQswCQYD VQQGEwJVSzEUMBIGA1UECBMLTG9uZG9uc2hpcmUxDzANBgNVBAcTBkxvbmRvbjEW MBQGA1UEChMNV2ViIG9mIFRoaW5nczEWMBQGA1UECxMNV2ViIG9mIFRoaW5nczEW MBQGA1UEAxMNV2ViIG9mIFRoaW5nczEiMCAGCSqGSIb3DQEJARYTYm9va0B3ZWJv ZnRoaW5ncy5pbzAeFw0xNTA4MTUxNjQ3...
{ "pile_set_name": "Github" }
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build darwin dragonfly freebsd linux netbsd openbsd solaris // Package unix contains an interface to the low-level operating system // primitives. OS detai...
{ "pile_set_name": "Github" }
package assets import ( "bytes" "crypto/md5" "encoding/hex" "fmt" "io/ioutil" "net/http" "os" "path/filepath" "strings" utilruntime "k8s.io/kubernetes/pkg/util/runtime" ) // ExtensionScriptsHandler concatenates and serves extension JavaScript files as one HTTP response. func ExtensionScriptsHandler(files [...
{ "pile_set_name": "Github" }
package pool import "sync" type StickyConnPool struct { pool *ConnPool reusable bool cn *Conn closed bool mu sync.Mutex } var _ Pooler = (*StickyConnPool)(nil) func NewStickyConnPool(pool *ConnPool, reusable bool) *StickyConnPool { return &StickyConnPool{ pool: pool, reusable: reusable, ...
{ "pile_set_name": "Github" }
@import '../base/_variables.scss'; .loading { font-size: 20px; width: 1em; height: 1em; border-radius: 50%; position: relative; text-indent: -9999em; animation: loading 1.1s infinite ease; transform: translateZ(0); } @keyframes loading { 0%, 100% { box-shadow: 0 -2.6em 0 0...
{ "pile_set_name": "Github" }
package handshake import "encoding/json" type strategy struct { Rendezvous storage Storage storage Cipher cipher } // strategyPeerConfig is a a struct that encapsulates the shared strategy settings for handshake type strategyPeerConfig struct { Rendezvous peerStorage `json:"rendezvous"` Storage peerSt...
{ "pile_set_name": "Github" }
# I2P # Copyright (C) 2009 The I2P Project # This file is distributed under the same license as the routerconsole package. # To contribute translations, see http://www.i2p2.de/newdevelopers # # Translators: # Aman Elarbi <aman.elarbi@gmail.com>, 2014 # ducki2p <ducki2p@gmail.com>, 2011 # foo <foo@bar>, 2009 # Jakob Wu...
{ "pile_set_name": "Github" }
/** * \file pk.h * * \brief Public Key abstraction layer */ /* * Copyright (C) 2006-2015, 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...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2010-2011 Mamadou Diop. * * This file is part of Open Source Doubango Framework. * * DOUBANGO 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 3 of the License, or * (at your o...
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE----- MIIDFzCCAf+gAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDExtUZXN0 IGludGVybWVkaWF0ZSBtYXhwYXRoIDEwHhcNMDEwMTAxMDAwMDAwWhcNMzAxMjMx MjM1OTU5WjAmMSQwIgYDVQQDExtUZXN0IGludGVybWVkaWF0ZSBtYXhwYXRoIDEw ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaRpQTF3aPHDvaKlMP2+jz MIjDVfCwnusAfVShz2ujhkNKPF6pLYMJ...
{ "pile_set_name": "Github" }
commonfields: id: AlgoSec version: -1 name: AlgoSec display: AlgoSec system: true category: Network Security image: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAApCAYAAAD+tu2AAAATjUlEQVR4Ae2bBXRb15aGd7AUZnhcZuY2XGbGMDMzMzMnZmaO2TEzMyexZUkWmTGk+ber49FoKYbpKztrfVfKRa37n43nmNr6dzqlavzWaPWhWQGK0C885cXvukoVH7pJpV...
{ "pile_set_name": "Github" }
import * as React from 'react'; import './App.css'; import JqxListBox, { IListBoxProps } from 'jqwidgets-scripts/jqwidgets-react-tsx/jqxlistbox'; class App extends React.PureComponent<{}, IListBoxProps> { constructor(props: {}) { super(props); this.state = { source: [ "Afghanist...
{ "pile_set_name": "Github" }
-----BEGIN X509 CRL----- MIIFdTCCAV0CAQEwDQYJKoZIhvcNAQELBQAwgcYxCzAJBgNVBAYTAlVTMRMwEQYD VQQIDApTYW1iYVN0YXRlMRIwEAYDVQQHDAlTYW1iYUNpdHkxGTAXBgNVBAoMEFNh bWJhU2VsZlRlc3RpbmcxGjAYBgNVBAsMEUNBIEFkbWluaXN0cmF0aW9uMSAwHgYD VQQDDBdDQSBvZiBzYW1iYS5leGFtcGxlLmNvbTE1MDMGCSqGSIb3DQEJARYmY2Et c2FtYmEuZXhhbXBsZS5jb21Ac2FtYmEuZXh...
{ "pile_set_name": "Github" }
/* $KAME: inet_pton.c,v 1.5 2001/08/20 02:32:40 itojun Exp $ */ /* vim:set sts=4 ts=8: */ /* Copyright (c) 1996 by Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>DesktopShareDlg</class> <widget class="QDialog" name="DesktopShareDlg"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>481</width> <height>277</height> </rect> </property> <property name="windowTitle">...
{ "pile_set_name": "Github" }
(module "TFML-110-02-L-D" (layer F.Cu) (tedit 56B15E0A) (pad 1 smd rect (at -5.7150 1.7150) (size 0.7400 2.9200) (layers F.Cu F.Mask F.Paste)) (pad 2 smd rect (at -5.7150 -1.7150) (size 0.7400 2.9200) (layers F.Cu F.Mask F.Paste)) (pad 3 smd rect (at -4.4450 1.7150) ...
{ "pile_set_name": "Github" }
/* Definitions for winsock 2 Contributed by the WINE project. Portions Copyright (c) 1980, 1983, 1988, 1993 The Regents of the University of California. All rights reserved. Portions Copyright (c) 1993 by Digital Equipment Corporation. */ #if !(defined _WINSOCK2_H || defined _WINSOCK_H) #define _WINSOC...
{ "pile_set_name": "Github" }
// Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs defs_darwin.go package ipv6 const ( sysIPV6_UNICAST_HOPS = 0x4 sysIPV6_MULTICAST_IF = 0x9 sysIPV6_MULTICAST_HOPS = 0xa sysIPV6_MULTICAST_LOOP = 0xb sysIPV6_JOIN_GROUP = 0xc sysIPV6_LEAVE_GROUP = 0xd sysIPV6_PORTRANGE = 0xe sysICM...
{ "pile_set_name": "Github" }
sljzw.yrcti.edu.cn cjx.yrcti.edu.cn hqgl.yrcti.edu.cn xsc.yrcti.edu.cn ywgk.yrcti.edu.cn chgc.yrcti.edu.cn qzlx.yrcti.edu.cn kywsc.yrcti.edu.cn ddzs.yrcti.edu.cn lvyou.yrcti.edu.cn xjb.yrcti.edu.cn info.yrcti.edu.cn mail.yrcti.edu.cn jpkc.yrcti.edu.cn gjhz.yrcti.edu.cn tumu.yrcti.edu.cn sfb.yrcti.edu.cn baowei.yrcti.ed...
{ "pile_set_name": "Github" }
/* ** 2001 September 16 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ******************...
{ "pile_set_name": "Github" }
/* * This file is part of the SDWebImage package. * (c) Olivier Poitrey <rs@dailymotion.com> * (c) Jamie Pinkham * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #import <TargetConditionals.h> #if !TARGET_OS_IPHONE #import <AppKit...
{ "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. // +build arm64,linux package unix import "unsafe" func EpollCreate(size int) (fd int, err error) { if size <= 0 { return -1, EINVAL } return EpollCreat...
{ "pile_set_name": "Github" }
/* Copyright (C) 2000 MySQL AB 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; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT AN...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <link rel="stylesheet" href="style.css" type="text/css"> <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="Start" href="index.html"> <link ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <dependenciesRoot> <dependency className="jetbrains.mps.lang.typesystem.pluginSolution.plugin.ConvertInferenceRuleToCheckingRule_Action"> <classNode dependClassName="com.intellij.openapi.actionSystem.AnActionEvent" /> <classNode dependClassName="java.lang.Object" /> ...
{ "pile_set_name": "Github" }
package tahrir.tools; import java.io.*; import java.net.DatagramPacket; import java.util.*; import com.google.common.base.Joiner; import com.google.common.collect.AbstractIterator; import tahrir.TrConstants; public final class ByteArraySegment implements Iterable<Byte> { public final byte[] array; public final in...
{ "pile_set_name": "Github" }
###### Johnson # Foreign languages ought to be an asset for politicians—not a liability ##### Even if you distrust foreigners, shouldn’t you want to know what they are saying? ![image](images/20190427_BKD000_0.jpg) > Apr 27th 2019 IT SEEMS HARD to imagine, but once a British prime minister could not only aim t...
{ "pile_set_name": "Github" }
description = <b>EAGLE Design Rules</b>\n<p>\neurocircuits "verified" 4 layers design rules (6B) layerSetup = (1*2+15*16) mtCopper = 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm mtIsolate = 0.2mm 1.5mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.1...
{ "pile_set_name": "Github" }
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package route53resolver const ( // ErrCodeInternalServiceErrorException for service response error code // "InternalServiceErrorException". // // We encountered an unknown error. Try again in a few minutes. ErrCodeInternalServiceErrorException...
{ "pile_set_name": "Github" }
A group of people are standing on a pile of wool in a truck . A man sleeping in a green room on a couch . A boy with headphones on sitting on top of a woman 's shoulders . Two people standing outside a blue tent structure on a snowy surface . A man wearing a red life-vest is sitting in a canoe on a body of water . A wo...
{ "pile_set_name": "Github" }
package org.ripple.bouncycastle.pqc.jcajce.spec; import java.security.spec.KeySpec; import java.util.Vector; import org.ripple.bouncycastle.pqc.crypto.gmss.GMSSLeaf; import org.ripple.bouncycastle.pqc.crypto.gmss.GMSSParameters; import org.ripple.bouncycastle.pqc.crypto.gmss.GMSSRootCalc; import org.ripple.bouncycast...
{ "pile_set_name": "Github" }
"push" enum-value permissions-1 permissions 1 current https://w3c.github.io/permissions/#dom-permissionname-push 1 1 PermissionName - PublicKeyCredential interface webauthn-1 webauthn 1 snapshot https://www.w3.org/TR/webauthn/#publickeycredential 1 1 - PublicKeyCredential interface webauthn-1 webauthn 1 current https:/...
{ "pile_set_name": "Github" }
// Copyright 2017 The Abseil 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 applicable law or agr...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>横向滚动公告</title> <style> body,div,html,img,li,ul{margin:...
{ "pile_set_name": "Github" }
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.01.0622 */ /* @@MIDL_FILE_HEADING( ) */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__...
{ "pile_set_name": "Github" }
/* * "streamable kanji code filter and converter" * Copyright (c) 1998-2002 HappySize, Inc. All rights reserved. * * LICENSE NOTICES * * This file is part of "streamable kanji code filter and converter", * which is distributed under the terms of GNU Lesser General Public * License (version 2) as published by th...
{ "pile_set_name": "Github" }
accounts-base@1.2.0 accounts-password@1.1.1 accounts-ui@1.1.5 accounts-ui-unstyled@1.1.7 aldeed:autoform@5.5.0 aldeed:collection2@2.5.0 aldeed:simple-schema@1.3.3 amplify@1.0.0 autoupdate@1.2.1 base64@1.0.3 binary-heap@1.0.3 blaze@2.1.2 blaze-tools@1.0.3 boilerplate-generator@1.0.3 callback-hook@1.0.3 check@1.0.5 coffe...
{ "pile_set_name": "Github" }
package lib import ( "errors" "go.dedis.ch/kyber/v3" "go.dedis.ch/kyber/v3/share/dkg/rabin" "go.dedis.ch/kyber/v3/util/random" "go.dedis.ch/cothority/v3" ) // RandomKeyPair creates a random public/private Diffie-Hellman key pair. func RandomKeyPair() (x kyber.Scalar, X kyber.Point) { x = cothority.Suite.Scala...
{ "pile_set_name": "Github" }
Nanopb - Protocol Buffers for Embedded Systems ============================================== [![Build Status](https://travis-ci.org/nanopb/nanopb.svg?branch=master)](https://travis-ci.org/nanopb/nanopb) Nanopb is a small code-size Protocol Buffers implementation in ansi C. It is especially suitable for use in microc...
{ "pile_set_name": "Github" }
//-*-c++-*--------------------------------------------------------------------// /* This file is part of PVR. Copyright (C) 2012 Magnus Wrenninge PVR 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 Foundatio...
{ "pile_set_name": "Github" }
// Copyright Aleksey Gurtovoy 2001-2004 // Copyright David Abrahams 2001-2002 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // *Preprocessed* version of the main "iter_fold_if_impl.hpp" header // -- D...
{ "pile_set_name": "Github" }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ip::icmp::type</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="...
{ "pile_set_name": "Github" }
/* * ASoC codec driver for spear platform * * sound/soc/codecs/sta529.c -- spear ALSA Soc codec driver * * Copyright (C) 2012 ST Microelectronics * Rajeev Kumar <rajeevkumar.linux@gmail.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <map version="1.0" tiledversion="1.1.5" orientation="orthogonal" renderorder="right-down" width="64" height="64" tilewidth="128" tileheight="128" infinite="0" nextobjectid="1"> <tileset firstgid="1" source="testtileset.tsx"/> <layer name="Tile Layer 1" width="64" height="64"> ...
{ "pile_set_name": "Github" }
// Copyright 2015 Canonical Ltd. // Licensed under the AGPLv3, see LICENCE file for details. package vsphere_test import ( "context" "fmt" "io/ioutil" "net/url" "path" "time" "github.com/golang/mock/gomock" "github.com/juju/errors" "github.com/juju/names/v4" "github.com/juju/testing" jc "github.com/juju/t...
{ "pile_set_name": "Github" }
/* * Copyright Andrey Semashev 2007 - 2015. * 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) */ /*! * \file config.hpp * \author Andrey Semashev * \date 08.03.2007 * * \brief This ...
{ "pile_set_name": "Github" }
Alexander Bergmann <abergmann@suse.com> Alexander Scheel <ascheel@redhat.com> Axel Nennker <axel@nennker.de> Brady Alleman <brady@alleman.me> Brandon Dixon <Brandon.Dixon@g2-inc.com> Brent Baude <bbaude@redhat.com> Brian Kolbay <Brian.Kolbay@g2-inc.com> Bruno Ducrot <bruno@poupinou.org> Bryan Schneiders <pschneiders@tr...
{ "pile_set_name": "Github" }
#ifndef BOOST_MPL_STABLE_PARTITION_HPP_INCLUDED #define BOOST_MPL_STABLE_PARTITION_HPP_INCLUDED // Copyright Eric Friedman 2002-2003 // Copyright Aleksey Gurtovoy 2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENS...
{ "pile_set_name": "Github" }
/** * \file pk.h * * \brief Public Key abstraction layer * * Copyright (C) 2006-2015, 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 obt...
{ "pile_set_name": "Github" }
package db import ( "context" "database/sql" "errors" "fmt" "time" "github.com/keegancsmith/sqlf" "github.com/lib/pq" "github.com/sourcegraph/sourcegraph/internal/db/dbconn" ) // An OrgInvitation is an invitation for a user to join an organization as a member. type OrgInvitation struct { ID int...
{ "pile_set_name": "Github" }
!!!COM: Palestrina, Giovanni Perluigi da !!!OPR: Missa Tu es Petrus (1887) !!!OTL: Gloria **kern **kern **kern **kern **kern **kern *Ibass *Ibarit *Itenor *Icalto *Icant *Icant !Bassus !Baritone !Tenor !Altus !Cantus 2 !Cantus 1 *clefF4 *clefF4 *clefGv2 *clefG2 *clefG2 *clefG2 *k[] *k[] *k[] *k[] *k[] *k[] *G:mix *G:mi...
{ "pile_set_name": "Github" }
// // kern_compat.hpp // Lilu // // Copyright © 2016-2017 vit9696. All rights reserved. // #ifndef kern_compat_hpp #define kern_compat_hpp #include <Headers/kern_config.hpp> //Actually do not include to catch real errors //#include <Availability.h> #include <string.h> // Please do not use memcpy and similar funct...
{ "pile_set_name": "Github" }
///////////// Copyright © 2008, Killer Monkey. All rights reserved. ///////////// // // File: weapon_moonraker.cpp // Description: // Implementation of the Moonraker Laser // // Created On: 12/5/09 // Created By: Killer Monkey ///////////////////////////////////////////////////////////////////////////// #include...
{ "pile_set_name": "Github" }
/* frame: Central data structures and opmitization hooks. copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Thomas Orgis */ #ifndef MPG123_FRAME_H #define MPG123_FRAME_H #include <stdio.h> #...
{ "pile_set_name": "Github" }
contented: contenpted contende contended contentid beginning: begining problem: problam proble promblem proplen driven: dirven ecstasy: exstacy ecstacy juice: guic juce jucie juise juse locally: localy compare: compair pronunciation: pronounciation transportability: transportibility minuscule: miniscule independent: in...
{ "pile_set_name": "Github" }
// Created by cgo -godefs - DO NOT EDIT // cgo -godefs defs_freebsd.go package ipv6 const ( sysIPV6_UNICAST_HOPS = 0x4 sysIPV6_MULTICAST_IF = 0x9 sysIPV6_MULTICAST_HOPS = 0xa sysIPV6_MULTICAST_LOOP = 0xb sysIPV6_JOIN_GROUP = 0xc sysIPV6_LEAVE_GROUP = 0xd sysIPV6_PORTRANGE = 0xe sysICMP6_FILTER...
{ "pile_set_name": "Github" }
#ifdef WIN32 #define _WIN32_WINNT 0x0403 // Very important for critical sections. #define WIN32_LEAN_AND_MEAN // Good to use. #pragma optimize("gsy", on) // Global optimization, Short sequences, Frame pointers. #pragma comment(linker,"/RELEASE") // Release code #pragma comment(linker, "/ALIGN:4096") ...
{ "pile_set_name": "Github" }
-----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEAwRrWvzL0zR9OFg1ipRU+Pvd9v+WN4ILKxU2jxlutvZOevsyx flzRNOQImejpdXEtA/yZTKNYOdU+dMdPDdSsMPFzRgzQfiJDKqJw4jB+SF2XROuZ EYMjxoJtueAGnw1DO9tgzn40NtHrPJNKadrYljEF+zycNLcPf78GK/ug+5rK5Mkp NVmxO4yjqxk5ZB3KD4Gol3RaheVKYmTfjNIAO0wk8O2NbvG/JxOPTpDSaElgpfdy 3Bxv4JJpjgNKrHEUYUqkwlqmrinT...
{ "pile_set_name": "Github" }
/* * $Id$ * * Copyright (C) 2012 Smile Communications, jason.penton@smilecoms.com * Copyright (C) 2012 Smile Communications, richard.good@smilecoms.com * * The initial version of this code was written by Dragos Vingarzan * (dragos(dot)vingarzan(at)fokus(dot)fraunhofer(dot)de and the * Fruanhofer Institute. It ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8" standalone="no"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="umeng_socialize_action_bar_itemlayout"> <item name="android:layout_height">fill_parent</item> <item name="android:layout_width">fill_parent</item> <item...
{ "pile_set_name": "Github" }
/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing ...
{ "pile_set_name": "Github" }
/// <reference path="../../typings/tsd.d.ts" /> import router = require("plugins/router"); import app = require("durandal/app"); import sys = require("durandal/system"); import menu = require("common/shell/menu"); import generateMenuItems = require("common/shell/menu/generateMenuItems"); import activeDatabaseTr...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2008, 2018, 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" }
package yaml const ( // The size of the input raw buffer. input_raw_buffer_size = 512 // The size of the input buffer. // It should be possible to decode the whole raw buffer. input_buffer_size = input_raw_buffer_size * 3 // The size of the output buffer. output_buffer_size = 128 // The size of the output r...
{ "pile_set_name": "Github" }
package yaml const ( // The size of the input raw buffer. input_raw_buffer_size = 512 // The size of the input buffer. // It should be possible to decode the whole raw buffer. input_buffer_size = input_raw_buffer_size * 3 // The size of the output buffer. output_buffer_size = 128 // The size of the output r...
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE REQUEST----- MIIFCTCCAvMCAQAwgYYxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpDbG91ZEZsYXJl MRwwGgYDVQQLExNTeXN0ZW1zIEVuZ2luZWVyaW5nMRYwFAYDVQQHEw1TYW4gRnJh bmNpc2NvMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRcwFQYDVQQDEw5jbG91ZGZsYXJl LmNvbTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANkKL22jMn3eFCpj T6lbeq4nC3aEqwTGrLARidAm...
{ "pile_set_name": "Github" }
:orphan: .. _zephyr_1.13: Zephyr Kernel 1.13.0 #################### We are pleased to announce the release of Zephyr kernel version 1.13.0. Major enhancements with this release include: * Extensible and Pluggable Tracing Support * Compartmentalized application memory organization * Logging System Overhaul * Introd...
{ "pile_set_name": "Github" }
-----BEGIN PRIVATE KEY----- MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDvdzKDTYvRgjBO UOrzDwkAZGwNFHHlMYyMGI5tItj3tCzXkbpM0uz3ZjHVahu+eYc+KvYApM64F2dB b16hs713FCk8mihYABjnSndrQsl/U2v8YFT7DipfLReqqaOGu2o9HdvWfiUlaiC/ UGGfR+YblpK7CG+7/hvTXtUsMw+OppoeH9z87rhOJMxtiC7XwU5rhEmab/1f1XM/ nLoZrfDAcTbDywoeu826SJ3mifajq7oK...
{ "pile_set_name": "Github" }
EESchema-LIBRARY Version 2.3 Date: 6/11/2014 6:30:49 AM #encoding utf-8 # # 176122-6 # DEF 176122-6 P 0 40 Y Y 2 F N F0 "P" 0 -100 50 H V C CNN F1 "176122-6" 0 100 50 H V C CNN F2 "MODULE" 0 -350 50 H I C CNN F3 "DOCUMENTATION" 0 -250 50 H I C CNN $FPLIST 176122-6 $ENDFPLIST DRAW S -450 -950 450 950 1 0 0 N S -450 -2...
{ "pile_set_name": "Github" }
/* ioapi.h -- IO base function header for compress/uncompress .zip part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html ) Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) Modifications for Zip64 support Copyright (C...
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE----- MIIDLjCCAhagAwIBAgIBATANBgkqhkiG9w0BAQUFADA3MREwDwYDVQQLDAhTZWN1 cml0eTEUMBIGA1UEAwwLTkRHIFRlc3QgQ0ExDDAKBgNVBAoMA05ERzAeFw0xNTAx MjExNDMzMThaFw0yMDAxMjAxNDMzMThaMDcxETAPBgNVBAsMCFNlY3VyaXR5MRQw EgYDVQQDDAtOREcgVGVzdCBDQTEMMAoGA1UECgwDTkRHMIIBIjANBgkqhkiG9w0B AQEFAAOCAQ8AMIIBCgKCAQEArq4QKUTR...
{ "pile_set_name": "Github" }
# $NetBSD: md.sparc64,v 1.254 2015/07/03 18:28:37 matt Exp $ ./libexec/ld.elf_so-sparc base-sysutil-bin compat,pic ./sbin/edlabel base-sysutil-root obsolete ./usr/bin/fdformat base-util-bin ./usr/libexec/ld.elf_so-sparc base-sysutil-bin compat,pic ./usr/lkm/compat_netbsd32.o base-obsolete obsolete ./usr/l...
{ "pile_set_name": "Github" }
-----BEGIN RSA PRIVATE KEY----- MIIEowIBAAKCAQEAjamvEMqBJVKlMkjk7r5N7A9sHU1/HcGTiczIdXpk5Xa6PJtd UZ9E/IEerfm85lfnsKUWxGx8vrSk0QC7376Dqa9MGRf74mOgjCYhLAMb2DDDxiLb mHySjXYgLi+n/Il9g5RpxDbbg4P2Un2FJXxxWTruhFQvB1N+nsTyDxmtA6SL5T/h tbSwTdQzC7Cvk2D8EArnOBYZrjpsMIXtGa6FrvZ7odXo6DMQ4FM0WNGsK1GnuiYt adUq3i36o1knlx1K6YLhQmJDec8Y...
{ "pile_set_name": "Github" }
// Copyright 2011 Google Inc. All Rights Reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the COPYING file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be...
{ "pile_set_name": "Github" }
/* OOJSFrameCallbacks.m Copyright (C) 2011-2013 Jens Ayton 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, mer...
{ "pile_set_name": "Github" }
/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published b...
{ "pile_set_name": "Github" }
OC.L10N.register( "notes", { "Error" : "შეცდომა", "New note" : "ახალი ჩანაწერი", "Notes" : "ჩანაწერები", "There are unsaved notes. Leaving the page will discard all changes!" : "არსებობს შეუნახავი ჩანაწერები. გვერდის დატოვება ყველა ცვლილებას უარყოფს!", "Settings" : "პარამეტრები", "Catego...
{ "pile_set_name": "Github" }
/* * sntp.c * * Created on: 2014. 12. 15. * Author: Administrator */ #include "../../../ioLibrary_Driver/Internet/SNTP/sntp.h" #include <string.h> #include "../../../ioLibrary_Driver/Ethernet/socket.h" ntpformat NTPformat; datetime Nowdatetime; uint8_t ntpmessage[48]; uint8_t *data_buf; uint8_t NTP_SOCK...
{ "pile_set_name": "Github" }
# HG changeset patch # User Dan Kenigsberg <danken@redhat.com> # Date 1317492169 -10800 # Node ID a9a87f0e7c509ec6768379c08a0cf56f43d71b4a # Parent b0ef6a5a6dccab0089d287bf6b9bcb8132bdbd0d xml.dom.minidom toprettyxml: omit whitespace for Text nodes  h...
{ "pile_set_name": "Github" }
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "Li...
{ "pile_set_name": "Github" }
-----BEGIN RSA PRIVATE KEY----- MIIEpgIBAAKCAQEAtVlo3lxJ9MGxBW0pMrttM6WNbFQAaB3l31FiwJx97HhXYWIf x0I9sZuDF35cfRgPgP6XFIesSBPxYs6lmvED8YtHzc5QuleNX6IWy6x+9gVjFbb4 JKUJOrQniM/lM3471eu1qUFlOkmi5fRzEvMjf+xl3VKyL0IoQ9z35RLt62O3nvoH pU8YNkXTTELoFQsItf0nq/jF7aEt+bqsRsjUrlMclKXrUxUfvPp0cjXD5AQhkVAS 4GnW30XbS7Mo4yUND1sHVGMywj2+...
{ "pile_set_name": "Github" }
/* $Id: types.h 231 2011-06-27 13:46:19Z marc.noirot $ FLV Metadata updater Copyright (C) 2007-2012 Marc Noirot <marc.noirot AT gmail.com> This file is part of FLVMeta. FLVMeta is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as pub...
{ "pile_set_name": "Github" }
/*------------------------------------------------------------------------- * * buffile.c * Management of large buffered temporary files. * * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION * src...
{ "pile_set_name": "Github" }
<p align="center"> <img src="https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Demo/Resources/icon.png" alt="Icon"/> </p> <H1 align="center">IQKeyboardManager</H1> <p align="center"> <img src="https://img.shields.io/github/license/hackiftekhar/IQKeyboardManager.svg" alt="GitHub license"/> ...
{ "pile_set_name": "Github" }
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman 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) This is an auto-generated file...
{ "pile_set_name": "Github" }
# This file configures AppVeyor (http://www.appveyor.com), # a Windows-based CI service similar to Travis. # Identifier for this run version: "{build}" # Clone the repo into this path, which conforms to the standard # Go workspace structure. clone_folder: c:\gopath\src\cloud.google.com\go environment: GOPATH: c:\g...
{ "pile_set_name": "Github" }
#-- copyright #OpenProject is an open source project management software. #Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmin...
{ "pile_set_name": "Github" }
/*============================================================================= Copyright (c) 2007 Tobias Schwinger Use modification and distribution are subject to 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). ...
{ "pile_set_name": "Github" }
/* * Backpack - Skyscanner's Design System * * Copyright 2016-2020 Skyscanner Ltd * * 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" }
# -*- encoding: utf-8 -*- # stub: mime-types 2.3 ruby lib Gem::Specification.new do |s| s.name = "mime-types" s.version = "2.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] s.authors = ["Austin Ziegler"] s.cert_chain = ["...
{ "pile_set_name": "Github" }