text stringlengths 2 99.9k | meta dict |
|---|---|
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#000000"/>
<corners
android:topLeftRadius="2dip"
android:topRightRadius="2dip"
android:bottomRightRadius="2dip"
android:bottomLeftRadius... | {
"pile_set_name": "Github"
} |
// Cryptol AES Implementation
// Copyright (c) 2010-2013, Galois Inc.
// www.cryptol.net
// You can freely use this source code for educational purposes.
// This is a fairly close implementation of the FIPS-197 standard:
// http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
module AES::Algorithm where
imp... | {
"pile_set_name": "Github"
} |
(lang dune 1.4)
| {
"pile_set_name": "Github"
} |
pigment{ // ------------------------------------------------------------------------------
pavement // pavement pattern in the xz plane
number_of_sides 4 // 3 triangle, 4 quadrat, 6 hexagon
number_of_tiles 6 // (1 to 5 or 6): the number of basic tiles to combine togeth... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17156" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="EFX-fO-O... | {
"pile_set_name": "Github"
} |
#%RAML 1.0
title: API
types:
basetype:
type: object
properties:
//: string
subtype:
type: basetype
properties:
attr: string
example:
attr: "a" | {
"pile_set_name": "Github"
} |
Detailed
Pastel
Melancholy
Noir
HDR
Vintage
Long Exposure
Horror
Sunny
Bright
Hazy
Bokeh
Serene
Texture
Ethereal
Macro
Depth of Field
Geometric Composition
Minimal
Romantic
| {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgAtLyIPyhm1pN6hGd
xs7wgpz6d+wlAuNhGO3NYZGjfHWhRANCAATYEjw2hgV15CXijoqS5zoXJSfAfEsl
MYp4pFpwhhBmLriNJdrMgv6yxU9WB8pUXZ1por8YDivq+hCNfcDw0k9L
-----END PRIVATE KEY-----
| {
"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"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2011 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// 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 obtai... | {
"pile_set_name": "Github"
} |
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution Licens... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
"""Implementation of Deep Semantic Similarity Model with BPR.
Reference: Huang, Po-Sen, et al. "Learning deep structured semantic models for web search using clickthrough data." Proceedings of the 22nd ACM international conference on Conference on information & knowledge management. ACM, 2013.
"""... | {
"pile_set_name": "Github"
} |
/* Public domain. */
#include "tai.h"
void tai_pack(char *s,const struct tai *t)
{
uint64 x;
x = t->x;
s[7] = x & 255; x >>= 8;
s[6] = x & 255; x >>= 8;
s[5] = x & 255; x >>= 8;
s[4] = x & 255; x >>= 8;
s[3] = x & 255; x >>= 8;
s[2] = x & 255; x >>= 8;
s[1] = x & 255; x >>= 8;
s[0] = x;
}
| {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2012 Fredrik Mellbin
* Copyright (c) 2013 Clément Bœsch
*
* This file is part of FFmpeg.
*
* FFmpeg 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 th... | {
"pile_set_name": "Github"
} |
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Charts module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid comme... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "icon_action_push.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "icon_action_push@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"ver... | {
"pile_set_name": "Github"
} |
#include "common.h"
#include "iostructs\v_detail.h"
uniform float4 consts; // {1/quant,1/quant,diffusescale,ambient}
uniform float4 wave; // cx,cy,cz,tm
uniform float4 dir2D;
//uniform float4 array [200] : register(c12);
//tbuffer DetailsData
//{
uniform float4 array[61*4];
//}
v2p_flat _main (v_detail ... | {
"pile_set_name": "Github"
} |
uniform sampler2D u_Texture;
uniform lowp vec4 u_MatColor;
varying lowp vec4 frag_Color;
varying lowp vec2 frag_TexCoord;
varying lowp vec3 frag_Normal;
varying lowp vec3 frag_Position;
struct Light {
lowp vec3 Color;
lowp float AmbientIntensity;
lowp float DiffuseIntensity;
lowp vec3 Direction;
highp fl... | {
"pile_set_name": "Github"
} |
class Form < CouchRest::Model::Base
include RapidFTR::Model
use_database :form
before_destroy :remove_form_sections
property :name
attr_accessor :sections
design do
view :by_name
end
def self.find_or_create_by_name(name)
form = find_by_name(name)
form.nil? ? Form.create(:name => name) :... | {
"pile_set_name": "Github"
} |
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/internal/test_bad_identifiers.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from googl... | {
"pile_set_name": "Github"
} |
-0.601842 -0.191159 -0.611334 0.240615
-0.168051 -0.0856638 -0.156004 0.190941
0.238964 -0.180484 0.276281 0.170794
-0.0758637 -0.416822 -0.0368172 0.229496
-0.601842 -0.191159 -0.168051 -0.0856638
-0.168051 -0.0856638 0.238964 -0.180484
0.238964 -0.180484 -0.0758637 -0.416822
-0.0758637 -0.416822 -0.601842 -0.1... | {
"pile_set_name": "Github"
} |
#import <Foundation/Foundation.h>
#import "AFURLResponseSerialization.h"
#import "AFURLRequestSerialization.h"
#import "AFSecurityPolicy.h"
#if !TARGET_OS_WATCH
#import "AFNetworkReachabilityManager.h"
#endif
/**
`AFURLSessionManager` creates and manages an `NSURLSession` object based on a specified `NSURLSessionCo... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
"""Util functions for different things. For example: format time or bytesize correct."""
from flask import request, Response
from functools import wraps
from jinja2.filters import FILTERS
import os
import maraschino
from maraschino import app, logger
from maraschino.models import Setting, XbmcS... | {
"pile_set_name": "Github"
} |
---
- name: Install ipmitool
apt: pkg=ipmitool state=installed
sudo: yes
| {
"pile_set_name": "Github"
} |
/*!
* Copyright 2017 The SwitchyOmega Authors. Please see the AUTHORS file
* for details.
* Based on Bootstrap v3.3.2 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/* Dialog */
body, html {
margin: 0;
padding: 0;
... | {
"pile_set_name": "Github"
} |
{{define "Littlewin/archive-articles.html"}}
<!DOCTYPE html>
<html>
<head>
{{template "head/head" .}}
{{template "head/3rdstatistic" .}}
</head>
<body>
{{template "Littlewin/header" .}}
<div class="fn__flex-1">
<div class="wrapper fn__flex header__meta">
<div class="main" id="pjax">
{{if .pj... | {
"pile_set_name": "Github"
} |
#include "syncmodel.h"
using namespace dcc;
using namespace dcc::cloudsync;
SyncModel::SyncModel(QObject *parent)
: QObject(parent)
, m_syncIsValid(false)
, m_enableSync(false)
, m_activation(false)
, m_lastSyncTime(0)
{
}
void SyncModel::setUserinfo(const QVariantMap &userinfo)
{
if (m_user... | {
"pile_set_name": "Github"
} |
using UnityEngine.PostProcessing;
namespace UnityEditor.PostProcessing
{
using Settings = FogModel.Settings;
[PostProcessingModelEditor(typeof(FogModel), alwaysEnabled: true)]
public class FogModelEditor : PostProcessingModelEditor
{
SerializedProperty m_ExcludeSkybox;
public override... | {
"pile_set_name": "Github"
} |
import getRethink from '../../../../database/rethinkDriver'
import Meeting from '../../../../database/types/Meeting'
import getMailManager from '../../../../email/getMailManager'
import newMeetingSummaryEmailCreator from '../../../../email/newMeetingSummaryEmailCreator'
import {GQLContext} from '../../../graphql'
expo... | {
"pile_set_name": "Github"
} |
/* eslint-disable */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
};
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
"""
network description:
network structure:
"""
import os
from config_farm import configuration_64_512_16L_3scales_v1 as cfg
from ChasingTrainFramework_GeneralOneClassDetection.loss_layer_farm.cross_entropy_with_hnm_for_one_class_detection import *
import mxnet
num_filters_list = [32, 64, 128, ... | {
"pile_set_name": "Github"
} |
#!/bin/sh
TESTING_DIR="$(pwd)"
cd ..
./UTest.sh $TESTING_DIR
| {
"pile_set_name": "Github"
} |
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package colltab
import (
"testing"
)
type lookupStrings struct {
str string
offset int
n int // bytes consumed from input
}
type LookupTest struc... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2002-2018 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | {
"pile_set_name": "Github"
} |
"""Edit SSL certificate."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
@click.command()
@click.argument('identifier')
@click.option('--crt',
type=click.Path(exists=True),
help="Certificate file")
@click.option('--csr... | {
"pile_set_name": "Github"
} |
#ifndef BOOST_METAPARSE_V1_NTH_OF_HPP
#define BOOST_METAPARSE_V1_NTH_OF_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2010.
// 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)
#include <b... | {
"pile_set_name": "Github"
} |
package murmur3
// http://code.google.com/p/guava-libraries/source/browse/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
import (
"hash"
"unsafe"
)
// Make sure interfaces are correctly implemented.
var (
_ hash.Hash = new(digest32)
_ hash.Hash32 = new(digest32)
)
const (
c1_32 uint32 = 0xcc9e2... | {
"pile_set_name": "Github"
} |
package com.baiyi.opscloud.service.server.impl;
import com.baiyi.opscloud.domain.DataTable;
import com.baiyi.opscloud.domain.generator.opscloud.OcServerGroup;
import com.baiyi.opscloud.domain.param.server.ServerGroupParam;
import com.baiyi.opscloud.domain.param.user.UserServerTreeParam;
import com.baiyi.opscloud.mappe... | {
"pile_set_name": "Github"
} |
import graphqlFields from 'graphql-fields'
import { getIdsForPage, getConnection } from '../_pagination'
import contracts from '../../contracts'
import get from 'lodash/get'
// import memoize from 'lodash/memoize'
export async function getTransactionReceipt(id) {
if (!id || typeof id !== 'string' || ![66, 64].includ... | {
"pile_set_name": "Github"
} |
#include <stdlib.h>
#include "randombytes.h"
#include "cpucycles.h"
#include "crypto_stream.h"
extern void printentry(long long,const char *,long long *,long long);
extern unsigned char *alignedcalloc(unsigned long long);
extern const char *primitiveimplementation;
extern const char *implementationversion;
extern cons... | {
"pile_set_name": "Github"
} |
<template>
<section>
<b-field grouped>
<b-input icon="magnify" v-model="filter.text" placeholder="Filter..." expanded />
<b-field>
<b-radio-button
v-model="filter.level"
:native-value="SettLevel.Beginner"
type="is-success"
>Simple</b-radio-button>
<b-radio-button
v-model="filte... | {
"pile_set_name": "Github"
} |
<para>
This option specifies the input and output format for the time. The format
is written similarly to those in Windows. An example format is "hh:mm:ss xx".
</para>
| {
"pile_set_name": "Github"
} |
/****************************************************************************
* bfs *
* Copyright (C) 2019 Tavian Barnes <tavianator@tavianator.com> *
* *
* Permi... | {
"pile_set_name": "Github"
} |
// Boost.Range library
//
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
// distribution is 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)
//
// For more information, see http://www.boost.org/li... | {
"pile_set_name": "Github"
} |
import type { CompareOp, MultiCompareOp } from "./api";
import { defOp } from "./internal/codegen";
import { MATH } from "./internal/templates";
export const [neq, neq2, neq3, neq4] = defOp<MultiCompareOp, CompareOp>(
MATH("!==")
);
| {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>Uses of Class java.text.NumberFormat.Field (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="... | {
"pile_set_name": "Github"
} |
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* o... | {
"pile_set_name": "Github"
} |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iotsitewise/IoTSiteWise_EXPORTS.h>
#include <aws/iotsitewise/model/LoggingOptions.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServic... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>插入音乐</title>
<script type="text/javascript" src="../internal.js"></script>
<link rel="stylesheet" type="text/css" href="music.css">
</head>
<body>
<div class="wrapper">
<div class="searchBar">
... | {
"pile_set_name": "Github"
} |
--TEST--
Test imap_fetchheader() function : usage variations - FT_UID option
--SKIPIF--
<?php
require_once(dirname(__FILE__).'/skipif.inc');
?>
--FILE--
<?php
/* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
* Description: Get the full unfiltered header for a message
* Sourc... | {
"pile_set_name": "Github"
} |
/*
* PLUGIN THROTTLE
*
* Danish language file.
*
* Author:
*/
theUILang.throttles = "Channels";
theUILang.throttle = "Channel";
theUILang.mnuThrottle = "Set Channel";
theUILang.mnuUnlimited = "No Channel";
theUILang.channelName = "Name";
theUILang.channelDefault = "Default channel";
thePlugins.get(... | {
"pile_set_name": "Github"
} |
# importing db_connection has the side effect of setting the test database.
from spec.python import db_connection
from sam.models.user import User
sub_id = db_connection.default_sub
session = {}
def logout():
session.clear()
def login():
user = User(session)
user.logged_in = True
user.name = 'Test ... | {
"pile_set_name": "Github"
} |
require('../../modules/es7.reflect.has-metadata');
module.exports = require('../../modules/_core').Reflect.hasMetadata;
| {
"pile_set_name": "Github"
} |
;Speed of Allegro CL 4.2 [SPARC; R1] (1/12/94 14:12)
;on SPARC id: #x4210456.
;on vapor
((CLIM-USER::LINE-DRAWING 1.0366668)
(CLIM-USER::UNRECORDED-LINE-DRAWING 0.38583335)
(CLIM-USER::TRANSFORMED-LINE-DRAWING 1.8466667)
(CLIM-USER::THICK-LINE-DRAWING 1.1066667)
(CLIM-USER::CLIPPED-LINE-DRAWING 1.03) (CLIM-USER::S... | {
"pile_set_name": "Github"
} |
#coding=utf-8
'''
Created on 2015-10-22
@author: zhangtiande
'''
from gatesidelib.common.simplelogger import SimpleLogger
from model_managers.model_manager import ModelManager
class WebappManager(ModelManager):
'''
classdocs
'''
def all(self):
return super(WebappManager,self).get_q... | {
"pile_set_name": "Github"
} |
package org.osmdroid.api;
/**
* An interface that resembles the Google Maps API MapController class and is implemented by the
* osmdroid {@link org.osmdroid.views.MapController} class.
*
* @author Neil Boyd
*
*/
public interface IMapController {
void animateTo(IGeoPoint geoPoint);
void animateTo(int x, int ... | {
"pile_set_name": "Github"
} |
var $export = require('./$.export');
$export($export.P, 'String', {
// 21.1.3.13 String.prototype.repeat(count)
repeat: require('./$.string-repeat')
}); | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "abc_ic_more_gray_22x22_@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "abc_ic_more_gray_22x22_@3x.png",
"scale" : "3x"
}
],
"i... | {
"pile_set_name": "Github"
} |
package com.mysiteforme.admin.service.impl;
import com.baomidou.mybatisplus.mapper.Condition;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.google.common.collect.Maps;
import com.mysiteforme.admin.entity.BlogComment;
import com.mysiteforme.admin.dao.Blog... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"[
<!ENTITY % addindex "IGNORE">
]>
<book lang="en">
<bookinfo>
<title>The Avogadro Handbook</title>
<authorgroup>
<author>
<firstname>Carsten</firstname>
<surname>Nieh... | {
"pile_set_name": "Github"
} |
/*!
* \file CDisplacementsInterface.cpp
* \brief Main subroutines for transferring boundary displacements.
* \author Ruben Sanchez
* \version 7.0.6 "Blackbird"
*
* SU2 Project Website: https://su2code.github.io
*
* The SU2 Project is maintained by the SU2 Foundation
* (http://su2foundation.org)
*
* Copyrigh... | {
"pile_set_name": "Github"
} |
X-Account-Key: account5
X-UIDL: GmailId1289c819d0ccdb08
X-Mozilla-Status: 0000
X-Mozilla-Status2: 00000000
X-Mozilla-Keys:
Delivered-To: mlsubscriber.tech@csmining.org
Received: by 10.143.160.8 with SMTP id m8cs83918wfo;
Sat, 15 Ma... | {
"pile_set_name": "Github"
} |
/*
* UIColor+AQGridView.h
* AQGridView
*
* Created by Jim Dovey on 17/4/2010.
* Copyright (c) 2010 Jim Dovey. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of s... | {
"pile_set_name": "Github"
} |
{% extends 'topics/_base_topics.html' %} {% load list_tables %} {% block content %}
<section id="topic-overview">
<h2>Overview</h2>
<p>These tables address the topic of public assistance.</p>
<p>The ACS tables beginning with <strong>22</strong> are about public assistance. In the listing below, table name... | {
"pile_set_name": "Github"
} |
var Q = require('q'),
os = require('os'),
sim = require('ios-sim'),
exec = require('child_process').exec;
var connectedDevices = function () {
if (os.platform() !== 'darwin') return Q.resolve([]);
var defer = Q.defer(),
cmd = 'system_profiler SPUSBDataType | sed -n -e \'/iPad/,/Serial/p\' -... | {
"pile_set_name": "Github"
} |
package lgo_exec
import pkg0 "github.com/yunabe/lgo/core"
import "fmt"
func xy(x, y int) {
fmt.Println(x, y)
}
func two() (int, int) {
return 3, 4
}
func lgo_init() {
{
gofn := xy
goarg, goarg0 := two()
ectx := pkg0.InitGoroutine()
go func() {
defer pkg0.FinalizeGoroutine(ectx)
gofn(goarg, goarg0)
}... | {
"pile_set_name": "Github"
} |
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:exslt="http://exslt.org/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd" version="3.3" ID="P0b002ee180e8b1e5">
<name ty... | {
"pile_set_name": "Github"
} |
//
// GSEAppDelegate.m
// GSGossipExample
//
// Created by Chakrit Wichian on 7/6/12.
//
#import "GSEAppDelegate.h"
#import "GSERootViewController.h"
#import "GSConfiguration.h"
#import "GSUserAgent.h"
@implementation GSEAppDelegate {
UIWindow *_window;
}
- (BOOL)application:(UIApplication *)application did... | {
"pile_set_name": "Github"
} |
//
// UserDataProvider.swift
// YALLayoutTransitioning
//
// Created by Roman on 02.03.16.
// Copyright © 2016 Yalantis. All rights reserved.
//
import UIKit
class UserDataProvider {
func generateFakeUsers() -> [User] {
return [
User(
name: "Jack",
... | {
"pile_set_name": "Github"
} |
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="GitLinkException.cs" company="CatenaLogic">
// Copyright (c) 2014 - 2016 CatenaLogic. All rights reserved.
// </copyright>
// ---------------------------------------------------... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../config/boot'
require 'commands/process/spawner'
| {
"pile_set_name": "Github"
} |
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
Project: "ZipArchive"=".\ZipArchive_STL_DLL.dsp" - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Proj... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015-2016 Imply Data, Inc.
* Copyright 2017-2019 Allegro.pl
*
* 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
*
* Unl... | {
"pile_set_name": "Github"
} |
var expect = require('chai').expect
, proxyquire = require('proxyquire')
, sinon = require('sinon')
, extend = require('util')._extend
, runWithinFiber = require('./utils/run-within-fiber')
, fixtures = require('./fixtures')
, Shell = require('../lib/transport/shell')
, SSH = require('../lib/transport/ssh... | {
"pile_set_name": "Github"
} |
EVE最新番号
【AEDVD-1296】逆ナンパスペシャル 総集編2
【MDE-002】フェロモンむんむんお姉さん騎乗位特集</a>2003-01-03ムーディーズ$$$MOODYZ Best120分钟 | {
"pile_set_name": "Github"
} |
the
of
and
to
a
in
for
is
on
that
by
this
with
i
you
it
not
or
be
are
from
at
as
your
all
have
new
more
an
was
we
will
home
can
us
about
if
page
my
has
search
free
but
our
one
other
do
no
information
time
they
site
he
up
may
what
which
their
news
out
use
any
there
see
only
so
his
when
contact
here
business
who
web
also... | {
"pile_set_name": "Github"
} |
---
name: Bug Report
about: Report a bug
---
## What happened?
## What should've happened instead?
## Steps to reproduce
[//]: # (Include host configuration: OS, Django version, database, etc.)
| {
"pile_set_name": "Github"
} |
AROPT = crs
export_dynamic = -Wl,-Bexport
DLSUFFIX = .so
CFLAGS_SL = -K PIC
# Rule for building a shared library from a single .o file
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
sqlmansect = 5
| {
"pile_set_name": "Github"
} |
# pevents
`pevents` is a cross-platform low-level library meant to provide an
implementation of the WIN32 events for POSIX systems. pevents is built
on pthreads and provides *most* of the functionality of both manual-
and auto-reset events on Windows, most-notably including simultaneous
waits on multiple events (à la ... | {
"pile_set_name": "Github"
} |
kind: Pod
apiVersion: v1
metadata:
name: privileged-pod
spec:
containers:
- name: privileged-pod
image: nginx
securityContext:
privileged: true
| {
"pile_set_name": "Github"
} |
# 滚动恢复
在早期的 React Router 版本中我们提供了开箱即用的滚动恢复解决方案但是一直有人在询问关于它的问题。希望这篇文章可以让你得到一些关于滚动条和路由的帮助!
浏览器已经开始通过 `history.pushState` 来处理滚动的恢复了,并且在 Chrome 中已经有了很不错的实现。这是[恢复滚动的规范](https://majido.github.io/scroll-restoration-proposal/history-based-api.html#web-idl)。
因为浏览器已经开始处理"默认情况",而且实际在开发中面对的情况有很多,所以我们不再提供默认的滚动管理,不过这篇文章将会给你... | {
"pile_set_name": "Github"
} |
location ~* <WEB_NO_CACHE_PATTERN> {
expires off;
add_header Cache-Control private;
try_files $uri $uri/ /<DOCUMENT_INDEX>?$query_string;
}
| {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Jun 9 2015 22:53:21).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2014 by Steve Nygard.
//
#import <Foundation/NSObject.h>
@class NSDictionary;
@interface iCloudAOSDelegate : NSObject
{
BOOL _succeeded;
NSDictionary ... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('debounce', require('../debounce'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
<?php
namespace SocialiteProviders\RunKeeper;
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
use SocialiteProviders\Manager\OAuth2\User;
class Provider extends AbstractProvider
{
/**
* Unique Provider Identifier.
*/
public const IDENTIFIER = 'RUNKEEPER';
/**
* {@inheritdoc}
... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0+
#include "mainwindow.h"
#include "iconfont/QtAwesome.h"
#include "ui_mainwindow.h"
#include "HorizontalDock.h"
#include "SpectrumDock.h"
#include "TriggerDock.h"
#include "VoltageDock.h"
#include "dockwindows.h"
#include "configdialog.h"
#include "dockwindows.h"
#include "dsomode... | {
"pile_set_name": "Github"
} |
@* Generator: WebPage *@
@{
// 404 if the admin page isn't available
if (!SiteAdmin.Available) {
Response.SetStatus(HttpStatusCode.NotFound);
return;
}
AdminSecurity.Authorize(this);
}
@{
// Set up layout values
var breadCrumbs = new List<Tuple<string, string>>();
... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 79f22c0339dedeb4e9b696e65d2f01a0
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestR... | {
"pile_set_name": "Github"
} |
/// <reference types="react" />
declare module "react-throttle" {
interface ReactThrottleProps extends React.Props<Throttle | Debounce> {
time: string;
handler: string;
}
class Throttle extends React.Component<ReactThrottleProps> { };
class Debounce extends React.Component<ReactThrot... | {
"pile_set_name": "Github"
} |
module type APPEND = sig
type 'a rd = < rd : unit ; .. > as 'a
type 'a wr = < wr : unit ; .. > as 'a
type 'a mode =
| Rd : < rd : unit > mode
| Wr : < wr : unit > mode
| RdWr : < rd : unit ; wr : unit > mode
type t
type uid
type 'a fd
type error
type +'a fiber
val pp_error : error Fmt.t... | {
"pile_set_name": "Github"
} |
# $NetBSD: md.luna68k,v 1.19 2011/07/17 20:54:31 joerg Exp $
./usr/include/ieeefp.h comp-c-include
./usr/include/luna68k comp-c-include
./usr/include/luna68k/_G_config.h comp-obsolete obsolete
./usr/include/luna68k/ansi.h comp-c-include
./usr/include/luna68k/aout_machdep.h comp-c-include
./usr/include/luna68... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* 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 ... | {
"pile_set_name": "Github"
} |
// Copyright 2017 the V8 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.
#ifndef V8_OBJECTS_STRING_TABLE_H_
#define V8_OBJECTS_STRING_TABLE_H_
#include "src/objects/hash-table.h"
// Has to be the last include (doesn't have ... | {
"pile_set_name": "Github"
} |
package qtnetwork
// /usr/include/qt/QtNetwork/qsslkey.h
// #include <qsslkey.h>
// #include <QtNetwork>
// header block end
// main block begin
// main block end
// use block begin
// use block end
// ext block begin
/*
#include <stdlib.h>
// extern C begin: 7
*/
// import "C"
import "unsafe"
import "ref... | {
"pile_set_name": "Github"
} |
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "ListSecrets",
"input": {},
"errorExpectedFromService": false
},
{
"operationName": "DescribeSecret",
"input": {
"SecretId": "fa... | {
"pile_set_name": "Github"
} |
---
http_interactions:
- request:
method: post
uri: https://devel.balmora.example.com/pulp/api/v2/repositories/
body:
encoding: UTF-8
base64_string: |
eyJpZCI6IkZlZG9yYV8xNyIsImRpc3BsYXlfbmFtZSI6IkZlZG9yYSAxNyB4
ODZfNjQiLCJpbXBvcnRlcl90eXBlX2lkIjoieXVtX2ltcG9ydGVyIiwiaW1w
... | {
"pile_set_name": "Github"
} |
"use strict";
/** Class that handles UI for selecting (chapter) URLs to fetch */
class ChapterUrlsUI {
constructor(parser) {
this.parser = parser;
ChapterUrlsUI.getPleaseWaitMessageRow().hidden = false;
}
connectButtonHandlers() {
document.getElementById("selectAllUrlsButton").oncl... | {
"pile_set_name": "Github"
} |
From c35aec61e5bb0faafb2847a0d750ebd7345a4b0f Mon Sep 17 00:00:00 2001
From: Yangbo Lu <yangbo.lu@nxp.com>
Date: Wed, 17 Jan 2018 15:40:24 +0800
Subject: [PATCH 28/30] tty: serial: support layerscape
This is an integrated patch for layerscape uart support.
Signed-off-by: Nikita Yushchenko <nikita.yoush@cogentembedded... | {
"pile_set_name": "Github"
} |
require 'rails_helper'
RSpec.describe PostFollowPolicy do
let(:user) { token_for build(:user) }
let(:follow) { build(:post_follow, user: user.resource_owner) }
let(:other) { build(:post_follow) }
subject { described_class }
permissions :update? do
it('should not allow users') { should_not permit(user, f... | {
"pile_set_name": "Github"
} |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
class AddFunctionRelatorioPrioridadeHistorico extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::unprepared(
file_get_contents(__DIR__ . ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.