text stringlengths 2 99.9k | meta dict |
|---|---|
#include <QGuiApplication>
#include <QQmlApplicationEngine>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml")));
return app.exec();
}
| {
"pile_set_name": "Github"
} |
using Uno;
using Uno.Platform;
using Uno.UX;
using Fuse.Input;
using Fuse.Triggers;
using Fuse.Controls.Native;
namespace Fuse.Controls
{
/** Baseclass for controls that contains a range value
This is the baseclass for @Controls that hold a range value. For example @Slider.
RangeControl is what you want to ... | {
"pile_set_name": "Github"
} |
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/
foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_TOOLS ) {
$group['apps'][] = array('code' => 'action... | {
"pile_set_name": "Github"
} |
import torch
import numpy as np
import torch.nn as nn
import torch.nn.functional as F
from torch.nn.modules.utils import _pair
from copy import deepcopy
from typing import Union, Sequence, Optional, Tuple, Dict, Iterable
import bindsnet.network.nodes as nodes
import bindsnet.network.topology as topology
from bindsn... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 Miroslav Janíček
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agree... | {
"pile_set_name": "Github"
} |
package android.arch.persistence.db;
/*
* Copyright (C) 2016 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/LI... | {
"pile_set_name": "Github"
} |
syntax = "proto3";
option java_package = "org.mapstruct.example.protobuf";
option java_outer_classname = "UserProtos";
message UserDTO {
string id = 1;
string email = 2;
repeated PermissionDTO permissions = 3;
repeated DepartmentDTO main_departments = 4;
repeated DepartmentDTO departments = 5;
... | {
"pile_set_name": "Github"
} |
using System;
namespace ServiceEntity
{
public class HelloRequest
{
public int Amount
{ get; set; }
public string Message
{
get; set;
}
}
public class HelloResponse
{
public string Message
{ get; set; }
}
}
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!--Generated by crowdin.com-->
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Turbo Editor.
~
~ Turbo Editor 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 ... | {
"pile_set_name": "Github"
} |
using Moq;
namespace Dynamo.Tests
{
public static class MockMaker
{
public static T Empty<T>() where T : class
{
return (new Mock<T>()).Object;
}
}
} | {
"pile_set_name": "Github"
} |
(Program
(Statement
(Arg
(Primary
(If
(Elsif
(Else
(Statement
(Arg
(Primary
(Lhs
(Variable
(Identifier "bat")))))))
(Then
(S... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
declare(strict_types=1);
namespace OxidEsales\EshopCommunity\Internal\Transition\ShopEvents;
use Symfony\Contracts\EventDispatcher\Event;
/**
* @stable
* @see OxidEsales/EshopCommunity/Internal/README.md
*... | {
"pile_set_name": "Github"
} |
<?php
/**
* ALIPAY API: alipay.ecapiprod.drawndn.paymentschedule.get request
*
* @author auto create
* @since 1.0, 2016-03-29 11:34:20
*/
class AlipayEcapiprodDrawndnPaymentscheduleGetRequest
{
/**
* 支用编号
**/
private $drawndnNo;
/**
* 身份证
**/
private $entityCode;
/**
* 客户姓名
**/
private $en... | {
"pile_set_name": "Github"
} |
import { AsyncLocalStorage } from 'async_hooks';
import { config } from 'api/config';
import { TenantsModel } from './tenantsModel';
import handleError from 'api/utils/handleError.js';
export type Tenant = {
name: string;
dbName: string;
indexName: string;
uploadedDocuments: string;
attachments: string;
cu... | {
"pile_set_name": "Github"
} |
;
; Definition file of SHWEBSVC.dll
; Automatic generated by gendef
; written by Kai Tietz 2008-2014
;
LIBRARY "SHWEBSVC.dll"
EXPORTS
AddNetPlaceRunDll
PublishRunDll
| {
"pile_set_name": "Github"
} |
/* -*- c++ -*- */
/*
* Copyright 2020 Graham Norbury - gnorbury@bondcar.com
*
* This 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, or (at your option)
* any later version.
*
* Th... | {
"pile_set_name": "Github"
} |
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
}
}
}
},
"basePath": "",
"baseUrl": "https://accesscontextmanager.googleapis.com/",
"batchPath"... | {
"pile_set_name": "Github"
} |
A dead simple way to do inheritance in JS.
var inherits = require("inherits")
function Animal () {
this.alive = true
}
Animal.prototype.say = function (what) {
console.log(what)
}
inherits(Dog, Animal)
function Dog () {
Dog.super.apply(this)
}
Dog.prototype.sniff... | {
"pile_set_name": "Github"
} |
<def-group>
<definition class="compliance" id="scheduler_profiling_argument" version="1">
<metadata>
<title>Disable Scheduler Profiling</title>
<affected family="unix">
<platform>multi_platform_ocp</platform>
</affected>
<description>Profiling should be disabled on the Scheduler.</... | {
"pile_set_name": "Github"
} |
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: SuperTux\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-04 15:35+0200\n"
"PO-Revision-Date: 2015-10... | {
"pile_set_name": "Github"
} |
/*************************************************************************
*
* Copyright 2016 Realm 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/lice... | {
"pile_set_name": "Github"
} |
/***************************************************************************
* Copyright (C) 2006-2010 by Marin Mitov *
* mitov@issp.bas.bg *
* *
* This pr... | {
"pile_set_name": "Github"
} |
AgentCodyBanks_climb_stairs_f_cm_np1_fr_med_9.avi 1
BATMAN_BEGINS_climb_stairs_f_cm_np1_ba_bad_15.avi 2
BIG_FISH_climb_stairs_f_nm_np1_fr_med_1.avi 2
Baddest_Fight_Scenes_EVER!_-_Kill_Bill__Vol___1_-_vs__Crazy_88_s_climb_stairs_f_nm_np1_fr_med_3.avi 1
Beginner_Boxing_Lessons_-_Using_Stairs_for_Boxing_Training_climb... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2012,2013 Renard Wellnitz
*
* 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"
} |
import PropTypes from 'prop-types';
import React from 'react';
/**
* The Component1 component for the header
*/
const Component1 = ({
_ID,
_self,
_parents,
_body,
_pages,
_storeSet,
_store,
}) => {
_storeSet({ [`item-${ _ID }`]: _pages[ _ID ].title }); // getting the title from the store (to test the store)... | {
"pile_set_name": "Github"
} |
<script>
init({
title: 'Print',
desc: 'Use Plugin: bootstrap-table-print.',
links: [
'bootstrap-table.min.css'
],
scripts: [
'bootstrap-table.min.js',
'extensions/print/bootstrap-table-print.min.js'
]
})
</script>
<table id="table"
data-show-print="true"
data-url="json... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2008-2015 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// 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 c... | {
"pile_set_name": "Github"
} |
package libtrust
import (
"path/filepath"
)
// FilterByHosts filters the list of PublicKeys to only those which contain a
// 'hosts' pattern which matches the given host. If *includeEmpty* is true,
// then keys which do not specify any hosts are also returned.
func FilterByHosts(keys []PublicKey, host string, includ... | {
"pile_set_name": "Github"
} |
'use strict';
module.exports = function (t, a) {
var x;
a(t(), 'undefined', "Undefined");
a(t(null), 'null', "Null");
a(t(0), "0");
a(t(false), "false");
a(t(''), "");
a(t({}), String({}), "Object");
a(t(x = function () {}), String(x), "Function");
a(t(x = new String('raz')), String(x), "String obj... | {
"pile_set_name": "Github"
} |
id(int,auto) rule(string) type(string) att(string,null) val(string,null) description(string)
| {
"pile_set_name": "Github"
} |
import { HttpError } from './http-error';
/*
Thrown whenever user is not authorized.
*/
export class NotAuthorizedError extends HttpError {
constructor(detail = '', code = 'notAuthorized_default') {
super('401', detail, 'not authorized', code);
}
}
| {
"pile_set_name": "Github"
} |
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Driver
|--------------------------------------------------------------------------
|
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving you conven... | {
"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"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <objc/NSObject.h>
#import <Contacts/CNKeyDescriptor_Private-Protocol.h>
#import <Contacts/NSMutableCopying-Protocol.h>
@class... | {
"pile_set_name": "Github"
} |
package com.blueberry.sample;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void a... | {
"pile_set_name": "Github"
} |
nv.models.sankey = function() {
'use strict';
// Sources:
// - https://bost.ocks.org/mike/sankey/
// - https://github.com/soxofaan/d3-plugin-captain-sankey
//============================================================
// Public Variables with Default Settings
//---------------------------... | {
"pile_set_name": "Github"
} |
#include "Pods-pop.xcconfig"
CLANG_CXX_LANGUAGE_STANDARD = ${PODS_POP_CLANG_CXX_LANGUAGE_STANDARD}
CLANG_CXX_LIBRARY = ${PODS_POP_CLANG_CXX_LIBRARY}
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/pop" "${PODS_ROOT}/Headers/Public" "... | {
"pile_set_name": "Github"
} |
// Utilities for generating statistics
var util = module.exports = {};
/*
Public: Very lame memoiser function. Only looks at the first argument.
fn - The function to memoise.
Returns a wrapped function
Examples
myFunction = util.cache(function myFunction() { ... });
*/
util.functionCache = {};
util.cach... | {
"pile_set_name": "Github"
} |
let b:ale_fixers = ['brittany']
setl formatprg='brittany'
| {
"pile_set_name": "Github"
} |
<ui:composition template="/rhq/resource/layout/main-plain.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:onc="http://jb... | {
"pile_set_name": "Github"
} |
var ChannelService = require('../common/service/channelService');
module.exports = function(app, opts) {
var service = new ChannelService(app, opts);
app.set('channelService', service, true);
service.name = '__channel__';
return service;
}; | {
"pile_set_name": "Github"
} |
################################################################################
#
# xfont_font-misc-misc
#
################################################################################
XFONT_FONT_MISC_MISC_VERSION = 1.1.2
XFONT_FONT_MISC_MISC_SOURCE = font-misc-misc-$(XFONT_FONT_MISC_MISC_VERSION).tar.bz2
XFONT_FO... | {
"pile_set_name": "Github"
} |
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2005-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)
//
// See http://www.boost.org/libs/contain... | {
"pile_set_name": "Github"
} |
# =========================================================================
# This makefile was generated by
# Bakefile 0.2.9 (http://www.bakefile.org)
# Do not modify, all changes will be overwritten!
# =========================================================================
!include ../../../build/msw/c... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 4cfb59f68696db449a89533ba6185b67
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
package com.enonic.xp.server.impl.status;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.Constants;
import org.osgi.framework.ServiceReference;
import com.fasterxml.jackson.databind.JsonNode;
public c... | {
"pile_set_name": "Github"
} |
// Copyright Vladimir Prus 2004.
// 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_CMDLINE_HPP_VP_2004_03_13
#define BOOST_CMDLINE_HPP_VP_2004_03_13
namespace boost { namespace program_options { nam... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<!-- Mirrored from www.cruisecontrolnet.org/projects/ccnet/wiki/Build_Report_Build_Plugin by HTTrack Website Copier/3.x [XR&CO'2013], Mon, 26 May 2014 07:52:50 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack --... | {
"pile_set_name": "Github"
} |
FROM openjdk:12.0.2
EXPOSE 8080
ADD ./build/libs/*.jar app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
| {
"pile_set_name": "Github"
} |
package com.quickblox.sample.videochat.java.utils;
import android.content.Context;
import android.media.AudioAttributes;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.RingtoneManager;
import android.net.Uri;
import android.util.Log;
import java.io.IOException;
/**
* Quick... | {
"pile_set_name": "Github"
} |
import numpy as np
import pandas as pd
# import matplotlib
# matplotlib.use('Agg')
# import matplotlib.pyplot as plt
# #import matplotlib.pyplot as plt
import torch
import torch.nn as nn
from torch.autograd import Variable
import torch.nn.functional as F
softmax = nn.Softmax()
sigmoid = nn.Sigmoid()
def batch_matmu... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Javadoc API documentation." />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
<title>
Class Index
</title>
... | {
"pile_set_name": "Github"
} |
/*
* inode.c - NILFS inode operations.
*
* Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
*
* 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 the Li... | {
"pile_set_name": "Github"
} |
#include "refl.hpp"
#include <iostream>
#include <vector>
/********************************/
template <typename T>
constexpr auto readable_members = filter(refl::member_list<T>{}, [](auto member) { return is_readable(member); });
template <typename T>
using readable_member_list = std::remove_const_t<decltype(readable... | {
"pile_set_name": "Github"
} |
# This deployment fires up the dummy service that we are trying to protect from overload when it enters an unhealthy state, so that it can recover. Because this dummy-deployment
# exposes a /fakeerrormodeon endpoint, we can make it "fake" an error that will trigger the circuit breaker by returning a 503 from the /read... | {
"pile_set_name": "Github"
} |
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31506\stshfloch31506\stshfhich31506\stshfbi31507\deflang2055\deflangfe2055\themelang2055\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset1\fprq2{\*\panose 0... | {
"pile_set_name": "Github"
} |
#ifndef _PYC_NUMERIC_H
#define _PYC_NUMERIC_H
#include "pyc_object.h"
#include "data.h"
#include <list>
#include <string>
class PycInt : public PycObject {
public:
PycInt(int value = 0, int type = TYPE_INT)
: PycObject(type), m_value(value) { }
bool isEqual(PycRef<PycObject> obj) const override
{... | {
"pile_set_name": "Github"
} |
@model HelperMethods.Models.Person
@{
ViewBag.Title = "CreatePerson";
Layout = "/Views/Shared/_Layout.cshtml";
Html.EnableClientValidation(false);
}
<h2>CreatePerson: @Html.LabelForModel()</h2>
@using (Html.BeginRouteForm("FormRoute", new { }, FormMethod.Post,
new { @class = "personClass", data_formT... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="Folder" module="OFS.Folder"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_objects</string> </key>
<value>
<tuple/>
</value>
</i... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2016 Oracle.
*
* 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 the License, or (at your option) any later version.
*
* This program is distribute... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<domain xmlns="http://cayenne.apache.org/schema/10/domain"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://cayenne.apache.org/schema/10/domain https://cayenne.apache.org/schema/10/domain.xsd"
project-version="10">
<map name="embeddable"/>
</... | {
"pile_set_name": "Github"
} |
/*
* jQuery UI Bootstrap v1.0 Alpha
*
* jQuery UI CSS Framework 1.10.3
*
* Portions copyright Addy Osmani, jQuery UI & Twitter, Inc.
* Created the LESS version by @dharapvj
* Released under MIT
*/
/* Component containers
----------------------------------*/
.ui-widget {
font-family: @font-family-sans-serif; ... | {
"pile_set_name": "Github"
} |
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | {
"pile_set_name": "Github"
} |
:101E000001C0B1C011248FE592E09EBF8DBF84B7A1
:101E1000882361F0982F9A70923041F081FF02C0C0
:101E200097EF94BF282E80E0B9D0EAC085E08EBD40
:101E300082E08BB988E18AB986E880BD88E089B9FB
:101E40008EE0ACD0B89A84E028E13EEF44E051E067
:101E50003DBD2CBD48BF08B602FEFDCF98B3952707
:101E600098BBA8955F9902C0815091F790D08134BA
:101E... | {
"pile_set_name": "Github"
} |
# Seeds for failure cases proptest has generated in the past. It is
# automatically read and these particular cases re-run before any
# novel cases are generated.
#
# It is recommended to check this file in to source control so that
# everyone who runs the test benefits from these saved cases.
xs 148868935 2656186008 3... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env sh
./build/tools/caffe train \
--solver=models/bvlc_reference_caffenet/solver.prototxt \
--snapshot=models/bvlc_reference_caffenet/caffenet_train_10000.solverstate
| {
"pile_set_name": "Github"
} |
import 'whatwg-fetch'
// export const api = 'http://localhost:8001/api'
export const api = 'http://132.232.34.190/api'
export const headerImg =
'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1527245834290&di=2286cc7354adc925f79b92b719162dd4&imgtype=0&src=http%3A%2F%2Fpic32.photophoto.cn%2F201408... | {
"pile_set_name": "Github"
} |
export function window(target) {
if (target.ownerDocument) {
return target.ownerDocument.defaultView;
} else if (target.defaultView) {
return target.defaultView;
} else {
return target;
}
}
const events = {};
events.click = function (target, options) {
options = Object.ass... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2018, Eugen Bulavin
// 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 co... | {
"pile_set_name": "Github"
} |
/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
http://www.cocos2d-x.org
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 with... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
#
# This file is part of pyasn1-modules software.
#
# Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
# License: http://pyasn1.sf.net/license.html
#
# Read X.509 CRL on stdin, print them pretty and encode back into
# original wire format.
# CRL can be generated with "openssl openssl ca ... | {
"pile_set_name": "Github"
} |
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;
namespace SixLabors.ImageSharp.Metadata.Profiles.Icc
{
/// <summary>
/// The purpose of this tag is to identify the colorants used in
/// the profile by a unique name and set of PCSXYZ or PCSLAB values
/// t... | {
"pile_set_name": "Github"
} |
ICY0
P:="P[ÓT | {
"pile_set_name": "Github"
} |
package SuperFoo;
sub method{};
<warning descr="Redundant namespace qualifier">SuperFoo::</warning>method;
| {
"pile_set_name": "Github"
} |
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_force_number
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: account-invoicing (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-28 09:48+0000\n"
"PO-Revision-Date: 2016-12-27 08:25+00... | {
"pile_set_name": "Github"
} |
#!/bin/bash
# Create shark tables for tpc-h benchmark
LOG=/disk1/sparrow/createTPCH.log
SHARK=/root/shark/bin/shark-withinfo
QUERY_DIR=/root/tpch
cd /disk1/sparrow/
echo "Making base tables"
$SHARK -f $QUERY_DIR/make_base_tables.hql > $LOG 2>&1
echo "Making demormalized table"
$SHARK -f $QUERY_DIR/make_denorm_table... | {
"pile_set_name": "Github"
} |
//
// UIPageControl+RxTest.swift
// Tests
//
// Created by Francesco Puntillo on 25/04/2016.
// Copyright © 2016 Krunoslav Zaher. All rights reserved.
//
#if os(iOS)
import RxSwift
import RxCocoa
import UIKit
import XCTest
final class UIPageControlTest : RxTest {
}
extension UIPageControlTest {
func testPag... | {
"pile_set_name": "Github"
} |
<?php
/*
** Monitoring Artist
** Copyright (C) 2015-2016 Monitoring Artist Ltd
**
** 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 the License, or
** (at your option) any l... | {
"pile_set_name": "Github"
} |
const { ipcRenderer } = require('electron')
const syncMsgBtn = document.getElementById('sync-msg')
syncMsgBtn.addEventListener('click', () => {
const reply = ipcRenderer.sendSync('synchronous-message', 'ping')
const message = `Synchronous message reply: ${reply}`
document.getElementById('sync-reply').inne... | {
"pile_set_name": "Github"
} |
[sdist]
formats = bztar
force_manifest = 1
# Note that we're adding our *.gourmet-plugin files to the desktop_files parameter
# of the [build_i18n] section, as they're structured like *.desktop files.
# This requires tricking DistUtilsExtra into installing them into the python
# modules location (given by install_lib)... | {
"pile_set_name": "Github"
} |
// author: Jannik Strötgen
// email: stroetgen@uni-hd.de
// resources automatically created; see our EMNLP 2015 paper for details:
// https://aclweb.org/anthology/D/D15/D15-1063.pdf
//
// english: "and","and"
[Ii]n
[Tt]er
[Pp]a
// english: "or","or"
àli
// english: "to","to"
[Kk]
[Hh]
[Pp]roti
| {
"pile_set_name": "Github"
} |
/* Do not modify this file. Changes will be overwritten. */
/* Generated automatically by the ASN.1 to Wireshark dissector compiler */
/* packet-acp133.c */
/* asn2wrs.py -b -p acp133 -c ./acp133.cnf -s ./packet-acp133-template -D . -... | {
"pile_set_name": "Github"
} |
#ifndef __FT_INTERNAL_PFR_H__
#define __FT_INTERNAL_PFR_H__
#include <ft2build.h>
#include FT_FREETYPE_H
FT_BEGIN_HEADER
typedef FT_Error (*FT_PFR_GetMetricsFunc)( FT_Face face,
FT_UInt *aoutline,
FT_UInt *ametrics,... | {
"pile_set_name": "Github"
} |
module.layout=com.liferay,com.liferay.portal.messaging
com.liferay.portal.kernel.messaging.DefaultMessageBus=com.liferay.portal.messaging.internal.DefaultMessageBus
com.liferay.portal.kernel.messaging.jmx.DestinationStatisticsManager=com.liferay.portal.messaging.internal.jmx.DestinationStatisticsManager
com.liferay.por... | {
"pile_set_name": "Github"
} |
/*
* tegra20_ac97.h - Definitions for the Tegra20 AC97 controller driver
*
* Copyright (c) 2012 Lucas Stach <dev@lynxeye.de>
*
* Partly based on code copyright/by:
*
* Copyright (c) 2011,2012 Toradex Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU ... | {
"pile_set_name": "Github"
} |
Simply call `rivets.bind` on a template element with some data that you would like to bind.
```javascript
rivets.bind($('#auction'), {auction: auction})
```
*Every call to `rivets.bind` returns a fully data-bound view that you should hold on to for later. You'll need it in order to unbind it's listeners using `view.... | {
"pile_set_name": "Github"
} |
// Copyright 2017 The etcd 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 t... | {
"pile_set_name": "Github"
} |
(roswell:include "util-install-quicklisp")
(roswell:quicklisp :environment nil)
(defpackage :roswell.help.install
(:use :cl :roswell.util :roswell.install))
(in-package :roswell.help.install)
(defun install (argv)
(if (not (second argv))
(let ((s *error-output*)
(cmd (pathname-name (opt "wargv0")... | {
"pile_set_name": "Github"
} |
// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
package admin
import (
"encoding/json"
"net/http"
"github.com/zeebo/errs"
)
// Error is default error class for admin package.
var Error = errs.Class("admin")
func httpJSONError(w http.ResponseWriter, error, detail string, statusCode... | {
"pile_set_name": "Github"
} |
import { reaction } from 'mobx';
import themeInfo from '../../assets/themeInfo.json';
import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config';
const STYLE_ELEMENT_ID = 'custom-appearance-style';
// Additional styles needed to make accent colors work properly
// "[ACCENT]" will be replaced with the accent co... | {
"pile_set_name": "Github"
} |
namespace GitUI.CommandsDialogs
{
partial class FormBlame
{
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.blameControl1 = new GitUI.Blame.BlameControl();
this.SuspendLayout();
//
// blameControl1... | {
"pile_set_name": "Github"
} |
// MESSAGE MISSION_ITEM_REACHED PACKING
#define MAVLINK_MSG_ID_MISSION_ITEM_REACHED 46
typedef struct __mavlink_mission_item_reached_t
{
uint16_t seq; ///< Sequence
} mavlink_mission_item_reached_t;
#define MAVLINK_MSG_ID_MISSION_ITEM_REACHED_LEN 2
#define MAVLINK_MSG_ID_46_LEN 2
#define MAVLINK_MESSAGE_INFO_MIS... | {
"pile_set_name": "Github"
} |
dd if=/dev/zero of=blank.hfs bs=512K count=1
mkfs.hfsplus -v Shoes blank.hfs
gzip blank.hfs
mv blank.hfs.gz blank.hfz
| {
"pile_set_name": "Github"
} |
name: Pull Request Java CI
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
jdk: [ 1.8, 11, 14 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setu... | {
"pile_set_name": "Github"
} |
begin
-- noncompliant code
var := (foo = null); -- Noncompliant {{Fix this comparison or change to "IS NULL".}}
-- ^^^^^^^^^^
var := (foo = ''); -- Noncompliant
-- ^^^^^^^^
var := (foo <> null); -- Noncompliant {{Fix this comparison or change to "IS NOT NULL".}}
-- ^^^^^^^^^^^
var := (... | {
"pile_set_name": "Github"
} |
package sarama
type SaslHandshakeRequest struct {
Mechanism string
Version int16
}
func (r *SaslHandshakeRequest) encode(pe packetEncoder) error {
if err := pe.putString(r.Mechanism); err != nil {
return err
}
return nil
}
func (r *SaslHandshakeRequest) decode(pd packetDecoder, version int16) (err error) {... | {
"pile_set_name": "Github"
} |
package units
// SI units.
type SI int64
// SI unit multiples.
const (
Kilo SI = 1000
Mega = Kilo * 1000
Giga = Mega * 1000
Tera = Giga * 1000
Peta = Tera * 1000
Exa = Peta * 1000
)
func MakeUnitMap(suffix, shortSuffix string, scale int64) map[string]float64 {
return map[string]float64{
shor... | {
"pile_set_name": "Github"
} |
//
// main.m
// InstagramClient
//
// Created by Cristiano Severini on 12/07/12.
// Copyright (c) 2012 Crino. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "IGAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([IG... | {
"pile_set_name": "Github"
} |
import { PivotEngine, IDataOptions, IDataSet, IAxisSet, IPageSettings, ICustomProperties } from '../../src/base/engine';
import { pivot_dataset, pivot_undefineddata } from '../base/datasource.spec';
import { PivotUtil } from '../../src/base/util';
import { profile, inMB, getMemoryProfile } from '../common.spec';
descr... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2010-2018 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 conditi... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.