text
stringlengths
3
96.2k
meta
dict
'use strict'; var memoize = require('../..') , nextTick = require('next-tick'); module.exports = function () { return { Regular: { Success: function (a, d) { var mfn, fn, u = {}, i = 0, invoked = 0; fn = function (x, y, cb) { nextTick(function () { ++i; cb(null, x + y); }); ...
{ "pile_set_name": "Github" }
class Group extends OutlinerElement { constructor(data, uuid) { super(uuid) for (var key in Group.properties) { Group.properties[key].reset(this); } this.name = Format.bone_rig ? 'bone' : 'group' this.children = [] this.reset = false; this.shade = true; this.selected = false; this.locked = fals...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <CodeBlocks_project_file> <FileVersion major="1" minor="6" /> <Project> <Option title="udis86" /> <Option pch_mode="2" /> <Option compiler="gcc" /> <Build> <Target title="Release"> <Option platforms="Unix;" /> <Option output="bin/Release/udis...
{ "pile_set_name": "Github" }
package constants // TBS Config List var ( DuplicatedAssertionLimitLength = 5 ASSERTION_LIST = []string{ "assert", "should", "check", // ArchUnit, "maynotbe", // ArchUnit, "is", // RestAssured, "spec", // RestAssured, "verify", // Mockito, } ) var TechStopWords = []string{ "get", "c...
{ "pile_set_name": "Github" }
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @package CodeIgniter * @author ExpressionEngine Dev Team * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. * @license http://codei...
{ "pile_set_name": "Github" }
// Copyright 2011 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 deepequal_test import ( "testing" "google3/spam/archer/frontend/deepequal" ) func TestTwoNilValues(t *testing.T) { if err := deepequal.Check(nil, n...
{ "pile_set_name": "Github" }
(function(){ if (typeof self === 'undefined' || !self.Prism || !self.document) { return; } // The languages map is built automatically with gulp var Languages = /*languages_placeholder[*/{"css":"CSS","clike":"C-like","javascript":"JavaScript","abap":"ABAP","actionscript":"ActionScript","apacheconf":"Apache Configura...
{ "pile_set_name": "Github" }
//======= Copyright (c) Valve Corporation, All rights reserved. =============== // // Purpose: Can be attached to the controller to collide with the balloons // //============================================================================= using UnityEngine; using System.Collections; namespace Valve.VR.Int...
{ "pile_set_name": "Github" }
<!doctype html> <html> <head> <title>Filter attribute</title> <script src="../../../webcomponentsjs/webcomponents-lite.js"></script> <script> window.Polymer = window.Polymer || {}; window.Polymer.dom = 'shadow'; </script> <link rel="import" href="../../../polymer/polymer.html"> <link rel="import" h...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8" ?> <Patch> <Operation Class="PatchOperationSequence"> <success>Always</success> <operations> <li Class="CombatExtended.PatchOperationFindMod"> <modName>[RH] Faction: Elite Crew</modName> </li> <!-- ========== Elite Crew faction pawns should spawn backpacks, allow...
{ "pile_set_name": "Github" }
package awsutil import ( "reflect" "regexp" "strconv" "strings" "github.com/jmespath/go-jmespath" ) var indexRe = regexp.MustCompile(`(.+)\[(-?\d+)?\]$`) // rValuesAtPath returns a slice of values found in value v. The values // in v are explored recursively so all nested values are collected. func rValuesAtPa...
{ "pile_set_name": "Github" }
<div class="profile bitbucket modal fade" id="bitbucket-profile"> {{#with user }} <div class="profile-info"> <button class="close" data-dismiss="modal">×</button> <a href="http://bitbucket.org/{{ username }}" class="profile-avatar"> <img src="{{ avatar }}" alt="{{name}}" /> </a> <div class="pr...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html id="html"> <head> <title>NodeList.delegate() test</title> <style type="text/css"> @import "../../resources/dojo.css"; </style> <script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="is...
{ "pile_set_name": "Github" }
<?php class WCV_Submit_Comment { /** * Submit a comment for an order * * @param object $orders * * @return unknown */ public static function new_comment( $orders ) { global $woocommerce; $user = wp_get_current_user(); $user = $user->ID; // Security if ( ! wp_verify_nonce( $_POST['_wpnonce']...
{ "pile_set_name": "Github" }
<div class="modal fade" id="device_borrow_confirm"> <div class="modal-dialog"> <div class="modal-content modal-dialog-alert-middle"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <h4 class=...
{ "pile_set_name": "Github" }
<?php /** * IvooxRssBridge * Returns the latest search result * TODO: support podcast episodes list */ class IvooxBridge extends BridgeAbstract { const NAME = 'Ivoox Bridge'; const URI = 'https://www.ivoox.com/'; const CACHE_TIMEOUT = 10800; // 3h const DESCRIPTION = 'Returns the 10 newest episodes by keyword s...
{ "pile_set_name": "Github" }
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Data attributes - robertnyman.com</title> <link rel="stylesheet" href="../css/base.css" type="text/css" media="screen"> <style> .error { color: #f00; } </style> <!--[if lte IE 8]> <script src="../js/html5.js"></script> <![endif]--> </head> <bo...
{ "pile_set_name": "Github" }
处理分页 ========= 场景 ---- 对分页来说,我们最感兴趣的是下面几个信息 * 总共有多少页 * 当前是第几页 * 是否可以上一页和下一页 代码 ---- 下面的代码演示了如何获取分页的总数以及当前是第几页 ### pagination.html ```html <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <title>Pagination</title> <script type="text/javascript" async="" src="http://aja...
{ "pile_set_name": "Github" }
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2020 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ describe('Text Inline Popup plugin', function () { describe('Image', function () { describe('Cl...
{ "pile_set_name": "Github" }
0 0 0 0 1 ^[ 0 2 '1 0 3 '2 0 4 '3 0 5 '4 0 6 '5 0 7 '6 0 8 '7 0 9 '8 0 10 '9 0 11 '0 0 12 '- 0 13 '= 0 14 ^H 0 15 ^I 0 16 'q 0 17 'w 0 18 'e 0 19 'r 0 20 't 0 21 'y 0 22 'u 0 23 'i 0 24 'o 0 25 'p 0 26 '[ 0 27 '] 0 28 ^J 0 29 0xf862 0 30 'a 0 31 's 0 32 'd 0 33 'f 0 34 'g 0 35 'h 0 36 'j 0 37 'k 0 38 'l 0 39 '; 0 40 ''...
{ "pile_set_name": "Github" }
<?php /** * System messages translation for CodeIgniter(tm) * * @author CodeIgniter community * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) * @license http://opensource.org/licenses/MIT MIT License * @link http://codeigniter.com */ defined('BASEPATH') OR exit(...
{ "pile_set_name": "Github" }
<?php $languageNames = array( 'ar' => 'අරාබි', 'bn' => 'බෙංගලි', 'bo' => 'ටිබෙට්', 'de' => 'ජර්මන්', 'de-at' => 'ඔස්ට්‍රියානු ජර්මන්', 'dv' => 'දිවෙහි', 'el' => 'ග්‍රීක', 'en' => 'ඉංග්‍රීසි', 'en-au' => 'ඕස්ට්‍රේලියානු ඉංග්‍රීසි', 'en-ca' => 'කැනේඩියානු ඉංග්‍රීසි', 'en-gb' => 'බ්‍රිතාන්‍ය ඉංග්‍රීසින්‍ය', 'en-us' => 'ඇ...
{ "pile_set_name": "Github" }
{ "version": "0.2.0", "configurations": [ { "name": "Python", "type": "python", "request": "launch", "stopOnEntry": true, "program": "${file}", "pythonPath": "c:/python34/python.exe", "debugOptions": [ "WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput" ] }, { "name...
{ "pile_set_name": "Github" }
/*EditArea.prototype.comment_or_quotes= function(v0, v1, v2, v3, v4,v5,v6,v7,v8,v9, v10){ new_class="quotes"; if(v6 && v6 != undefined && v6!="") new_class="comments"; return "µ__"+ new_class +"__µ"+v0+"µ_END_µ"; };*/ /* EditArea.prototype.htmlTag= function(v0, v1, v2, v3, v4,v5,v6,v7,v8,v9, v10){ res="...
{ "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" }
exec(/a|ab/ /*lastIndex=0*/ , "abc"); ["a"] /*input="abc", index=0*/ r.lastIndex=0 RegExp.${_,1,...,9}=["abc","","","","","","","","",""] exec(/((a)|(ab))((c)|(bc))/ /*lastIndex=0*/ , "abc"); ["abc","a","a",undefined,"bc",undefined,"bc"] /*input="abc", index=0*/ r.lastIndex=0 RegExp.${_,1,...,9}=["abc","a","a"...
{ "pile_set_name": "Github" }
<section> <h1 class="blue" data-id="#files/css"><i class="ace-icon fa fa-file-o grey"></i> CSS/LESS Files</h1> <hr /> <!-- #section:files/css --> <div class="help-content"> <h3 class="info-title smaller" data-id="#files/css.bootstrap">1. Bootstrap</h3> <!-- #section:files/css.bootstrap --> <div class...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico" /> <title>DataTables example</title> <style t...
{ "pile_set_name": "Github" }
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { var DOM = tinymce.DOM; tinymce.create('tinymce.plugins.FullScreenPlugin...
{ "pile_set_name": "Github" }
5 10005 66 5 10005 66 20 10020 66 20 10020 66 25 10025 88 25 10025 66 30 10030 66 30 10030 88 35 10035 88 35 10035 88 40 10040 66 40 10040 66 40 10040 66 40 10040 88 40 10040 88 40 10040 66 40 10040 88 40 10040 88 50 10050 66 50 10050 66 50 10050 66 50 10050 66 50 10050 66 50 10050 88 50 10050 88 50 10050 66 50 10050 8...
{ "pile_set_name": "Github" }
<div id="signup"> <div class="head"> <h2>Sign Up</h2> </div> <div class="form"> <form action="#" method="post"> <div class="row"> <div class="profile-pic"> <img src="http://lorempixel.com/50/50/people" alt="Profile Logo"> </div> <div class="description"> <label for="profile-pi...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" Name="Cpp Wrapper" RootNamespace="Cpp Wrapper" SccProjectName="" SccLocalPath=""> <Platforms> <Platform Name="Win32"/> </Platforms> <Configurations> <Configuration Name="Debug|Win32" OutputDi...
{ "pile_set_name": "Github" }
/* * (C) Copyright 2001 * Denis Peter, MPL AG Switzerland * * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _SCSI_H #define _SCSI_H typedef struct SCSI_cmd_block{ unsigned char cmd[16]; /* command */ /* for request sense */ unsigned char sense_buf[64] __attribute__((aligned(ARCH_DMA_MINALIGN)));...
{ "pile_set_name": "Github" }
// @ts-nocheck 'use strict'; const atRuleParamIndex = require('../../utils/atRuleParamIndex'); const declarationValueIndex = require('../../utils/declarationValueIndex'); const getUnitFromValueNode = require('../../utils/getUnitFromValueNode'); const report = require('../../utils/report'); const ruleMessages = requir...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="gb2312"?> <VisualStudioProject ProjectType="Visual C++" Version="9.00" Name="mmGhostR3" ProjectGUID="{42C8E7CE-82C8-46FF-90A5-5648710C8ADB}" RootNamespace="mmGhostR3" Keyword="Win32Proj" TargetFrameworkVersion="196613" > <Platforms> <Platform Name="Win32" /> </Platforms> ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="9.00" Name="Add_PerInterface_Rule" ProjectGUID="{7B3D2178-EBFC-4689-8FAF-805D36D73FD6}" RootNamespace="Add_PerInterface_Exception" Keyword="Win32Proj" TargetFrameworkVersion="131072" > <Platforms> <Platform ...
{ "pile_set_name": "Github" }
/* Pretty handling of time axes. Copyright (c) 2007-2013 IOLA and Ole Laursen. Licensed under the MIT license. Set axis.mode to "time" to enable. See the section "Time series data" in API.txt for details. */ (function($) { var options = { xaxis: { timezone: null, // "browser" for local to the client or time...
{ "pile_set_name": "Github" }
{ "version":"LAYAMATERIAL:02", "props":{ "type":"Laya.UnlitMaterial", "name":"New Render Texture 3", "renderStates":[ { "cull":2, "blend":0, "srcBlend":1, "dstBlend":0, "depthWrite":true, "depthTest":515 } ], "enableVertexColor":false, "alphaTest":false, "alphaTestValue":0....
{ "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" }
<?php /** * GitHub Export Manager. * * @package WordPress_GitHub_Sync */ /** * Class WordPress_GitHub_Sync_Export */ class WordPress_GitHub_Sync_Export { /** * Option key for export user. */ const EXPORT_USER_OPTION = '_wpghs_export_user_id'; /** * Application container. * * @var WordPress_GitHub_...
{ "pile_set_name": "Github" }
{ "productName": "WordPress.com", "appId": "com.automattic.wordpress", "asar": false, "directories": { "buildResources": "./resource/icons", "output": "./release" }, "files": [ "package.json", "build/desktop.js", "build/*.desktop.js", "public_desktop", "public/**/*", "public/**/*.css.map", "clie...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="9.00" Name="DWriteHelloWorld" ProjectGUID="{278F0E88-6143-4C81-9400-7DD14C9ABDE6}" RootNamespace="TextFormat" Keyword="Win32Proj" TargetFrameworkVersion="196613" > <Platforms> <Platform Name="Win32" /> ...
{ "pile_set_name": "Github" }
<?xml version="1.0" ?> <!DOCTYPE translationbundle> <translationbundle lang="kn"> <translation id="130631256467250065">ನಿಮ್ಮ ಸಾಧನವನ್ನು ನೀವು ಮುಂದಿನ ಬಾರಿ ಮರುಪ್ರಾರಂಭಿಸಿದಾಗ ನಿಮ್ಮ ಬದಲಾವಣೆಗಳು ಕಾರ್ಯಗತಗೊಳ್ಳುತ್ತವೆ.</translation> <translation id="7999989146447764333">Brave ನಲ್ಲಿ ಕ್ರ್ಯಾಶ್ ವರದಿ ಮಾಡುವಿಕೆ ಲಭ್ಯವಿಲ್ಲ.</translation> <t...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Plugin providerName="PeddleCheap_Lp" providerType="module"> <Command name="Pc_connect" id="0"> <Help>Connects to a chosen host with PeddleCheap</Help> <Input> <Option name='key' optional='true'> <Argument name='name' data='keyNa...
{ "pile_set_name": "Github" }
<?php namespace console\controllers; use yii\console\Controller; use eagle\modules\listing\models\OdOrder2; use eagle\modules\listing\models\OdOrderItem2; use eagle\modules\order\models\OdOrder; use eagle\modules\order\models\OdOrderItem; use eagle\modules\listing\models\OdOrderShipped2; use eagle\modules...
{ "pile_set_name": "Github" }
3004 6 0 0 0 0 12 267516 + AK094917 3011 1 3011 chr5 180857866 75414994 75685520 13 99,681,181,152,134,90,111,89,165,134,204,160,810, 1,100,781,962,1114,1248,1338,1449,1538,1703,1837,2041,2201, 75414994,75463230,75526499,75541316,75616742,75617361,75622801,75623348,75627358,75630374,75632309,75632966,75684710, 1913 0 0...
{ "pile_set_name": "Github" }
/** * Module dependencies */ var util = require( './util' ); var assert = require( 'assert' ); /** * wpcom.site.post.subscriber */ describe( 'wpcom.site.wordads', function() { // Global instances var wpcom = util.wpcom(); var site = wpcom.site( util.wordAds().site ); describe( 'wpcom.site.wordads.settings', f...
{ "pile_set_name": "Github" }
{* * 2007-2017 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 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/afl-3.0.php * If you did not receive a copy ...
{ "pile_set_name": "Github" }
package assert import ( "fmt" "reflect" ) func compare(obj1, obj2 interface{}, kind reflect.Kind) (int, bool) { switch kind { case reflect.Int: { intobj1 := obj1.(int) intobj2 := obj2.(int) if intobj1 > intobj2 { return -1, true } if intobj1 == intobj2 { return 0, true } if intobj1 ...
{ "pile_set_name": "Github" }
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>IOAuth1Client | xero-node</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="....
{ "pile_set_name": "Github" }
(;CA[UTF-8]AP[YuanYu]GM[1]FF[4] SZ[19] GN[] DT[2018-06-12] PB[骊龙]BR[9段] PW[金毛测试]WR[9段] KM[750]HA[0]RU[Japanese]RE[B+R]TM[60]TC[10]TT[60] ;B[dd];W[dp];B[pc];W[pp];B[pf];W[cc];B[dc];W[cd];B[cf];W[ce];B[de] ;W[bf];B[qn];W[qh];B[qj];W[oh];B[ng];W[hd];B[jd];W[df];B[cg];W[bg] ;B[ch];W[ef];B[cb];W[bb];B[bc];W[db];B[be];W[ca];...
{ "pile_set_name": "Github" }
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd"> <Texture name="TalentBranchTemplate" file="Interface\TalentFrame\UI-TalentBranches" virtual="true"> <Size> <AbsDimension x="30" y="30"/> </Si...
{ "pile_set_name": "Github" }
package schemaherokubectlcli import ( "fmt" "os" "path/filepath" "github.com/pkg/errors" "github.com/schemahero/schemahero/pkg/database" "github.com/spf13/cobra" "github.com/spf13/viper" ) func PlanCmd() *cobra.Command { cmd := &cobra.Command{ Use: "plan", Short: "plan a spec application ...
{ "pile_set_name": "Github" }
/** * Handles opening of and synchronization with the reveal.js * notes window. */ var RevealNotes = (function() { function openNotes() { var notesPopup = window.open( 'plugin/notes/notes.html', 'reveal.js - Notes', 'width=1120,height=850' ); // Fires when slide is changed Reveal.addEventListener( 'slidecha...
{ "pile_set_name": "Github" }
<?php function echoln($str) { echo $str; echo "\n"; } function usage($reason) { echoln("Usage: php build-nix.php [flags]"); echoln("Flags in parantheses are optional"); echoln(""); echoln(" --bits=[32,64]"); echoln(" --function=[curve25519,ed25519]"); echoln(" (--compiler=[*gcc,clang,icc]) ...
{ "pile_set_name": "Github" }
{{$rin := RandTen}} <div id="{{$rin}}"> <h5 class="text-muted">Log details</h5> <div class="list-group"> <div class="list-group-item"> <h4><i class="fa fa-time"></i> {{.Time}}</h4> </div> {{with .Bugs}} {{range .}} <div class="list-group-item"><p class="text-muted pull-right"><i class="fa fa-warning"></i><...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" Name="thread_dealloc_unittest" ProjectGUID="{6CFFBD0F-09E3-4282-A711-0564451FDF74}" Keyword="Win32Proj"> <Platforms> <Platform Name="Win32"/> </Platforms> <Configurations> <Configuration Name="De...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="gtest_main" ProjectGUID="{3AF54C8A-10BF-4332-9147-F68ED9862032}" Keyword="Win32Proj" > <Platforms> <Platform Name="Win32" /> </Platforms> <ToolFiles> </ToolFiles> <Configurations> <Config...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="7.10" Name="ddslib" ProjectGUID="{8576EC58-4E54-49C0-879A-F054C92B1D03}"> <Platforms> <Platform Name="Win32"/> </Platforms> <Configurations> <Configuration Name="Release|Win32" OutputDirectory=".\Rel...
{ "pile_set_name": "Github" }
/* * Copyright 2014 Freescale Semiconductor, Inc. * * calculate the organization and timing parameter * from ddr3 spd, please refer to the spec * JEDEC standard No.21-C 4_01_02_12R23A.pdf * * */ #include <common.h> #include <fsl_ddr_sdram.h> #include <fsl_ddr.h> /* * Calculate the Density of each Physical R...
{ "pile_set_name": "Github" }
{ "kvasir":{ "io":{ "default":{ "type":"group", "ports":"A-E", "peripheral":"GPIO%s" }, "output":{ "value":1, "register":"PDDR" }, "input":{ "value":0, "register":"PDDR" }, "set":{ "value":1, "register":"PSOR" }, "clear":{ "value":1, "register":"...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject Name="HTTPTimeServer" Version="9.00" ProjectType="Visual C++" ProjectGUID="{18A0143A-444A-38E3-838C-1ACFBE4EE18C}" RootNamespace="HTTPTimeServer" Keyword="Win32Proj"> <Platforms> <Platform Name="Win32"/> </Platforms> <ToolFiles/> <Configu...
{ "pile_set_name": "Github" }
; Function compile flags: /Odtpy ; COMDAT _pypy_g__inplace_divrem1 _TEXT SEGMENT tv158 = -292 ; size = 4 tv152 = -288 ; size = 4 tv72 = -284 ; size = 4 tv65 = -280 ; size = 4 _l_v30733$ = -273 ; size = 1 _l_v30737$ = -272 ; size = 8 _l_v30740$ = -257 ; size = 1 _l_v30744$ = -256 ; si...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8" ?> <Patch> <Operation Class="PatchOperationSequence"> <success>Always</success> <operations> <li Class="CombatExtended.PatchOperationFindMod"> <modName>Leeani Playable Race</modName> </li> <!-- ========== Quarterstaff ========== --> <!-- ========== Li...
{ "pile_set_name": "Github" }
#122_Cleaning_Up_The_Beach_In_Chiba__Japan_pick_f_nm_np1_fr_bad_1.avi 1 #122_Cleaning_Up_The_Beach_In_Chiba__Japan_pick_f_nm_np1_le_bad_2.avi 1 #122_Cleaning_Up_The_Beach_In_Chiba__Japan_pick_f_nm_np1_ri_bad_0.avi 1 AMADEUS_pick_u_nm_np1_fr_med_8.avi 2 AboutABoy_pick_h_nm_np1_le_goo_9.avi 1 BuriedTreasure_pick_u_c...
{ "pile_set_name": "Github" }
// CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE (function() { var mode = CodeMirror.getMode({indentUnit: 2}, "javascript"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } MT("locals", "[ke...
{ "pile_set_name": "Github" }
355 314 422 344 kitchen 1 1 454 622 549 651 bedroom 1 1 612 232 676 261 bathroom 1 1 504 50 542 71 restroom 1 1 439 906 564 929 balcony 1 1 306 456 450 504 closet 1 1 509 221 552 251 corridor 1 1 599 359 645 392 washing_room 1 1 432 52 462 77 PS 1 1 294 117 391 117 door 1 1 576 320 576 392 door 1 4 490 117 5...
{ "pile_set_name": "Github" }
-- -- d/tools/ldc.lua -- Provides LDC-specific configuration strings. -- Copyright (c) 2013-2015 Andrew Gough, Manu Evans, and the Premake project -- local p = premake p.tools.ldc = { } local ldc = p.tools.ldc local project = p.project local config = p.config local d = p.modules.d -- -- Set default tools -- ...
{ "pile_set_name": "Github" }
/* * This file is part of the UCB release of Plan 9. It is subject to the license * terms in the LICENSE file found in the top-level directory of this * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No * part of the UCB release of Plan 9, including this file, may be copied, * modified, prop...
{ "pile_set_name": "Github" }
<?php /** * This file implements the Current Item filters Widget class. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link https://github.com/b2evolution/b2evolution}. * * @license GNU GPL v2 - {@link http://b2evolution.net/about/gnu-gpl-license} * * @copyright (c)200...
{ "pile_set_name": "Github" }
!!!COM: Palestrina, Giovanni Perluigi da !!!OPR: Missa Tu es Petrus (1887) !!!OTL: Gloria **kern **kern **kern **kern **kern **kern *Ibass *Ibarit *Itenor *Icalto *Icant *Icant !Bassus !Baritone !Tenor !Altus !Cantus 2 !Cantus 1 *clefF4 *clefF4 *clefGv2 *clefG2 *clefG2 *clefG2 *k[] *k[] *k[] *k[] *k[] *k[] *G:mix *G:mi...
{ "pile_set_name": "Github" }
/* * ext-arrows.js * * Licensed under the Apache License, Version 2 * * Copyright(c) 2010 Alexis Deveria * */ svgEditor.addExtension("Arrows", function(S) { var svgcontent = S.svgcontent, addElem = S.addSvgElementFromJson, nonce = S.nonce, randomize_ids = S.randomize_ids, selElems; svgCanvas....
{ "pile_set_name": "Github" }
{ "translatorID": "3ddda662-ec86-448a-9979-9ee1e567c848", "label": "Japanese Diet Laws", "creator": "Frank Bennett", "target": "http://www.shugiin.go.jp/internet/itdb_housei.nsf/html/(houritsu|housei)/[0-9]+\\.htm", "minVersion": "3.0", "maxVersion": "", "priority": 100, "inRepository": true, "translatorType":...
{ "pile_set_name": "Github" }
<?php defined('IN_ECJIA') or exit('No permission resources.');?> <!-- {extends file="ecjia.dwt.php"} --> <!-- {block name="footer"} --> <script type="text/javascript"> ecjia.admin.shopping_admin.editFormSubmit(); </script> <!-- {/block} --> <!-- {block name="main_content"} --> <div> <h3 class="heading"> <!-- {if ...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. * Please refer to the LICENSE.txt for licensing details. */ package ch.ethz.ssh2.channel; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.Socket; /** * A StreamForwarder forwards data between...
{ "pile_set_name": "Github" }
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @package CodeIgniter * @author ExpressionEngine Dev Team * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. * @license http://codei...
{ "pile_set_name": "Github" }
<?php /** * Template for displaying Comments * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to twentyten_comment which is * located in the functions.php file. * * @package WordPress * @subpackage Twenty_Ten * @sinc...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>doh.robot Editor A11Y Test</title> <style> @import "../../../../util/doh/robot/robot.css"; </style> <script type="text/javascript" src="../../../../dojo/dojo.js"></script> <script type="tex...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="9.00" Name="TestLibrary" ProjectGUID="{483CB510-16C7-4C85-86B7-D79119C4A0FB}" RootNamespace="TestLibrary" Keyword="Win32Proj" TargetFrameworkVersion="196613" > <Platforms> <Platform Name="Digi JumpStart (A...
{ "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>#DisableDrivers</key> <array> <string>CsmVideoDxe</string> <string>VBoxExt4</string> </array> <key>ACPI</key> <dict> <key>#DropMCFG</...
{ "pile_set_name": "Github" }
/** * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ ( function() { var cellNodeRegex = /^(?:td|th)$/; function getSelectedCells( selection ) { var ranges = selection.getRanges(); var retval = []; var da...
{ "pile_set_name": "Github" }
+ - * / % -- ++ >> << ~ & | ^ += -= *= /= %= >>= <<= &= |= ^= ! && || -> :: ? : = == != < > <= >= <=> and and_eq bitand bitor not not_eq or or_eq xor xor_eq ---------------------------------------------------- [ ["operator", "+"], ["operator", "-"], ["operator", "*"], ["operator", "/"], ["operator", "%"], ["ope...
{ "pile_set_name": "Github" }
{ "SystemSettings": { "deploy": false }, "AddressResolver": { "deploy": false }, "ReadProxyAddressResolver": { "deploy": false }, "TradingRewards": { "deploy": false }, "EscrowChecker": { "deploy": false }, "ExchangeRates": { "deploy": false }, "Exchanger": { "deploy": false }, "ExchangeSta...
{ "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>fileTypes</key> <array> <string>escher</string> </array> <key>name</key> <string>Escher</string> <key>patterns</key> <array> <dict> ...
{ "pile_set_name": "Github" }
#!/usr/bin/env node (function() { var fs = require('fs'); var cssesc = require('../cssesc.js'); var strings = process.argv.splice(2); var stdin = process.stdin; var data; var timeout; var isObject = false; var options = {}; var log = console.log; var main = function() { var option = strings[0]; if (/^(...
{ "pile_set_name": "Github" }
/* Translates the MouseCaster's events into more relevant data that the editor uses. */ define('Input', function() { var tower = require('tower'); var nexus = require('nexus'); var keyboard = require('keyboard'); var Input = function(scene, mouse) { this.mouse = mouse; this.mouse.signal.add(this.onMouse, this...
{ "pile_set_name": "Github" }
<?php /** * The main site settings page */ return array( /** * Settings page title * * @type string */ 'title' => 'Site Settings', /** * The edit fields array * * @type array */ 'edit_fields' => array( 'site_name' => array( 'title' => 'Site Name', 'type' => 'text', 'limit' => 50, ...
{ "pile_set_name": "Github" }
"tinker_damage_on_laser_blinded_heroes" { "challengetype" "465" "desc" "#DOTA_ChallengeDesc_Tinker_Damage_To_Blinded_Heroes" "status_text" "#DOTA_ChallengeStatusText_Tinker_Damage_To_Blinded_Heroes" "image" "images/spellicons/tinker_laser.png" "requiredhero" "tinker" "events" { "matching_type" "timebloc...
{ "pile_set_name": "Github" }
#include "c.h" static Tree addtree(int, Tree, Tree); static Tree andtree(int, Tree, Tree); static Tree cmptree(int, Tree, Tree); static int compatible(Type, Type); static Tree multree(int, Tree, Tree); static Tree subtree(int, Tree, Tree); #define isvoidptr(ty) \ (isptr(ty) && unqual(ty->type) == voidtype) Tree (*o...
{ "pile_set_name": "Github" }
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% String context = request.getContextPath(); %> <%@taglib uri="/struts-tags" prefix="s" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://...
{ "pile_set_name": "Github" }
{ "scriptCategory": "English-like", "timeOfDayFormat": "H:mm", "openAppDrawerTooltip": "নেভিগেশ্বন মেনু খোলক", "backButtonTooltip": "উভতি যাওক", "closeButtonTooltip": "বন্ধ কৰক", "deleteButtonTooltip": "মচক", "nextMonthTooltip": "পৰৱৰ্তী মাহ", "previousMonthTooltip": "পূৰ্বৱৰ্তী মাহ", "nextPageTooltip...
{ "pile_set_name": "Github" }
// AttributeDirectory.h #ifndef NET_FS_ATTRIBUTE_DIRECTORY_H #define NET_FS_ATTRIBUTE_DIRECTORY_H #include <fs_attr.h> #include "SLList.h" class BNode; // attribute directory status enum { ATTRIBUTE_DIRECTORY_NOT_LOADED, ATTRIBUTE_DIRECTORY_VALID, ATTRIBUTE_DIRECTORY_TOO_BIG, }; // Attribute class Attribute : ...
{ "pile_set_name": "Github" }
{ "name": "Signal Pro 400 v1", "version": 2, "inherits": "atmat_signal_pro_base", "metadata": { "visible": true, "quality_definition": "atmat_signal_pro_base" }, "overrides": { "machine_name": { "default_value": "Signal Pro 400 v1" }, "machine_width": ...
{ "pile_set_name": "Github" }
/** * Handles opening of and synchronization with the reveal.js * notes window. */ var RevealNotes = (function() { function openNotes() { var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the ...
{ "pile_set_name": "Github" }
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.Modals = factory()); }(this, (function () { 'use strict'; // https://stackoverflow.com/a/34624648 function copy(o) { var...
{ "pile_set_name": "Github" }
<table border="0" width="100%" cellspacing="0" cellpadding="0"> <tbody> <tr> <td align="center"> <table class="responsive-table" style="border: 1px solid #d0d0d0;" border="0" width="500" cellspacing="0" cellpadding="0"> <tbody> <tr> <td style="padding: 40px 20px 30px 20px;" bgcolor="#ffffff"...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" ?> <class name="AnimationNodeBlendSpace2D" inherits="AnimationRootNode" version="4.0"> <brief_description> Blends linearly between three [AnimationNode] of any type placed in a 2D space. </brief_description> <description> A resource to add to an [AnimationNodeBlendTree]. Th...
{ "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>com.defcon.sortDescriptor</key> <array> <dict> <key>ascending</key> <array> <string>uni00A0</string> <string>A</string...
{ "pile_set_name": "Github" }
/* jQuery grab Ported from Jin.js::gestures Created by Jussi Kalliokoski Licensed under MIT License. */ (function($){ var extend = $.extend, mousedown = 'mousedown', mousemove = 'mousemove', mouseup = 'mouseup', touchstart = 'touchstart', touchmove = 'touchmove', touchend = 'touchend', touchcancel = ...
{ "pile_set_name": "Github" }