text stringlengths 2 99.9k | meta dict |
|---|---|
R CMD REMOVE --library=$PREFIX/lib/R/library/ estrogen
| {
"pile_set_name": "Github"
} |
# 多集群连接
当你的 ES 集群发展到一定规模,单集群不足以应对庞大的在线索引量级,或者由于业务隔离需求,都有可能划分成多个集群。这时候,另一个问题就出来了:可能其中有一部分数据,被分割在两个集群里,但是还是需要一起使用的。如果是自己写程序,当然可以初始化两个对象,分别连接两个集群,得到结果集后再自行合并。但是如果用 Elastic Stack 的,Kibana 可不支持同时连接两个集群地址,这时候,就要用到 ES 中一个特殊的角色:tribe 节点。
tribe 节点只需要提供集群自动发现方面的配置,连接上多个集群后,对外提供只读功能。`elasticsearch.yml` 配置示例如下:
```
tribe:
1... | {
"pile_set_name": "Github"
} |
difficulty 3
description "Your local master branch has diverged from " +
"the remote origin/master branch. Rebase your branch onto " +
"origin/master and push it to remote."
setup do
# remember the working directory so we can come back to it later
cwd = Dir.pwd
# initialize another git repo to be used as a "... | {
"pile_set_name": "Github"
} |
//===- CoverageSummary.cpp - Code coverage summary ------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | {
"pile_set_name": "Github"
} |
module Timer(clk, en, stop, clear, endone, seg0, seg1);
input clk;
input en;
input stop;
input clear;
output reg endone;
output reg [6:0] seg0;
output reg [6:0] seg1;
reg [3:0] h = 0;
reg [3:0] l = 0;
reg [6:0] counter = 0;
reg clk_1s = 0;
reg [24:0] count_clk = 0;
always @ (posedge clk)
begin
if(count... | {
"pile_set_name": "Github"
} |
package locations
import (
"github.com/TeaWeb/code/teacache"
"github.com/TeaWeb/code/teaconfigs"
"github.com/TeaWeb/code/teaconfigs/shared"
"github.com/TeaWeb/code/teaweb/actions/default/proxy/locations/locationutils"
"github.com/iwind/TeaGo/actions"
"github.com/iwind/TeaGo/lists"
"github.com/iwind/TeaGo/maps"
... | {
"pile_set_name": "Github"
} |
// CONFIGURATION HEADER
#pragma once
#include <cstdlib>
#include <iostream>
#include <string>
#include <sstream>
#include <memory>
#include <map>
namespace sqlcheck {
#define UNUSED_ATTRIBUTE __attribute__((unused))
enum RiskLevel {
RISK_LEVEL_INVALID = 10,
RISK_LEVEL_HIGH = 4,
RISK_LEVEL_MEDIUM = 3,
RISK... | {
"pile_set_name": "Github"
} |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`WarningText to match snapshot 1`] = `
.c0 {
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
box-sizing: border-box;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex... | {
"pile_set_name": "Github"
} |
############################################################################
# Copyright(c) Open Law Library. All rights reserved. #
# See ThirdPartyNotices.txt in the project root for additional notices. #
# #
# Licensed u... | {
"pile_set_name": "Github"
} |
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/disk_cache/simple/simple_version_upgrade.h"
#include <stdint.h>
#include <string>
#include "base/files/file_path.h"
#include "base/files/f... | {
"pile_set_name": "Github"
} |
#
# Name: JUS_I.B1.002 to Unicode
# Unicode version: 2.0
# Table version: 0.1
# Table format: Format A
# Date: 0097-01-24
# Authors: John Cowan <cowan@ccil.org> (conversion)
# Keld Simonsen <Keld.Simonsen@dkuug.dk> (RFC 1345)
#
# General notes:
#
# This table... | {
"pile_set_name": "Github"
} |
server {
set $template_root /usr/local/openresty/nginx/html;
listen 3000;
location / {
root /usr/local/openresty/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /storybook {
root /usr/local/openresty/nginx/html/storyhtml... | {
"pile_set_name": "Github"
} |
use super::{InitialMapBuilder, BuilderMap, TileType};
use rltk::RandomNumberGenerator;
#[derive(PartialEq, Copy, Clone)]
#[allow(dead_code)]
pub enum DistanceAlgorithm { Pythagoras, Manhattan, Chebyshev }
pub struct VoronoiCellBuilder {
n_seeds: usize,
distance_algorithm: DistanceAlgorithm
}
impl InitialMap... | {
"pile_set_name": "Github"
} |
open class Foo {
open func doSomething(_ f: Foo) {}
}
@inlinable public func callFoo(f: Foo) {
f.doSomething(f)
}
| {
"pile_set_name": "Github"
} |
/*
* Copyright 2008 Sun Microsystems, Inc. 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 Software Foundatio... | {
"pile_set_name": "Github"
} |
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef HANDLE_DWA200269_HPP
# define HANDLE_DWA200269_HPP
# include <boost/python/detail/prefix.hpp>
# include <boost/... | {
"pile_set_name": "Github"
} |
# RUN: yaml2obj %s -o %t1.o
# RUN: wasm-ld --no-entry --features=foo,bar,baz -o - %t1.o | obj2yaml | FileCheck %s --check-prefix SPECIFIED
# RUN: not wasm-ld --no-entry --features=bar,baz,quux -o /dev/null %t1.o 2>&1 | FileCheck %s --check-prefix UNSPECIFIED
# RUN: wasm-ld --no-entry --no-check-features --features=b... | {
"pile_set_name": "Github"
} |
@once-set-sdf = 0
sdf 1, 0
msg -1, -1, -1
pic 0, 4
ex1 -1, -1, -1
ex2 -1, -1, -1
goto 1
@change-ter = 1
sdf -1, -1
msg -1, -1, -1
pic 0, 4
ex1 7, 40, -1
ex2 147, -1, -1
goto -1
@once-set-sdf = 2
sdf 1, 0
msg -1, -1, -1
pic 0, 4
ex1 -1, -1, -1
ex2 -1, -1, -1
goto 3
@change-ter = 3
sdf -1, -1
msg -1, ... | {
"pile_set_name": "Github"
} |
<template>
<div>
<van-tabs :active="activeNav" @change="changeTab">
<van-tab v-for="nav in navList" :title="nav.name" v-bind:key="nav.id">
</van-tab>
</van-tabs>
<swiper class="swiper" indicator-dots="true" autoplay="true" interval="5000" duration="1000">
<block v-for="(item, index) in b... | {
"pile_set_name": "Github"
} |
//
// UIColor.swift
// Texture
//
// Copyright (c) Pinterest, Inc. All rights reserved.
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
//
import Foundation
extension UIColor {
class func primaryBackgroundColor() -> UIColor {
return UIColor.init(red: 237/255, green: 239/... | {
"pile_set_name": "Github"
} |
var Stream = require('stream').Stream
module.exports = legacy
function legacy (fs) {
return {
ReadStream: ReadStream,
WriteStream: WriteStream
}
function ReadStream (path, options) {
if (!(this instanceof ReadStream)) return new ReadStream(path, options);
Stream.call(this);
var self = thi... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('isElement', require('../isElement'), require('./_falseOptions'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
>
<head>
<title>Spring Security Example </title>
</head>
<body>
<div th:if="${param.error}">
用户名或密码错
</div>
<div th:if="${param.logout}">
您已注销成功
</div>
<form th:action="@{/login}" method="post">
<div><la... | {
"pile_set_name": "Github"
} |
#include "llcp.h"
#include "PN532_debug.h"
// LLCP PDU Type Values
#define PDU_SYMM 0x00
#define PDU_PAX 0x01
#define PDU_CONNECT 0x04
#define PDU_DISC 0x05
#define PDU_CC 0x06
#define PDU_DM 0x07
#define PDU_I 0x0c
#define PDU_RR 0x0d
uint8_t LLCP::SYMM_PDU[2] = {0, 0};
inline uint8_... | {
"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 distributed under t... | {
"pile_set_name": "Github"
} |
import Flexbox from '../containers/Flexbox';
export {
Flexbox,
};
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
<string>778 74 356 240 0 0 1280 1002 </string>
<key>IBFramework Version</key>
<string>437.0</string>
<key... | {
"pile_set_name": "Github"
} |
RGB 20, 19, 20
RGB 18, 11, 14
| {
"pile_set_name": "Github"
} |
//--------------------------------------------------------------------------------------
// File: utils.cpp
//
// Helper utilities for the Compute Shader Accelerated BC6H BC7 Encoder
//
// Advanced Technology Group (ATG)
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------... | {
"pile_set_name": "Github"
} |
<div id="cp2" class="input-group colorpicker-component">
<input type="text" value="#00AABB" class="form-control"/>
<span class="input-group-addon"><i></i></span>
</div>
<script>
$(function () {
$('#cp2').colorpicker();
});
</script>
| {
"pile_set_name": "Github"
} |
/****************************************************************************
*
* Copyright 2018 Samsung Electronics 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... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('tap', require('../tap'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
/*
* The code below is part of a code extracted from https://www.dropbox.com/sh/at3ymvlz8sfhefl/AADWlDpcdjlBc2P30TiWva-qa?dl=0
* The original Arduino sketch was written by Greg Stievenart with no claim to or any images or information
* provided in this code. Freely published May 26, 2016.
*
* I copied only the ... | {
"pile_set_name": "Github"
} |
#ifndef CAFFE_XXX_LAYER_HPP_
#define CAFFE_XXX_LAYER_HPP_
#include <vector>
#include "caffe/blob.hpp"
#include "caffe/layer.hpp"
#include "caffe/proto/caffe.pb.h"
namespace caffe {
/*
* @brief Reshapes the input Blob into an arbitrary-sized output Blob.
*
* Note: similarly to FlattenLayer, this layer does not ch... | {
"pile_set_name": "Github"
} |
/*
* Driver for the Texas Instruments DP83867 PHY
*
* Copyright (C) 2015 Texas Instruments 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 version 2 of the License.
*
* Th... | {
"pile_set_name": "Github"
} |
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.9
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ------------------------------... | {
"pile_set_name": "Github"
} |
{namespace neos=Neos\Neos\ViewHelpers}{namespace media=Neos\Media\ViewHelpers}
<html>
<head>
<title>Asset Proxies</title>
<meta charset="UTF-8"/>
</head>
<body>
<div>
<h1>Asset Proxies</h1>
<table class="assets-proxies">
<tr>
... | {
"pile_set_name": "Github"
} |
# Copyright (c) 1985, 1993
# The Regents of the University of California. 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
# ... | {
"pile_set_name": "Github"
} |
@inherits MatBlazor.Demo.Components.BaseDocComponent
@* THIS FILE IS AUTOGENERATED FROM C# XML Comments! *@
@* ALL MANUAL CHANGES WILL BE REMOVED! *@
@if (!Secondary) {<h3 class="mat-h3">MatTreeView</h3> } else { <h5 class="mat-h5">MatTreeView</h5> }
<p>Renders the data as a tree.</p>
<div><table class="article-ta... | {
"pile_set_name": "Github"
} |
:ruby
css_class = f.object.resource && f.object.resource.is_a?(Taxon) && f.object.resource.is_iconic? ? 'hide' : nil
html_data = {}
html_data[:taxon_id] = f.object.resource_id if f.object && f.object.resource_type == 'Taxon'
.nested-fields.trip-purpose-fields.lined.stacked.row{:class => css_class, :data => html_d... | {
"pile_set_name": "Github"
} |
machine:
services:
- docker
dependencies:
cache_directories:
- "~/.ethash" # Cache the ethash DAG generated by hive for consecutive builds
- "~/.docker" # Cache all docker images manually to avoid lengthy rebuilds
override:
# Restore all previously cached docker images
- mkdir -p ~/.docker
... | {
"pile_set_name": "Github"
} |
using System.IO;
using System.Windows.Media.Imaging;
namespace Gemini.Demo.Modules.FilterDesigner.Util
{
internal static class BitmapUtility
{
public static BitmapSource CreateFromBytes(byte[] bytes)
{
using (var stream = new MemoryStream(bytes))
{
var r... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina6_1" orientation="p... | {
"pile_set_name": "Github"
} |
#include "extensions/filters/common/rbac/utility.h"
#include <string>
#include "absl/strings/str_replace.h"
namespace Envoy {
namespace Extensions {
namespace Filters {
namespace Common {
namespace RBAC {
RoleBasedAccessControlFilterStats generateStats(const std::string& prefix, Stats::Scope& scope) {
const std::... | {
"pile_set_name": "Github"
} |
// Copyright 2010 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 blowfish
// getNextWord returns the next big-endian uint32 value from the byte slice
// at the given position in a circular manner, updating the positi... | {
"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"
} |
// dll.hpp --------------------------------------------------------------//
// Copyright 2010 Vicente J. Botet Escriba
// Copyright 2014 Renato Tegon Forti, Antony Polukhin
// Copyright 2015 Andrey Semashev
// Copyright 2015 Antony Polukhin
// Distributed under the Boost Software License, Version 1.0.
... | {
"pile_set_name": "Github"
} |
<!-- schema text {7e125a45-3d83-4043-b292-9e24f8ef27b4} generic {198980d8-3a93-4919-b4c6-dd1fb07a3a4b} -->
CParticleSystemDefinition CParticleSystemDefinition_0
{
bool m_bPreventNameBasedLookup = false
int m_nMaxParticles = 4
string m_pszSnapshotName = ""
string m_hLowViolenceDef = ""
string m_hReferenceReplacemen... | {
"pile_set_name": "Github"
} |
{
"name": "Jam Band",
"description": "A delightfully botanical gin cocktail.",
"github": "eluthern",
"ingredients": [
{
"quantity": "2",
"measure": "oz",
"ingredient": "gin"
},
{
"quantity": "3/4",
"measure": "oz",
... | {
"pile_set_name": "Github"
} |
; RUN: llc < %s -mtriple=i386-apple-darwin -relocation-model=pic | grep lea
; RUN: llc < %s -mtriple=i386-apple-darwin -relocation-model=pic | grep call
@main_q = internal global i8* null ; <i8**> [#uses=1]
define void @func2() nounwind {
entry:
tail call void asm "mov $1,%gs:$0", "=*m,ri,~{dirflag},~{fpsr},~{flags... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
... | {
"pile_set_name": "Github"
} |
# Merge loop test
This tests for regressions of https://github.com/unisonweb/unison/issues/1276 where trivial merges cause loops in the history.
Let's make three identical namespaces with different histories:
```unison
a = 1
```
```ucm
.x> add
```
```unison
b = 2
```
```ucm
.x> add
```
```unison
b = 2
```
```uc... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
if [[ "$2" = "" ]] || [[ "$3" = "" ]]; then
echo "Usage: $0 BASE_DIRECTORY DEPTH HASH_BITS"
echo "BASE_DIRECTORY will be created if it doesn't exist"
echo "DEPTH must be an integer number >0"
echo "HASH_BITS(session.hash_bits_per_character) should be one of 4, 5, or 6"
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">
<erlref>
<header>
<copyright>
<year>1996</year>
<year>2016</year>
<holder>Ericsson AB, All Rights Reserved</holder>
</copyright>
<legalnotice>
Licensed under the Apache License, Version 2.0 (the "License");
... | {
"pile_set_name": "Github"
} |
/* eslint-env jest */
import { RUNNING, SUCCESS, FAILURE } from './constants'
import BehaviorTree from './BehaviorTree'
import Sequence from './Sequence'
import Selector from './Selector'
import Task from './Task'
import InvertDecorator from './decorators/InvertDecorator'
describe('BehaviorTree', () => {
let bTree
... | {
"pile_set_name": "Github"
} |
<?php
/**
* Zend Framework
*
* 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://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license an... | {
"pile_set_name": "Github"
} |
[
{
"filePath": "/Users/nbrahms/dev/echelon-backend/r2c/bento/test/integration/init.js",
"messages": [
{
"ruleId": "no-console",
"severity": 1,
"message": "Unexpected console statement.",
"line": 7,
"column": 1,
"nodeType": "MemberExpression",
"mes... | {
"pile_set_name": "Github"
} |
[
{
"date": "20121212",
"summary": [
{
"activity": "walking",
"group": "walking",
"duration": 3333,
"distance": 3333,
"steps": 3333,
"calories": 300
},
{
... | {
"pile_set_name": "Github"
} |
<?php
/**
* mailchimp-lib Magento Component
*
* @category Ebizmarts
* @package mailchimp-lib
* @author Ebizmarts Team <info@ebizmarts.com>
* @copyright Ebizmarts (http://ebizmarts.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @date: 4/29/16 4:08 PM
*... | {
"pile_set_name": "Github"
} |
[$RootKey$\TemplateEngine\Templates\IdentityServer\4.0]
"InstalledPath"="$PackageFolder$" | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<... | {
"pile_set_name": "Github"
} |
"""Provides classes that represent iTerm2 windows."""
import abc
import json
import typing
import iterm2.api_pb2
import iterm2.arrangement
import iterm2.connection
import iterm2.profile
import iterm2.rpc
import iterm2.session
import iterm2.tab
import iterm2.transaction
import iterm2.util
class CreateTabException(Exc... | {
"pile_set_name": "Github"
} |
#ifndef HOOKS_H
#define HOOKS_H
#include <stdint.h>
enum __parsec_benchmark {
__parsec_blackscholes,
__parsec_swaptions,
};
uint64_t start, stop, res;
inline double ticks_to_sec(uint64_t ticks);
inline uint64_t rdtsc(void);
inline void __parsec_bench_begin(enum __parsec_benchmark __bench) {};
inline void __p... | {
"pile_set_name": "Github"
} |
/*
* << Haru Free PDF Library >> -- hpdf_consts.h
*
* URL: http://libharu.org
*
* Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
* Copyright (c) 2007-2009 Antony Dovgal <tony@daylessday.org>
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation fo... | {
"pile_set_name": "Github"
} |
package com.google.bitcoin.bouncycastle.bcpg;
import java.io.IOException;
import com.google.bitcoin.bouncycastle.util.Strings;
/**
* Basic type for a user ID packet.
*/
public class UserIDPacket
extends ContainedPacket
{
private byte[] idData;
public UserIDPacket(
BCPGInputStream ... | {
"pile_set_name": "Github"
} |
Filter 1: ON PK Fc 25 Hz Gain 6.7 dB Q 1.43
Filter 2: ON PK Fc 4493 Hz Gain -7.4 dB Q 2.58
Filter 3: ON PK Fc 5871 Hz Gain 7.1 dB Q 3.51
Filter 4: ON PK Fc 13116 Hz Gain 4.4 dB Q 0.64
Filter 5: ON PK Fc 19871 Hz Gain 5.5 dB Q 0.37
Filter 6: ON PK Fc 119 Hz Gain -2.5 dB Q 1.66
Filter 7: ON PK Fc 626 Hz Gain -1.0 dB Q 2.... | {
"pile_set_name": "Github"
} |
#
# Copyright (C) 2016 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the ... | {
"pile_set_name": "Github"
} |
info face="Noto Sans" size=-16 bold=1 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 outline=0
common lineHeight=22 base=17 scaleW=256 scaleH=256 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="noto-sans-rus-bold-16_0.png"
chars count=43
char id=32... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2014. Jordan Williams
*
* 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 ag... | {
"pile_set_name": "Github"
} |
{ stdenv, fetchurl, pkgconfig, cmake, libyamlcpp,
libevdev, udev }:
let
version = "0.2.1";
baseName = "interception-tools";
in stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
url = "https://gitlab.com/interception/linux/tools/repository/v${version}/archive.tar.gz";
sha256 = "... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, m... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style type="text/css">
#parent {
max-height: 100px;
background-color: lightgreen;
}
#last-child {
height: 10px;
margin-bottom: -20px;
background-color: green;
}
#separator {
height: 20px;
background-color: blue;
}
</style>
<script type="text/javascript">
functi... | {
"pile_set_name": "Github"
} |
package com.foxinmy.weixin4j.dispatcher;
import java.io.Serializable;
import com.foxinmy.weixin4j.type.AccountType;
import com.foxinmy.weixin4j.util.ServerToolkits;
/**
* 微信消息key
*
* @className WeixinMessageKey
* @author jinyu(foxinmy@gmail.com)
* @date 2015年6月9日
* @since JDK 1.6
* @see
*/
public class Weix... | {
"pile_set_name": "Github"
} |
var assert = require('assert');
var _ = require('underscore');
var dateFormat = require('../lib/dateformat');
var expects = {
'default': 'Wed Nov 26 2014 13:19:44',
'shortDate': '11/26/14',
'mediumDate': 'Nov 26, 2014',
'longDate': 'November 26, 2014',
'ful... | {
"pile_set_name": "Github"
} |
var Tokenizer = require('./Tokenizer');
module.exports = function JsonTokenizer() {
var t = new Tokenizer();
t.addRule(/^,$/, 'comma');
t.addRule(/^:$/, 'end-label');
t.addRule(/^\{$/, 'begin-object');
t.addRule(/^\}$/, 'end-object');
t.addRule(/^\[$/, 'begin-array');
t.addRule(/^\]$/, 'en... | {
"pile_set_name": "Github"
} |
package droidefense.emulator.machine.base.struct.generic;
import droidefense.sdk.helpers.DroidDefenseEnvironment;
import java.util.Hashtable;
/**
* Created by sergio on 25/3/16.
*/
public abstract class IDroidefenseClass {
private IDroidefenseClass topParentClass;
public static String[] getAndroidRClasse... | {
"pile_set_name": "Github"
} |
(module Molex_KK-6410-14_14x2.54mm_Straight (layer F.Cu) (tedit 56C6219D)
(descr "Connector Headers with Friction Lock, 22-27-2141, http://www.molex.com/pdm_docs/sd/022272021_sd.pdf")
(tags "connector molex kk_6410 22-27-2141")
(fp_text reference REF** (at 1 -4.5) (layer F.SilkS)
(effects (font (size 1 1) (th... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
... | {
"pile_set_name": "Github"
} |
/**
* The GameCore class provides the base to build games on.
* @name GameCore
* @constructor GameCore
* @example
* var myGame = new GameCore({
* canvasId: 'myCanvas',
* update: function(millis){
* // do updating of game state
* },
* draw: function(context){
* // do drawing of the game
* }... | {
"pile_set_name": "Github"
} |
var LZMA = LZMA || {};
// browserify support
if ( typeof module === 'object' ) {
module.exports = LZMA;
}
LZMA.OutWindow = function() {
this._windowSize = 0;
};
LZMA.OutWindow.prototype.create = function(windowSize) {
if ( (!this._buffer) || (this._windowSize !== windowSize) ) {
this._buffer = [];
}
this._... | {
"pile_set_name": "Github"
} |
package util
import (
"bytes"
"compress/gzip"
"crypto/sha512"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"os"
"os/exec"
"regexp"
"strconv"
"strings"
"syscall"
"time"
"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/mcuadros/go-version"
"github.com/... | {
"pile_set_name": "Github"
} |
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------... | {
"pile_set_name": "Github"
} |
describe("", function() {
var rootEl;
beforeEach(function() {
rootEl = browser.rootEl;
browser.get("build/docs/examples/example-example114/index-jquery.html");
});
it('should linkify the snippet with urls', function() {
expect(element(by.id('linky-filter')).element(by.binding('snippet | linky')).getT... | {
"pile_set_name": "Github"
} |
/*
* The authors of this software are Rob Pike and Ken Thompson.
* Copyright (c) 2002 by Lucent Technologies.
* Permission to use, copy, modify, and distribute this software for any
* purpose without fee is hereby granted, provided that this entire notice
* is included in all copies of any software wh... | {
"pile_set_name": "Github"
} |
"""Stuff that differs in different Python versions and platform
distributions."""
from __future__ import absolute_import, division
import codecs
import locale
import logging
import os
import shutil
import sys
from pip._vendor.six import text_type
try:
import ipaddress
except ImportError:
try:
from pi... | {
"pile_set_name": "Github"
} |
# MKS: Mechanical Keyboard Simulator
Do you love the sweet sound of a mechanical keyboard with those Cherry MX Blue
keys? Are your coworkers and family members sharpening their pitchforks and are
getting ready to murder you just to stop the incessant clicking? Well, you are
in luck! I have a program that will make the... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2013 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<identity>
... | {
"pile_set_name": "Github"
} |
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *)
(* <O___,, * (see CREDITS file for the list of authors) *)
(* \VV/ *********... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
'''
【简介】
PyQt5中 QLineEdit的输入掩码例子
'''
from PyQt5.QtWidgets import QApplication, QLineEdit , QWidget , QFormLayout
import sys
class lineEditDemo(QWidget):
def __init__(self, parent=None):
super(lineEditDemo, self).__init__(parent)
self.setWindowTitle("QLineEdit的输入掩码例子")
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2002-2006 Sun Microsystems, Inc. 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 Software Fou... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.6.0">
<title><?lsmb text('Bin List') ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
background-color: white;
}
tr.c3 {background-color: bla... | {
"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 license... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!--
Diary - Personal diary for Android
Copyright © 2012 Josep Portella Florit <hola@josep-portella.com>
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 Softwar... | {
"pile_set_name": "Github"
} |
#!/bin/bash
# build the project
BASEDIR=$(dirname $0)
source $BASEDIR/defaults.sh
if ! $WITH_CMAKE ; then
make --jobs $NUM_THREADS all test pycaffe warn
else
cd build
make --jobs $NUM_THREADS all test.testbin
fi
make lint
| {
"pile_set_name": "Github"
} |
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>sources</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</in... | {
"pile_set_name": "Github"
} |
# build the base image: jdk
# this is the docker file, use the jdk 8u144-ubuntu16.04
# VERSION 1
# Author: leviqian
# the basic image
FROM 192.168.88.73:8888/common/jdk:8u144-ubuntu16.04
# maintainer
MAINTAINER leviqian leviqian@sina.com
# get the args
ARG version
# set env
ENV VERSION $version
# copy the file
RUN... | {
"pile_set_name": "Github"
} |
/*
* The MySensors Arduino library handles the wireless radio link and protocol
* between your home built sensors/actuators and HA controller of choice.
* The sensors forms a self healing radio network with optional repeaters. Each
* repeater and gateway builds a routing tables in EEPROM which keeps track of the
*... | {
"pile_set_name": "Github"
} |
//
// Basic print styles
// --------------------------------------------------
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
@media print {
* {
text-shadow: none !important;
color: #000 !important; // Black prints faster: h5bp.com/s
background: transparent !important;
... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // A... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.