text stringlengths 2 99.9k | meta dict |
|---|---|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/llWrapper"
android:orientation="hori... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<shelfDocument>
<!-- This file contains definitions of shelves, toolbars, and tools.
It should not be hand-edited when it is being used by the application.
Note, that two definitions of the same element are not allowed in
a single file. -->
<tool name="$HDA_DEFAULT_TOOL" l... | {
"pile_set_name": "Github"
} |
Command: ios hooking search classes
Usage: ios hooking search classes <search string>
Search for classes in the current Objective-C runtime with the search string
as part of the class name.
Examples:
ios hooking search classes jailbreak
ios hooking search classes sslpinning
| {
"pile_set_name": "Github"
} |
"""
Simple example:
.. UIExample:: 70
with flx.VBox():
flx.Slider(min=10, max=20, value=12)
flx.RangeSlider(min=10, max=90, value=(20, 60))
Also see examples: :ref:`sine.py`, :ref:`twente.py`,
:ref:`deep_event_connections.py`.
"""
from ... import event
from .._widget import Widget, create_elem... | {
"pile_set_name": "Github"
} |
<script type="text/javascript">//<![CDATA[
XHR.poll(5, '<%=url([[admin]], [[services]], [[frp]], [[status]])%>', null,
function(x, data) {
var tb = document.getElementById('frp_status');
if (data && tb) {
if (data.running) {
var links = '<em><b><font color=green><%:The Frp service is running.%></font></b></... | {
"pile_set_name": "Github"
} |
//
// Twili - Homebrew debug monitor for the Nintendo Switch
// Copyright (C) 2018 misson20000 <xenotoad@xenotoad.net>
//
// This file is part of Twili.
//
// Twili 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 Founda... | {
"pile_set_name": "Github"
} |
#!/bin/sh
echo ------- uploading API and IDE jars
apijar=`ls API/target/sikulixapi*complete.jar`
cp $apijar pages/sikulixapi-2.1.0.jar
apisrcjar=`ls API/target/sikulixapi*sources.jar`
cp $apisrcjar pages/sikulixapi-2.1.0-sources.jar
idejar=`ls IDE/target/sikulixide*complete.jar`
cp $idejar pages/sikulix-2.1.0.jar
e... | {
"pile_set_name": "Github"
} |
require 'abstract_unit'
class HttpMockTest < ActiveSupport::TestCase
def setup
@http = ActiveResource::HttpMock.new("http://example.com")
end
FORMAT_HEADER = { :get => 'Accept',
:put => 'Content-Type',
:post => 'Content-Type',
:delete => 'Accept',
... | {
"pile_set_name": "Github"
} |
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.38...@thi.ng/csp@1.1.39) (2020-09-22)
**Note:** Version bump only for package @th... | {
"pile_set_name": "Github"
} |
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>
| {
"pile_set_name": "Github"
} |
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/React
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpe... | {
"pile_set_name": "Github"
} |
$simple-bg: #fff;
$simple-color: #000;
$simple-progressBar: #c7c7c7;
$simple-progressBarPercentage: #4c4c4c;
$success-bg: #4caf50;
$success-color: #c8e6c9;
$success-progressBar: #388e3c;
$success-progressBarPercentage: #81c784;
$info-bg: #1e88e5;
$info-color: #e3f2fd;
$info-progressBar: #1565c0;
$info-progressBarPerc... | {
"pile_set_name": "Github"
} |
#include <AIToolbox/MDP/Algorithms/QLearning.hpp>
namespace AIToolbox::MDP {
QLearning::QLearning(const size_t ss, const size_t aa, const double discount, const double alpha) :
S(ss), A(aa), discount_(discount), q_(makeQFunction(S, A))
{
setDiscount(discount);
setLearningRate(alpha)... | {
"pile_set_name": "Github"
} |
{if $_SESSION.user->config.infoacc ne '1'}
<div class="top_menu">
<div class="top_menu_left">
{if $_SESSION.user->access.clients.add eq on}<a href="#null" onclick="get_window('/clients/add.html?window=1', {ldelim}name:'add', widht: 800, height:370{rdelim});">{$lang.adds}</a> {/if}
</div>
<div class="top_me... | {
"pile_set_name": "Github"
} |
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS B... | {
"pile_set_name": "Github"
} |
<?php
/***********************************************************************/
/* ATutor */
/***********************************************************************/
/* Copyright (c) 2002-2010 */
/* Inclusive Design Institute ... | {
"pile_set_name": "Github"
} |
package pflag
import "strconv"
// -- float32 Value
type float32Value float32
func newFloat32Value(val float32, p *float32) *float32Value {
*p = val
return (*float32Value)(p)
}
func (f *float32Value) Set(s string) error {
v, err := strconv.ParseFloat(s, 32)
*f = float32Value(v)
return err
}
func (f *float32Val... | {
"pile_set_name": "Github"
} |
# Define a function to create Cython modules.
#
# For more information on the Cython project, see http://cython.org/.
# "Cython is a language that makes writing C extensions for the Python language
# as easy as Python itself."
#
# This file defines a CMake function to build a Cython Python module.
# To use it, first in... | {
"pile_set_name": "Github"
} |
function [D,mu,sigma]=talairach_stats_correct(dirname, outdir)
%
% Computes the mean and covariance matrix from a training set
%
% By default, the 3 translation parameters are not considered
% -> mu is a 1x9 vector and sigma a 9x9 matrix
%
% talairaching_stats.m
%
% Original Author: Laurence Wastiaux
%
% Copyri... | {
"pile_set_name": "Github"
} |
{
"1953.06.12": [
{
"link": "http://lis.ly.gov.tw/ttscgi/lgimg?@421110;0082;0085",
"desc": "42卷11期號10冊 82~85頁",
"progress": "一讀",
"committee": "法制"
}
],
"1954.06.18": [
{
"link": "http://lis.ly.gov.tw/ttscgi/lgimg?@431306;0036;0038",
"desc": "43卷13期號6冊 36~38頁",
... | {
"pile_set_name": "Github"
} |
#include <assert.h>
#include <threads.h>
int main()
{
thrd_yield();
assert(0);
return 0;
}
| {
"pile_set_name": "Github"
} |
op {
name: "UniqueWithCounts"
input_arg {
name: "x"
type_attr: "T"
}
output_arg {
name: "y"
type_attr: "T"
}
output_arg {
name: "idx"
type_attr: "out_idx"
}
output_arg {
name: "count"
type_attr: "out_idx"
}
attr {
name: "T"
type: "type"
}
attr {
name: ... | {
"pile_set_name": "Github"
} |
"use strict";
const portMap = new WeakMap<any, browser.runtime.Port>();
/**
* Allows typed access to a runtime.Port object.
*/
export class TypedPort<T extends any[]> {
public name: string;
public error?: { message: string };
public sender?: browser.runtime.MessageSender;
constructor (port: browser... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2016 Google 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... | {
"pile_set_name": "Github"
} |
"""Constants and membership tests for ASCII characters"""
NUL = 0x00 # ^@
SOH = 0x01 # ^A
STX = 0x02 # ^B
ETX = 0x03 # ^C
EOT = 0x04 # ^D
ENQ = 0x05 # ^E
ACK = 0x06 # ^F
BEL = 0x07 # ^G
BS = 0x08 # ^H
TAB = 0x09 # ^I
HT = 0x09 # ^I
LF = 0x0a # ^J
NL =... | {
"pile_set_name": "Github"
} |
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the... | {
"pile_set_name": "Github"
} |
/*
*
* Copyright 2014 gRPC 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 agree... | {
"pile_set_name": "Github"
} |
Backbone Eye
============
A Firebug extension to debug Backbone based applications running off web-browsers.
> "Understand Backbone application behavior without wading through JavaScript code. Work with application level constructs, pursue what-if exploration and more..."
For detailed help, visit : http://dhruvaray... | {
"pile_set_name": "Github"
} |
// Code generated by "stringer -type RoundingMode"; DO NOT EDIT.
package number
import "fmt"
const _RoundingMode_name = "ToNearestEvenToNearestZeroToNearestAwayToPositiveInfToNegativeInfToZeroAwayFromZeronumModes"
var _RoundingMode_index = [...]uint8{0, 13, 26, 39, 52, 65, 71, 83, 91}
func (i RoundingMode) String(... | {
"pile_set_name": "Github"
} |
---
title: "progress"
layout: formula
---
{{ content }}
| {
"pile_set_name": "Github"
} |
var lowpan6__ble_8c =
[
[ "ble_addr_to_eui64", "group__rfc7668if.html#gaa5b1823c2509b8816ef98dcac67e037c", null ],
[ "eui64_to_ble_addr", "group__rfc7668if.html#ga3e245a85f9edddca93ddd2967209881d", null ],
[ "rfc7668_if_init", "group__rfc7668if.html#ga3d940376bd983c14ffcc8d2580f3bdde", null ],
[ "rfc766... | {
"pile_set_name": "Github"
} |
From af4dba1b5d3cbd0bc724fca24d3d01d2878406df Mon Sep 17 00:00:00 2001
From: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Date: Mon, 11 Dec 2017 18:19:33 +0300
Subject: [PATCH 318/454] netfilter: ip6t_MASQUERADE: add dependency on
conntrack module
commit 23715275e4fb6f64358a499d20928a9e93819f2f upstream.
After ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2004, 2005 Intel Corporation. All rights reserved.
* Copyright (c) 2004 Topspin Corporation. All rights reserved.
* Copyright (c) 2004, 2005 Voltaire Corporation. All rights reserved.
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
* Copyright (c) 2005 Open Grid Computing, In... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ops.h>
#include <device/pci_ids.h>
#include <console/console.h>
#include <device/cardbus.h>
#include <delay.h>
#include "rl5c476.h"
#include "chip.h"
static int enable_cf_boot = 0;
static unsigned i... | {
"pile_set_name": "Github"
} |
#include <agency/agency.hpp>
template<class ExecutionPolicy>
void test()
{
using execution_policy_type = ExecutionPolicy;
{
// bulk_then with non-void future and no parameters
execution_policy_type policy;
auto fut = agency::make_ready_future<int>(policy.executor(), 7);
auto f = agency::bulk_th... | {
"pile_set_name": "Github"
} |
# Config file for /etc/init.d/ser2net
# Set the configuration file to one other than the default of /etc/ser2net.conf
#
#CONFIG_FILE="/etc/ser2net.conf"
# Enables the control port and sets the TCP port to listen to for the control port.
# A port number may be of the form [host,]port, such as 127.0.0.1,2000 or localho... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microso... | {
"pile_set_name": "Github"
} |
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin freebsd linux solaris
package ipv6
import (
"net"
"unsafe"
"golang.org/x/net/internal/socket"
)
var freebsd32o64 bool
func (so *sockOpt... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400dp"
android:layout_height="wrap_content"
android:background="@drawable/hpay_bg"
android:orientation="vertical"
android:visibility="visible" >
<LinearL... | {
"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.apple.private.settime</key>
<true/>
</dict>
</plist>
| {
"pile_set_name": "Github"
} |
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !gccgo
#include "textflag.h"
//
// System call support for 386, NetBSD
//
// Just jump to package syscall's implementation for all these functions.... | {
"pile_set_name": "Github"
} |
# TODO: this file has not yet been included in the main CLDR release.
# The intent is to verify this file against the Go implementation and then
# correct the cases and add merge in other interesting test cases.
# See TestCLDRCompliance in match_test.go, as well as the list of exceptions
# defined in the map skip below... | {
"pile_set_name": "Github"
} |
package com.olacabs.jackhammer.validations;
import com.olacabs.jackhammer.exceptions.ValidationFailedException;
import com.olacabs.jackhammer.models.SeverityLevel;
public class SeverityLevelValidator extends AbstractValidator<SeverityLevel> {
public void dataValidations(SeverityLevel model) throws ValidationFail... | {
"pile_set_name": "Github"
} |
#ifndef __LUA_WEB_SOCKET_H__
#define __LUA_WEB_SOCKET_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "tolua++.h"
#ifdef __cplusplus
}
#endif
TOLUA_API int tolua_web_socket_open(lua_State* tolua_S);
#endif //__LUA_WEB_SOCKET_H__
| {
"pile_set_name": "Github"
} |
1.0 Added Tcl Profiler app
| {
"pile_set_name": "Github"
} |
# typeface-black-han-sans
The CSS and web font files to easily self-host “Black Han Sans”.
## Install
`npm install --save typeface-black-han-sans`
## Use
Typefaces assume you’re using webpack to process CSS and files. Each typeface
package includes all necessary font files (woff2, woff) and a CSS file with
font-f... | {
"pile_set_name": "Github"
} |
#
# Copyright (c) 2017 Intel Corporation
#
# 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... | {
"pile_set_name": "Github"
} |
---
jupyter:
jupytext:
notebook_metadata_filter: all
text_representation:
extension: .md
format_name: markdown
format_version: '1.1'
jupytext_version: 1.1.1
kernelspec:
display_name: Python 2
language: python
name: python2
plotly:
description: How to make Matplotlib... | {
"pile_set_name": "Github"
} |
module Shoulda
module Matchers
module ActionController
# The `route` matcher tests that a route resolves to a controller,
# action, and params; and that the controller, action, and params
# generates the same route. For an RSpec suite, this is like using a
# combination of `route_to` and `... | {
"pile_set_name": "Github"
} |
#ifndef RT_DEFINES
#define RT_DEFINES
#define TB_BREATH_RECOVER_MODIFIER 1
#define TB_BREATH_DEDUCT_MODIFIER 1.25
#define RT_NEXT_BLEED_MODIFIER 0.5
#define RT_FIRST_AID_GAIN_MODIFIER 12
#define NUM_REAL_SEC_PER_TACTICAL_TURN 5000
#define RT_COMPRESSION_TACTICAL_TURN_MODIFIER 10
#endif
| {
"pile_set_name": "Github"
} |
{% extends "base.html" %}
{% block title %}{{ username }}{% endblock %}
{% block content %}
<h1 class="graphed">{{ username }} <small>{{ num_weeks }} weeks of data</small></h1>
{% if flashes %}
<ul class="flashes">
{% for flash in flashes %}
<li>{{ flash }}</li>
{% endfor %}
</ul>
{% endif %}
... | {
"pile_set_name": "Github"
} |
/* Implementation details of FILE streams.
Copyright (C) 2007-2008, 2010-2018 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the Licens... | {
"pile_set_name": "Github"
} |
""" Python Character Mapping Codec cp1258 generated from 'MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1258.TXT' with gencodec.py.
"""#"
import codecs
### Codec APIs
class Codec(codecs.Codec):
def encode(self,input,errors='strict'):
return codecs.charmap_encode(input,errors,encoding_table)
def decode(self,in... | {
"pile_set_name": "Github"
} |
{
"url": "https://www.anapioficeandfire.com/api/characters/232",
"name": "Catelyn Stark",
"gender": "Female",
"culture": "Rivermen",
"born": "In 264 AC, at Riverrun",
"died": "In 299 AC, at the Twins",
"titles": [
"Lady of Winterfell"
],
"aliases": [
"Catelyn Tully",
... | {
"pile_set_name": "Github"
} |
/******************************************************************************
* Copyright (C) 2004 - 2020 Xilinx, Inc. All rights reserved.
* SPDX-License-Identifier: MIT
******************************************************************************/
/****************************************************************... | {
"pile_set_name": "Github"
} |
.so man3/rint.3
| {
"pile_set_name": "Github"
} |
category: Data Enrichment & Threat Intelligence
commonfields:
id: SpamhausFeed
version: -1
configuration:
- defaultvalue: https://www.spamhaus.org/drop/drop.txt
display: Services
name: url
options:
- https://www.spamhaus.org/drop/edrop.txt
- https://www.spamhaus.org/drop/drop.txt
required: false
type:... | {
"pile_set_name": "Github"
} |
#include <Eigen/StdVector>
#include <unsupported/Eigen/BVH>
#include <iostream>
using namespace Eigen;
typedef AlignedBox<double, 2> Box2d;
namespace Eigen {
Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point
}
struct PointPointMinimizer //how to compute squa... | {
"pile_set_name": "Github"
} |
/************************************************************************
Copyright 2017-2019 eBay 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
https://www.apache.org/licenses/LICENSE-2... | {
"pile_set_name": "Github"
} |
/* ______ ___ ___
* /\ _ \ /\_ \ /\_ \
* \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___
* \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\
* \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \
* \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
* ... | {
"pile_set_name": "Github"
} |
---
layout: example_layout
title: 功能启用/禁用 基本初始化 示例 Datatables中文网
relurl: http://datatables.net/examples/basic_init/filter_only.html
---
<header class="jumbotron subhead" id="overview">
<div class="container">
<h3>功能启用/禁用</h3>
<p>
如果你不想使用datatables的某项特性,那么你可以禁用它,下面的例子展示了只启用查找功能(默认是启用的)
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* 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 agre... | {
"pile_set_name": "Github"
} |
{"id":1234, "foo":"My dog", "blah":"has fleas", "ymd": 20190101}
{"id":4567, "foo":"Mary had a little lamb","blah":"whose fleece was white as snow", "ymd": 20190101}
| {
"pile_set_name": "Github"
} |
/***********************************************************************
*
* Copyright (c) 2012-2020 Barbara Geller
* Copyright (c) 2012-2020 Ansel Sermersheim
*
* Copyright (c) 2015 The Qt Company Ltd.
* Copyright (c) 2012-2016 Digia Plc and/or its subsidiary(-ies).
* Copyright (c) 2008-2012 Nokia Corporation and/or i... | {
"pile_set_name": "Github"
} |
;*****************************************************************************
;* SIMD-optimized pixel operations
;*****************************************************************************
;* Copyright (c) 2000, 2001 Fabrice Bellard
;* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
;*
;* This file i... | {
"pile_set_name": "Github"
} |
n_node 37
0 1 26 1.948881e+05 8.960405e+04 ((!LIQUID 1))
1 2 9 4.487697e+04 6.217272e+04 ((ALVELR 1 WGLIDE -1)(ALVELR 1 !WGLIDE -1 NASAL 1)(!WGLIDE -1 !S/SH 1 ALVFRIC 1))
2 3 8 3.270459e+04 2.864756e+04 ((!LW -1))
3 4 5 1.352846e+04 1.784211e+04 ((FRIC3 1 ALVSTP -1))
4 - - 1.745460e+04 9.237384e+02
5 6 7 1.192934e+04 1... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2008 The Android Open Source Project
* 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, t... | {
"pile_set_name": "Github"
} |
define([
'backbone',
'logger',
'app/modules/Activity/models/ActivityModel',
'app/modules/Activity/models/ActivityTree'
], function(Backbone, logger, ActivityModel, ActivityTree) {
var ActivityCollection = Backbone.Collection.extend({
model: ActivityModel,
findByEventId: function(eventId) {
re... | {
"pile_set_name": "Github"
} |
.CodeMirror-search-match {
background: gold;
border-top: 1px solid orange;
border-bottom: 1px solid orange;
-moz-box-sizing: border-box;
box-sizing: border-box;
opacity: .5;
}
| {
"pile_set_name": "Github"
} |
<?php
function hostxrd_init(&$a) {
header('Access-Control-Allow-Origin: *');
header("Content-type: text/xml");
$tpl = get_markup_template('xrd_host.tpl');
$x = replace_macros(get_markup_template('xrd_host.tpl'), array(
'$zhost' => $a->get_hostname(),
'$zroot' => z_root()
));
$arr = array('xrd' => $x);
call... | {
"pile_set_name": "Github"
} |
# Copyright 2017-2020 TensorHub, 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 writ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2006 Apple Inc. All rights reserved.
* Copyright (C) 2008 Alp Toker <alp@atoker.com>
*
* 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 ... | {
"pile_set_name": "Github"
} |
//
// WebViewDelegate.m
// LocalRadio
//
// Created by Douglas Ward on 7/15/17.
// Copyright © 2017-2020 ArkPhone LLC. All rights reserved.
//
#import "WebViewDelegate.h"
#import "AppDelegate.h"
@implementation WebViewDelegate
- (void)loadMainPage
{
[self performSelectorOnMainThread:@selector(loadMainPageOnM... | {
"pile_set_name": "Github"
} |
package de.mukis
import java.util.concurrent.{ Executors, TimeUnit }
import java.nio.file.Files
import java.nio.file.StandardOpenOption._
import java.nio.charset.Charset
object MainApp extends App {
println("Hello, World: " + args.mkString(" "))
}
| {
"pile_set_name": "Github"
} |
/**
* Copyright (C) 2011-2015 The XDocReport Team <xdocreport@googlegroups.com>
*
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restrictio... | {
"pile_set_name": "Github"
} |
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------... | {
"pile_set_name": "Github"
} |
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstdlib>
#include <string>
#include <sstream>
#include <cassert>
struct R2 {
double x,y;
};
typedef int Tab[1000];
typedef Tab TTab[100];
typedef R2 TR2[1000];
using namespace std;
int dump(int l,int *t, ostream & cc=cout)
{
cc.precision(20);... | {
"pile_set_name": "Github"
} |
# /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * 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)
# */
#
# /* Revised by Paul Mensonides (2002) */
#
# /* See http://www.boost... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publis... | {
"pile_set_name": "Github"
} |
async function f2() {
var y = await 20;
return y;
}
f2();
| {
"pile_set_name": "Github"
} |
{
"_class": "shapePath",
"booleanOperation": -1,
"clippingMaskMode": 0,
"do_objectID": "E73DA06A-A66F-439B-9DA0-C38C1662FBC3",
"edited": true,
"exportOptions": {
"_class": "exportOptions",
"exportFormats": [
],
"includedLayerIds": [
],
"layerOptions": 0,
"shouldTrim": false
},
... | {
"pile_set_name": "Github"
} |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class OverlayAdjuster : MonoBehaviour
{
public float adjustSpeed = 12f;
[Header("Checking Variables")]
public LayerMask collisionLayer;
public float checkRadius = 0.125f;
public float checkDis = 1.25f;
Vect... | {
"pile_set_name": "Github"
} |
/*
Copyright 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, softw... | {
"pile_set_name": "Github"
} |
//empty
| {
"pile_set_name": "Github"
} |
/**
* Copyright (C) 2001-2020 by RapidMiner and the contributors
*
* Complete list of developers available at our web site:
*
* http://rapidminer.com
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by ... | {
"pile_set_name": "Github"
} |
<resources>
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
<dimen name="activity_horizon... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <objc/NSObject.h>
#import <Network/NWPrettyDescription-Protocol.h>
@class NSString, NSUUID;
@interface NWGenericNetworkAgent... | {
"pile_set_name": "Github"
} |
#source: emit-relocs-302.s
#ld: -T relocs.ld --defsym globala=0x11000 --defsym globalb=0x45000 --defsym globalc=0x1234 -e0 --emit-relocs
#notarget: aarch64_be-*-*
#objdump: -dr
.*: +file format .*
Disassembly of section .text:
0000000000010000 <\.text>:
10000: 580000e1 ldr x1, 1001c <\.text\+0x1c>
10004: 100... | {
"pile_set_name": "Github"
} |
package jadx.tests.integration.others;
import org.junit.jupiter.api.Test;
import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;
import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
public clas... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1982, 1986, 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the... | {
"pile_set_name": "Github"
} |
// Boost.Geometry (aka GGL, Generic Geometry Library)
// This file is manually converted from PROJ4
// Copyright (c) 2008-2012 Barend Gehrels, Amsterdam, the Netherlands.
// This file was modified by Oracle on 2018.
// Modifications copyright (c) 2018, Oracle and/or its affiliates.
// Contributed and/or modified by A... | {
"pile_set_name": "Github"
} |
<?php
/**
* PHPExcel_HashTable
*
* Copyright (c) 2006 - 2015 PHPExcel
*
* 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) a... | {
"pile_set_name": "Github"
} |
using System;
using System.Diagnostics;
using System.IO;
using System.IO.Pipelines;
using System.Net.Sockets;
using System.Threading;
using System.Threading.Tasks;
namespace Pipelines.Sockets.Unofficial
{
public partial class SocketConnection
{
private SocketAwaitableEventArgs _readerArgs;
//... | {
"pile_set_name": "Github"
} |
import SwiftLintFramework
import XCTest
class DiscouragedObjectLiteralRuleTests: XCTestCase {
func testWithDefaultConfiguration() {
verifyRule(DiscouragedObjectLiteralRule.description)
}
func testWithImageLiteral() {
let baseDescription = DiscouragedObjectLiteralRule.description
le... | {
"pile_set_name": "Github"
} |
package history
import (
"testing"
sq "github.com/Masterminds/squirrel"
"github.com/stellar/go/services/horizon/internal/db2"
"github.com/stellar/go/services/horizon/internal/test"
)
func TestOperationQueries(t *testing.T) {
tt := test.Start(t).Scenario("base")
defer tt.Finish()
q := &Q{tt.HorizonSession()}
... | {
"pile_set_name": "Github"
} |
/*
Copyright 2016 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"
} |
// RUN: %clang -target x86_64-apple-macosx10.13 -c -### %s 2>&1 \
// RUN: | FileCheck %s -check-prefix=UNAVAILABLE
//
// RUN: %clang -target arm64-apple-ios10 -c -### %s 2>&1 \
// RUN: | FileCheck %s -check-prefix=UNAVAILABLE
//
// RUN: %clang -target arm64-apple-tvos10 -c -### %s 2>&1 \
// RUN: | FileCheck %s -c... | {
"pile_set_name": "Github"
} |
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A simple, object-oriented, PHP Redmine API client"
HOMEPAGE="https://github.com/kbsali/php-redmine-api"
SRC_URI="https://github.com/kbsali/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="M... | {
"pile_set_name": "Github"
} |
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------... | {
"pile_set_name": "Github"
} |
(define $ret3 (/ (+ (* 8 a (sin θ) y) (* -4 a^2 (sin θ) y) (* -4 (sin θ) y)) (* 45 '(+ 1 (* -1 y))^5)))
(define $ret4 (- (let {[$θ π]} (/ (+ (* 8 a (sin θ) y) (* -4 a^2 (sin θ) y) (* -4 (sin θ) y)) (* 45 '(+ 1 (* -1 y))^5)))
(let {[$θ 0]} (/ (+ (* 8 a (sin θ) y) (* -4 a^2 (sin θ) y) (* -4 (sin θ) y)) ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.