text stringlengths 2 99.9k | meta dict |
|---|---|
/*
device.c -- Interaction BSD tun/tap device
Copyright (C) 2001-2005 Ivo Timmermans,
2001-2016 Guus Sliepen <guus@tinc-vpn.org>
2009 Grzegorz Dymarek <gregd72002@googlemail.com>
This program is free software; you can redistribute it and/or modify
it under the t... | {
"pile_set_name": "Github"
} |
***********************************
*=================================*
* RESERVOIR GODS LIBRARY ROUTINES *
*=================================*
* | | *
* |DISK_OS LIBRARY | *
* | | *
***********************************
* CODE: MR. PINK | (C): ... | {
"pile_set_name": "Github"
} |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes ... | {
"pile_set_name": "Github"
} |
// Copyright 2013 the V8 project authors. All rights reserved.
// Copyright (C) 2005, 2006, 2007, 2008, 2009 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 o... | {
"pile_set_name": "Github"
} |
/****************************************************************************
**
** Qtitan Library by Developer Machines (Microsoft-Ribbon implementation for Qt.C++)
**
** Copyright (c) 2009-2013 Developer Machines (http://www.devmachines.com)
** ALL RIGHTS RESERVED
**
** The entire contents of this... | {
"pile_set_name": "Github"
} |
{
"commands":{
"image_comic_dilbert": {
"text": "Mostra Dilbert comic",
"voice": "mostra Dilbert (comic)",
"description": "Mostra il più recente Dilbert comic."
}
}
} | {
"pile_set_name": "Github"
} |
go build *.go
| {
"pile_set_name": "Github"
} |
/*
* WUSB cluster reservation management
*
* Copyright (C) 2007 Cambridge Silicon Radio Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
* 2 as published by the Free Software Foundation.
*
* This program is distributed ... | {
"pile_set_name": "Github"
} |
#ifndef _MINIX_PROCFS_H
#define _MINIX_PROCFS_H
/*
* The compatibility model is as follows. The current format should be retained
* for as long as possible; new fields can be added at the end of the line,
* because ps/top only read as much as they know of from the start of the line.
* Once fields (really) have to ... | {
"pile_set_name": "Github"
} |
<tool id="cshl_fastx_trimmer" name="Trim sequences">
<description>to fixed length</description>
<command>
cat '$input' |
fastx_trimmer
#if $input.ext == "fastqsanger":
-Q 33
#elif $input.ext == "fastq":
-Q 64
#end if
-v -f $first -l $last -o '$output'
</command>
<inputs>
<param format="fasta,fastq,fastqsanger" ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2007 The Android Open Source Project
*
* 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"
} |
glslangValidator -V -S vert -o shader.vert.spv shader.vert
glslangValidator -V -S frag -o shader.frag.spv shader.frag
../../../build_RelWithDebInfo/bin2c -n vis -H license_header.h shader.vert.spv
../../../build_RelWithDebInfo/bin2c -n vis -H license_header.h shader.frag.spv
| {
"pile_set_name": "Github"
} |
// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,netbsd
package unix
const (
SYS_EXIT = 1 // { void|sys||exit(int rval); }
SYS_FORK = 2 // { int|sys... | {
"pile_set_name": "Github"
} |
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// The copyright to the contents herein is the property of Valve, L.L.C.
// The contents may be used and/or copied only with the written permission of
// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
// the agr... | {
"pile_set_name": "Github"
} |
from typing import Any, Callable, Dict, NoReturn, Optional, Tuple
class error(Exception):
def __init__(self, *args: Any) -> None: ...
def start_new_thread(function: Callable[..., Any], args: Tuple[Any, ...], kwargs: Dict[str, Any] = ...) -> None: ...
def exit() -> NoReturn: ...
def get_ident() -> int: ...
def all... | {
"pile_set_name": "Github"
} |
using UnityEngine;
using UnityEditor;
using System.IO;
using System.Linq;
public class SceneEnumAutoGenerator : UnityEditor.AssetModificationProcessor
{
public static string[] OnWillSaveAssets(string[] paths)
{
foreach(string path in paths)
{
if(path.ToLower().Contains(".unity"))
GenerateSceneEnum();
}
... | {
"pile_set_name": "Github"
} |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
pa... | {
"pile_set_name": "Github"
} |
(3 ** [2, 4, 6])
1/1: Building Filter (Filter.idr)
Main> Main> Bye for now!
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
'''This is Example module'''
print("useless script")
| {
"pile_set_name": "Github"
} |
你不必严格遵守这些原则,违背它们也不会被处以宗教刑罚。但你应当把这些原则看成警铃,若违背了其中的一条,那么警铃就会响起。
-----Arthur J.Riel
(1)所有数据都应该隐藏在所在的类的内部。p13
(2)类的使用者必须依赖类的共有接口,但类不能依赖它的使用者。p15
(3)尽量减少类的协议中的消息。p16
(4)实现所有类都理解的最基本公有接口[例如,拷贝操作(深拷贝和浅拷贝)、相等性判断、正确输出内容、从ASCII描述解析等等]。 p16
(5)不要把实现细节(例如放置共用代码的私有函数)放到类的公有接口中。p17
如果类的两个方法有一段公共代码,那么就可以创建一个防止这些公共... | {
"pile_set_name": "Github"
} |
' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
Imports Microsoft.CodeAnalysis.Text
Imports Microsoft.CodeAnalysis.VisualBasic
Imports Microsoft.CodeAnalysis.VisualBasic.Symbols
Imports Microsoft.CodeAnalysi... | {
"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>BuildMachineOSBuild</key>
<string>18A391</string>
<key>CFBundleIdentifier</key>
<string>org.rehabman.injector.FakePCIID-Intel-HDMI-Audio</st... | {
"pile_set_name": "Github"
} |
object Configs {
const val applicationId = "tachiyomi.mangadex"
const val buildToolsVersion = "29.0.3"
const val compileSdkVersion = 29
const val minSdkVersion = 24
const val targetSdkVersion = 29
const val testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
const val versi... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="&quot;" />
</head>
<body></body>
</html>
| {
"pile_set_name": "Github"
} |
/****************************************************************************/
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
// Copyright (C) 2001-2020 German Aerospace Center (DLR) and others.
// activitygen module
// Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: MIT
#include <stdlib.h>
#include <oqs/sig_dilithium.h>
#if defined(OQS_ENABLE_SIG_dilithium_3)
OQS_SIG *OQS_SIG_dilithium_3_new() {
OQS_SIG *sig = malloc(sizeof(OQS_SIG));
if (sig == NULL) {
return NULL;
}
sig->method_name = OQS_SIG_alg_dilithium_3;
sig->alg_version = "https://gi... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
# -*-coding:UTF-8 -*
"""
Tools Module
============================
Search tools outpout
"""
from Helper import Process
from pubsublogger import publisher
import os
import re
import sys
import time
import redis
import signal
from urllib.parse import urlparse
sys.path.append(os.path.join(os.e... | {
"pile_set_name": "Github"
} |
// Copyright (C) Krzysztof Jakubowski <nadult@fastmail.fm>
// This file is part of FreeFT. See license.txt for details.
#include "game/sprite.h"
#include <fwk/gfx/texture.h>
#include <fwk/math/rotation.h>
#include <fwk/io/file_stream.h>
namespace game
{
static const char *s_event_names[6] = {
"step_left",
"step... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2002-2020 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j 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
... | {
"pile_set_name": "Github"
} |
#define Psi_width 16
#define Psi_height 16
#define Psi_x_hot -1
#define Psi_y_hot -1
static char Psi_bits[] = {
0xc0, 0x03, 0x80, 0x01, 0x80, 0x01, 0x86, 0x61, 0x8e, 0x71, 0x8c, 0x31,
0x8c, 0x31, 0x9c, 0x39, 0xf8, 0x1f, 0xf0, 0x0f, 0x80, 0x01, 0x80, 0x01,
0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0xc0, 0x03};
| {
"pile_set_name": "Github"
} |
/*
Unix SMB/CIFS implementation.
Winbind daemon - miscellaneous other functions
Copyright (C) Tim Potter 2000
Copyright (C) Andrew Bartlett 2002
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 Fre... | {
"pile_set_name": "Github"
} |
// > new Error('Invalid value')
// new Error('Invalid value')
// > new Error()
// new Error('Invalid value')
// > new Error('Invalid value')
// new Error()
// > new Error('Invalid value')
// new Error('XXX')
// > new Error('Invalid value')
// ! Error: Invalid value
// > sqrt(-1)
// new Error('Invalid value')
// ... | {
"pile_set_name": "Github"
} |
# 商业模式的测试与评审
| {
"pile_set_name": "Github"
} |
{
"Entries": [
{
"RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourcegroups/rgacr7336?api-version=2017-05-10",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlZ3JvdXBzL3JnYWNyNzMzNj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"Requ... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0+
/*
* Driver for USB Mass Storage devices
* Usual Tables File for usb-storage and libusual
*
* Copyright (C) 2009 Alan Stern (stern@rowland.harvard.edu)
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/usb_usual.h>
/*
* The table ... | {
"pile_set_name": "Github"
} |
.class public final Lu/aly/dv;
.super Lu/aly/dw;
.source "TMemoryInputTransport.java"
# instance fields
.field private a:[B
.field private b:I
.field private c:I
# direct methods
.method public constructor <init>()V
.locals 0
.prologue
.line 27
invoke-direct {p0}, Lu/aly/dw;-><init>()V
.line... | {
"pile_set_name": "Github"
} |
---
title: "#ifdef and #ifndef directives (C/C++)"
ms.date: "08/29/2019"
f1_keywords: ["#ifndef", "#ifdef"]
helpviewer_keywords: ["#ifdef directive", "preprocessor, directives", "ifdef directive (#ifdef)", "ifndef directive (#ifndef)", "#ifndef directive"]
ms.assetid: 2b0be69d-9e72-45d8-8e24-e4130fb2455b
---
# #ifdef a... | {
"pile_set_name": "Github"
} |
-- wal.test
--
-- execsql { ROLLBACK TO tr }
ROLLBACK TO tr | {
"pile_set_name": "Github"
} |
// Copyright (c) 2019 the Octant contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//
import { EventEmitter, Injectable, Output } from '@angular/core';
import { BehaviorSubject, Observable, Subject } from 'rxjs';
@Injectable({
providedIn: 'root',
})
export class SliderService {
setHeight$:... | {
"pile_set_name": "Github"
} |
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<script type="text/javascript">
$(function() {
user_form = $('#form').form({
url :"${ctx}/userAction/doUpdate",
... | {
"pile_set_name": "Github"
} |
/** @jsx jsx */
import { Transforms } from 'slate'
import { jsx } from '../../..'
export const input = (
<editor>
<block>
<cursor />
one
</block>
<block>
<block>two</block>
</block>
</editor>
)
export const run = editor => {
Transforms.moveNodes(editor, { at: [0], to: [1, 1] })
... | {
"pile_set_name": "Github"
} |
#!/bin/bash
# Pull from Blockly into Scratch Blocks and do basic cleanup.
# Rachel Fenichel (fenichel@google.com)
BOLD='\e[1m'
NOBOLD='\e[21m'
# Formatting helper.
empty_lines() { printf '\n\n'; }
bold_echo() {
echo -e "${BOLD}$1${NOBOLD}"
}
stop_on_fail() {
# Fail if any command fails.
set -e
# Even if you... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If ... | {
"pile_set_name": "Github"
} |
//////////////////////////////////////////////////////////////////////////////
//
// Common version parameters.
//
// Microsoft Research Detours Package, Version 4.0.1
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _USING_V110_SDK71_ 1
#include "winver.h"
#if 0
#include <windows.h>
#inc... | {
"pile_set_name": "Github"
} |
class AddDoneToWishes < ActiveRecord::Migration
def self.up
add_column :wishes, :done, :boolean, default: false
end
def self.down
remove_column :wishes, :done
end
end
| {
"pile_set_name": "Github"
} |
---
- name: Idle user projects - Get all projects
command: "oc get projects -o json --as '{{ocp_username}}'"
register: all_projects
- name: Idle user projects - Convert output to json
set_fact:
projects: "{{all_projects.stdout | from_json}}"
- name: Idle user projects - Debug
debug:
var: projects
... | {
"pile_set_name": "Github"
} |
/*! \file chrono.hpp
\brief Support for types found in \<chrono\>
\ingroup STLSupport */
/*
Copyright (c) 2014, Randolph Voorhies, Shane Grant
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are m... | {
"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"
} |
//
// Copyright (c) Marcin Krzyżanowski. All rights reserved.
//
// THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY
// INTERNATIONAL COPYRIGHT LAW. USAGE IS BOUND TO THE LICENSE AGREEMENT.
// This notice may not be removed from this file.
//
#import "PGPPublicKeyPacket.h"
NS_ASSUME_NONNULL_BE... | {
"pile_set_name": "Github"
} |
/* infback.c -- inflate using a call-back interface
* Copyright (C) 1995-2011 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/*
This code is largely copied from inflate.c. Normally either infback.o or
inflate.o would be linked into an application--not both. The interf... | {
"pile_set_name": "Github"
} |
/*
* sqMacHostWindow.h
* SqueakVMForCarbon
*
* Created by John M McIntosh on Tue Jul 20 2004.
*
3.8.15b3 Feb 19th, 2007 JMM add cursor set logic
Altered for IPhone
*/
/*
Copyright (c) 2008 Corporate Smalltalk Consulting Ltd. All rights reserved.
MIT License
Permission is hereby granted, free of ch... | {
"pile_set_name": "Github"
} |
# Contributing Guidelines
Welcome to Kubernetes. We are excited about the prospect of you joining our [community](https://github.com/kubernetes/community)! The Kubernetes community abides by the CNCF [code of conduct](code-of-conduct.md). Here is an excerpt:
_As contributors and maintainers of this project, and in th... | {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding='utf-8'?>
<fluidity_options>
<simulation_name>
<string_value lines="1">super_analytic</string_value>
</simulation_name>
<problem_type>
<string_value lines="1">fluids</string_value>
</problem_type>
<geometry>
<dimension>
<integer_value rank="0">2</integer_value>
... | {
"pile_set_name": "Github"
} |
// Copyright 2017 The Ray 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 i... | {
"pile_set_name": "Github"
} |
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
@-moz-document url(chrome://browser/content/br... | {
"pile_set_name": "Github"
} |
<?php
/**
* This file is part of PDepend.
*
* PHP Version 5
*
* Copyright (c) 2008-2017 Manuel Pichler <mapi@pdepend.org>.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Red... | {
"pile_set_name": "Github"
} |
//
// LSTActionViewEmoji.h
// LSTAlertView_Example
//
// Created by LoSenTrad on 2020/2/21.
// Copyright © 2020 490790096@qq.com. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface LSTActionViewEmoji : UIView
@end
NS_ASSUME_NONNULL_END
| {
"pile_set_name": "Github"
} |
#!/bin/bash
# This file is part of PenTestKit
# Copyright (C) 2017-2020 @maldevel
# https://github.com/maldevel/PenTestKit
#
# PenTestKit - Useful tools for Penetration Testing.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public Lic... | {
"pile_set_name": "Github"
} |
1 int
2 int
3 int
4 int
5 int
6 int
7 int
9 int
10 int
11 int
12 int
25 int
55 int
125 int
625 int
-1 int
-2 int
-3 int
1 nat
2 nat
3 nat
4 nat
5 nat
6 nat
7 nat
9 nat
10 nat
11 nat
12 nat
25 nat
55 nat
125 nat
625 nat
-1 nat
-2 nat
-3 nat
Test passed.
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE helpset PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN" "http://java.sun.com/products/javahelp/helpset_2_0.dtd">
<helpset version="2.0" xml:lang="ms-MY">
<title>Online Menu | ZAP Extension</title>
<maps>
<homeID>top</homeID>
<mapref... | {
"pile_set_name": "Github"
} |
## xss-lint: disable=mako-missing-default
<%!
import third_party_auth
import six
from third_party_auth import pipeline, provider
from django.utils.translation import ugettext as _
from django_countries import countries
from student.models import UserProfile
%>
<input type="hidden" name="csrfmiddlewaretoken" value="${ ... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Eav\Test\Unit\Block\Adminhtml\Attribute;
use Magento\Eav\Block\Adminhtml\Attribute\PropertyLocker;
use Magento\Eav\Model\Entity\Attribute\AbstractAttribute;
use Magento\Ea... | {
"pile_set_name": "Github"
} |
package com.lordofthejars.nosqlunit.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomComparisonStrategy {
... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE
/*
* Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de)
* Licence: MIT
*/
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: b995d4bd9d11078d11005b9844295342
TextureImporter:
fileIDToRecycleName:
8900000: generatedCubemap
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 1
linearTexture: 0
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 2
mipMapF... | {
"pile_set_name": "Github"
} |
/*!
* is-descriptor <https://github.com/jonschlinkert/is-descriptor>
*
* Copyright (c) 2015-2017, Jon Schlinkert.
* Released under the MIT License.
*/
'use strict';
var typeOf = require('kind-of');
var isAccessor = require('is-accessor-descriptor');
var isData = require('is-data-descriptor');
module.exports = f... | {
"pile_set_name": "Github"
} |
cDBUG = -g -DFULLDEBUG -O0
cOPT =
| {
"pile_set_name": "Github"
} |
%%%-----------------------------------------------------------------------------
%%% @copyright (C) 2010-2020, 2600Hz
%%% @doc
%%% @author James Aimonetti
%%%
%%% 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... | {
"pile_set_name": "Github"
} |
'use strict';
var test = require('tap').test
var findShip = require('../')
, path = require('path');
test('\nfinding ship starting at lowest dir, looking for dependency unodep', function (t) {
findShip(
path.join(__dirname, 'uno', 'dos', 'tres')
, function ismothership (pack) {
return !!(pac... | {
"pile_set_name": "Github"
} |
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
CONFIG_MBEDTLS_PSK_MODES=y
CONFIG_MBEDTLS_KEY_EXCHANGE_PSK=y
| {
"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... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright (c) Enalean, 2015-Present. All Rights Reserved.
* Copyright (c) Xerox Corporation, Codendi Team, 2001-2009. All rights reserved
*
* This file is a part of Tuleap.
*
* Tuleap is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as pu... | {
"pile_set_name": "Github"
} |
// (C) Copyright 2014-2016 Hewlett Packard Enterprise Development LP
import { watchItem, stopWatching, postRoute } from './Api';
// route
export const ROUTE_CHANGED = 'ROUTE_CHANGED';
export const ROUTE_MASTER_CHANGED = 'ROUTE_MASTER_CHANGED';
export const ROUTE_MASTER_UNLOAD = 'ROUTE_MASTER_UNLOAD';
export const ROU... | {
"pile_set_name": "Github"
} |
<?php
/**
* Created by PhpStorm.
* Author: 芸众商城 www.yunzshop.com
* Date: 2017/3/4
* Time: 上午9:09
*/
namespace app\backend\modules\order\controllers;
use app\backend\modules\goods\models\GoodsOption;
use app\backend\modules\member\models\MemberParent;
use app\backend\modules\order\models\Order;
use app\backend\mo... | {
"pile_set_name": "Github"
} |
---
- name: Uninstall Descheduler
hosts: oo_first_master
tasks:
- name: Run the Descheduler Uninstall Role Tasks
include_role:
name: openshift_descheduler
tasks_from: uninstall_descheduler.yaml
| {
"pile_set_name": "Github"
} |
config BR2_PACKAGE_QHULL
bool "qhull"
depends on BR2_INSTALL_LIBSTDCPP
depends on !BR2_STATIC_LIBS
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_4 # needs gcc >= 4.4
help
Qhull computes the convex hull, Delaunay triangulation,
Voronoi diagram, halfspace intersection about a point,
furthest-site Delaunay triangu... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <Foundation/NSWeakCallback.h>
@class NSKeyValueProperty, NSObject;
__attribute__((visibility("hidden")))
@interface NSKeyValueObservance : NSWeakCallback
{
int _retain... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="" />
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>
| {
"pile_set_name": "Github"
} |
''' Dummy NFC Provider to be used on desktops in case no other provider is found
'''
from . import NFCBase
from kivy.clock import Clock
from kivy.logger import Logger
from kivy.app import App
class ScannerDummy(NFCBase):
'''This is the dummy interface that gets selected in case any other
hardware interface to ... | {
"pile_set_name": "Github"
} |
module Main where
import Prelude as P
-- qualified import without the "qualified" keyword
import Effect.Console as Console
bind = P.bind
main = do
message <- P.pure "Done"
Console.log message
| {
"pile_set_name": "Github"
} |
{
"Q10271554": {
"identifiers": [
{
"scheme": "wikidata",
"identifier": "Q10271554"
}
],
"other_names": [
{
"lang": "pt",
"name": "Eleições gerais no Brasil em 1945",
"note": "multilingual",
"source": "wikidata-label"
},
{
... | {
"pile_set_name": "Github"
} |
{ lib
, buildPythonPackage
, numpy
, six
, nose
, fetchPypi
}:
buildPythonPackage rec {
pname = "py_stringmatching";
version = "0.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "c46db1e855cef596dfbbe1bd48fcabb30736479eff602c2bf88af10f998f1532";
};
checkInputs = [ nose ];
propagatedBuild... | {
"pile_set_name": "Github"
} |
/**
Copyright (c) 2014-present, Facebook, Inc.
All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.
*/
#import <CoreGraphics... | {
"pile_set_name": "Github"
} |
# The file can not be opened
file_false
| {
"pile_set_name": "Github"
} |
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*******************************************************************************
* Copyright (C) 2008-2016, International Business Machines Corporation and
* others. All Rights Reserved.
*********************... | {
"pile_set_name": "Github"
} |
<?php
namespace PSR_0_Autoloader\Test;
use PSR_0_Autoloader\SourceClass;
use PHPUnit\Framework\TestCase;
class SourceClassTest extends TestCase
{
public function test_hello()
{
$sourceClass = new SourceClass();
$this->assertSame('hello', $sourceClass->hello());
}
}
| {
"pile_set_name": "Github"
} |
from urllib.parse import quote
import feedparser
from loguru import logger
from flexget import plugin
from flexget.components.sites.utils import normalize_unicode, torrent_availability
from flexget.entry import Entry
from flexget.event import event
from flexget.utils.tools import parse_filesize
logger = logger.bind(... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<!--
Nexcess.net Turpentine Extension for Magento
Copyright (C) 2012 Nexcess.net L.L.C.
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 of ... | {
"pile_set_name": "Github"
} |
{{- if and (.Capabilities.APIVersions.Has "kos-operator.stable.sap.cc/v1") (not .Values.hypervisors_kvm) }}
apiVersion: kos-operator.stable.sap.cc/v1
kind: KosTemplate
metadata:
name: nova-compute-kvm
namespace: monsoon3
requirements:
- name: nova-kvm-nodes
template: |
{{- $hypervisor := dict "name" "{{node.na... | {
"pile_set_name": "Github"
} |
# Maintainers
* [Thom May](https://github.com/thommay)
[]()
| {
"pile_set_name": "Github"
} |
/*
* Intel IXP4xx NPE-C crypto driver
*
* Copyright (C) 2008 Christian Hohnstaedt <chohnstaedt@innominate.com>
*
* 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.
*
*/
#incl... | {
"pile_set_name": "Github"
} |
<div class="dojoxCalendar">
<div tabindex="0" class="dojoxCalendarContainer" style="visibility: visible;" dojoAttachPoint="container">
<div style="display:none">
<div dojoAttachPoint="previousYearLabelNode"></div>
<div dojoAttachPoint="nextYearLabelNode"></div>
<div dojoAttachPoint="monthLabelSpacer"></d... | {
"pile_set_name": "Github"
} |
# spaCy contributor agreement
This spaCy Contributor Agreement (**"SCA"**) is based on the
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf).
The SCA applies to any contribution that you make to any product or project
managed by us (the **"project"**), and sets out the intellectual prope... | {
"pile_set_name": "Github"
} |
# Blender v2.69 (sub 0) OBJ File: ''
# www.blender.org
mtllib 813.mtl
o 813_Cube.3278
v -0.401591 -5.032933 -0.869092
v -0.392994 5.932960 1.056474
v -0.396550 5.960476 -1.037731
v -0.402160 -4.896594 -1.061561
v -1.020285 -3.563928 -5.150546
v -0.400819 -5.107488 -0.749782
v -0.397353 -4.509220 -0.598336
v 0.395488 5.... | {
"pile_set_name": "Github"
} |
package compute
// Copyright (c) Microsoft and contributors. 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
//
// Unl... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1998, 2016, 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"
} |
[{
"@id": "http://manu.sporny.org/#me",
"@type": ["http://xmlns.com/foaf/0.1/Person"],
"http://xmlns.com/foaf/0.1/name": [{"@value": "Manu Sporny"}],
"http://xmlns.com/foaf/0.1/homepage": [{ "@id": "http://manu.sporny.org/" }]
}] | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>VkCaptchaDialog</class>
<widget class="QDialog" name="CaptchaDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>535</width>
<height>87</height>
</rect>
</property>
<property name="windowTitle">
<string>CAP... | {
"pile_set_name": "Github"
} |
altlib.so:go:entry 2
main:go:entry 2
| {
"pile_set_name": "Github"
} |
// +build !go1.5
package request
import (
"io"
"net/http"
"net/url"
)
func copyHTTPRequest(r *http.Request, body io.ReadCloser) *http.Request {
req := &http.Request{
URL: &url.URL{},
Header: http.Header{},
Close: r.Close,
Body: body,
Host: r.Host,
Method: ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.