text
stringlengths
2
99k
meta
dict
<!DOCTYPE html> <html lang="en"> <head> <title>Other Protocols Reference</title> <link rel="stylesheet" type="text/css" href="css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="css/highlight.css" /> <meta charset='utf-8'> <script src="js/jquery.min.js" defer></script> <script src=...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2016, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * */ #ifndef ERIZ...
{ "pile_set_name": "Github" }
# Gopkg.toml example # # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md # for detailed Gopkg.toml documentation. # # required = ["github.com/user/thing/cmd/thing"] # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] # # [[constraint]] # name = "github.com/user/p...
{ "pile_set_name": "Github" }
#ifndef BOOST_MPL_BITOR_HPP_INCLUDED #define BOOST_MPL_BITOR_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2009 // Copyright Jaap Suter 2003 // // 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) // // See http...
{ "pile_set_name": "Github" }
<resources> <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowDrawsSystemBarBackgrounds">true</item> <item name="android:statusBarColor">@android:color/transparent</item> </style> </resou...
{ "pile_set_name": "Github" }
/* * Copyright 2013, 2014 Megion Research and Development GmbH * * Licensed under the Microsoft Reference Source License (MS-RSL) * * This license governs use of the accompanying software. If you use the software, you accept this license. * If you do not accept the license, do not use the software. * * 1. Defin...
{ "pile_set_name": "Github" }
/** * Return a themed set of status and/or error messages. The messages are grouped * by type. * * @param \$display * (optional) Set to 'status' or 'error' to display only messages of that type. * * @return * A string containing the messages. */ function <?php print $basename; ?>_status_messages(\$display ...
{ "pile_set_name": "Github" }
using System; using FlubuCore.Context; using FlubuCore.Tasks; using Xunit; namespace FlubuCore.Tests.Tasks { public class DoTaskTests : TaskUnitTestBase { [Fact] public void NewDoTask_DefaultTaskName_IsMethodName() { var task = new DoTaskForTests(SomeMethodName); ...
{ "pile_set_name": "Github" }
package com.example.nanchen.aiyaschoolpush.ui.fragment; import android.app.Activity; import android.content.ClipData; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.Bitmap.CompressFormat; import android.media.ThumbnailUtils; import android.net.Uri; import android.os.Build; impor...
{ "pile_set_name": "Github" }
# Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3 only, as # published by the Free Software Founda...
{ "pile_set_name": "Github" }
<div class="refentry" lang="en" xml:lang="en"><a id="glTexImage3D"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>glTexImage3D — specify a three-dimensional texture image</p></div><div class="refsynopsisdiv"><h2>C Specification</h2><div class="funcsynopsis"><table><tr><td><code class="funcdef"...
{ "pile_set_name": "Github" }
// O(sqrt(x)) Exhaustive Primality Test #include <cmath> #define EPS 1e-7 typedef long long LL; bool IsPrimeSlow (LL x) { if(x<=1) return false; if(x<=3) return true; if (!(x%2) || !(x%3)) return false; LL s=(LL)(sqrt((double)(x))+EPS); for(LL i=5;i<=s;i+=6) { if (!(x%i) || !(x%(i+2))) return false; }...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 75ccbf856d08c42f8b95ce7c450cee5a timeCreated: 1458795466 licenseType: Pro NativeFormatImporter: userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
namespace Ocelot.Request.Mapper { using Microsoft.AspNetCore.Http; using Ocelot.Configuration; using Ocelot.Responses; using System.Net.Http; using System.Threading.Tasks; public interface IRequestMapper { Task<Response<HttpRequestMessage>> Map(HttpRequest request, Downst...
{ "pile_set_name": "Github" }
{ "jsonSchemaSemanticVersion": "1.0.0", "imports": [ { "corpusPath": "cdm:/foundations.1.1.cdm.json" }, { "corpusPath": "/core/operationsCommon/Common.1.0.cdm.json", "moniker": "base_Common" }, { "corpusPath": "/core/operationsCommon/DataEntityView.1.0.cdm.json", "m...
{ "pile_set_name": "Github" }
#include "../THCTensorMathPointwise.cuh" #include "../generic/THCTensorMathPointwise.cu" #include "../THCGenerateByteType.h"
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE----- MIICHTCCAaSgAwIBAgIBEjAJBgcqhkjOPQQBMD4xCzAJBgNVBAYTAk5MMREwDwYD VQQKEwhQb2xhclNTTDEcMBoGA1UEAxMTUG9sYXJzc2wgVGVzdCBFQyBDQTAeFw0x MzA5MjQxNjIxMjdaFw0yMzA5MjIxNjIxMjdaMDQxCzAJBgNVBAYTAk5MMREwDwYD VQQKEwhQb2xhclNTTDESMBAGA1UEAxMJbG9jYWxob3N0MFkwEwYHKoZIzj0CAQYI KoZIzj0DAQcDQgAEN8xW2XYJHlpyPsdZ...
{ "pile_set_name": "Github" }
-- This test verifies that if the tables location changes, renaming a partition will not change -- the partition location accordingly CREATE TABLE rename_partition_table (key STRING, value STRING) PARTITIONED BY (part STRING) STORED AS RCFILE LOCATION 'pfile:${system:test.tmp.dir}/rename_partition_table'; INSERT OVER...
{ "pile_set_name": "Github" }
/*------------------------------------------------------------------------*/ /* Unicode - Local code bidirectional converter (C)ChaN, 2015 */ /* (SBCS code pages) */ /*------------------------------------------------------------------------*/ /* 437 ...
{ "pile_set_name": "Github" }
/* * The raster-color-enhancement property specifies image processing filters to * be applied to an entire raster layer. * * The keyword "none" will cause colors to be included directly; with high * values encoded as white and low values encoded as black. This is the default * behavior. * raster-color-enhancemen...
{ "pile_set_name": "Github" }
/*---------------------------------------------------------------------------- * CMSIS-RTOS - RTX *---------------------------------------------------------------------------- * Name: RT_TYPEDEF.H * Purpose: Type Definitions * Rev.: V4.79 (plus large stack) *---------------------------...
{ "pile_set_name": "Github" }
<workspace name="timer_pwm_interrupt"> <project device="EFR32BG12P332F1024GL125" name="EFR32BG12P_timer_pwm_interrupt"> <targets> <name>slsproj</name> <name>iar</name> </targets> <directories> <cmsis>$PROJ_DIR$\..\..\..\..\..\platform\CMSIS</cmsis> <device>$PROJ_DIR$\..\...
{ "pile_set_name": "Github" }
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at https://g...
{ "pile_set_name": "Github" }
// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`should affect error message after formatting 1`] = ` " <<<<<< before no error ====== ERROR: (ter-padded-blocks) /src/tslint-eslint-rules/ter-padded-blocks/test.ts[1, 11]: Block must be padded by blank lines. ERROR: (ter-padded-blocks) /src/tslint-eslint-rules/ter-pa...
{ "pile_set_name": "Github" }
package dns import ( "encoding/base64" "net" "strconv" "strings" ) // A remainder of the rdata with embedded spaces, return the parsed string (sans the spaces) // or an error func endingToString(c *zlexer, errstr string) (string, *ParseError) { var s string l, _ := c.Next() // zString for l.value != zNewline &...
{ "pile_set_name": "Github" }
namespace System { /// <summary> /// Extension methods for <see cref="EventHandler"/>. /// </summary> public static class AbpEventHandlerExtensions { /// <summary> /// Raises given event safely with given arguments. /// </summary> /// <param name="eventHandler">The ev...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_03) on Tue Jun 10 03:55:40 CEST 2008 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> org.jasypt.intf.service (JA...
{ "pile_set_name": "Github" }
package org.apache.spark.ml.dsl.utils import java.util import com.tribbloids.spookystuff.utils.CachingUtils import com.tribbloids.spookystuff.utils.CachingUtils.ConcurrentCache import org.apache.spark.ml.dsl.utils.messaging.MessageAPI import org.json4s.Extraction._ import org.json4s.JsonAST.JString import org.json4s....
{ "pile_set_name": "Github" }
/* * Software License Agreement (BSD License) * * Point Cloud Library (PCL) - www.pointclouds.org * Copyright (c) 2009-2012, Willow Garage, Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditi...
{ "pile_set_name": "Github" }
package com.ryanharter.auto.value.parcel; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.RetentionPolicy.SOURCE; @Target(METHOD) @Retention(SOURCE) @Documented...
{ "pile_set_name": "Github" }
var fs = require('fs'); var path = require('path'); var glob = require('glob'); var async = require('async'); var Client = require('./client').Client; var global_client = new Client(); function cp2remote(client, src, dest, callback) { client.parse(dest); var _upload = function(files, callback) { var rootdir =...
{ "pile_set_name": "Github" }
/* * The contents of this file are subject to the terms of the Common Development and * Distribution License (the License). You may not use this file except in compliance with the * License. * * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the * specific language governing permi...
{ "pile_set_name": "Github" }
/************************************************************************** * * Copyright (C) 2011 The Xubuntu Community * Copyright (C) 2009 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free...
{ "pile_set_name": "Github" }
// node-uuid/uuid.js // // Copyright (c) 2010 Robert Kieffer // Dual licensed under the MIT and GPL licenses. // Documentation and details at https://github.com/broofa/node-uuid (function() { var _global = this; // Unique ID creation requires a high quality random # generator, but // Math.random(...
{ "pile_set_name": "Github" }
{ "users": [ { "id": 5, "username": "beanow.sc-test", "name": "Beanow", "avatar_template": "https://avatars.discourse.org/v4/letter/b/7ea924/{size}.png" }, { "id": 2, "username": "d11", "name": "D", "avatar_template": "https://avatars.discourse.org/v4/letter...
{ "pile_set_name": "Github" }
#!/usr/bin/env python from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand from stream import __version__, __maintainer__, __email__, __license__ import sys tests_require = ["pytest==3.2.5", "unittest2", "pytest-cov", "python-dateutil"] ci_require = ["flake8", "codecov"...
{ "pile_set_name": "Github" }
import compiler import dis import types def extract_code_objects(co): l = [co] for const in co.co_consts: if type(const) == types.CodeType: l.append(const) return l def compare(a, b): if not (a.co_name == "?" or a.co_name.startswith('<lambda')): assert a.co_name == b.co_nam...
{ "pile_set_name": "Github" }
/// Copyright (c) 2012 Ecma International. All rights reserved. /// Ecma International makes this code available under the terms and conditions set /// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the /// "Use Terms"). Any redistribution of this code must retain the above /// copyrigh...
{ "pile_set_name": "Github" }
- name: download VBox (debian) get_url: validate_certs: "{{ validate_certs }}" url: http://download.virtualbox.org/virtualbox/{{ vbox_major_version }}/virtualbox-{{ vbox_version_ubuntu_dist_version[ansible_distribution_release] }}_amd64.deb dest: /tmp/virtualbox-{{ vbox_major_version }}.deb force: no ...
{ "pile_set_name": "Github" }
package cn.nukkit.command.defaults; import cn.nukkit.Nukkit; import cn.nukkit.Server; import cn.nukkit.command.CommandSender; import cn.nukkit.level.Level; import cn.nukkit.math.NukkitMath; import cn.nukkit.utils.TextFormat; import java.util.Objects; /** * Created on 2015/11/11 by xtypr. * Package cn.nukkit.comman...
{ "pile_set_name": "Github" }
describe('SessionBuilder', function() { this.timeout(5000); var ALICE_ADDRESS = new SignalProtocolAddress("+14151111111", 1); var BOB_ADDRESS = new SignalProtocolAddress("+14152222222", 1); describe("basic prekey v3", function() { var aliceStore = new SignalProtocolStore(); var bobS...
{ "pile_set_name": "Github" }
package gov.nysenate.openleg.service.slack; import com.google.gson.JsonObject; import gov.nysenate.openleg.model.slack.SlackMessage; import org.apache.commons.io.IOUtils; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; im...
{ "pile_set_name": "Github" }
var convert = require('./convert'), func = convert('valueOf', require('../valueOf'), require('./_falseOptions')); func.placeholder = require('./placeholder'); module.exports = func;
{ "pile_set_name": "Github" }
<snippet> <content><![CDATA[getScrollNodeRect()]]></content> <tabTrigger>getScrollNodeRect()</tabTrigger> <scope>source.lua</scope> <description>UIScrollView</description> </snippet>
{ "pile_set_name": "Github" }
[Unit] Description=Homegear Management After=homegear.service [Install] WantedBy=multi-user.target [Service] Type=simple User=homegear Group=homegear RuntimeDirectory=homegear RuntimeDirectoryMode=0755 TimeoutSec=300 LimitRTPRIO=100 ExecStart=/usr/bin/homegear-management -p /var/run/homegear/homegear-management.pid E...
{ "pile_set_name": "Github" }
local ffi = require( "ffi" ) local sdl = require( "ffi/sdl" ) local wm = require( "lib/wm/sdl" ) local random, floor, pi = math.random, math.floor, math.pi local lines = {{ x=0, y=0, solid = false }} -- Preallocate certain ffi structures, to prevent allocations local gfx = {} local ui = {} local function...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: dc7abfa0435174ded902b073322d67cc folderAsset: yes DefaultImporter: userData: assetBundleName:
{ "pile_set_name": "Github" }
--TEST-- imagerotate() overflow with negative numbers --SKIPIF-- <?php if (!extension_loaded('gd')) { die("skip gd extension not available."); } if (!function_exists('imagerotate')) { die("skip imagerotate() not available."); } ?> --FILE-- <?php $im = imagecreate(10, 10); $tmp = image...
{ "pile_set_name": "Github" }
--- -api-id: P:Windows.Devices.Bluetooth.BluetoothLEAppearanceCategories.Thermometer -api-type: winrt property -api-device-family-note: xbox --- <!-- Property syntax public ushort Thermometer { get; } --> # Windows.Devices.Bluetooth.BluetoothLEAppearanceCategories.Thermometer ## -description Gets the thermometer app...
{ "pile_set_name": "Github" }
/************************************************************************************** * Copyright (c) 2016-2017, ARM Limited or its affiliates. All rights reserved * * * * This file and the related binary are licensed under th...
{ "pile_set_name": "Github" }
#ifndef __ASM_AVR32_MODULE_H #define __ASM_AVR32_MODULE_H struct mod_arch_syminfo { unsigned long got_offset; int got_initialized; }; struct mod_arch_specific { /* Starting offset of got in the module core memory. */ unsigned long got_offset; /* Size of the got. */ unsigned long got_size; /* Number of symbols ...
{ "pile_set_name": "Github" }
// // SUVersionComparisonProtocol.h // Sparkle // // Created by Andy Matuschak on 12/21/07. // Copyright 2007 Andy Matuschak. All rights reserved. // #ifndef SUVERSIONCOMPARISONPROTOCOL_H #define SUVERSIONCOMPARISONPROTOCOL_H #import <Cocoa/Cocoa.h> #import "SUExport.h" /*! Provides version comparison facili...
{ "pile_set_name": "Github" }
/*! * Font Awesome 3.2.1 * the iconic font designed for Bootstrap * ------------------------------------------------------------------------------ * The full suite of pictographic icons, examples, and documentation can be * found at http://fontawesome.io. Stay up to date on Twitter at * http://twitter.com/...
{ "pile_set_name": "Github" }
ABILITYCATEGORY:Changeling Race Trait VISIBLE:QUALIFY EDITABLE:YES EDITPOOL:NO CATEGORY:Special Ability TYPE:Changeling Race Trait DISPLAYLOCATION:Character ABILITYCATEGORY:Shifter Race Trait VISIBLE:QUALIFY EDITABLE:YES EDITPOOL:NO CATEGORY:Special Ability TYPE:Shifter Race Trait DISPLAYLOCATION:Character ABILITY...
{ "pile_set_name": "Github" }
// untested sections: 3 package matchers import ( "fmt" "reflect" "github.com/onsi/gomega/format" ) type ReceiveMatcher struct { Arg interface{} receivedValue reflect.Value channelClosed bool } func (matcher *ReceiveMatcher) Match(actual interface{}) (success bool, err error) { if !isChan(actual) ...
{ "pile_set_name": "Github" }
__________________________________________________________________________________________________ __________________________________________________________________________________________________ __________________________________________________________________________________________________
{ "pile_set_name": "Github" }
/* * Copyright 2012 OSBI Ltd * * 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 a...
{ "pile_set_name": "Github" }
/*============================================================================= Copyright (c) 2009 Christopher Schmidt 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) ====================================...
{ "pile_set_name": "Github" }
NOTE: We do not provide any help for using the code in a way different from what's described in the README. If you like to do something different, please understand the code and do it yourself. If you're using the code in the way described in the README and you meet an unexpected problem, please include: ### 1. What...
{ "pile_set_name": "Github" }
'use strict'; /** * Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/controllers.html#core-controllers) * to customize this controller */ module.exports = {};
{ "pile_set_name": "Github" }
# Event 165 - ScenarioLifecycle ###### Version: 0 ## Description None ## Data Dictionary |Standard Name|Field Name|Type|Description|Sample Value| |---|---|---|---|---| |TBD|ScenarioId|GUID|None|`None`| |TBD|InstanceId|GUID|None|`None`| |TBD|OriginalActivityId|GUID|None|`None`| |TBD|StatusCode|UInt32|None|`None`| |TBD...
{ "pile_set_name": "Github" }
# Check whether boolean options are consistently normalized to ON/OFF. RUN: llvm-config --assertion-mode 2>&1 | FileCheck --check-prefix=CHECK-ONOFF %s RUN: llvm-config --has-global-isel 2>&1 | FileCheck --check-prefix=CHECK-ONOFF %s CHECK-ONOFF: {{ON|OFF}} CHECK-ONOFF-NOT: error: CHECK-ONOFF-NOT: warning # ...or to Y...
{ "pile_set_name": "Github" }
9
{ "pile_set_name": "Github" }
/************************************************************* * * MathJax/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js * * Copyright (c) 2013-2017 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the...
{ "pile_set_name": "Github" }
package main import ( "bufio" "os/exec" "regexp" "strings" "time" "github.com/docker/docker/integration-cli/checker" "github.com/docker/docker/integration-cli/cli" "github.com/go-check/check" ) func (s *DockerSuite) TestStatsNoStream(c *check.C) { // Windows does not support stats testRequires(c, DaemonIsL...
{ "pile_set_name": "Github" }
/* LUFA Library Copyright (C) Dean Camera, 2014. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, distribute, and sell this software and its documentation for any purp...
{ "pile_set_name": "Github" }
from os import path from datetime import datetime import json import re DIR = path.dirname(path.realpath(__file__)) ARG_FORMAT = "{} = '{}'" FIX_GLOBAL_VARS = { 'i_args': 'i_args', 'i_volume_size': 'i_volume_size', 'i_color_index': 'i_color_index', 'iMirror': 'i_mirror', 'i_axis': 'i_axis', 'iIter': 'i_iter', ...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UnrealEngine.Runtime { public interface IYieldInstructionPool { void ReturnObject(YieldInstruction obj); } public abstract class YieldInstructionPool<T> : IYieldInstructionPool where T : YieldInstr...
{ "pile_set_name": "Github" }
// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. // // Two FSTS are isomorphic (equal up to state and arc re-ordering) iff their // exit status is zero. FSTs should be deterministic when viewed as unweighted // automata. #include <cstring> #include <memory> #incl...
{ "pile_set_name": "Github" }
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; y...
{ "pile_set_name": "Github" }
/** * This Source Code Form is subject to the terms of the Mozilla Public License, * v. 2.0. If a copy of the MPL was not distributed with this file, You can * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under * the terms of the Healthcare Disclaimer located at http://openmrs.org/license....
{ "pile_set_name": "Github" }
/** * \file desfireev1commands.hpp * \author Maxime C. <maxime-dev@islog.com> * \brief DESFire EV1 commands. */ #ifndef LOGICALACCESS_DESFIREEV1COMMANDS_HPP #define LOGICALACCESS_DESFIREEV1COMMANDS_HPP #include <logicalaccess/plugins/cards/desfire/desfirecommands.hpp> #include <logicalaccess/plugins/cards/desfire...
{ "pile_set_name": "Github" }
<resources> <string name="app_name">AndroidTextToSpeech</string> </resources>
{ "pile_set_name": "Github" }
-----BEGIN DSA PRIVATE KEY----- MIIBugIBAAKBgQCErbqKVSlSOvl3DvqB0coqc9bMYR+D6W8JCo0NcDhUPaO42q3h 2K7myIgEOAMmU1NgpQspAGgxeUOUfNJkq3L6JFeOzBxG/6P7W8mYzofWpdWBUil7 LsnCjurDw5kinVsialDfyKpVQOTezI1YORDDdNdoBlbTUITPWdjMvexhvQIVAPyN b55qHat79ofX4tH7tUWXcerzAoGAfqOEFET/RAOdDzGu5f1L+edM8V01MwVq+015 GEGEuKu6vHnXZnRq0z7dWp2AEghu...
{ "pile_set_name": "Github" }
// // LiveUIParView.m // TILLiveSDKShow // // Created by wilderliao on 16/11/9. // Copyright © 2016年 Tencent. All rights reserved. // #import "LiveUIParView.h" #import "LinkRoomList.h" #import <ShareSDKUI/ShareSDK+SSUI.h>//用于实现社交分享 #import "SpeedTest.h" @interface LiveUIParView () { UInt64 _channelId; ...
{ "pile_set_name": "Github" }
//----------------------------------------------------------------------------- // MEKA - inputs_f.c // Inputs File Load/Save - Code //----------------------------------------------------------------------------- #include "shared.h" #include "keyinfo.h" #include "libparse.h" //-------------------------------...
{ "pile_set_name": "Github" }
## What are Engines? [Ember Engines](http://ember-engines.com/) allow multiple logical applications to be composed together into a single application from the user's perspective, that provide functionality to their host applications. Engines are isolated, `composable applications`, they have almost all the same featur...
{ "pile_set_name": "Github" }
// Copyright © 2014 Steve Francia <spf@spf13.com>. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or...
{ "pile_set_name": "Github" }
@* #form-myfield *@ @(elements: helper.FieldElements) <div class="@if(elements.hasErrors) {error}"> <label for="@elements.id">@elements.label</label> <div class="input"> @elements.input <span class="errors">@elements.errors.mkString(", ")</span> <span class="help">@elements.infos.mkStri...
{ "pile_set_name": "Github" }
/** * Copyright 2007 DFKI GmbH. * All Rights Reserved. Use is subject to license terms. * <p/> * This file is part of MARY TTS. * <p/> * MARY TTS 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,...
{ "pile_set_name": "Github" }
#import <Foundation/Foundation.h> @interface PodsDummy_RxCocoa : NSObject @end @implementation PodsDummy_RxCocoa @end
{ "pile_set_name": "Github" }
// Copyright 2013 Google Inc. 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
{ "pile_set_name": "Github" }
<?php namespace Silber\Bouncer\Contracts; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsToMany; interface Scope { /** * Append the tenant ID to the given cache key. * * @param string $key * @return string */ public function appendToCacheK...
{ "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...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2005 Jakub Jermar * 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 source code must retain the above copyright * notice, this list of condit...
{ "pile_set_name": "Github" }
/* * DateJS Culture String File * Country Code: nn-NO * Name: Norwegian, Nynorsk (Norway) * Format: "key" : "value" * Key is the en-US term, Value is the Key in the current language. */ Date.CultureStrings = Date.CultureStrings || {}; Date.CultureStrings["nn-NO"] = { "name": "nn-NO", "englishName...
{ "pile_set_name": "Github" }
// mksysnum_openbsd.pl // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT // +build amd64,openbsd package unix const ( SYS_EXIT = 1 // { void sys_exit(int rval); } SYS_FORK = 2 // { int sys_fork(void); } SYS_READ = 3 // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }...
{ "pile_set_name": "Github" }
[gd_scene load_steps=2 format=2] [ext_resource path="res://addons/godot-haskell-plugin/Simula.gdns" type="Script" id=1] [node name="Root" type="Node"] script = ExtResource( 1 )
{ "pile_set_name": "Github" }
# # *************************************************************************** # Copyright (c) 2010 Qcadoo Limited # Project: Qcadoo MES # Version: 1.4 # # This file is part of Qcadoo. # # Qcadoo is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as p...
{ "pile_set_name": "Github" }
import backend as F import numpy as np import scipy as sp import dgl from dgl import utils from dgl.contrib import KVServer from dgl.contrib import KVClient from numpy.testing import assert_array_equal import os import time num_entries = 10 dim_size = 3 server_namebook = {0:[0, '127.0.0.1', 30070, 1]} data_0 = F.ze...
{ "pile_set_name": "Github" }
/* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { margin-bottom: 60px; /* Margin bottom by footer height */ } .footer { position: absolute; bottom: 0; width: 100%; height: 60px; /* Set the fixed height of the footer here */ ...
{ "pile_set_name": "Github" }
/*- * Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, ...
{ "pile_set_name": "Github" }
{ "images": [ { "filename": "ic_navigation.png", "idiom": "universal", "scale": "1x" }, { "filename": "ic_navigation_2x.png", "idiom": "universal", "scale": "2x" }, { "filename": "ic_navigatio...
{ "pile_set_name": "Github" }
import { bold, underline } from 'chalk'; import { isPlainObject, intersection, get, update, union } from 'lodash'; import { RAW } from '../../../configuration/addRaw'; import buildList from './buildList'; // Returns an updated meta object export default function processConfig(name, extension, state) { const { ...
{ "pile_set_name": "Github" }
# Broadcom 802.11abg Networking Device Driver Configuration file # # Copyright (C) 2014, Broadcom Corporation. All Rights Reserved. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permissio...
{ "pile_set_name": "Github" }
/***************************************************************************** * auth.h - PPP Authentication and phase control header file. * * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc. * portions Copyright (c) 1998 Global Election Systems Inc. * * The authors hereby grant permission to us...
{ "pile_set_name": "Github" }
{ "id": "navigation-6dc2dc2172", "items": [ { "id": "navigation-6dc2dc2172-item-2edead38ee", "path": "/content/navigation", "children": [ { "id": "navigation-6dc2dc2172-item-b318e48feb", "path": "/content/navigation-redirect/navigation-1", "children": [ ...
{ "pile_set_name": "Github" }
module Liquid class TableRow < Block Syntax = /(\w+)\s+in\s+(#{AllowedVariableCharacters}+)/ def initialize(markup, tokens) super if markup =~ Syntax @variable_name = $1 @collection_name = $2 @attributes = {} mar...
{ "pile_set_name": "Github" }
/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * *...
{ "pile_set_name": "Github" }
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * CharacterEscape :: c ControlLetter * * @path ch15/15.10/15.10.2/15.10.2.10/S15.10.2.10_A2.1_T1.js * @description ControlLetter :: A - Z */ //CHECK#0041-005A var result = true;...
{ "pile_set_name": "Github" }