text stringlengths 2 99.9k | meta dict |
|---|---|
var map = require('./map');
/**
* Extract a list of property values.
*/
function pluck(arr, propName){
return map(arr, propName);
}
module.exports = pluck;
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=constant.IPPROTO_IPV6.html">
</head>
<body>
<p>Redirecting to <a href="constant.IPPROTO_IPV6.html">constant.IPPROTO_IPV6.html</a>...</p>
<script>location.replace("constant.IPPROTO_IPV6.html" + location.search + location.hash);... | {
"pile_set_name": "Github"
} |
// generated by gengoos.go using 'go generate'
package sys
const GOOS = `darwin`
const GoosAndroid = 0
const GoosDarwin = 1
const GoosDragonfly = 0
const GoosFreebsd = 0
const GoosLinux = 0
const GoosNacl = 0
const GoosNetbsd = 0
const GoosOpenbsd = 0
const GoosPlan9 = 0
const GoosSolaris = 0
const GoosWindows = 0
| {
"pile_set_name": "Github"
} |
//
// RACSubscriber.m
// ReactiveCocoa
//
// Created by Josh Abernathy on 3/1/12.
// Copyright (c) 2012 GitHub, Inc. All rights reserved.
//
#import "RACSubscriber.h"
#import "RACSubscriber+Private.h"
#import "RACEXTScope.h"
#import "RACCompoundDisposable.h"
@interface RACSubscriber ()
// These callbacks should ... | {
"pile_set_name": "Github"
} |
#!/bin/sh
#/ Usage: test.sh <pkg_ident>
#/
#/ Example: test.sh core/php/7.2.8/20181108151533
#/
set -euo pipefail
if [[ -z "${1:-}" ]]; then
grep '^#/' < "${0}" | cut -c4-
exit 1
fi
TEST_PKG_IDENT="${1}"
export TEST_PKG_IDENT
hab pkg install core/bats --binlink
hab pkg install "${TEST_PKG_IDENT}"
bats "$(dirname ... | {
"pile_set_name": "Github"
} |
{
"kind": "t3",
"data": {
"domain": "self.AskReddit",
"banned_by": null,
"media_embed": {},
"subreddit": "AskReddit",
"selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>Hey readers! You may remember that some time ago we had a <a href=\"https://www.reddit.com/r/AskReddi... | {
"pile_set_name": "Github"
} |
git-o-matic
===========
A tool to monitor git repositories and automatically pull & push changes
## Installation
### Packages & Binaries
- Arch Linux: [gitomatic](https://aur.archlinux.org/packages/gitomatic/)
- [Binaries](https://github.com/muesli/gitomatic/releases) for Linux, macOS & Windows
### From Source
Ma... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "WCPayBaseMessageCellView.h"
@class WCPayTransferMessageViewModel;
@interface WCPayTransferMessageCellView : WCPayBaseMessage... | {
"pile_set_name": "Github"
} |
/*
Copyright 2015 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | {
"pile_set_name": "Github"
} |
/*
* File: z_bg_haka_zou.c
* Overlay: ovl_Bg_Haka_Zou
* Description: Statue and Wall (Shadow Temple)
*/
#include "z_bg_haka_zou.h"
#define FLAGS 0x00000010
#define THIS ((BgHakaZou*)thisx)
void BgHakaZou_Init(Actor* thisx, GlobalContext* globalCtx);
void BgHakaZou_Destroy(Actor* thisx, GlobalContext* globalCtx)... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright 2016 Intuit
* <p>
* 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
* <p>
* http://www.apache.o... | {
"pile_set_name": "Github"
} |
export default {
firstMethod: 'Elimde bir dizim var, Bununla şunu yapmak istiyorum: ',
findMethod: "Şunu bulmaya çalışıyorum: ",
methodOptions: 'Diziyle yapacağım şey, ',
methodTypes: {
add: 'ekleme işlemi',
remove: 'silme işlemi',
find: 'arama işlemi',
'iterate by': 'tekrarla',
... | {
"pile_set_name": "Github"
} |
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
extern crate bench_collections_gtest;
#[cfg(feature = "libfuzzer")]
extern crate gecko_fuzz_targets;
extern crate gkr... | {
"pile_set_name": "Github"
} |
module simple_op(
clk,
reset,
a,
b,
out,
clk_out
);
input clk;
input reset;
input [1:0] a,b;
output [2:0] out;
output clk_out;
assign clk_out = clk;
always @(posedge clk)
begin
case(reset)
1'b0: out <= a / b;
... | {
"pile_set_name": "Github"
} |
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1483056..26d2b9a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -473,6 +473,7 @@
execute_process(COMMAND gimptool-2.0 --libs-noui OUTPUT_VARIABLE GIMP2_LIBRARIES OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND gimptool-2.0 --cflags-noui OUTPU... | {
"pile_set_name": "Github"
} |
(ns yada.authentication.http-basic
(:require
[clojure.data.codec.base64 :as base64]
[yada.authentication :as ya]
[yada.context :as ctx]
[yada.syntax :as syn]
[clojure.tools.logging :as log]
[yada.yada :as yada]))
(def CTL-set (set (map byte (identity syn/CTL))))
(defn- parse-credentials
[credent... | {
"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.
/*
Package trace implements tracing of requests and long-lived objects.
It exports HTTP interfaces on /debug/requests and /debug/events.
A trace.Trace provides... | {
"pile_set_name": "Github"
} |
from __future__ import absolute_import, division, unicode_literals
# pylint:disable=protected-access
from pip._vendor.six import text_type
import re
from . import base
from .. import _ihatexml
from .. import constants
from ..constants import namespaces
from .._utils import moduleFactoryFactory
tag_regexp = re.compi... | {
"pile_set_name": "Github"
} |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a co... | {
"pile_set_name": "Github"
} |
======================
Point of Sale - Places
======================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https... | {
"pile_set_name": "Github"
} |
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | {
"pile_set_name": "Github"
} |
<template>
<is-main-template
title="project_edit"
:title-params="{ entity: item && item.name }"
>
<project-form :handle-submit="onSendForm" :item="item" />
</is-main-template>
</template>
<script>
import { mapActions, mapGetters } from 'vuex'
import ProjectForm from './Form'
export default {
compo... | {
"pile_set_name": "Github"
} |
/***********************************************************************************************************************
* OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without m... | {
"pile_set_name": "Github"
} |
package saros.stf.test.stf.contextmenu;
import static saros.stf.client.tester.SarosTester.ALICE;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.server.rmi.superbot.component.contextmenu.peview.IContextMenusInPEView;
import saros.stf.... | {
"pile_set_name": "Github"
} |
<events xmlns="http://xmlns.opennms.org/xsd/eventconf">
<event>
<mask>
<maskelement>
<mename>id</mename>
<mevalue>.1.3.6.1.4.1.629.1.50.11.1</mevalue>
</maskelement>
<maskelement>
<mename>generic</mename>
<mevalue>6</mevalue>
<... | {
"pile_set_name": "Github"
} |
// @(#)root/tmva/pymva $Id$
// Author: Anirudh Dagar, 2020
#include <Python.h>
#include "TMVA/MethodPyTorch.h"
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
#include <numpy/arrayobject.h>
#include "TMVA/Types.h"
#include "TMVA/Config.h"
#include "TMVA/ClassifierFactory.h"
#include "TMVA/Results.h"
#include "TMVA... | {
"pile_set_name": "Github"
} |
const noop: (...args: any[]) => void
= () => { };
const noarg: <T>(f: () => T) => (...args: any[]) => void
= (f) => () => f();
/** Compose a unary function with an n-ary function */
const compose = function <T extends any[], U, V> (fa: (v: U) => V, fb: (...x: T) => U): (...x: T) => V {
return function (...args: T) ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable ... | {
"pile_set_name": "Github"
} |
package org.jzy3d.plot3d.rendering.image;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Transparency;
import java.awt.color.ColorSpace;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.awt.image.ComponentColorModel;
import java.awt.image.DataBuffer;
import jav... | {
"pile_set_name": "Github"
} |
using UnityEditor;
using UnityEngine;
using System.IO;
using System.Collections.Generic;
namespace BundleManager
{
public static class BundleDataManager
{
public static BundleData GetBundleData(string name)
{
BundleData ret = null;
m_dataDict.TryGetValue(name, out ret);... | {
"pile_set_name": "Github"
} |
/*
* drivers/uio/uio_dmem_genirq.c
*
* Userspace I/O platform driver with generic IRQ handling code.
*
* Copyright (C) 2012 Damian Hobson-Garcia
*
* Based on uio_pdrv_genirq.c by Magnus Damm
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2008, 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"
} |
<?php
/*
* Chive - web based MySQL database management
* Copyright (C) 2010 Fusonic GmbH
*
* This file is part of Chive.
*
* Chive 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 o... | {
"pile_set_name": "Github"
} |
<html>
<!--
Copyright (c) 2002 Trustees of Indiana University
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)
-->
<title>Boost Graph Library Users</title>
<body BGCOLOR="#ffffff" LINK="... | {
"pile_set_name": "Github"
} |
namespace Autofac.Web
{
using Extensions.DependencyInjection;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
public class Program
{
public static void Main(string[] args) => CreateWebHostBuilder(args).Build().Run();
public static IWebHostBuilder CreateWebHostBuild... | {
"pile_set_name": "Github"
} |
//
// ViewController.swift
// GridViewExample
//
// Created by Kyohei Ito on 2016/10/30.
// Copyright © 2016年 Kyohei Ito. All rights reserved.
//
import UIKit
import GridView
extension UIColor {
fileprivate convenience init(hex: Int, alpha: CGFloat = 1) {
let red = CGFloat((hex & 0xFF0000) >> 16) / 25... | {
"pile_set_name": "Github"
} |
//
// CategoryViewController.swift
// Sileo
//
// Created by CoolStar on 7/31/19.
// Copyright © 2019 CoolStar. All rights reserved.
//
import Foundation
class CategoryViewController: UITableViewController, UIViewControllerPreviewingDelegate {
public var repoContext: Repo?
private var categories: [St... | {
"pile_set_name": "Github"
} |
/***************************************
Helper functions for printf and the like
Mac OSX specific code
Copyright (c) 1995-2020 by Rebecca Ann Heineman <becky@burgerbecky.com>
It is released under an MIT Open Source license. Please see LICENSE for
license details. Yes, you can use it in a commer... | {
"pile_set_name": "Github"
} |
/*
* The setup file for ethernet related hardware on PMC-Sierra MSP processors.
*
* Copyright 2010 PMC-Sierra, Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either versio... | {
"pile_set_name": "Github"
} |
tinyMCE.addI18n('is.table_dlg',{
general_tab:"General",
advanced_tab:"Advanced",
general_props:"General properties",
advanced_props:"Advanced properties",
rowtype:"Row in table part",
title:"Insert/Modify table",
width:"Width",
height:"Height",
cols:"Cols",
rows:"Rows",
cellspacing:"Cellspacing",
cellpaddin... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_08) on Tue Jun 03 16:15:18 GMT-05:00 2008 -->
<TITLE>
soot.jimple.toolkits.scalar (Soot API)
</TITLE>
<META NAME="keywords" CONTENT="soot.jimple.too... | {
"pile_set_name": "Github"
} |
<ol class="breadcrumb">
<?php
for ($i=0; $i<sizeof($breadcrumb); $i++)
{
$active = ($i==sizeof($breadcrumb)-1 || $breadcrumb[$i]['url']=='#') ? 'active' : '';
$name = $breadcrumb[$i]['name'];
if ($active)
{
echo "<li class='$active'>$name</li>";
}
else
{
$url = $breadcrumb[$i]['url'];... | {
"pile_set_name": "Github"
} |
// stdafx.cpp : source file that includes just the standard includes
// modeless.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This... | {
"pile_set_name": "Github"
} |
https://www.mediawiki.org/wiki/Wikimedia_Apps/iOS_FAQ
| {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2015 Ericson and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.... | {
"pile_set_name": "Github"
} |
#ifndef SQUASHFS_FS
#define SQUASHFS_FS
/*
* Squashfs
*
* Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
* Phillip Lougher <phillip@squashfs.org.uk>
*
* 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 ... | {
"pile_set_name": "Github"
} |
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | {
"pile_set_name": "Github"
} |
#include <ccan/breakpoint/breakpoint.h>
#include <ccan/breakpoint/breakpoint.c>
#include <ccan/tap/tap.h>
int main(void)
{
/* This is how many tests you plan to run */
plan_tests(2);
breakpoint();
ok1(breakpoint_initialized);
ok1(!breakpoint_under_debug);
/* This exits depending on whether all tests passed */... | {
"pile_set_name": "Github"
} |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
@class MSBitmapEditEventHandler, MSBitmapLayer, NSBezierPath;
@interface MSBitmapEditor : NSObject
{
MSBitmapEditEventHandler *_eventHandler;
}
@propert... | {
"pile_set_name": "Github"
} |
#include <vector>
#include "gtest/gtest.h"
#include "caffe/blob.hpp"
#include "caffe/common.hpp"
#include "caffe/filler.hpp"
#include "caffe/layers/pooling_layer.hpp"
#ifdef USE_CUDNN
#include "caffe/layers/cudnn_pooling_layer.hpp"
#endif
#include "caffe/test/test_caffe_main.hpp"
#include "caffe/test/test_gradient_... | {
"pile_set_name": "Github"
} |
/*
* This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
Matthias Butz <matze@odinms.de>
Jan Christian Meyer <vimes@odinms.de>
This program is free software: you can redistribute it and/or modify
it under th... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" standalone="no"?>
<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 1.0 Partwise//EN"
"http://www.musicxml.org/dtds/partwise.dtd">
<score-partwise>
<work>
<work-number>K. 331</work-number>
<work-title>Piano Sonata in A Major</work-title>
</work>
<identification>
<creator type=... | {
"pile_set_name": "Github"
} |
.class public abstract Lcom/xiaomi/f/a/f;
.super Ljava/lang/Object;
# interfaces
.implements Ljava/lang/Cloneable;
# static fields
.field protected static final a:C = '$'
.field protected static b:Ljava/util/List;
.annotation system Ldalvik/annotation/Signature;
value = {
"Ljava/util/List",
... | {
"pile_set_name": "Github"
} |
#ifndef _GEOMETRY_H_
#define _GEOMETRY_H_
#ifdef __cplusplus
extern "C" {
#endif
void dist_mic(const float* xyz, const int* pairs, const float* box_matrix,
float* distance_out, float* displacement_out,
const int n_frames, const int n_atoms, const int n_pairs);
void dist(const float* xyz, c... | {
"pile_set_name": "Github"
} |
//
// Prefix header
//
// The contents of this file are implicitly included at the beginning of every source file.
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif
| {
"pile_set_name": "Github"
} |
// Copyright 2018 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 errors implements functions to manipulate errors.
package errors
import (
"errors"
"fmt"
"google.golang.org/protobuf/internal/detrand"
)
// Err... | {
"pile_set_name": "Github"
} |
/**
* @author Serhii Mamontov
* @version 4.14.0
* @since 4.14.0
* @copyright © 2010-2020 PubNub, Inc.
*/
#import "PNRemoveMembershipsAPICallBuilder.h"
#import "PNAPICallBuilder+Private.h"
#pragma mark Interface implementation
@implementation PNRemoveMembershipsAPICallBuilder
#pragma mark - Information
@dynam... | {
"pile_set_name": "Github"
} |
<?php
/**
* This file houses the MpmClassUndefinedException class.
*
* @package mysql_php_migrations
* @subpackage Exceptions
* @license http://www.opensource.org/licenses/bsd-license.php The New BSD License
* @link http://code.google.com/p/mysql-php-migrations/
*/
/**
* MpmClassUndefinedException... | {
"pile_set_name": "Github"
} |
// Copyright 2015 Joyent, Inc.
var algInfo = {
'dsa': {
parts: ['p', 'q', 'g', 'y'],
sizePart: 'p'
},
'rsa': {
parts: ['e', 'n'],
sizePart: 'n'
},
'ecdsa': {
parts: ['curve', 'Q'],
sizePart: 'Q'
},
'ed25519': {
parts: ['R'],
normalize: false,
sizePart: 'R'
}
};
algInfo['curve25519'] = algInfo... | {
"pile_set_name": "Github"
} |
/* Copyright 2019 The Brave Authors. All rights reserved.
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef BRAVE_COMPONENTS_BRAVE_SHIELDS_BROWSER_BRAVE_SHI... | {
"pile_set_name": "Github"
} |
#
# The Python Imaging Library.
# $Id: TgaImagePlugin.py 2134 2004-10-06 08:55:20Z fredrik $
#
# TGA file handling
#
# History:
# 95-09-01 fl created (reads 24-bit files only)
# 97-01-04 fl support more TGA versions, including compressed images
# 98-07-04 fl fixed orientation and alpha layer bugs
# 98-09-11 fl ... | {
"pile_set_name": "Github"
} |
/*
* Quasar: lightweight threads and actors for the JVM.
* Copyright (c) 2018, Parallel Universe Software Co. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (p... | {
"pile_set_name": "Github"
} |
using PlatoCore.Stores.Abstractions;
namespace Plato.Twitter.Stores
{
public interface ITwitterSettingsStore<T> : ISettingsStore<T> where T : class
{
}
}
| {
"pile_set_name": "Github"
} |
Hungarian Academy of Fine Arts Budapest
| {
"pile_set_name": "Github"
} |
apiVersion: v1
kind: Service
metadata:
name: laravel-api
#namespace: laravel
spec:
ports:
- name: pat-api-port
port: 80
targetPort: pathao-port
selector:
app: laravel-app
type: LoadBalancer
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2018 - The MegaMek Team
*
* 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 progr... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<title>README Reference</title>
<link rel="stylesheet" type="text/css" href="css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="css/highlight.css" />
<meta charset="utf-8">
<script src="js/jquery.min.js" defer></script>
<script src="js/jazzy... | {
"pile_set_name": "Github"
} |
using System;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Web.Http.Controllers;
using System.Web.Http.Description;
using System.Xml.XPath;
namespace $rootnamespace$.Areas.HelpPage
{
/// <summary>
/// A custom <see cref="IDocumentationProvider"/> that reads the API docum... | {
"pile_set_name": "Github"
} |
@charset "UTF-8";
/*!
* reveal.js
* http://lab.hakim.se/reveal-js
* MIT licensed
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
/*********************************************
* RESET STYLES
*********************************************/
html, body, .reveal div, .reveal span, .reveal applet,... | {
"pile_set_name": "Github"
} |
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2015 Davide Guerri <davide.guerri@gmail.com>
#
#
# 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/L... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2013-2017 Altera Corporation <www.altera.com>
*/
#ifndef _CLOCK_MANAGER_H_
#define _CLOCK_MANAGER_H_
phys_addr_t socfpga_get_clkmgr_addr(void);
#ifndef __ASSEMBLY__
void cm_wait_for_lock(u32 mask);
int cm_wait_for_fsm(void);
void cm_print_clock_quick_summ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en-US" class="reftest-paged">
<head>
<title>CSS Test: CSS 2.1 page-break-inside:avoid</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012">
<link rel="help" href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">
<... | {
"pile_set_name": "Github"
} |
{
"logs": [
{
"outputFile": "/usr/local/google/home/benweiss/Android/pi-dev/developers/build/prebuilts/gradle/AutofillFramework/Application/build/intermediates/incremental/mergeDebugResources/merged.dir/values-or/values-or.xml",
"map": [
{
"source"... | {
"pile_set_name": "Github"
} |
# vfile-location
[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
Convert between positions (line and column-based)... | {
"pile_set_name": "Github"
} |
%% start of file `moderncvheadii.sty'.
%% Copyright 2006-2015 Xavier Danaux (xdanaux@gmail.com).
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License version 1.3c,
% available at http://www.latex-project.org/lppl/.
%-----------------------------------------------... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="no-store" />
<m... | {
"pile_set_name": "Github"
} |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.CodeAnalysis.Diagnostics
{
internal static class IDEDiagnosticIds
{
public const string SimplifyNamesDiagnosticId = "IDE0... | {
"pile_set_name": "Github"
} |
import * as $ from "jquery";
import MasonryGallery from '../../libs/masonry/MasonryGallery';
import AjaxEvents from "../ajax/AjaxEvents";
import Loader from "../../libs/loader/Loader";
export default class WindowEvents {
public attachEvents()
{
this.attachLoadEventsForMason... | {
"pile_set_name": "Github"
} |
/*
# Licensed Materials - Property of IBM
# Copyright IBM Corp. 2015, 2016
*/
package quarks.runtime.etiao;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorCompletionService;
impo... | {
"pile_set_name": "Github"
} |
package controlP5;
/**
* controlP5 is a processing gui library.
*
* 2006-2012 by Andreas Schlegel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the L... | {
"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 ___WSA_FD_TYPES_H
#define ___WSA_FD_TYPES_H
#include <psdk_inc/_socket_types.h>
#ifndef FD_SE... | {
"pile_set_name": "Github"
} |
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# d... | {
"pile_set_name": "Github"
} |
"phoenix_stun_with_supernova"
{
"desc" "#DOTA_ChallengeDesc_Phoenix_Stun_With_Supernova"
"status_text" "#DOTA_ChallengeStatusText_Phoenix_Stun_With_Supernova"
"image" "images/spellicons/phoenix_supernova.png"
"requiredhero" "phoenix"
"events"
{
"matching_type" "linear_series"
"query"
{
"hurl_stun"
... | {
"pile_set_name": "Github"
} |
// Learn cc.Class:
// - [Chinese] http://docs.cocos.com/creator/manual/zh/scripting/class.html
// - [English] http://www.cocos2d-x.org/docs/creator/en/scripting/class.html
// Learn Attribute:
// - [Chinese] http://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
// - [English] http://www.cocos2d... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2014. Real Time Genomics Limited.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OfficeDevPnP.MSGraphAPIDemo.Models
{
/// <summary>
/// Defines a user's contact
/// </summary>
public class Contact : BaseModel
{
/// <summary>
/// The business address of the contact
... | {
"pile_set_name": "Github"
} |
import { baseDecoratorFunction } from "./base-decorator.function"
import { AnnotationTypes } from '../core/validator.static';
import { BaseConfig} from "../models/config/base-config";
export function mac(config?:BaseConfig) {
return baseDecoratorFunction (AnnotationTypes.mac,config)
}
| {
"pile_set_name": "Github"
} |
/*****************************************************************************
* macosx.m: Mac OS X module for vlc
*****************************************************************************
* Copyright (C) 2001-2014 VLC authors and VideoLAN
*
* Authors: Felix Paul Kühne <fkuehne at videolan dot org>
* ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 XLAB, Ltd.
*
* This work is open source software, licensed under the terms of the
* BSD license as described in the LICENSE file in the top-level directory.
*/
package util_test
import (
. "gopkg.in/check.v1"
"testing"
)
// Hook up gocheck into the "go test" runner.
func Test(t *testin... | {
"pile_set_name": "Github"
} |
Intended Status: Informational O. Gudmundsson
Network Working Group OGUD Consulting LLC
Internet-Draft J. Ihren
Expires: August 21, 2008 AAB
... | {
"pile_set_name": "Github"
} |
"""Tests of the builder registry."""
import unittest
from bs4 import BeautifulSoup
from bs4.builder import (
builder_registry as registry,
HTMLParserTreeBuilder,
TreeBuilderRegistry,
)
try:
from bs4.builder import HTML5TreeBuilder
HTML5LIB_PRESENT = True
except ImportError:
HTML5LIB_PRESENT =... | {
"pile_set_name": "Github"
} |
{
"component": true,
"usingComponents": {
"l-icon":"../icon/index",
"l-badge":"../badge/index",
"l-tabpanel":"../tabpanel/index"
}
} | {
"pile_set_name": "Github"
} |
gcr.io/google_containers/hyperkube-ppc64le:v1.18.0-beta.1
| {
"pile_set_name": "Github"
} |
{
"cluster-state": "bits:10 distributor:10",
"distribution": "redundancy 3\ninitial_redundancy 0\nensure_primary_persisted true\nready_copies 0\nactive_per_leaf_group false\ndistributor_auto_ownership_transfer_on_whole_group_down true\ngroup[0].index \"invalid\"\ngroup[0].name \"invalid\"\ngroup[0].capacity 1.0\ngr... | {
"pile_set_name": "Github"
} |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddForeignKeysInPmieducarCandidatoReservaVagaTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
... | {
"pile_set_name": "Github"
} |
import Foundation
import CoreBluetooth
import RxSwift
public class BleAdvertisementContent {
public private(set) var polarHrAdvertisementData = BlePolarHrAdvertisement()
public private(set) var rssiFilter = BleRssiFilter()
private let POLAR_OLD_H7_MANUFACTURER_DATA_LENGTH = 3
private let POLAR_H7_UPDA... | {
"pile_set_name": "Github"
} |
train_net: "matlab/FRCNN/For_LOC/two/vgg19/train.proto"
base_lr: 0.001
lr_policy: "step"
gamma: 0.1
stepsize: 70000
max_iter: 90000
display: 20
average_loss: 100
momentum: 0.9
weight_decay: 0.0005
# function
snapshot: 10000
# We still use the snapshot prefix, though
snapshot_prefix: "matlab/FRCNN/For_LOC/two/vgg19/snap... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of PHPExifTool.
*
* (c) 2012 Romain Neutron <imprec@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPExiftool\Driver\Tag\Minolta;
use JMS\Serializer\Annotation\ExclusionPolicy;... | {
"pile_set_name": "Github"
} |
/*
* Author: Landon Fuller <landonf@plausible.coop>
*
* Copyright (c) 2012-2013 Plausible Labs Cooperative, Inc.
* All rights reserved.
*
* 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 Softwa... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.