text stringlengths 2 99.9k | meta dict |
|---|---|
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct A {
void f();
};
struct B : A {};
void m() {
const B b;
(b.*&B::f)(); // expected-error{{drops 'const' qualifier}}
((&b)->*&B::f)(); // expected-error{{drops 'const' qualifier}}
}
| {
"pile_set_name": "Github"
} |
[DEFAULT]
wrap_width = 80
output_file = etc/glance-api.conf.sample
namespace = glance.api
namespace = glance.store
namespace = glance.multi_store
namespace = oslo.concurrency
namespace = oslo.messaging
namespace = oslo.db
namespace = oslo.db.concurrency
namespace = oslo.policy
namespace = keystonemiddleware.auth_token
... | {
"pile_set_name": "Github"
} |
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2010 - Stendhal *
***************************************************************************
***************************************************************************
... | {
"pile_set_name": "Github"
} |
# 1 GO环境配置
欢迎来到Go的世界,让我们开始探索吧!
Go是一种新的语言,一种并发的、带垃圾回收的、快速编译的语言。它具有以下特点:
- 它可以在一台计算机上用几秒钟的时间编译一个大型的Go程序。
- Go为软件构造提供了一种模型,它使依赖分析更加容易,且避免了大部分C风格include文件与库的开头。
- Go是静态类型的语言,它的类型系统没有层级。因此用户不需要在定义类型之间的关系上花费时间,这样感觉起来比典型的面向对象语言更轻量级。
- Go完全是垃圾回收型的语言,并为并发执行与通信提供了基本的支持。
- 按照其设计,Go打算为多核机器上系统软件的构造提供一种方法。
Go是一种编译型语言... | {
"pile_set_name": "Github"
} |
... | {
"pile_set_name": "Github"
} |
var Server = IgeClass.extend({
classId: 'Server',
Server: true,
init: function (options) {
// Start the network server
ige.addComponent(IgeSocketIoComponent);
ige.network.start();
// Start the game engine
ige.start(function (success) {
// Check if the engine started successfully
if (success) {
... | {
"pile_set_name": "Github"
} |
1
176
421
721
807
999
1087
1246
1441
1547
1847
1919
2119
2343
2570
2695
2910
3085
3385
3464
3764
3768
3923
4067
4172
4278
| {
"pile_set_name": "Github"
} |
// Name: Utility
// Description: Collection of useful utility classes to style your content
//
// Component: `uk-container-*`
// `uk-clearfix`
// `uk-nbfc-*`
// `uk-float-*`
// `uk-align-*`
// `uk-vertical-align-*`... | {
"pile_set_name": "Github"
} |
.so pmemobj_tx_add_range.3
| {
"pile_set_name": "Github"
} |
/* ###
* IP: GHIDRA
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writin... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# This file as well as the whole tsfresh package are licenced under the MIT licence (see the LICENCE.txt)
# Maximilian Christ (maximilianchrist.com), Blue Yonder Gmbh, 2016
"""
This module contains the main function to interact with tsfresh: extract features
"""
import logging
import warnings
f... | {
"pile_set_name": "Github"
} |
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_CORBA_gnuNamedValue__
#define __gnu_CORBA_gnuNamedValue__
#pragma interface
#include <org/omg/CORBA/NamedValue.h>
extern "Java"
{
namespace gnu
{
namespace CORBA
{
class gnuNamedValue;
}
}
namespace org
{
... | {
"pile_set_name": "Github"
} |
<mvc:View
xmlns:forms="sap.ui.layout.form"
xmlns:mvc="sap.ui.core.mvc"
xmlns="sap.m"
controllerName="sap.uxap.sample.ObjectPageSubSection.controller.MultiViewBlockCommon">
<forms:SimpleForm
title="Location"
editable="false"
layout="ColumnLayout">
<Label text="Country"/>
<Text text="France"/>
... | {
"pile_set_name": "Github"
} |
#***************************************************************************
# _ _ ____ _
# Project ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|... | {
"pile_set_name": "Github"
} |
{
"data": {
"id": "account-id-1",
"name": "BTC Wallet",
"primary": true,
"type": "wallet",
"currency": {
"code": "BTC",
"name": "Bitcoin",
"color": "#FFB119",
"exponent": 8,
"type": "crypto",
"address_regex": "^([13][a-km-zA-HJ-NP-Z1-9]{25,34})|^(bc1([qpzry9x8gf... | {
"pile_set_name": "Github"
} |
**Are you the copyright owner or authorized to act on the copyright owner’s behalf?**
Yes. I am a [private] for PayPal.
**Please provide a detailed description of the original copyrighted work that has allegedly been infringed. If possible, include a URL to where it is posted online.**
The following post is disp... | {
"pile_set_name": "Github"
} |
/*
* BeOS Driver for Intel ICH AC'97 Link interface
*
* Copyright (c) 2002, Marcus Overhagen <marcus@overhagen.de>
*
* All rights reserved.
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of... | {
"pile_set_name": "Github"
} |
/*
* Network-device interface management.
*
* Copyright (c) 2004-2005, Keir Fraser
*
* 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; or, when distributed
* separately from the ... | {
"pile_set_name": "Github"
} |
module Sass
# A namespace for nodes in the Sass parse tree.
#
# The Sass parse tree has three states: dynamic, static Sass, and static CSS.
#
# When it's first parsed, a Sass document is in the dynamic state.
# It has nodes for mixin definitions and `@for` loops and so forth,
# in addition to nodes for CS... | {
"pile_set_name": "Github"
} |
array :: {Int}
array = {x \\ x <- [1 .. 10]}
| {
"pile_set_name": "Github"
} |
//Copyright 2018 Samsung Electronics Co., 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 ... | {
"pile_set_name": "Github"
} |
# Writing a plugin
If you plan to create your own Gulp plugin, you will save time by reading the full documentation.
* [Guidelines](guidelines.md) (a MUST read)
* [Using buffers](using-buffers.md)
* [Dealing with streams](dealing-with-streams.md)
* [Testing](testing.md)
## What it does
### Streaming file objects
A... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2012, 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 ap... | {
"pile_set_name": "Github"
} |
/* gerror.h - Error reporting system
*
* Copyright 2000 Red Hat, Inc.
*
* The Gnome Library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option)... | {
"pile_set_name": "Github"
} |
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"), require("../../mode/sql/sql"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror", "../../mode/sql/sql"], mod);
else // Plain browser env
... | {
"pile_set_name": "Github"
} |
import chunkArray from './chunkArray'
describe('#chunkArray', () => {
it('size 1', () => {
expect(chunkArray([1, 2, 3], 1)).toEqual([[1], [2], [3]])
})
it('size 0 throws', () => {
expect(() => chunkArray([1, 2, 3], 0)).toThrow('maxChunkSize must be gte 1')
})
it('size gte items', () => {
expect(c... | {
"pile_set_name": "Github"
} |
import { Server } from "mock-socket";
import { ReceiveTypes } from "../iframe/services/communication/ReceiveTypes";
import { SendTypes, PrivateChannelMessageType } from "../iframe/services/communication/SendTypes";
function send(socket: WebSocket, type: ReceiveTypes, data: any): void {
socket.send(JSON.stringify({ t... | {
"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.
using System;
using Microsoft.CodeAnalysis.Text;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.Editor.Shared.Utilities
{
internal struct Virtu... | {
"pile_set_name": "Github"
} |
;; xlinit.lsp -- standard definitions and setup code for XLisp
;;
(defun bt () (baktrace 6))
(defmacro setfn (a b)
`(setf (symbol-function ',a) (symbol-function ',b)))
(setfn co continue)
(setfn top top-level)
(setfn res clean-up)
(setfn up clean-up)
;## display -- debugging print macro
;
; call like this (disp... | {
"pile_set_name": "Github"
} |
package generic
type GeneratingHandlerOptions struct {
AllowCrossNamespace bool
AllowClusterScoped bool
DynamicLookup bool
}
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 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/license... | {
"pile_set_name": "Github"
} |
<?php
/**
* author : forecho <caizhenghai@gmail.com>
* createTime : 15/4/18 下午4:13
* description:
*/
namespace frontend\widgets;
class Panel extends \yii\bootstrap\Widget
{
public $items = [];
public $title = '';
public function run()
{
$model = [
'items' => $this->items,
... | {
"pile_set_name": "Github"
} |
{
"name": "kails",
"version": "0.1.0",
"private": true,
"license": "MIT",
"main": "build/index.js",
"scripts": {
"console": "babel-node app/index.js console",
"start": "nodemon app/index.js & npm run webpack_dev",
"app": "babel-node app/index.js",
"build": "rm -rf build/ && babel -d build ap... | {
"pile_set_name": "Github"
} |
function y = vl_nnspnorm(x, param, dzdy)
%VL_NNSPNORM CNN spaital normalization.
% Y = VL_NNSPNORM(X, PARAM) computes the spatial normalization of
% the data X with parameters PARAM = [PH PW ALPHA BETA]. Here PH and
% PW define the size of the spatial neighbourhood used for
% nomalization.
%
% For each featur... | {
"pile_set_name": "Github"
} |
SCREEN AUTO AUTO 1.0
VERTICAL
TITLE "Instrument Latest Header"
VERTICALBOX
SECTIONHEADER "Header"
LABELVALUE INST LATEST CCSDSVER
LABELVALUE INST LATEST CCSDSTYPE
LABELVALUE INST LATEST CCSDSSHF
LABELVALUE INST LATEST CCSDSAPID
LABELVALUE INST LATEST CCSDSSEQFLAGS
LABELVALUE INST LATE... | {
"pile_set_name": "Github"
} |
import json
import os
import pickle
import random
import sys
from io import StringIO
from typing import List, Tuple, Dict
import torch
import torch.utils.data.dataset
from PIL import Image, ImageOps
from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval
from torch import Tensor
from torchvision.da... | {
"pile_set_name": "Github"
} |
/* 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/. */
"use strict";
const { MatchPattern } = require("sdk/util/match-pattern");
exports.testMatchPatternTestTrue = func... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge... | {
"pile_set_name": "Github"
} |
#
# Copyright (C) 2018 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the ... | {
"pile_set_name": "Github"
} |
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*
* Copyright (C) 1998-2016, International Business Machines
* Corporation and others. All Rights Reserved.
*
**********... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 651770f8be26443fdb85aa3594fa349c
folderAsset: yes
DefaultImporter:
userData:
assetBundleName:
| {
"pile_set_name": "Github"
} |
object FormDropTarget: TFormDropTarget
Left = 611
Height = 156
Top = 306
Width = 143
BorderIcons = []
BorderStyle = bsNone
ClientHeight = 156
ClientWidth = 143
Color = clWhite
Constraints.MinHeight = 32
Constraints.MinWidth = 32
FormStyle = fsSystemStayOnTop
OnClose = FormClose
OnCreate = Fo... | {
"pile_set_name": "Github"
} |
/*
Copyright 2008 Adobe Systems Incorporated
Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt
or a copy at http://stlab.adobe.com/licenses.html)
*/
/*************************************************************************************************/
#include <boost/bind.hpp>
#incl... | {
"pile_set_name": "Github"
} |
;
; Multiply two 16.16 bit fixed point numbers and return a 16.16 fixed
; point result. Also pin the number to maximum 0x7FFFFFFF or -0x7FFFFFFF.
; Round up the result if needed.
;
; Fixed IM_FixMul(Fixed a,Fixed b);
;
AREA |C$$code|, CODE, READONLY
|x$codeseg|
Input1 RN R0 ;First fixed point value
Input2 RN R1 ;Sec... | {
"pile_set_name": "Github"
} |
import { Component, OnInit, OnDestroy } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { NgbActiveModal, NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
import { JhiEventManager } from 'ng-jhipster';
import { IJob } from 'app/shared/model/job.model';
import { JobServ... | {
"pile_set_name": "Github"
} |
/**************************************************************************//**
* @file ARMCM7_DP.h
* @brief CMSIS Core Peripheral Access Layer Header File for
* ARMCM7 Device Series
* @version V1.01
* @date 10. September 2014
*
* @note configured for CM7 with double precision FPU
*
*... | {
"pile_set_name": "Github"
} |
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if y... | {
"pile_set_name": "Github"
} |
import "oaidl.idl";
import "ocidl.idl";
[
uuid(103B8142-6CE5-48A7-BDE1-794D3192FCF1),
version(1.0),
helpstring("QGAVSSProvider Type Library")
]
library QGAVSSHWProviderLib
{
importlib("stdole2.tlb");
[
uuid(6E6A3492-8D4D-440C-9619-5E5D0CC31CA8),
helpstring("QGAVSSProvider Class")
... | {
"pile_set_name": "Github"
} |
#!/bin/bash
# Copyright 2015 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law ... | {
"pile_set_name": "Github"
} |
村上みわ最新番号
【ATAD-077】女子校生監禁凌辱 鬼畜輪姦 完全保存版001
【TOU-034】ザ・トリプルSEX 2
【ATAD-024】女子校生監禁凌辱 鬼畜輪姦 COMPLETE BOX
【ADS-003】死夜悪THE BEST 3 鬼畜輪姦セレクト
【KA-1812】FUCKがスパーク 村上みわ
【KA-1807】快楽のマジック 村上みわ
【MG-023】女教師CLUB10
【SHK-002】女子校生監禁凌辱 鬼畜輪姦1 村上みわ
【KA-1803】素肌の囁き 村上みわ</a>2002-11-01アリスJAPAN$$$アリスJAPAN60分钟 | {
"pile_set_name": "Github"
} |
# -*- tcl -*-
# ### ### ### ######### ######### #########
## UEvent - User Event Service - Tcl-level general Event Handling
# ### ### ### ######### ######### #########
## Requirements
package require Tcl 8.4
package require logger
namespace eval ::uevent {}
namespace eval ::uevent::token {}
name... | {
"pile_set_name": "Github"
} |
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | {
"pile_set_name": "Github"
} |
<?php
if(!function_exists('get_files')){
function get_files($ds, $type, $ns = ''){
global $mysqli;
$result = array();
$files = scandir($ds);
unset($files[0], $files[1]);
foreach($files as $f){
if($f != '.htaccess' && $f != $ns){
if(is_file($ds . '/' . $f)){
$mysqli->query('INSERT DELAYED ... | {
"pile_set_name": "Github"
} |
import XCTest
#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(StructsAndClassesTests.allTests)
]
}
#endif
| {
"pile_set_name": "Github"
} |
export default (function (o, c) {
var proto = c.prototype;
proto.toObject = function () {
return {
years: this.$y,
months: this.$M,
date: this.$D,
hours: this.$H,
minutes: this.$m,
seconds: this.$s,
milliseconds: this.$ms
};
};
}); | {
"pile_set_name": "Github"
} |
import os
from plotnine import ggplot, aes, geom_point, labs, facet_grid
from plotnine import (theme, theme_538, theme_bw, theme_classic,
theme_dark, theme_gray, theme_light,
theme_linedraw, theme_matplotlib, theme_minimal,
theme_seaborn, theme_void, th... | {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding='utf-8'?>
<section xmlns="https://code.dccouncil.us/schemas/dc-library" xmlns:codified="https://code.dccouncil.us/schemas/codified" xmlns:codify="https://code.dccouncil.us/schemas/codify" xmlns:xi="http://www.w3.org/2001/XInclude" containing-doc="D.C. Code">
<num>3-1716</num>
<reason>Re... | {
"pile_set_name": "Github"
} |
import {
Type,
Value,
NumberValue,
} from '../value.mjs';
import {
Assert,
ToInteger,
ToString,
} from '../abstract-ops/all.mjs';
import { surroundingAgent } from '../engine.mjs';
import { Q, X } from '../completion.mjs';
import { BootstrapPrototype } from './Bootstrap.mjs';
function thisNumberValue(value)... | {
"pile_set_name": "Github"
} |
/*
* Tigase XMPP Server - The instant messaging server
* Copyright (C) 2004 Tigase, Inc. (office@tigase.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3 of the Licen... | {
"pile_set_name": "Github"
} |
//===--------------------- Support.cpp --------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | {
"pile_set_name": "Github"
} |
import Foundation
/// A Nimble matcher that succeeds when a value is "empty". For collections, this
/// means the are no items in that collection. For strings, it is an empty string.
public func beEmpty<S: SequenceType>() -> NonNilMatcherFunc<S> {
return NonNilMatcherFunc { actualExpression, failureMessage in
... | {
"pile_set_name": "Github"
} |
using EditorCommon;
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
namespace ResourceFormat {
public enum ModelOverviewMode
{
ReadWrite = 0,
ImportMaterial,
OptimizeMesh,
MeshData,
MeshCompress,
VertexCount,
TriangleCount,
... | {
"pile_set_name": "Github"
} |
# Oppo PM1 (alternative earpads)
See [usage instructions](https://github.com/jaakkopasanen/AutoEq#usage) for more options and info.
### Parametric EQs
In case of using parametric equalizer, apply preamp of **-5.1dB** and build filters manually
with these parameters. The first 5 filters can be used independently.
When ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1">
<meta name="baidu-site-verification" content="HTOBD3Guy9" />
<meta http-equiv... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2014 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... | {
"pile_set_name": "Github"
} |
import _plotly_utils.basevalidators
class UidValidator(_plotly_utils.basevalidators.StringValidator):
def __init__(self, plotly_name="uid", parent_name="streamtube", **kwargs):
super(UidValidator, self).__init__(
plotly_name=plotly_name,
parent_name=parent_name,
edit_ty... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2017 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"
} |
require('../modules/es6.object.to-string');
require('../modules/web.dom.iterable');
require('../modules/es6.weak-set');
module.exports = require('../modules/$.core').WeakSet; | {
"pile_set_name": "Github"
} |
#ifndef __RTMP_H__
#define __RTMP_H__
/*
* Copyright (C) 2005-2008 Team XBMC
* http://www.xbmc.org
* Copyright (C) 2008-2009 Andrej Stepanchuk
* Copyright (C) 2009-2010 Howard Chu
*
* This file is part of librtmp.
*
* librtmp is free software; you can redistribute it and/or modify
* it u... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test 0275</title>
</head>
<body>
<time property="rdf:value">2012-03-18Z</time>
</body>
</html> | {
"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 may ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2006-2009 Erin Catto http://www.box2d.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 software for any purpose,
* i... | {
"pile_set_name": "Github"
} |
/*
img_bmp.c - bmp format load & save
Copyright (C) 2007 Uncle Mike
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This progr... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0-only
/*
* Network interface table.
*
* Network interfaces (devices) do not have a security field, so we
* maintain a table associating each interface with a SID.
*
* Author: James Morris <jmorris@redhat.com>
*
* Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.c... | {
"pile_set_name": "Github"
} |
module.exports = require("./lib/_stream_duplex.js")
| {
"pile_set_name": "Github"
} |
// -*- mode: js; indent-tabs-mode: nil; js-basic-offset: 4 -*-
//
// This file is part of Almond
//
// Copyright 2019 The Board of Trustees of the Leland Stanford Junior University
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
/... | {
"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"/>
<title>Y!LDA: Member List</title>
<link href="tabs.css" rel="stylesheet" type=... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `pthread_rwlock_t` struct in crate `libc`.">
<meta name="ke... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env ruby
require "nkf"
class String
# From tdiary.rb
def shorten( len = 120 )
lines = NKF::nkf( "-t -m0 -f#{len}", self.gsub( /\n/, ' ' ) ).split( /\n/ )
lines[0].concat( '...' ) if lines[0] and lines[1]
lines[0]
end
end
require "rss"
items = []
verbose = false
def error(exception)
ma... | {
"pile_set_name": "Github"
} |
import { Breakpoint, IBackend, Stack, Variable, VariableObject, MIError } from '../backend';
import * as ChildProcess from 'child_process';
import { EventEmitter } from 'events';
import { parseMI, MINode } from '../mi_parse';
import * as linuxTerm from '../linux/console';
import * as net from 'net';
import * as fs from... | {
"pile_set_name": "Github"
} |
/**
Copyright (c) 2010-2014 hkrn
All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the foll... | {
"pile_set_name": "Github"
} |
# The cleanup command
## Synopsis
bpipe cleanup [-y] [<file1>] [<file2>]...
## Availability
0.9.8+
## Description
Deletes intermediate files from outputs of a pipeline. The primary purpose of
this command is to save space in storing unnecessary intermediate files that
are not needed after a pipeline is fi... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
# dynamically determine the path to this package
HERE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" > /dev/null && pwd )"
# dynamically take name of package from directory
MASON_NAME=$(basename $(dirname $HERE))
# dynamically take the version of the package from directory
MASON_VERSION=$(basename $HER... | {
"pile_set_name": "Github"
} |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.1.6 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
* @license http://codei... | {
"pile_set_name": "Github"
} |
/**
Print the string value of the argument, which may be of any type.
If beanshell is running interactively, the output will always go to the
command line, otherwise it will go to System.out.
<p>
Most often the printed value of an object will simply be the Java
toString() of the object. Howeve... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
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, ... | {
"pile_set_name": "Github"
} |
/**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef INTEGRATION_FRAMEWORK_FAKE_PEER_HPP_
#define INTEGRATION_FRAMEWORK_FAKE_PEER_HPP_
#include <memory>
#include <string>
#include <boost/core/noncopyable.hpp>
#include "framework/integration_framework/fake_peer/... | {
"pile_set_name": "Github"
} |
//
// KnobStyleKit2.swift
// UISpike
//
// Created by Matthew Fecher on 9/19/17.
// Copyright © 2017 AudioKit. All rights reserved.
//
// Generated by PaintCode
// http://www.paintcodeapp.com
//
import UIKit
public class KnobStyleKit2 : NSObject {
//// Drawing Methods
@objc dynamic public class func... | {
"pile_set_name": "Github"
} |
kind: Service
apiVersion: v1
metadata:
name: init-tenant-db
labels:
service: init-tenant-db
spec:
ports:
- name: "postgres"
protocol: TCP
port: 5432
targetPort: 5432
selector:
service: init-tenant-db
type: ClusterIP | {
"pile_set_name": "Github"
} |
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.util.io;
import com.intellij.openapi.Forceable;
import com.intellij.openapi.util.SystemInfo;
import com.intellij.util.SystemProperties;
import consulo.util.c... | {
"pile_set_name": "Github"
} |
#!/bin/sh
#
# After a PR merge, Chef Expeditor will bump the PATCH version in the VERSION file.
# It then executes this file to update any other files/components with that new version.
#
set -evx
sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" lib/chef/provisioning/version.rb
# Once Expeditor fi... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"filename" : "logo_pagopa.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "pagopa - logo - darkbg - grayscale - transparency@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "pagopa - logo - darkbg - graysca... | {
"pile_set_name": "Github"
} |
// Copyright 2013 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 go1.2
package language
import "sort"
var sortStable = sort.Stable
| {
"pile_set_name": "Github"
} |
// Copyright 2010 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 json implements encoding and decoding of JSON as defined in
// RFC 4627. The mapping between JSON and Go values is described
// in the documentation ... | {
"pile_set_name": "Github"
} |
/* Translators (2009 onwards):
* - Irwangatot
* - IvanLanin
*/
/**
* @requires OpenLayers/Lang.js
*/
/**
* Namespace: OpenLayers.Lang["id"]
* Dictionary for Bahasa Indonesia. Keys for entries are used in calls to
* <OpenLayers.Lang.translate>. Entry bodies are normal strings or
* strings formatte... | {
"pile_set_name": "Github"
} |
export {AtUploadComponent} from './at-upload/at-upload.component';
export {AtUploadModule} from './upload.module';
| {
"pile_set_name": "Github"
} |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openapitools</groupId>
<arti... | {
"pile_set_name": "Github"
} |
include/master-slave.inc
Warnings:
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for S... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="t... | {
"pile_set_name": "Github"
} |
/*
* FM Driver for Connectivity chip of Texas Instruments.
*
* This sub-module of FM driver is common for FM RX and TX
* functionality. This module is responsible for:
* 1) Forming group of Channel-8 commands to perform particular
* functionality (eg., frequency set require more than
* one Channel-8 ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.