text
stringlengths
2
99.8k
meta
dict
issue_relation_001: id: 1 issue_from_id: 10 issue_to_id: 9 relation_type: blocks delay: issue_relation_002: id: 2 issue_from_id: 2 issue_to_id: 3 relation_type: relates delay:
{ "pile_set_name": "Github" }
require('../../modules/es6.array.is-array'); module.exports = require('../../modules/_core').Array.isArray;
{ "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. #import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOpt...
{ "pile_set_name": "Github" }
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. # Local configure fragment for sysdeps/unix/sysv/linux/csky arch_minimum_kernel=4.20.0 ldd_rewrite_script=sysdeps/unix/sysv/linux/ldd-rewrite.sed
{ "pile_set_name": "Github" }
# coding: utf-8 print "BOM BOOM!"
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Amplitude Tests</title> <style> .column { display: flex; flex-direction: column; } .row { display: flex; flex-direction: row; } .row > * { ...
{ "pile_set_name": "Github" }
require('../../modules/es6.symbol'); module.exports = require('../../modules/_core').Symbol['for'];
{ "pile_set_name": "Github" }
import DiGenerator from './DiGenerator'; export default { __init__: [ 'diGenerator' ], diGenerator: [ 'type', DiGenerator ] };
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@st...
{ "pile_set_name": "Github" }
{ "desc": "Uploads or creates a file.", "args": { "file": { "required" : true, "example" : "...", "desc" : "File contents via `multipart/form-data`.", "type" : "file" }, "content": { "required" : false, "example" : "...", "desc" : "File contents via a POST var." }, "filetype": { ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@st...
{ "pile_set_name": "Github" }
ArrayXd v = ArrayXd::LinSpaced(5,0,1); cout << sinh(v) << endl;
{ "pile_set_name": "Github" }
git https://github.com/AccelerationNet/recursive-regex.git
{ "pile_set_name": "Github" }
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !go1.9 package http2 import ( "net/http" ) func configureServer19(s *http.Server, conf *Server) error { // not supported prior to go1.9 return n...
{ "pile_set_name": "Github" }
#name: File.readlines(...) #key: file # -- File.readlines(${1:path}).each do |line| $0 end
{ "pile_set_name": "Github" }
<wux-cell wux-class="{{ classes.cell }}" prefixCls="{{ cellPrefixCls }}" title="{{ title }}" label="{{ label }}" extra="{{ extra }}"> <wux-selectable slot="header" wux-class="{{ classes.selectable }}" prefixCls="{{ selectablePrefixCls }}" value="{{ value }}" checked="{{ inputChecked }}" color="{{ color }}" disabled...
{ "pile_set_name": "Github" }
# #About: This will install postfix # --- - hosts: '{{inventory}}' become: yes roles: - postfix
{ "pile_set_name": "Github" }
#define MAP_32BIT 0x40
{ "pile_set_name": "Github" }
# Format: //devtools/kokoro/config/proto/build.proto env_vars: { key: "PACKAGE" value: "google-cloud-functions" }
{ "pile_set_name": "Github" }
.. ../../../features/multilib
{ "pile_set_name": "Github" }
filetype plugin indent on syntax enable
{ "pile_set_name": "Github" }
div:not(#bat):not(#man) { display: inline-block; }
{ "pile_set_name": "Github" }
/** * @file * List group. * A list of links, grouped together. */ .list-group__link { padding: 7px 0 0; border-top: 1px solid #ccc; } .list-group__description { margin: 0 0 10px; }
{ "pile_set_name": "Github" }
#ifndef CONTROL_H #define CONTROL_H #include <stdbool.h> void control_init(const char *control_host, const char *control_port, bool server); void control_cleanup(void); void control_writeln(const char *str); char *control_readln(void); void control_expectln(const char *str); #endif /* CONTROL_H */
{ "pile_set_name": "Github" }
// @flow var a = 0; module.exports = a;
{ "pile_set_name": "Github" }
dd2e3684b13c0071d480e97b569041e69538e798 busybox-1.20.2.tar.bz2
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <data> <int key="IBDocument.SystemTarget">1060</int> <string key="IBDocument.SystemVersion">10J567</string> <string key="IBDocument.InterfaceBuilderVersion">823</string> <string key="IBDocument.AppKitVe...
{ "pile_set_name": "Github" }
{"two": 2, "one": 1, "non-ascii": "度假村"}
{ "pile_set_name": "Github" }
b278e45ce46724c58662fc6ea9c526e5f22db817
{ "pile_set_name": "Github" }
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: full_name: Gem::Commands::UpdateCommand#update_gem is_singleton: false name: update_gem params: (name, version = Gem::Requirement.default) visibility: public
{ "pile_set_name": "Github" }
// Package timeoutconn provides overridden net.Conn that supports deadline (timeout). package timeoutconn import ( "net" "time" ) // New creates a net.Conn with a timeout for every Read operation. func New(netConn net.Conn, timeout time.Duration) net.Conn { return &conn{netConn, timeout} } // A net.Conn that sets...
{ "pile_set_name": "Github" }
{ "name": "3DS XL", "description": "A portable gaming console with a 3D screen.", "url": "https://www.nintendo.com/3ds/features/" }
{ "pile_set_name": "Github" }
import 'rxjs-compat/add/operator/materialize';
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- Copyright 2016 Goldman Sachs. 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...
{ "pile_set_name": "Github" }
Elegant Themes Blog: http://www.elegantthemes.com/blog/freebie-of-the-week/beautiful-flat-icons-for-free These icons are completely free and Open Source under the GPL-2.0, so feel free to use them in your personal and commercial projects alike. ------------------------------------------------------------------------...
{ "pile_set_name": "Github" }
-----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErEmYYo4WrKDapytxIaHVATv2xeUv 2o3YW4pn/nvqNurGvgX5Ld6rz976ZF0II7S+wFJxkilDWFumm+s4qr7grw== -----END PUBLIC KEY-----
{ "pile_set_name": "Github" }
( 0, 0 ), ( 0.25, -0.5 ) ( 0.25, -0.5 ), ( 0.5, -0.5 ) ( 0.5, -0.5 ), ( 0.5, 0.5 ) ( 0.5, 0.5 ), ( 0.25, 0.5 ) ( 0.25, 0.5 ), ( 0, 0 ) // handle part type thing ( 0, 0 ), ( -1, 0 ) // stem ( -1, 0 ), ( -1, -0.5 ) // end lockpick part ( -0.75, 0 ), ( -0.75, -0.25 )
{ "pile_set_name": "Github" }
define( [ "./class2type" ], function( class2type ) { return class2type.toString; } );
{ "pile_set_name": "Github" }
[expect php] [file] <?php require('Phalanger.inc'); $i = 0; $str = ''; while ($i<256) { $str .= chr($i++); } __var_dump(md5(strrev($str))); __var_dump(strrev(NULL)); __var_dump(strrev("")); ?>
{ "pile_set_name": "Github" }
'use strict'; module.exports = function (str) { return typeof str === 'string' ? str.replace(/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]/g, '') : str; };
{ "pile_set_name": "Github" }
contract C { C constant x = C(0x123); }
{ "pile_set_name": "Github" }
import { pluginSanityCheck } from '../unit-test' import plugin from './index.js' pluginSanityCheck(__dirname, plugin)
{ "pile_set_name": "Github" }
function mapping(sequence_region) return "hs_ref_"..sequence_region..".fa.gz" end
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <string xmlns="http://tempuri.org/">{ "Info": [ { "IsSuccess": "True", "InAddress": "高雄市鹽埕區五福四路163號一樓", "InSRS": "EPSG:4326", "InFuzzyType": "[單雙號機制]+[最近門牌號機制]", "InFuzzyBuffer": "0", "InIsOnlyFullMatch": "False", "InIsLock...
{ "pile_set_name": "Github" }
# Event 82 - DUser_ReleaseStagingBuffer ###### Version: 0 ## Description None ## Data Dictionary |Standard Name|Field Name|Type|Description|Sample Value| |---|---|---|---|---| |TBD|surfaceId|Pointer|None|`None`| ## Tags * etw_level_Informational * etw_keywords_DUserSurface * etw_task_DUser_ReleaseStagingBuffer
{ "pile_set_name": "Github" }
import App from './src'; export default App;
{ "pile_set_name": "Github" }
// // Prefix header for all source files of the 'OCR' target in the 'OCR' project // #ifdef __OBJC__ #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #endif
{ "pile_set_name": "Github" }
#!/usr/bin/env bash ### dapp-clone -- clone a github repo ### Usage: dapp clone <org/repo> set -e deps=$(dapp --parse-deps "$@") while read -r _ name url; do ssh_url=${url/https:\/\/github.com\//git@github.com:} (set -x; git clone "$ssh_url" "$name" --recursive) done <<<"$deps"
{ "pile_set_name": "Github" }
--- id: 5900f4f21000cf542c510005 challengeType: 5 title: 'Problem 390: Triangles with non rational sides and integral area' videoUrl: '' localeTitle: 问题390:具有非理性边和积分面积的三角形 --- ## Description <section id="description">考虑边长为√5,√65和√68的三角形。可以看出,该三角形具有区域9。 <p> S(n)是所有三角形的面积之和,其边长为√(1 + b2),√(1 + c2)和√(b2 + c2)(对于正整数b和c),其...
{ "pile_set_name": "Github" }
INX / CPX #$19 / BRANCH somewhere Looks like a fragment of a loop that waits until X reaches $19 before terminating. Nothing creative or copyrightable here.
{ "pile_set_name": "Github" }
namespace java scalarules.test.twitter_scrooge.thrift.thrift2.thrift3 include "../Thrift2_A.thrift" struct Struct4 { 1: Thrift2_A.Struct2A nested }
{ "pile_set_name": "Github" }
AudioInput="Äänitulo" AudioOutput="Äänilähtö" Device="Laite" Default="Oletusarvo" UseDeviceTiming="Käytä laitteen aikaleimoja"
{ "pile_set_name": "Github" }
#define ASI_PNF 0x82 #define ASI_BLK_P 0xf0 #define XCC icc #include <sparc64/strspn.S>
{ "pile_set_name": "Github" }
//#include "Exportor/PLYExportor.h" //using namespace MonocularSfM;
{ "pile_set_name": "Github" }
// // Prefix header // // The contents of this file are implicitly included at the beginning of every source file. // #import <Availability.h> #ifndef __IPHONE_5_0 #warning "This project uses features only available in iOS SDK 5.0 and later." #endif #ifdef __OBJC__ @import UIKit; @import Foundation; #endif...
{ "pile_set_name": "Github" }
tests/qapi-schema/args-alternate.json:3: 'data' for command 'oops' cannot use alternate type 'Alt'
{ "pile_set_name": "Github" }
FROM selenium/standalone-chrome:3.141.59-oxygen COPY tests/behat/files /app/tests/behat/files
{ "pile_set_name": "Github" }
export { b } from './a' console.log('entry');
{ "pile_set_name": "Github" }
module github.com/flosch/pongo2/v4 go 1.14 require ( github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b )
{ "pile_set_name": "Github" }
+++ title = "page 4" description = "Ceci est une page test" hidden = true +++ Ceci est une page de demo
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <launch> <!-- Usage: roslaunch chapter9_tutorials camera_timer.launch fps:=30 camera_index:=1 --> <!-- Logger config --> <env name="ROSCONSOLE_CONFIG_FILE" value="$(find chapter9_tutorials)/config/chapter9_tutorials.config"/> <!-- Arguments --> <!-- FPS. --...
{ "pile_set_name": "Github" }
/* Copyright 2016 Goldman Sachs. 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 wri...
{ "pile_set_name": "Github" }
["line break"]
{ "pile_set_name": "Github" }
#!/bin/sh # # This generates the tags file for vim or emacs. (vim -t igbinary_serialize8) # # Try with "vim -t igbinary_serialize8" # find . -name "*.h" -o -name "*.c" | ctags-exuberant --language-force=c -L -
{ "pile_set_name": "Github" }
package com.example.admin.processingboilerplate; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public Application...
{ "pile_set_name": "Github" }
-- Template updates for gameobject 1721 (Locked ball and chain) UPDATE `gameobject_template` SET `flags`=`flags`|4 WHERE `entry`=1721;
{ "pile_set_name": "Github" }
require('../../modules/es6.regexp.flags'); var flags = require('../../modules/_flags'); module.exports = function (it) { return flags.call(it); };
{ "pile_set_name": "Github" }
/* You can add global styles to this file, and also import other style files */
{ "pile_set_name": "Github" }
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** * Qwt Widget Library * Copyright (C) 1997 Josef Wilgen * Copyright (C) 2002 Uwe Rathmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the Qwt License, Version 1.0 **************...
{ "pile_set_name": "Github" }
<% if @serveraliases and ! @serveraliases.empty? -%> ## Server aliases <% Array(@serveraliases).each do |serveralias| -%> ServerAlias <%= serveralias %> <% end -%> <% end -%>
{ "pile_set_name": "Github" }
<component name="libraryTable"> <library name="Maven: org.apache.avro:avro:1.8.1"> <CLASSES> <root url="jar://$MAVEN_REPOSITORY$/org/apache/avro/avro/1.8.1/avro-1.8.1.jar!/" /> </CLASSES> <JAVADOC> <root url="jar://$MAVEN_REPOSITORY$/org/apache/avro/avro/1.8.1/avro-1.8.1-javadoc.jar!/" /> ...
{ "pile_set_name": "Github" }
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = cloneDeep; var _cloneNode = _interopRequireDefault(require("./cloneNode")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function cloneDeep(node) { return (0, _cloneN...
{ "pile_set_name": "Github" }
set (libname "isd1820") set (libdescription "Voice Recording and Playback Module") set (module_src ${libname}.cxx) set (module_hpp ${libname}.hpp) upm_module_init(mraa)
{ "pile_set_name": "Github" }
[options="header",cols="10%,10%,10%,70%"] |====== | Property | Mandatory | Type | Description | autoPurge | false | boolean | Flag which controls the global setting for the auto purge mechanism. The setting can be overriden by the schema &#x27;autoPurge&#x27; flag. Default: true |======
{ "pile_set_name": "Github" }
import Link from 'next/link' export default function Home() { return ( <> <ul> <li> <Link href="/b" as="/a"> <a>a</a> </Link> </li> <li> <Link href="/a" as="/b"> <a>b</a> </Link> </li> </ul> <img src...
{ "pile_set_name": "Github" }
#include "qtestelementattribute.h"
{ "pile_set_name": "Github" }
{ "$schema": "http://json-schema.org/schema#", "type": "object", "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "type": [ "string", "null" ], "description":...
{ "pile_set_name": "Github" }
test_number=002 description="fail when missing required params" $bin >/dev/null 2>&1 if [ $? -eq 0 ]; then test_status $test_number 0 "$description" FAIL else test_status $test_number 0 "$description" PASS fi
{ "pile_set_name": "Github" }
valid
{ "pile_set_name": "Github" }
/*___Generated_by_IDEA___*/ package com.syh.wechatImageClipping; /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ public final class BuildConfig { public final static boolean DEBUG = Boolean.parseBoolean(null); }
{ "pile_set_name": "Github" }
/* * Copyright 2019-2020 Mamoe Technologies and contributors. * * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证. * Use of this source code is governed by the GNU AFFERO GENERAL PUBLIC LICENSE version 3 license that can be found via the following link. * * https://github.com/mamoe/mira...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 48881cb6a8fc44bba97eb256edc502c8 timeCreated: 1565857492
{ "pile_set_name": "Github" }
julia 1.0 JuliaInterpreter
{ "pile_set_name": "Github" }
page { background: #eee; }
{ "pile_set_name": "Github" }
// +build !windows /* * Copyright (C) 2020 The "MysteriumNetwork/node" Authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) an...
{ "pile_set_name": "Github" }
import sys if sys.version_info[:2] < (2, 7): # pragma: no cover import unittest2 as unittest else: import unittest try: from unittest import mock except ImportError: import mock # flake8: noqa
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head> <title>CURLMOPT_PUSHDATA man page</title> <meta name="generator" content="roffit"> <STYLE type="text/css"> pre { overflow: auto; margin: 0; } P.level0, pre.level0 { padding-left: 2em; } P.level1, ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx"> <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) --> <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx"> <!-- Diagram content (shape and connector positions) -->...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: f6d08eb9a8e35d84fa30a7e3ae64181a PrefabImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
// +build !go1.5 package request import ( "io" "net/http" "net/url" ) func copyHTTPRequest(r *http.Request, body io.ReadCloser) *http.Request { req := &http.Request{ URL: &url.URL{}, Header: http.Header{}, Close: r.Close, Body: body, Host: r.Host, Method: ...
{ "pile_set_name": "Github" }
```release-note:enhancement container: added `release_channel` to `google_container-cluster` (GA) ```
{ "pile_set_name": "Github" }
require('../../modules/es6.math.acosh'); module.exports = require('../../modules/_core').Math.acosh;
{ "pile_set_name": "Github" }
/* vi:set ts=8 sts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar * BeBox port by Olaf Seibert * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. */ /* * os_beos.h */ #undef USE_SYSTEM #define USE_THREAD_FOR_INPUT_WITH_T...
{ "pile_set_name": "Github" }
min-conflicts,76,0.123
{ "pile_set_name": "Github" }
{ "parent": "immersiveengineering:block/stairs_steel_scaffolding_wooden_top" }
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: e2f9a5d6347e01847aaced504a9031de MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
# Aligned Interpolated GAN Discover new datasets that exist between two distributions.
{ "pile_set_name": "Github" }
pytest pytest-cov mock # We also want everything as specified by setup.py -e .
{ "pile_set_name": "Github" }
"use strict"; define(function(require) { /* jshint ignore:start */ return { api_root: API_ROOT, asset_root: ASSET_ROOT, doc_root: DOC_ROOT }; /* jshint ignore:end */ });
{ "pile_set_name": "Github" }
do let {selstart}i{selend} = 123
{ "pile_set_name": "Github" }