text stringlengths 2 99.9k | meta dict |
|---|---|
# sys_socket_h.m4 serial 23
dnl Copyright (C) 2005-2017 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl From Simon Josefsson.
AC_DEFUN([g... | {
"pile_set_name": "Github"
} |
# Setup Salesforce Consumer Key and Secret
Salesforce Documentation:
[http://www.salesforce.com/us/developer/docs/api_rest/Content/intro_defining_remote_access_applications.htm](http://www.salesforce.com/us/developer/docs/api_rest/Content/intro_defining_remote_access_applications.htm)
1. Create developer account at [... | {
"pile_set_name": "Github"
} |
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
describe "Module#<" do
it "returns true if self is a subclass of or includes the given module" do
(ModuleSpecs::Child < ModuleSpecs::Parent).should == true
(ModuleSpecs::Child < ModuleSpecs::Basic).should == true
(ModuleSpecs::Child... | {
"pile_set_name": "Github"
} |
/*
* arch/alpha/lib/ev6-memchr.S
*
* 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com>
*
* Finds characters in a memory area. Optimized for the Alpha:
*
* - memory accessed as aligned quadwords only
* - uses cmpbge to compare 8 bytes in parallel
* - does binary search to find... | {
"pile_set_name": "Github"
} |
FROZEN_MACHINE(implode, request/implode, yes,, implode)
| {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2015, Apple Inc. 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, this
list of conditions and the follow... | {
"pile_set_name": "Github"
} |
/*
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditions for ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1998, 2013, 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 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
; Test that not specifying a stderr file isn't broken.
RUN: unset AFL_DRIVER_STDERR_DUPLICATE_FILENAME
RUN: AFLDriverTest
; Test that specifying an invalid file causes a crash.
RUN: ASAN_OPTIONS= AFL_DRIVER_STDERR_DUPLICATE_FILENAME="%T" not --crash AFLDriverTest
; Test that a file is created when specified as the du... | {
"pile_set_name": "Github"
} |
(in-package :defpackage+-user-1)
(defpackage+ :autowrap
(:use #:cl #:alexandria)
(:export
;; Conditions
#:autowrap-condition
#:autowrap-error
#:autowrap-continuable-error
#:simple-autowrap-continuable-error
#:undefined-foreign-type
#:undefined-foreign-type-contextualised
#:sffi-condition
... | {
"pile_set_name": "Github"
} |
import torch
import torch.nn as nn
from mmaction.models import BaseHead, I3DHead, SlowFastHead, TSMHead, TSNHead
class ExampleHead(BaseHead):
# use a ExampleHead to success BaseHead
def init_weights(self):
pass
def forward(self, x):
pass
def test_base_head():
head = ExampleHead(3, ... | {
"pile_set_name": "Github"
} |
#
# TI MSP432 LaunchPad Evaluation Kit
#
source [find interface/xds110.cfg]
adapter_khz 2500
transport select swd
source [find target/ti_msp432.cfg]
| {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright 2014 Fabian Grutschus. 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, this
* list of co... | {
"pile_set_name": "Github"
} |
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
in_addr_t inet_addr(const char *p)
{
struct in_addr a;
if (!__inet_aton(p, &a)) return -1;
return a.s_addr;
}
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.layer-reference {
position: absolute;
height: 300px;
width: 50px;
background-color: lightgrey;
font-family: sans-serif;
text-align: center;
padding-top: 5px;
border: 1px solid;
}
.target {
position: absolute;
width: 450px;
height: 10px;
}
.active {
... | {
"pile_set_name": "Github"
} |
{
"ver": "1.0.0",
"uuid": "96a64ce0-ccbb-49ac-aca5-537d61b47f14",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"subMetas": {
"hall": {
"ver": "1.0.3",
"uuid": "91f4ddb4-d0d0-4d93-9671-c062b109acd5",
"rawTextureUuid": "96a64ce0-ccbb-49ac-aca5-537d61b47f14",
"tr... | {
"pile_set_name": "Github"
} |
export type MatchingSpecs<P> = Partial<
{
[K in keyof P]: P[K] extends unknown[]
?
| Specification<P[K][number][]>
| Readonly<
| P[K][number]
| Specification<P[K][number]>
| MatchingSpecs<P[K][number]>
>[]
: P[K] extends object
... | {
"pile_set_name": "Github"
} |
@page "/pdf/portfolio"
@inject Microsoft.JSInterop.IJSRuntime JS
@using System.IO
@using Syncfusion.Blazor.Buttons
@inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment hostingEnvironment
@inherits SampleBaseComponent;
@*Hidden:Lines*@
@using blazor_samples.Data.FileFormats.PDF
@*End:Hidden*@
<SampleDescription>
... | {
"pile_set_name": "Github"
} |
/* eslint no-extend-native:0 */
// Load modules
var Code = require('code');
var Lab = require('lab');
var Qs = require('../');
// Declare internals
var internals = {};
// Test shortcuts
var lab = exports.lab = Lab.script();
var expect = Code.expect;
var describe = lab.experiment;
var it = lab.test;
describe('p... | {
"pile_set_name": "Github"
} |
Benchmark for Searching:
(0) Identify a search domain S from which strings of the same size are
drawn. These strings will form the target data structure as well as the
strings to be searched for. The size of the search domain |S| = n =
2^k
For example, S4 could be the set of 4-character strings from... | {
"pile_set_name": "Github"
} |
commonfields:
id: AlgoSec
version: -1
name: AlgoSec
display: AlgoSec
system: true
category: Network Security
image: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAApCAYAAAD+tu2AAAATjUlEQVR4Ae2bBXRb15aGd7AUZnhcZuY2XGbGMDMzMzMnZmaO2TEzMyexZUkWmTGk+ber49FoKYbpKztrfVfKRa37n43nmNr6dzqlavzWaPWhWQGK0C885cXvukoVH7pJpV... | {
"pile_set_name": "Github"
} |
<!-- YAML
added:
- v13.4.0
- v12.16.0
-->
> Stability: 1 - captureRejections is experimental.
Value: `Symbol.for('nodejs.rejection')`
See how to write a custom [rejection handler][rejection].
| {
"pile_set_name": "Github"
} |
A line of text 1
A line of text 2
A line of text 3
A line of text 4
| {
"pile_set_name": "Github"
} |
/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without... | {
"pile_set_name": "Github"
} |
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | {
"pile_set_name": "Github"
} |
/*
* l1oip.c low level driver for tunneling layer 1 over IP
*
* NOTE: It is not compatible with TDMoIP nor "ISDN over IP".
*
* Author Andreas Eversberg (jolly@eversberg.eu)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publis... | {
"pile_set_name": "Github"
} |
Title: janitza_umg_freq: fixed crash when no frequency measurements were reported by the device
Level: 1
Component: checks
Compatible: compat
Version: 1.2.7i3
Date: 1443103718
Class: fix
| {
"pile_set_name": "Github"
} |
<?php
/**
* Inline HTML diff generator for PHP DiffLib.
*
* PHP version 5
*
* Copyright (c) 2009 Chris Boulton <chris.boulton@interspire.com>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions ... | {
"pile_set_name": "Github"
} |
#
# Copyright 2011-2020 Branimir Karadzic. All rights reserved.
# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
#
BGFX_DIR=../..
RUNTIME_DIR=$(BGFX_DIR)/examples/runtime
BUILD_DIR=../../.build
include $(BGFX_DIR)/scripts/shader.mk
| {
"pile_set_name": "Github"
} |
/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2008-present Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public... | {
"pile_set_name": "Github"
} |
{
"name": "nodebrew",
"full_name": "nodebrew",
"oldname": null,
"aliases": [
],
"versioned_formulae": [
],
"desc": "Node.js version manager",
"license": "MIT",
"homepage": "https://github.com/hokaccha/nodebrew",
"versions": {
"stable": "1.0.1",
"head": "HEAD",
"bottle": false
},
... | {
"pile_set_name": "Github"
} |
/*
* (C) Copyright 2015-2016 the original author or 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 app... | {
"pile_set_name": "Github"
} |
Original Author:
- Weston Schmidt <weston_schmidt@alumni.purdue.edu>
Contributors:
- Reinhard Arlt
- at89c5131 chip support
- Anton Blad
- at90usb162 and at90usb82 chip support
- David Brownell
- compiler flag improvements
- command line argument processing improvements
... | {
"pile_set_name": "Github"
} |
(** This is a copy of the parts of the Coq stdlib implementing
[nsatz], excluding the bit that adds support for [ℝ], which draws
in axioms reported by coqchk. Once we move to Coq 8.13 as our
minimum version, this should be dropped. *)
(***********************************************************************... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... | {
"pile_set_name": "Github"
} |
using Improvisation.Library.Distance;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace Improvisation.Library.GraphOperations
{
public class NGramSemanticGraphDistance<T>
where T : IEquatable... | {
"pile_set_name": "Github"
} |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Protocols.TestSuites.FileSharing.Common.Adapter;
using Microsoft.Protocols.TestTools;
using Microsoft.Protocols.TestTools.StackSdk.FileAccessService.Dfs... | {
"pile_set_name": "Github"
} |
var concatMap = require('concat-map');
var balanced = require('balanced-match');
module.exports = expandTop;
var escSlash = '\0SLASH'+Math.random()+'\0';
var escOpen = '\0OPEN'+Math.random()+'\0';
var escClose = '\0CLOSE'+Math.random()+'\0';
var escComma = '\0COMMA'+Math.random()+'\0';
var escPeriod = '\0PERIOD'+Math... | {
"pile_set_name": "Github"
} |
What is the date?
[5/29/2001]
What is your name?
[Bryce Denney]
What is your email address?
[bryce dot denney at bigfoot dot com]
Do you mind if your name and email address are placed on a testing results
web page so that people with a similar setup can write to you?
[X] Ok, put it on a web page
[ ] No, keep ... | {
"pile_set_name": "Github"
} |
---
created: '2020-02-26T19:54:24.690252Z'
creator: sentry
source: tests/sentry/grouping/test_variants.py
---
app:
hash: null
component:
app (exception of system takes precedence)
exception (ignored because hash matches system variant)
stacktrace
frame (frame considered in-app because no... | {
"pile_set_name": "Github"
} |
[general]
ffmpeg_path: ffmpeg | avconv | none if using vlc
vlc_path: /path/to/vlc
videos: [
{
'title': "A New Hope",
'movie_path': "/path/to/movie-file",
'subtitle_path': "subs/Star_Wars_Episode_IV.srt",
'slug': 'hope',
},
{
'title': "The Empire Strikes Back",
... | {
"pile_set_name": "Github"
} |
/*
* SonarQube
* Copyright (C) 2009-2020 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program 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 3 of the License, o... | {
"pile_set_name": "Github"
} |
generatorName: groovy
outputDir: samples/client/petstore/groovy
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore.yaml
templateDir: modules/openapi-generator/src/main/resources/Groovy
additionalProperties:
hideGenerationTimestamp: "true"
| {
"pile_set_name": "Github"
} |
////////////////////////////////////////////////////////////////////
// Copyright (C) Alexander Telyatnikov, Ivan Keliukh, Yegor Anchishkin, SKIF Software, 1999-2013. Kiev, Ukraine
// All rights reserved
// This file was released under the GPLv2 on June 2015.
////////////////////////////////////////////////////////////... | {
"pile_set_name": "Github"
} |
commit 8570c4be394cff7282f332f97da2ff569a927ddb
Author: Imre Kaloz <kaloz@openwrt.org>
Date: Wed Feb 2 20:06:12 2011 +0000
fixup arm soft-float symbols
SVN-Revision: 25325
--- a/libgcc/config/arm/t-linux
+++ b/libgcc/config/arm/t-linux
@@ -1,6 +1,10 @@
LIB1ASMSRC = arm/lib1funcs.S
LIB1ASMFUNCS = _udi... | {
"pile_set_name": "Github"
} |
//Generated at 2012-07-03 18:44:06
/*
* Copyright (c) 2010 - 2011 Espressif System
*
*/
#ifndef UART_REGISTER_H_INCLUDED
#define UART_REGISTER_H_INCLUDED
#define REG_UART_BASE( i ) (0x60000000+(i)*0xf00)
//version value:32'h062000
#define UART_FIFO( i ) (REG_UART_BASE( i ) + 0x0)
#define... | {
"pile_set_name": "Github"
} |
// @flow
/* eslint no-eval: 0 */
// $FlowFixMe
import styled, { css } from 'styled-components';
import { Gradient, Shadow, Transition, hexa } from '../globals';
const baseButton = css`
display: flex;
flex: none;
align-self: center;
align-items: center;
justify-content: center;
border-radius: 12px;
font-w... | {
"pile_set_name": "Github"
} |
{
"created_at": "2015-02-27T22:28:30.828992",
"description": "Sphinx Themes for Flask related projects and Flask itself",
"fork": true,
"full_name": "lepture/flask-sphinx-themes",
"language": "Python",
"updated_at": "2015-02-27T22:28:30.829750"
} | {
"pile_set_name": "Github"
} |
/*
* NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer"
*
* Copyright (c) 2019 United States Government as represented by
* the Administrator of the National Aeronautics and Space Administration.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the... | {
"pile_set_name": "Github"
} |
{
"kind": "Template",
"apiVersion": "v1",
"metadata": {
"annotations": {
"iconClass": "icon-eap",
"tags": "eap,javaee,java,jboss",
"version": "1.4.8",
"openshift.io/display-name": "JBoss EAP 6.4 + A-MQ (with https)",
"openshift.io/provider-... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-US">
<!-- Elsevier, generated from "elsevier" metadata at https://github.com/citation-style-language/journals -->
<info>
<title>Journal of Water Process Engineering</title>
<id>http://www.z... | {
"pile_set_name": "Github"
} |
// +build !ignore_autogenerated
/*
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 l... | {
"pile_set_name": "Github"
} |
#include "qtoolbutton.h"
| {
"pile_set_name": "Github"
} |
#!/bin/bash
FN="MeSH.Nle.eg.db_1.13.0.tar.gz"
URLS=(
"https://bioconductor.org/packages/3.11/data/annotation/src/contrib/MeSH.Nle.eg.db_1.13.0.tar.gz"
"https://bioarchive.galaxyproject.org/MeSH.Nle.eg.db_1.13.0.tar.gz"
"https://depot.galaxyproject.org/software/bioconductor-mesh.nle.eg.db/bioconductor-mesh.nle.eg.... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env node
/* 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/. */
var path = require('path'),
child_process = require('child_process');
/*
* A thin wrapper a... | {
"pile_set_name": "Github"
} |
.nvd3.nv-candlestickBar .nv-ticks .nv-tick {
stroke-width: 1px;
}
.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover {
stroke-width: 2px;
}
.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect {
stroke: #2ca02c;
fill: #2ca02c;
}
.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect {
stroke:... | {
"pile_set_name": "Github"
} |
defmodule Notifications.ExceptionInfo do
@moduledoc false
use Protobuf, syntax: :proto3
@type t :: %__MODULE__{
class: String.t(),
title: String.t(),
msg: String.t(),
backtrace: [String.t()]
}
defstruct [:class, :title, :msg, :backtrace]
field :class, 1, type:... | {
"pile_set_name": "Github"
} |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
'use strict';
import * as bodyParser from 'body-parser';
import * as express from 'express';
import * as path from 'path';
import * as component from '../common/component';
import { RestServer } from '../common/restServer'
import { getLogDir }... | {
"pile_set_name": "Github"
} |
//
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// Copyright © 2011-2019 ANSSI. All Rights Reserved.
//
// Author(s): Jean Gautier (ANSSI)
//
#include "stdafx.h"
#include "ParameterCheck.h"
#include "ConfigFileReader.h"
#include "TableOutputWriter.h"
#include "SystemDetails.h"
#include "GetSamples.h"
#include "... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2019 Google LLC
*
* 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 ... | {
"pile_set_name": "Github"
} |
# mode: compile
cdef void foo():
cdef int bool, int1=0, int2=0
cdef float float1=0, float2=0
cdef char *ptr1=NULL, *ptr2=NULL
cdef int *ptr3
bool = int1 == int2
bool = int1 != int2
bool = float1 == float2
bool = ptr1 == ptr2
bool = int1 == float2
bool = ptr1 is ptr2
bool = p... | {
"pile_set_name": "Github"
} |
2
0
0
0
0
0
2
0
5
0
0
0
0
2
5
0
0
4
3
2
0
0
2
2
0
2
0
4
0
0
2
0
0
2
0
0
2
2
0
2
2
7
2
0
0
5
2
0
2
2
5
0
1
4
2
2
0
0
5
0
2
2
4
0
0
2
2
0
3
2
0
0
4
0
0
4
0
4
0
3
0
0
2
0
2
2
0
8
0
0
0
1
2
0
2
3
0
4
0
2
1
2
0
0
2
4
0
2
0
0
2
0
0
0
3
0
2
2
0
0
2
2
0
4
0
3
4
0
0
0
0
2
4
2
2
2
0
8
2
0
0
0
2
4
0
2
4
0
4
2
0
0
1
2
1
2
0
2
2
0
... | {
"pile_set_name": "Github"
} |
--TEST--
Test chop() function : usage variations - miscellaneous arguments
--FILE--
<?php
/* Prototype : string chop ( string $str [, string $charlist] )
* Description: Strip whitespace (or other characters) from the end of a string
* Source code: ext/standard/string.c
*/
/*
* Testing chop() : with miscellaneous a... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 applic... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>clang_version</key>
<string>Apple LLVM version 8.1.0 (clang-802.0.42)</string>
<key>files</key>
<array>
</array>
<key>diagnostics<... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
# Copyright 2020 the Velero contributors.
#
# 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 applic... | {
"pile_set_name": "Github"
} |
#![windows_subsystem = "windows"]
//#[cfg(target_os = "windows")]
fn main() -> Result<(), systray::Error> {
let mut app;
match systray::Application::new() {
Ok(w) => app = w,
Err(_) => panic!("Can't create window!"),
}
// w.set_icon_from_file(&"C:\\Users\\qdot\\code\\git-projects\\systr... | {
"pile_set_name": "Github"
} |
/**
* \file os_rename.c
* \brief Rename a path on Windows.
* \author Copyright (c) 2002-2013 Jason Perkins and the Premake project
*/
#include "premake.h"
#if PLATFORM_WINDOWS
int os_rename(lua_State* L)
{
const char *fromname = luaL_checkstring(L, 1);
const char *toname = luaL_checkstring(L, 2);
wchar_t wide... | {
"pile_set_name": "Github"
} |
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
const KEY_PROFILEDIR = "ProfD";
const KEY_APPDIR = "XCurProcD";
const FILE_BLOCKLIST = "blocklist.xml";
const PREF_BLOCKLIST_ENABLED = "extension... | {
"pile_set_name": "Github"
} |
/*
* super.h
*/
int befs_load_sb(struct super_block *sb, befs_super_block *disk_sb);
int befs_check_sb(struct super_block *sb);
| {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
/// Make sure (of/i2c/platform)_device_id tables are NULL terminated
//
// Keywords: of_table i2c_table platform_table
// Confidence: Medium
// Options: --include-headers
virtual patch
virtual context
virtual org
virtual report
@depends on context@
identifier var, arr;
expression E... | {
"pile_set_name": "Github"
} |
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright 2008-2020 the original author or 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/license... | {
"pile_set_name": "Github"
} |
## A really fancy clock
Import-Module ShowUI -FOrce
New-UIWidget -AsJob -Content {
$shadow = DropShadowEffect -Color Black -Shadow 0 -Blur 8
$now = Get-Date;
StackPanel {
TextBlock -Name "Time" ('{0:h:mm tt}' -f $now) -FontSize 108 -LineHeight 100 -LineStackingStrategy BlockLineHeight -Margin ... | {
"pile_set_name": "Github"
} |
package com.tencent.mm.plugin.exdevice.service;
import com.tencent.matrix.trace.core.AppMethodBeat;
import com.tencent.mm.plugin.exdevice.j.b;
import com.tencent.mm.plugin.exdevice.service.k.a;
import com.tencent.mm.sdk.platformtools.ab;
public class w extends a {
public void a(long j, int i, int i2, int i3, long... | {
"pile_set_name": "Github"
} |
--[[============================================================================
main.lua
============================================================================]]--
--[[--
# xRules
xRules lets you rewrite and transform incoming MIDI/OSC messages on-the-fly, using a visual programming interface. Outgoing message... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE pov SYSTEM "/usr/share/cgc-docs/replay.dtd">
<pov>
<cbid>service</cbid>
<replay>
<write><data>new\x0a</data></write>
<write><data>sd 1\x0a</data></write>
<write><data>s1r3\x0a</data></write>
<read><delim>\x0a</delim><match><data>move p7p5\x0a</data></matc... | {
"pile_set_name": "Github"
} |
export * from './tabs.module';
export * from './tabs.service';
export * from './tab-list.component';
export * from './tab/tab-panel.component';
export * from './tab-item/tab-item.directive';
export * from './tab-link/tab-link.directive';
export * from './tab-nav/tab-nav.component';
export * from './tab-utils/tab-direct... | {
"pile_set_name": "Github"
} |
package org.apache.helix.manager.zk.client;
/*
* 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 ... | {
"pile_set_name": "Github"
} |
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <google/protobuf/text_format.h>
#include <boost/filesystem.hpp>
#include <map>
#include <string>
#include "caffe/common.hpp"
#include "caffe/proto/caffe.pb.h"
#include "caffe/util/io.hpp"
#include "caffe/util/... | {
"pile_set_name": "Github"
} |
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<style>
html, body { margin: 0 }
svg, div { display: inline-block; width: 700px; height: 200px }
div { font: 16px sans-serif; margin-left: -700px; vertical-align: 100px }
div > span { ma... | {
"pile_set_name": "Github"
} |
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<% content_for :title, "Manufacturers - Agencies - #{current_organization.name}" %>
<h1>
Manufacturers
<small>for <%= current... | {
"pile_set_name": "Github"
} |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/storagegateway/StorageGateway_EXPORTS.h>
#include <aws/storagegateway/StorageGatewayRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memo... | {
"pile_set_name": "Github"
} |
# Dependency Configuration
To model dependencies between jobs you simply use `depends_on` in the job definition. As an example we create tree jobs `A`, `B` and `C`. `C` depends on `A` and `B`.
```json
{
"version": 1,
"jobs": [{
"name": "A",
...
}, {
"name": "B",
...
}, {... | {
"pile_set_name": "Github"
} |
//+build !windows,!solaris,!darwin
package dbus
import (
"os"
)
const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
func getSystemBusPlatformAddress() string {
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
if address != "" {
return address
}
return defaultSystemBusAddress
}
| {
"pile_set_name": "Github"
} |
/* ------------------------------------------------------------------------------
*
* # D3.js - sunbirst diagram combined
*
* Demo sunbirst diagram setup with interactive zoom and data update combination
*
* Version: 1.0
* Latest update: August 1, 2015
*
* --------------------------------------------------... | {
"pile_set_name": "Github"
} |
"""This test covers 'pip install' issue #155"""
import os
import sys
import shutil
import subprocess
import unittest
def read_version():
# Determine the version number by reading it from the file
# 'comtypes\__init__.py'. We cannot import this file (with py3,
# at least) because it is in py2.x syntax.
... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
namespace PKHeX.Core
{
/// <summary>
/// Generation 4 Mystery Gift Template File (Inner Gift Data, no card data)
/// </summary>
public sealed class PGT : DataMysteryGift, IRibbonSetEvent3, IRibbonSetEvent4
{
public const in... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run
| {
"pile_set_name": "Github"
} |
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
/* L E X I C A L A N A L Y S E R F O R M O D U L A - 2 */
/* $Id$ */
#include <stdlib.h>
#include <stdio.h>
#inclu... | {
"pile_set_name": "Github"
} |
package org.intermine.webservice.server.search;
/*
* Copyright (C) 2002-2020 FlyMine
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. See the LICENSE file for more
* information or http://www.gnu.org/cop... | {
"pile_set_name": "Github"
} |
/*
* VQF demuxer
* Copyright (c) 2009 Vitor Sessak
*
* This file is part of FFmpeg.
*
* FFmpeg 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 (... | {
"pile_set_name": "Github"
} |
/*!
@file
Defines `boost::hana::detail::variadic::reverse_apply`.
@copyright Louis Dionne 2013-2016
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_DETAIL_VARIADIC_REVERSE_APPLY_HPP
#define BOOST... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="/benchmark/js/jquery.min.js"></script>
<script type="text/javascript" src="/benchmark/js/js.cookie.js"></script>
<title>Be... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2014-2017 Netflix, 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 requir... | {
"pile_set_name": "Github"
} |
# Exploit Title: WordPress Facebook Promotions plugin <= 1.3.3 SQL Injection Vulnerability
# Date: 2011-08-28
# Author: Miroslav Stampar (miroslav.stampar(at)gmail.com @stamparm)
# Software Link: http://downloads.wordpress.org/plugin/fbpromotions.1.3.3.zip
# Version: 1.3.3 (tested)
# Note: magic_quotes has to be turned... | {
"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-google-v3) on Mon May 09 20:04:52 EDT 2011 -->
<TITLE>
org.mozilla.javascript.optimizer (Rhino)
</TITLE>
<META NAME="date" CONTENT="2011-05-09">
<L... | {
"pile_set_name": "Github"
} |
.rightFavorite:host {
display: block;
--box-border-radius: 1px;
--link-primary-color: #778087;
--link-visited-color: #afb9c1;
--link-primary-hover-color: #4d5256;
}
div.rightFavorite.node {
background-color: transparent;
border-radius: var(--box-border-radius);
box-shadow: none;
fo... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example17-jquery</title>
<script src="../../components/jquery-2.1.1/jquery.js"></script>
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="docsTransclusionExampl... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2008 Apple Inc. 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, this list of condi... | {
"pile_set_name": "Github"
} |
//
// CCSViewController.m
// Cocoa-Charts
//
// Created by limc on 13-05-22.
// Copyright (c) 2012 limc.cn All rights reserved.
//
#import "CCSViewController.h"
#import "CCSAppDelegate.h"
#import "CCSGridChartViewController.h"
#import "CCSLineChartViewController.h"
#import "CCSStickChartViewController.h"
#import "... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.