text stringlengths 2 99.9k | meta dict |
|---|---|
/**
* MegaMek - Copyright (C) 2007 Ben Mazur (bmazur@sev.org)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version... | {
"pile_set_name": "Github"
} |
<div id="header">
<h1>iText<sup>®</sup> XMLWorker</h1>
</div>
<h2>Introduction</h2>
<p>The iText<sup>®</sup> XMLWorker is a package created for transforming XML files to PDF. Although parsing XML was already possible with iText, a new version has been created. Many developers use the XML to PDF capabilities to ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2010-2012 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 ... | {
"pile_set_name": "Github"
} |
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "TrackEditors/ParticleTrackEditor.h"
#include "Rendering/DrawElements.h"
#include "Framework/MultiBox/MultiBoxBuilder.h"
#include "Curves/IntegralCurve.h"
#include "SequencerSectionPainter.h"
#include "EditorStyleSet.h"
#include "Editor/UnrealEdEngi... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<ProjectVersion>6.0</ProjectVersion>
<ProjectGuid>fee31e0f-40f4-11e0-93cf-000c29a22d21</ProjectGuid>
<avrdevice>... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2015 Low Latency Trading Limited : Author Richard Rose
* 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 L... | {
"pile_set_name": "Github"
} |
CFLAGS+=-fPIC
ifeq ($(findstring osx,$(ARCH)), osx)
CFLAGS=-fno-common
INCLUDES+=-I../jpeg/
endif
LIB=tiff.a
OBJS=fax3sm_winnt.o tif_aux.o tif_close.o tif_codec.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_fax3.o tif_flush.o tif_getimage.o tif_jpeg.o tif_luv.o t... | {
"pile_set_name": "Github"
} |
/**
* This program 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 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that ... | {
"pile_set_name": "Github"
} |
import language.experimental.macros
import scala.reflect.macros.blackbox.Context
object M {
def m(a: Any, b: Any): Any = macro mImpl
def mImpl(c: Context)(a: c.Expr[Any], b: c.Expr[Any]) = c.universe.reify(println(a.splice))
@reflect.internal.annotations.compileTimeOnly("cto may only be used as an argument to "... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 5 09:26:51 2018
@author: Kazuki
"""
from glob import glob
from os import system
import pandas as pd
import sys
sys.path.append('/home/kazuki_onodera/Python')
import lgbmextension as ex
import lightgbm as lgb
import multiprocessing
import utils
uti... | {
"pile_set_name": "Github"
} |
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
@media (prefers-reduced-motion: reduce) {
.... | {
"pile_set_name": "Github"
} |
// This file was procedurally generated from the following sources:
// - src/dstr-binding/obj-ptrn-list-err.case
// - src/dstr-binding/error/cls-decl-async-gen-meth-static-dflt.template
/*---
description: Binding property list evaluation is interrupted by an abrupt completion (static class expression async generator me... | {
"pile_set_name": "Github"
} |
package com.central.common.config;
import com.central.common.utils.CustomThreadPoolTaskExecutor;
import lombok.Getter;
import lombok.Setter;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.core.task.TaskExecutor;
import org.sprin... | {
"pile_set_name": "Github"
} |
using Loon.Core;
using Loon.Core.Graphics.Opengl;
using Loon.Core.Geom;
namespace Loon.Action.Sprite {
public class Picture : LObject, ISprite {
private bool visible;
private int width, height;
private LTexture image;
public Picture(string fileName) :this(fileName, 0, 0){
}
public Picture(i... | {
"pile_set_name": "Github"
} |
{
"Configuration":
{
"timeStepSize": 0.001,
"numberOfStepsPerRenderUpdate": 2,
"particleRadius": 0.025,
"density0": 1000,
"simulationMethod": 4,
"gravitation": [0.1,-9.81,0],
"cflMethod": 0,
"cflFactor": 0.5,
"cflMaxTimeStepSize": 0.005,
"maxIterations": 100,
"maxError": 0.01,
"maxItera... | {
"pile_set_name": "Github"
} |
#include "gpgmeutils.h"
#include <stdio.h>
#define BUF_LEN 1024
jboolean
UTILS_setStringMember(JNIEnv* env, jobject self, jclass selfclass,
const char* fieldname, const char* fieldvalue)
{
//get the field from the class
jfieldID fld =
(*env)->GetFieldID(env, selfclass, fieldname,... | {
"pile_set_name": "Github"
} |
(ns prone.hiccough
"A very minimal templating DSL inspired by hiccup. Using this to avoid
depending on a specific version of a tool that most people already have
in their web stack"
(:require [clojure.string :as str]))
(defn- render-attr [[k v]]
(str " " (name k) "=\"" v "\""))
(defn tag [type attrs & con... | {
"pile_set_name": "Github"
} |
========================================
GStreamer & Bluetooth
========================================
.. contents:: 目錄
介紹
========================================
參考:
`藍牙 </multimedia/bluetooth>`_
透過 PulseAudio 串給 BlueZ
========================================
.. code-block:: sh
# 一般透過 PulseAudio 播放音樂
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017-2020 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"
} |
#include <stdio.h>
#include <objc/runtime.h>
#import <Foundation/Foundation.h>
@interface TargetClass : NSObject
@end
@interface TargetClass(LoadedMethods)
- (void) m0;
- (void) m1;
- (void) m2;
- (void) m3;
- (void) m4;
- (void) m5;
- (void) m6;
- (void) m7;
- (void) m8;
- (void) m9;
- (void) m10;
- (void) m11;
- (v... | {
"pile_set_name": "Github"
} |
{
"created_at": "2015-02-27T22:28:06.814476",
"description": "Official software for blink(1) USB RGB LED by ThingM",
"fork": false,
"full_name": "todbot/blink1",
"language": "C#",
"updated_at": "2015-02-27T23:42:10.092141"
} | {
"pile_set_name": "Github"
} |
// @flow
import { eventChannel } from 'redux-saga';
import { call } from 'redux-saga/effects';
import { CALL } from 'shared/keys';
import validateEffects from 'testSaga/validateEffects';
const identity = value => value;
test('returns error message for missing actual value', () => {
const result = validateEffects(
... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1998, 2013, 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"
} |
// Copyright 2014 Unknwon
//
// 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 writ... | {
"pile_set_name": "Github"
} |
body {
font-family: 'Helvetica', sans-serif;
}
h1 {
margin: 0;
font-size: 0.8em;
}
h2 {
margin-top: 0;
}
table {
border-collapse: collapse;
}
td {
border: 1px solid gray;
padding: 5px;
}
| {
"pile_set_name": "Github"
} |
/**
* MaNGOS is a full featured server for World of Warcraft, supporting
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
*
* Copyright (C) 2005-2014 MaNGOS project <http://getmangos.eu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Gene... | {
"pile_set_name": "Github"
} |
//
// CompatibleAnimationKeypath.swift
// Lottie_iOS
//
// Created by Tyler Hedrick on 3/6/19.
//
import Foundation
#if os(iOS) || os(tvOS) || os(watchOS)
/// An Objective-C compatible wrapper around Lottie's AnimationKeypath
@objc
public final class CompatibleAnimationKeypath: NSObject {
/// Creates a keypath ... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <PersistentConnection/NSObject-Protocol.h>
@class NSString;
@protocol PCInterfaceMonitorProtocol <NSObject>
@property(readonl... | {
"pile_set_name": "Github"
} |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Vamp feature extraction plugins using Paul Brossier's Aubio library.
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 Chris Cannam.
This program is free software; you can redistribute... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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 agre... | {
"pile_set_name": "Github"
} |
# Copyright 2019 Google LLC
#
# 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, s... | {
"pile_set_name": "Github"
} |
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not us... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
<glade-interface>
<widget class="GtkDialog" id="SelectImageDialog">
<property name="visible">True</property>
<property name="title" translatable="yes">Select Image</property>
<pr... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('findIndex', require('../findIndex'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
/*-------------------------------------------------------------------------
*
* tuptable.h
* tuple table support stuff
*
*
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/executor/tuptable.h
*
*--... | {
"pile_set_name": "Github"
} |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@page import="java.sql.*"%>
<%@page import="com.sectooladdict.database.ConnectionPoolManager"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta h... | {
"pile_set_name": "Github"
} |
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
names... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
# Copyright 2010-2014 RethinkDB, all rights reserved.
import sys
"""This script is used to generate the RDB_MAKE_SERIALIZABLE_*() and
RDB_MAKE_ME_SERIALIZABLE_*() macro definitions. Because there are so
many variations, and because they are so similar, it's easier to just
have a Python script to ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">{
"Info": [
{
"IsSuccess": "True",
"InAddress": "高雄市林園區鳳林路二段757之1號",
"InSRS": "EPSG:4326",
"InFuzzyType": "[單雙號機制]+[最近門牌號機制]",
"InFuzzyBuffer": "0",
"InIsOnlyFullMatch": "False",
"InIsLoc... | {
"pile_set_name": "Github"
} |
// Load modules
var Lab = require('lab');
var Cryptiles = require('.');
// Declare internals
var internals = {};
// Test shortcuts
var expect = Lab.expect;
var before = Lab.before;
var after = Lab.after;
var describe = Lab.experiment;
var it = Lab.test;
describe('Cryptiles', function () {
describe('#rando... | {
"pile_set_name": "Github"
} |
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sandi_meter/version'
Gem::Specification.new do |spec|
spec.name = "sandi_meter"
spec.version = SandiMeter::VERSION
spec.authors = ["Anatoli Makarevich"]
spec.email = ["makaro... | {
"pile_set_name": "Github"
} |
{
"coverage": {
"US Census": {
"geoid": "35027",
"name": "Lincoln",
"state": "New Mexico"
},
"country": "us",
"state": "nm",
"county": "Lincoln"
},
"schema": 2,
"layers": {
"addresses": [
{
"n... | {
"pile_set_name": "Github"
} |
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS B... | {
"pile_set_name": "Github"
} |
for i in range(1,10):
for j in range (1,i+1):
print(j,"x",i,"=",i*j,end='\t')
print()
print()
i=0
j=0
while i<9:
i+=1
while j<i:
j+=1
if (i%2)==0:
j=0
break
print(j,"x",i,"=",i*j,end='\t')
if i==j:
j=0
print()
... | {
"pile_set_name": "Github"
} |
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
/*
COPYING CONDITIONS NOTICE:
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 by th... | {
"pile_set_name": "Github"
} |
K 14
svn:executable
V 1
*
END
| {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Console\Tests\Helper;
use PHPUnit\Framework\TestCase;... | {
"pile_set_name": "Github"
} |
module Admin::ConsultationsHelper
def consulation_response_help_text(response)
if response.is_a?(ConsultationOutcome)
"You can add attachments after saving this page."
else
"Optional - publish the feedback received from the public. You can add attachments after saving this page."
end
end
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="8">
<results class_id="0" tracking_level="0" version="0">
<compiler>GNU C++ version 4.5.1 20100617 (prerelease)</compiler>
<platform>linux</platform>
<entries class... | {
"pile_set_name": "Github"
} |
{
"generated_in":"0.1224",
"stat":"ok",
"moderators":{
"on_this_page":"1",
"page":"1",
"perpage":"25",
"total":"1",
"moderator":{
"display_name":"Blake Whitman",
"id":"151382",
"is_plus":"1",
"is_staff":"1",
"profileurl":"http:\/\/vimeo.com\/blakewhitman",
"... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2013 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compli... | {
"pile_set_name": "Github"
} |
<?php
/**
* Mockery
*
* 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://github.com/padraic/mockery/blob/master/LICENSE
* If you did not receive a copy of the licen... | {
"pile_set_name": "Github"
} |
[package]
description = "CITA node."
name = "cita-chain"
version = "20.2.0"
authors = ["Rivtower Technologies <contact@rivtower.com>"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
dotenv = "0.13.0"
clap = "2"
serde_json = "1.0"
cita-logger = "0.1.1"
cita-types = { git = "https://github.com/citahub/cita-commo... | {
"pile_set_name": "Github"
} |
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="col... | {
"pile_set_name": "Github"
} |
// Spinning Icons
// --------------------------
.#{$fa-css-prefix}-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.#{$fa-css-prefix}-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-key... | {
"pile_set_name": "Github"
} |
ace.define("ace/snippets/erlang",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText = "# module and export all\n\
snippet mod\n\
-module(${1:`Filename('', 'my')`}).\n\
\n\
-compile([export_all]).\n\
\n\
start() ->\n\
${2}\n\
\n\
stop() ->\n\
ok.\n\
#... | {
"pile_set_name": "Github"
} |
/*
Copyright 2013 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 to in ... | {
"pile_set_name": "Github"
} |
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2017 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as 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"
} |
open Core.Std
open Async.Std
open Cohttp
open Cohttp_async
let handle_put uri body =
let path = Uri.path uri in
try_with (fun () ->
let filename = Filename.concat "." path in
Writer.with_file filename ~f:(fun w ->
Pipe.transfer_id (Body.to_pipe body) (Writer.pipe w)))
>>= function
| Ok _ -... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017-2020 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"
} |
---
blog: http://articles.fortawesome.com/
font:
myfonts: http://www.myfonts.com/fonts/exljbris/museo-slab/
name: Museo Slab
url: http://www.exljbris.com/museoslab.html
github: FortAwesome/Font-Awesome
images:
- font-awesome-ar21.svg
- font-awesome-icon.svg
layout: default
logohandle: font-awesome
sort: font awes... | {
"pile_set_name": "Github"
} |
/* */
"use strict";
exports.__esModule = true;
exports.default = typeof global === "undefined" ? self : global; | {
"pile_set_name": "Github"
} |
<?php
namespace Drupal\field\Tests\Number;
use Drupal\Component\Utility\Unicode;
use Drupal\field\Entity\FieldConfig;
use Drupal\node\Entity\Node;
use Drupal\simpletest\WebTestBase;
use Drupal\field\Entity\FieldStorageConfig;
/**
* Tests the creation of numeric fields.
*
* @group field
*/
class NumberFieldTest e... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env ruby
require_relative '../example'
example %q{
require 'monitor'
class Account
attr_reader :balance
def initialize
@balance=0
@monitor = Monitor.new
end
def transaction(amount)
@monitor.synchronize do
# Only one thread at a time here
@balance += amount
end
en... | {
"pile_set_name": "Github"
} |
function alpha = circ_vmrnd(theta, kappa, n)
% alpha = circ_vmrnd(theta, kappa, n)
% Simulates n random angles from a von Mises distribution, with preferred
% direction thetahat and concentration parameter kappa.
%
% Input:
% [theta preferred direction, default is 0]
% [kappa width, default is 1]
... | {
"pile_set_name": "Github"
} |
abgr 0a932e831efd4ec22f68b25278bac402
argb 4f575be3cd02799389f581df99c4de38
bgr24 fa43e3b2abfde8d9e60e157a9acc553d
bgra 4e2e689897ee7a8e42b16234597bab35
gbrap 0d1eb2c39e291c53c57302cdc653c2fc
gbrp e572d53183f3f2ed3951aa9940d440a1
gb... | {
"pile_set_name": "Github"
} |
# NOTE: Assertions have been autogenerated by utils/update_mca_test_checks.py
# RUN: llvm-mca -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -instruction-tables < %s | FileCheck %s
kaddd %k0, %k1, %k2
kaddq %k0, %k1, %k2
kandd %k0, %k1, %k2
kandq %k0, %k1, %k2
kandnd ... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
"""
inkex.py
A helper module for creating Inkscape extensions
Copyright (C) 2005,2007 Aaron Spike, aaron@ekips.org
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 versio... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// Contributors:
// Justin Palmer (http://encytemedia.com/)
// Mark Pilgrim (http://diveintomark.org/)
// Martin Bialasinki
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see... | {
"pile_set_name": "Github"
} |
{
"pip": [
"dcos==0.1.13",
"git+https://github.com/mesosphere/dcos-cassandra.git#dcos-cassandra=0.1.0"
]
}
| {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 8860c86740da55b47a675eef13647a09
ScriptedImporter:
fileIDToRecycleName:
4800000: MainAsset
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
| {
"pile_set_name": "Github"
} |
#!/usr/local/bin/dumb-init /bin/bash
# Load the .env file into the environment.
if [ "$ENV" == 'staging' ]; then
# shellcheck disable=SC2046
export $(grep -v '^#' app/app/.env | xargs)
fi
# Settings
# Web
GC_WEB_WORKER=${GC_WEB_WORKER_TYPE:-runserver_plus}
# General / Overrides
FORCE_PROVISION=${FORCE_PROVIS... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
// Copyright (c) 2012 Jakob Progsch, Vaclav Zeman
#pragma once
#include <condition_variable>
#incl... | {
"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.
/**
* If the argument len is not a Number, then the length property of
* the newly constructed object is set to 1 and the 0 property of
* the newly constructed object is set to len
*
... | {
"pile_set_name": "Github"
} |
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-stepadjustments.html
module Stratosphere.ResourceProperties.AutoScalingScalingPolic... | {
"pile_set_name": "Github"
} |
using FluentAssertions;
using FunctionalTests.Base;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.IO;
using System.Linq... | {
"pile_set_name": "Github"
} |
// =================================================================================================
// Copyright 2011 Twitter, Inc.
// -------------------------------------------------------------------------------------------------
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use ... | {
"pile_set_name": "Github"
} |
//! A type for working one-dimensional ranges.
use super::Scalar;
/// Some start and end position along a single axis.
///
/// As an example, a **Rect** is made up of two **Range**s; one along the *x* axis, and one along
/// the *y* axis.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct Range {
/// The start... | {
"pile_set_name": "Github"
} |
import Link from 'next/link'
export default function Home() {
return (
<>
<ul>
<li>
<Link href="/b" as="/a">
<a>a</a>
</Link>
</li>
<li>
<Link href="/a" as="/b">
<a>b</a>
</Link>
</li>
</ul>
<img src... | {
"pile_set_name": "Github"
} |
<?php
/**
* Yaf.app Framework
*
* @author xudianyang<120343758@qq.com>
* @copyright Copyright (c) 2014 (http://www.phpboy.net)
*/
namespace Db\Sql\Predicate;
class IsNotNull extends IsNull
{
protected $specification = '%1$s IS NOT NULL';
}
| {
"pile_set_name": "Github"
} |
const chai = require( 'chai' );
const chaiAsPromised = require( 'chai-as-promised' );
const { Then, When, Before } = require( 'cucumber' );
const { expect } = require( 'chai' );
const { isShould } = require( '../../util/index.js' );
const BASE_SEL = '.m-global-search';
const TRIGGER_SEL = BASE_SEL + ' [data-js-hook="b... | {
"pile_set_name": "Github"
} |
#ifndef HEADER_CURL_TELNET_H
#define HEADER_CURL_TELNET_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* ... | {
"pile_set_name": "Github"
} |
-----BEGIN RSA PRIVATE KEY-----
MIIJKQIBAAKCAgEA5F2mqEsdntPAEij6HfCYnKiLMGnm6PcfsaFYeFYO1EufOjN5
ZJP90cr3CrCnN9JOAdpBbTpzA0RcIcAdWBzvNNAtIMvSfi22WJYVjzD0Bvs2rCYH
76Yc6vfx7y9zXZcanh8S/2t7B64xmxOWL4RE+f8HWTijAWlyUFDk+DuJWpQK2o0b
hE4S8mX+uUl3afNW5CiPsRky1N1v4a7/J2b7cG+7pDWUcjnvmNCN84v+gSucXfKg
/LiAnZgY7xih2ePEhkkIqn6kU0cV... | {
"pile_set_name": "Github"
} |
#if __cplusplus >= 201103L
/************************************************************************
*Description: *
*Author: realfan *
*Date of Created: ... | {
"pile_set_name": "Github"
} |
---
archs: [ armv7, armv7s, arm64, i386, x86_64 ]
platform: ios
install-name: /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
current-version: 1
compatibility-version: 1
exports:
- archs: [ armv7, armv7s, arm64, i386, x86_64 ]
symbols: ... | {
"pile_set_name": "Github"
} |
<h1 style="background-color:#272b34; color: #dee3ec;">Peacocks In Space</h1>
<pre style="font-family:Monaco, monospace; padding:2em; background-color: #2b303b; color: #dee3ec;">
<?php
<span style="color: #26A6A6;">namespace</span> Illuminate\Container;
<span style="color: #26A6A6;">use</span> Closure;
<span style=... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Page 1005</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft00{font-size:9px;font-family:Times;color:#000000;}
.ft01{font-size:11px;font-... | {
"pile_set_name": "Github"
} |
(**************************************************************************)
(* Lablgtk - Examples *)
(* *)
(* There is no specific licensing policy, but you may freely *)
(* take i... | {
"pile_set_name": "Github"
} |
#include "parent_header.h"
#include "cycling_header_1.h"
int main() {
return 0;
}
| {
"pile_set_name": "Github"
} |
var baseSortedIndex = require('./_baseSortedIndex');
/**
* Uses a binary search to determine the lowest index at which `value`
* should be inserted into `array` in order to maintain its sort order.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Array
* @param {Array} array The sorted array to inspect.
*... | {
"pile_set_name": "Github"
} |
import Reflux from 'reflux';
import { CheckListStoreMixin, StoreLoadingMixin, WaitForStoreMixin } from '../../mixins';
import Actions from './AdminsActions';
import SessionStore from '../Session/SessionStore';
import SessionActions from '../Session/SessionActions';
import AdminsInvitationsStore from './AdminsInvitati... | {
"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"
} |
// Copyright 2014 Wouter van Oortmerssen. 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 b... | {
"pile_set_name": "Github"
} |
// Go support for Protocol Buffers - Google's data interchange format
//
// Copyright 2016 The Go Authors. All rights reserved.
// https://github.com/golang/protobuf
//
// 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"
} |
<?xml version="1.0"?>
<!--
Copyright (c) 1997, 2008, 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 on... | {
"pile_set_name": "Github"
} |
.class public final Lcom/facebook/places/model/PlaceSearchRequestParams;
.super Ljava/lang/Object;
# instance fields
.field private final categories:Ljava/util/Set;
.annotation system Ldalvik/annotation/Signature;
value = {
"Ljava/util/Set",
"<",
"Ljava/lang/String;",
... | {
"pile_set_name": "Github"
} |
IF EXISTS ( SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'dbo.RunLoanAccountingClosure')
AND type = N'P' )
DROP PROCEDURE [dbo].[RunLoanAccountingClosure]
GO
IF EXISTS ( SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(... | {
"pile_set_name": "Github"
} |
// Run: %dxc -T vs_6_0 -E main
// CHECK: OpDecorate %specConst SpecId 10
[[vk::constant_id(10)]]
// CHECK: %specConst = OpSpecConstant %int 12
const int specConst = 12;
// TODO: The frontend parsing hits assertion failures saying cannot evaluating
// as constant int for the following usages.
/*
cbuffer Data {
flo... | {
"pile_set_name": "Github"
} |
#===============================================================================
# POLLER (S1_Poller)
#===============================================================================
# Description: The poller is responsible for:
# - Active data acquisition
# - Local passive data acquisition
# https://shinken.readthedoc... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.