text stringlengths 2 99.9k | meta dict |
|---|---|
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) Research In Motion Limited 2011. All rights reserved.
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following cond... | {
"pile_set_name": "Github"
} |
/***************************************************************************
Copyright 2015 Ufora 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/licen... | {
"pile_set_name": "Github"
} |
// DEFINITE UNSAFE
#include <stdio.h>
#include <string.h>
char* foo(char* a, int n) {
int i;
for (i = 0; i < n; i++)
a[i] = 'A';
return a;
}
int main() {
char str[50];
strcpy(str, "This is string.h library function");
puts(str);
memset(str, '$', 50); // SAFE
char* A = foo(str, 10);
// char * B... | {
"pile_set_name": "Github"
} |
class ObjectParams
@isValid: (param) ->
###
Проверяет, что указанный параметр присутствует в данном наборе параметров
@param param: any
@return: boolean
###
return no unless typeof(param) is 'string'
# RANDOM необходим для идентификации параграфов, __RANDOM не... | {
"pile_set_name": "Github"
} |
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.search.testsupport.textbuilder;
import java.util.Locale;
... | {
"pile_set_name": "Github"
} |
<div class="layout-row min-size panel-contents compact-toolbar">
<div class="control-toolbar toolbar-padded separator">
<div class="toolbar-item" data-calculate-width>
<div class="toolbar" id="<?= $this->getId('toolbar-buttons') ?>">
<?= $this->makePartial("toolbar-buttons") ?>
... | {
"pile_set_name": "Github"
} |
namespace glm
{
template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER T dot(qua<T, Q> const& x, qua<T, Q> const& y)
{
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'dot' accepts only floating-point inputs");
return detail::compute_dot<qua<T, Q>, T, detail::is_aligned<Q>::value>::call(x, y);
}
template<... | {
"pile_set_name": "Github"
} |
// via OpenZeppelin
export default async promise => {
try {
await promise;
assert.fail('Expected revert not received');
} catch (error) {
const revertFound = error.message.search('revert') >= 0;
assert(
revertFound,
`Expected "revert", got ${error} instead`
);
}
};
| {
"pile_set_name": "Github"
} |
/**
*
* Problem Statement-
* [Forming a Magic Square](https://www.hackerrank.com/challenges/magic-square-forming/problem)
*
*/
package com.javaaid.hackerrank.solutions.generalprogramming.basicprogramming;
import java.util.Scanner;
/**
* @author Kanahaiya Gupta
*
*/
public class FormingAMagicSq... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
// Package rate provides a rate limiter.
package rate
import (
"fmt"
"math"
"sync"
"time"
)
// Limit defines the maximum frequency of some events.
// Limi... | {
"pile_set_name": "Github"
} |
using UnityEngine.UI;
namespace UnityEngine.Experimental.Rendering.UI
{
public class DebugUIHandlerIntField : DebugUIHandlerWidget
{
public Text nameLabel;
public Text valueLabel;
DebugUI.IntField m_Field;
internal override void SetWidget(DebugUI.Widget widget)
{
... | {
"pile_set_name": "Github"
} |
<%@ Page Title="渠道包下载" Language="C#" MasterPageFile="~/Admin.Master" AutoEventWireup="true" CodeBehind="DownLoadIOSPackage.aspx.cs" Inherits="SDKPackage.Dropload.DownLoadIOSPackage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<!-- Datatables -->
<link href="/vendors/da... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 7083945a93bfc7d41ae15dca92061711
folderAsset: yes
timeCreated: 1455936191
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/**
* Copyright 2011 Ryszard Wiśniewski <brut.alll@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless req... | {
"pile_set_name": "Github"
} |
+++
Title = "Sponsor"
Type = "event"
Description = "Sponsor devopsdays lima 2020"
+++
We greatly value sponsors for this open event. If you are interested in sponsoring, please drop us an email at [{{< email_organizers >}}].
<hr>
devopsdays is a self-organizing conference for practitioners that depends on sponsorsh... | {
"pile_set_name": "Github"
} |
/*
Copyright 2016 Mozilla
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, software distributed
u... | {
"pile_set_name": "Github"
} |
// moment.js language configuration
// language : catalan (ca)
// author : Juan G. Hurtado : https://github.com/juanghurtado
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['moment'], factory); // AMD
} else if (typeof exports === 'object') {
module.exports = fac... | {
"pile_set_name": "Github"
} |
-ifndef(_hadoopfs_types_included).
-define(_hadoopfs_types_included, yeah).
-record(thriftHandle, {id}).
-record(pathname, {pathname}).
-record(fileStatus, {path, length, isdir, block_replication, blocksize, modification_time, permission, owner, group}).
-record(blockLocation, {hosts, names, offset, length}).
-rec... | {
"pile_set_name": "Github"
} |
[]
| {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2001-2011 Hartmut Kaiser
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or cop... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\GraphQl\Schema\Type\Output\ElementMapper\Formatter;
use Magento\Framework\GraphQl\Config\Data\WrappedTypeProcessor;
use Magento\Framework\GraphQl\Config\Element\... | {
"pile_set_name": "Github"
} |
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> ... | {
"pile_set_name": "Github"
} |
// Copyright 2012 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 arm,freebsd
package unix
import (
"syscall"
"unsafe"
)
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: int32(nsec)}... | {
"pile_set_name": "Github"
} |
package me.devsaki.hentoid.activities.bundles;
import android.os.Bundle;
import javax.annotation.Nonnull;
/**
* Helper class to transfer data from any Activity to {@link me.devsaki.hentoid.activities.PrefsActivity}
* through a Bundle
* <p>
* Use Builder class to set data; use Parser class to get data
*/
public ... | {
"pile_set_name": "Github"
} |
Alt-Svc: quic=":443"; ma=2592000; v="39,38,37,35"
Content-Length: 1561
Content-Type: text/html; charset=UTF-8
Date: Fri, 06 Oct 2017 07:12:39 GMT
P3p: CP="This is not a P3P policy! See https://www.google.com/support/accounts/answer/151657?hl=en for more info."
Server: sffe
Set-Cookie: NID=113=sf8HB8MOccdtv3GuiD-o... | {
"pile_set_name": "Github"
} |
/*
Copyright 2008-2018 Clipperz Srl
This file is part of Clipperz, the online password manager.
For further information about its features and functionalities please
refer to http://www.clipperz.com.
* Clipperz is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Pub... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 Azavea
*
* 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 wr... | {
"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"
} |
// Package jlexer contains a JSON lexer implementation.
//
// It is expected that it is mostly used with generated parser code, so the interface is tuned
// for a parser that knows what kind of data is expected.
package jlexer
import (
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io"
"strconv"
"unicode"
"... | {
"pile_set_name": "Github"
} |
[FTP a file to a server and send the URL to your friend. Supported automatic zipping before upload and encryption via SFTP and FTPS.]
[Default FTP server]
[Close dialog after upload is completed]
[ZIP support]
[Enter archive name manually]
[Compression level:]
[Upload File Manager]
[Completed:]
[Remaining:]
[F... | {
"pile_set_name": "Github"
} |
//
// "$Id: Fl_Widget.H 5982 2007-11-19 16:21:48Z matt $"
//
// Widget header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2005 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as pu... | {
"pile_set_name": "Github"
} |
{
"culture": "tr",
"texts": {
"DisplayName:Abp.Mailing.DefaultFromAddress": "Varsayılan gönderici adresi",
"DisplayName:Abp.Mailing.DefaultFromDisplayName": "Varsayılan gönderici adı",
"DisplayName:Abp.Mailing.Smtp.Host": "Sunucu",
"DisplayName:Abp.Mailing.Smtp.Port": "Port",
"DisplayName:Abp.M... | {
"pile_set_name": "Github"
} |
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
(* \VV/ **************************************************************)
(* // * Th... | {
"pile_set_name": "Github"
} |
## 2017-09-10
#### python
* [allenai / allennlp](https://github.com/allenai/allennlp):An open-source NLP research library, built on PyTorch.
* [tensorflow / agents](https://github.com/tensorflow/agents):A library of RL tools
* [NVIDIA / DeepRecommender](https://github.com/NVIDIA/DeepRecommender):Deep learning for reco... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2007-2013 German Aerospace Center (DLR/SC)
*
* Created: 2014-10-21 Martin Siggel <martin.siggel@dlr.de>
*
* 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.... | {
"pile_set_name": "Github"
} |
{
"_args": [
[
{
"name": "resolve",
"raw": "resolve@1.1.7",
"rawSpec": "1.1.7",
"scope": null,
"spec": "1.1.7",
"type": "version"
},
"/Volumes/case/workspace/silk/core-device/pub"
]
],
"_from": "resolve@1.1.7",
"_id": "resolve@1.1.7",
"... | {
"pile_set_name": "Github"
} |
define("ace/mode/logiql_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
var LogiQLHighlightRules = function(... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/src.iml" filepath="$PROJECT_DIR$/.idea/src.iml" />
</modules>
</component>
</project> | {
"pile_set_name": "Github"
} |
/* $NetBSD: if_ieee1394.h,v 1.6 2005/12/10 23:21:38 elad Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Atsushi Onoe.
*
* Redistribution and use in source and binary forms, with or without
* mo... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2000-2018 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | {
"pile_set_name": "Github"
} |
#region Copyright (C) 2007-2018 Team MediaPortal
/*
Copyright (C) 2007-2018 Team MediaPortal
http://www.team-mediaportal.com
This file is part of MediaPortal 2
MediaPortal 2 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published b... | {
"pile_set_name": "Github"
} |
/**
* @author Richard Davey <rich@photonstorm.com>
* @author Florian Mertens
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Get the shortest distance from a Line to the given Point.
*
* @function Phaser.Geom.Line.GetShortestDi... | {
"pile_set_name": "Github"
} |
// Code generated by protoc-gen-validate. DO NOT EDIT.
// source: envoy/config/filter/http/fault/v2/fault.proto
package envoy_config_filter_http_fault_v2
import (
"bytes"
"errors"
"fmt"
"net"
"net/mail"
"net/url"
"regexp"
"strings"
"time"
"unicode/utf8"
"github.com/golang/protobuf/ptypes"
)
// ensure the... | {
"pile_set_name": "Github"
} |
#include "genericicondelegate.h"
#include "pluginlist.h"
#include <QList>
#include <QPixmapCache>
GenericIconDelegate::GenericIconDelegate(QObject *parent, int role, int logicalIndex, int compactSize)
: IconDelegate(parent)
, m_Role(role)
, m_LogicalIndex(logicalIndex)
, m_CompactSize(compactSize)
... | {
"pile_set_name": "Github"
} |
// Autogenerated by hob
window.cls || (window.cls = {});
cls.WindowManager || (cls.WindowManager = {});
cls.WindowManager["2.0"] || (cls.WindowManager["2.0"] = {});
cls.WindowManager["2.0"].WindowID = function(arr)
{
this.windowID = arr[0];
};
| {
"pile_set_name": "Github"
} |
<?php
/**
* OSSMail test class.
*
* @copyright YetiForce Sp. z o.o
* @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com)
* @author Tomasz Kur <t.kur@yetiforce.com>
*/
namespace tests\Settings;
class OSSMail extends \Tests\Base
{
/**
* Testing change configuration for Roundcub... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8" ?>
<plugin pluginId="Gallio.AutoCAD.UI"
recommendedInstallationPath="AutoCAD"
xmlns="http://www.gallio.org/">
<traits>
<name>AutoCAD Integration Plugin UI</name>
<version>3.2.0.0</version>
<description>AutoCAD plugin UI components.</description>
<i... | {
"pile_set_name": "Github"
} |
/*
Copyright Rene Rivera 2013
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)
*/
#ifndef BOOST_PREDEF_OTHER_H
#define BOOST_PREDEF_OTHER_H
#include <boost/predef/other/endian.h>
/*#include <boost/predef/other/.h>*/
#en... | {
"pile_set_name": "Github"
} |
package client // import "github.com/docker/docker/client"
import (
"context"
"net/url"
"github.com/docker/docker/api/types"
)
// NodeRemove removes a Node.
func (cli *Client) NodeRemove(ctx context.Context, nodeID string, options types.NodeRemoveOptions) error {
query := url.Values{}
if options.Force {
query... | {
"pile_set_name": "Github"
} |
## 
:cn: [点击进入简体中文版](https://github.com/JackJiang2011/beautyeye/blob/master/README.md)
:bulb: BeautyEye has migrated from [Google Code](https://code.google.com/p/beautyeye/) since 2015-01-30.
BeautyEye is a cross pl... | {
"pile_set_name": "Github"
} |
<group name="ha_sles" version="10" release="215"
pattern:ordernumber="1050"
pattern:category="Base Technologies"
pattern:summary="High Availability"
pattern:description="Provide tools to ensure a high degree of operational continuity and reduce the downtimes of your system."
pattern:v... | {
"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 of sourc... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0 */
/******************************************************************************
*
* Copyright(c) 2007 - 2017 Realtek Corporation.
*
* 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
*... | {
"pile_set_name": "Github"
} |
{% extends 'layouts/base.html' %}
{% block title %}Error {{ e.code }} {% endblock %}
{% block body %}
<h1>Error: {{ e.code }}</h1>
<h4>{{ e.description }}</h4>
{% endblock %}
| {
"pile_set_name": "Github"
} |
package com.argusapm.android.debug.tasks;
import com.argusapm.android.api.ApmTask;
import com.argusapm.android.core.IInfo;
import com.argusapm.android.core.job.activity.ActivityInfo;
import com.argusapm.android.debug.config.DebugConfig;
import com.argusapm.android.debug.output.OutputProxy;
import com.argusapm.android.... | {
"pile_set_name": "Github"
} |
export { default } from 'shared/utils/queue';
| {
"pile_set_name": "Github"
} |
35d85143c3bd10badcad7d3e01bdbad074e4d62a9f04f9c8652da5f5259fed7d
3c2ef1901bee3a4866d68e16de37a270e4f16d166132f14da88b5d0bb5c5a369
6b51d431df5d7f141cbececcf79edf3dd861c3b4069f0b11661a3eefacbba918
87e58365cf5292ae0150b97d5bba026158e28a5c2fa32cb04cf4c6a0d0c97111
fa3cfb3f1bb823aa9501f88f1f95f732ee6fef2c3a48be7f1d38037b216a... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</gr... | {
"pile_set_name": "Github"
} |
SGDK 1.51 (April 2020)
----------------------
COMPILER
* APPACK
- fixed build for 32 and 64 bit linux (thanks doragasu)
* LZ4W
- minor fix
* RESCOMP
- added new sprite optimization options to SPRITE resource (see rescomp.txt for details)
- minor tweak on binary export order (can save some bytes with LZ... | {
"pile_set_name": "Github"
} |
/**
* Aptana Studio
* Copyright (c) 2005-2013 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Eclipse Public License (EPL).
* Please see the license-epl.html included with this distribution for details.
* Any modifications to this file must keep this entire header intact.
*/
package c... | {
"pile_set_name": "Github"
} |
/*!
* jQuery UI CSS Framework 1.11.2
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
*
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault... | {
"pile_set_name": "Github"
} |
10 x=320:y=200
20 color=TEST(x,y)
30 PRINT "Pen color at"; x; y; "is"; color
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env sh
cd /opt/bullet
./App_ExampleBrowser
| {
"pile_set_name": "Github"
} |
import {isIdentifierStart, isIdentifierChar} from "./identifier"
import {types as tt, keywords as keywordTypes} from "./tokentype"
import {Parser} from "./state"
import {SourceLocation} from "./locutil"
import {lineBreak, lineBreakG, isNewLine, nonASCIIwhitespace} from "./whitespace"
// Object type used to represent t... | {
"pile_set_name": "Github"
} |
// ***************************************************************************
// *
// * Copyright (C) 2013 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
// * Source File: <path>/common/main/ebu.xml
// *
// ***********************... | {
"pile_set_name": "Github"
} |
from unittest import TestCase
from mock import Mock
from qrl.core.MessageRequest import MessageRequest
class TestMessageRequest(TestCase):
def setUp(self):
self.mr = MessageRequest()
self.test_data = {
"camel": "animal",
"bitcoin": "cryptocoin"
}
def test_val... | {
"pile_set_name": "Github"
} |
/*
Simple DirectMedia Layer
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this ... | {
"pile_set_name": "Github"
} |
// Copyright 2017 The Abseil 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agr... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2001-2004 Caucho Technology, Inc. All rights reserved.
*
* The Apache Software License, Version 1.1
*
* 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 mu... | {
"pile_set_name": "Github"
} |
Zlib in yo' browser.
| {
"pile_set_name": "Github"
} |
<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware =... | {
"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.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.CodeDom.Providers.DotNetCompilerPlatform</name>
</assembly>
<members>
<member name="T:Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider">
<summary>
Provides access to instances of the .NET Comp... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
// expected-no-diagnostics
template<typename T> int &f0(T&);
template<typename T> float &f0(T&&);
// Core issue 1164
void test_f0(int i) {
int &ir0 = f0(i);
float &fr0 = f0(5);
}
| {
"pile_set_name": "Github"
} |
# Copyright (c) Yiming Wang
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from dataclasses import dataclass, field
from omegaconf import II
from typing import List
import torch.optim.lr_scheduler
from fairseq.dataclass.utils import Fairs... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?><metadata>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.4-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20070427033345</lastUpdated>
</versioning>
... | {
"pile_set_name": "Github"
} |
University of Holy Quran and Islamic Siences
| {
"pile_set_name": "Github"
} |
{
"desc": "Option GTM380",
"control": 1,
"data": 0
}
| {
"pile_set_name": "Github"
} |
import React from 'react'
import styled from 'styled-components'
import Page from 'comps/Page/Page'
import readme from 'ui-src/components/EthIdenticon/README.md'
import { EthIdenticon } from '@aragon/ui'
import Container from '../components/Page/DemoContainer'
const ADDRESS = '0xcafE1A77e83698c83CA8931F54A755176eF75f... | {
"pile_set_name": "Github"
} |
// -----------------------------------------------------------------------
// <copyright file="FunctionAuthorizationManagerBase.cs" company="OSharp开源团队">
// Copyright (c) 2014-2020 OSharp. All rights reserved.
// </copyright>
// <site>http://www.osharp.org</site>
// <last-editor>郭明锋</last-editor>
// <last-da... | {
"pile_set_name": "Github"
} |
```ocaml
# let empty = 0;;
val empty : int = 0
# let satisfies_identity_law = 10 + empty = 10;;
val satisfies_identity_law : bool = true
# let satisfies_associative_law = 1 + (2 + 3) = (1 + 2) + 3;;
val satisfies_associative_law : bool = true
```
| {
"pile_set_name": "Github"
} |
CORE
test.c
--show-vcc
main::1::node1!0@1#2\.\.data =
main::1::node2!0@1#2\.\.data =
^EXIT=0$
^SIGNAL=0$
--
main::1::node1!0@1#[3-9]\.\.children\[\[[01]\]\] =
--
This checks that mixed array and field accesses are executed using a field-sensitive
symbol (main::1::node1!0@1#2..data) rather than by assigning the whole st... | {
"pile_set_name": "Github"
} |
---
title: Notes from the Road
author: tjfontaine
date: 2014-06-11T16:00:00.000Z
status: publish
category: Uncategorized
slug: notes-from-the-road
layout: blog-post.hbs
---
## Notes from the Road
As Project Lead for Node.js, I was excited to have the opportunity to go on the
road and bring production stories to all o... | {
"pile_set_name": "Github"
} |
// Copyright 2015 The Prometheus 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... | {
"pile_set_name": "Github"
} |
# List of Breaking Changes for 4.x
| {
"pile_set_name": "Github"
} |
package streamanalytics
import (
"context"
"fmt"
"log"
"time"
"github.com/Azure/azure-sdk-for-go/services/streamanalytics/mgmt/2016-03-01/streamanalytics"
"github.com/hashicorp/go-azure-helpers/response"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helpe... | {
"pile_set_name": "Github"
} |
# From ftp://gcc.gnu.org/pub/binutils/releases/sha512.sum
sha512 dc5b6872ae01c07c12d38f3bb7ead06effc6da3265ac872e2d9c6104304f89f85f2645b029a43f308a7938a7299b1928d385205d0a2245674a621649032a138d binutils-2.28.1.tar.xz
sha512 d748d22306477d60d921078804d21943248c23fca0707aac9b016a352c01c75ca69e82624ae37fb0bbd03af3b17088... | {
"pile_set_name": "Github"
} |
# Usage
**If you want to use default theme, you can skip this step**
To achieve the level of customizability, React Native Material UI is using a single JS object called uiTheme that is passed in via context. By default, this uiTheme object is based on the lightTheme that you can find [here](https://github.com/xotaha... | {
"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 a... | {
"pile_set_name": "Github"
} |
#Generated by Git-Commit-Id-Plugin
#Sun Jul 27 06:59:55 PDT 2014
git.commit.id.abbrev=a3a5fc7
git.commit.user.email=dsyer@gopivotal.com
git.commit.message.full=Move CF domain\n
git.commit.id=a3a5fc7a61f614c4e5e3c2aaee83ab209409c5b9
git.commit.message.short=Move CF domain
git.commit.user.name=Dave Syer
git.build.user.na... | {
"pile_set_name": "Github"
} |
/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
package org.hibernate.validator.test.internal.util;
/**
* @author Emmanuel Bernard
*/
public class ... | {
"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"
} |
package csharp
import (
"github.com/prasmussen/glot-code-runner/cmd"
"github.com/prasmussen/glot-code-runner/util"
"path/filepath"
)
func Run(files []string, stdin string) (string, string, error) {
workDir := filepath.Dir(files[0])
binName := "a.exe"
sourceFiles := util.FilterByExtension(files, "cs")
args := ... | {
"pile_set_name": "Github"
} |
// +build seccomp
package seccomp // import "github.com/docker/docker/profiles/seccomp"
import (
"github.com/opencontainers/runtime-spec/specs-go"
"golang.org/x/sys/unix"
)
func arches() []Architecture {
return []Architecture{
{
Arch: specs.ArchX86_64,
SubArches: []specs.Arch{specs.ArchX86, specs.Arc... | {
"pile_set_name": "Github"
} |
from typing import Any, List, Optional, Sequence, Tuple, Type
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
from django.db.backends.ddl_references import Statement
from django.db.models.base import Model
from django.db.models.query_utils import Q
class Index:
model: Type[Model]
suffix: s... | {
"pile_set_name": "Github"
} |
/* Copyright (c) 2015 PLUMgrid, http://plumgrid.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.
*/
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <un... | {
"pile_set_name": "Github"
} |
{
"name": "xml2js",
"description": "Simple XML to JavaScript object converter.",
"keywords": [
"xml",
"json"
],
"homepage": "https://github.com/Leonidas-from-XIV/node-xml2js",
"version": "0.4.4",
"author": {
"name": "Marek Kubica",
"email": "marek@xivilization.net",
"url": "http://xivi... | {
"pile_set_name": "Github"
} |
// @flow
/* eslint-disable react/jsx-sort-props */
import * as React from 'react';
import * as vars from '../styles/variables';
import AccessibleSVG from '../icons/accessible-svg';
import type { Icon } from '../icons/flowTypes';
/**
* This is an auto-generated component and should not be edited
* manually in contrib... | {
"pile_set_name": "Github"
} |
/**
* Checks if `value` is classified as an `Array` object.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is an array, else `false`.
* @example
*
* _.isArray([1, 2, 3]);
* // => true
*
* _.isArray(document.bo... | {
"pile_set_name": "Github"
} |
package com.rsen.db.converter;
import android.database.Cursor;
import com.rsen.db.sqlite.ColumnDbType;
/**
* Author: wyouflf
* Date: 13-11-4
* Time: 下午10:51
*/
public class StringColumnConverter implements ColumnConverter<String> {
@Override
public String getFieldValue(final Cursor cursor, int index) {
... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.