text stringlengths 2 99.9k | meta dict |
|---|---|
import sys
import time
global silent
enableInfo = True
enableError = True
enableWarning = True
enableDebug = False
silent = False
def info(s, pleaseNoPrint = None):
if pleaseNoPrint == None:
sys.stdout.write(s + "\n")
else:
while pleaseNoPrint.value() > 0:
#print("Wait")
time.sleep(0.01)
pleaseNoPrint... | {
"pile_set_name": "Github"
} |
import base64
import io
import json
import zlib
import msgpack
from requests.structures import CaseInsensitiveDict
from .compat import HTTPResponse, pickle, text_type
def _b64_decode_bytes(b):
return base64.b64decode(b.encode("ascii"))
def _b64_decode_str(s):
return _b64_decode_bytes(s).decode("utf8")
c... | {
"pile_set_name": "Github"
} |
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google.golang.org/appengine/internal/urlfetch/urlfetch_service.proto
package urlfetch
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.M... | {
"pile_set_name": "Github"
} |
/*/////////////////////////////////////////////////////////////////////////////
AUTHOR: Sajjad Taheri sajjadt[at]uci[at]edu
LICENSE AGREEMENT
Copyright (c) 2015, University of california, Irvine
Redistribution and use in source and binary forms, with or without
modification, are permitted... | {
"pile_set_name": "Github"
} |
/** @file
Private Header file for Usb Host Controller PEIM
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions
of the BSD License which accompanies this distribution. The
full text of the license ma... | {
"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 htmlindex
import (
"testing"
"golang.org/x/text/encoding"
"golang.org/x/text/encoding/charmap"
"golang.org/x/text/encoding/internal/identifier"
"... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1998, 2000, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<editor id="editor.imagick" enabled="false" openable="true" iconClass="icon-picture" previewProvider="true" formId="diaporama_box" text="328" title="329" icon="frame_image.png" className="IMagickPreviewer" mimes="pdf,svg,tif,tiff,psd,xcf,eps,xls,xlsx,ods,doc,docx,odt,ppt,pptx,odp,... | {
"pile_set_name": "Github"
} |
$LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
require 'test_helper'
class LikableTest < Minitest::Test
def setup
@user = Factory(:user)
@friend = Factory(:user)
@movie = Factory(:movie)
end
def test_liked_by_returns_relevant_users
assert_empty @movie.liked_by
@user.like(@movie)... | {
"pile_set_name": "Github"
} |
/*
** Program-chaining function for Commodore platforms.
**
** This copy of the cc65 system library function makes smaller code by using
** Contiki's Personal File System (instead of POSIX) functions.
**
** 2016-03-16, Greg King
**
** This function exploits the program-chaining feature in CBM BASIC's ROM.
**
** CC65's ... | {
"pile_set_name": "Github"
} |
/* ShipEvent.h
Copyright (c) 2014 by Michael Zahniser
Endless Sky 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.
Endless Sky is distribute... | {
"pile_set_name": "Github"
} |
class Source::KnownPattern < Source
URLS = [
{
template: "https://www.youtube.com/feeds/videos.xml?channel_id=%s".freeze,
regex: Regexp.new(/https:\/\/www\.youtube\.com\/channel\/([^\/#\?]*)/)
},
{
template: "https://www.youtube.com/feeds/videos.xml?user=%s".freeze,
regex: Regexp.n... | {
"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"
} |
{
"info" : {
"version" : 1,
"author" : "xcode"
}
} | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
namespace UnityEngine.Recorder
{
[Flags]
public enum EImageSource
{
ActiveCameras = 1,
SceneView = 2,
MainCamera = 4,
TaggedCamera = 8,
RenderTexture = 16,
}
public enum FrameRateMode
{
Variable,
... | {
"pile_set_name": "Github"
} |
function rcnn_cache_pool5_features(imdb, varargin)
% rcnn_cache_pool5_features(imdb, varargin)
% Computes pool5 features and saves them to disk. We compute
% pool5 features because we can easily compute fc6 and fc7
% features from them on-the-fly and they tend to compress better
% than fc6 or fc7 features due t... | {
"pile_set_name": "Github"
} |
let%expect_test _ =
print_string "hello";
[%expect "hello"]
;;
| {
"pile_set_name": "Github"
} |
{ Debug server options form
Copyright (C) 2009 Michael Van Canneyt (michael@freepascal.org)
This source 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... | {
"pile_set_name": "Github"
} |
module.exports = function(it){
if(typeof it != 'function')throw TypeError(it + ' is not a function!');
return it;
}; | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
/* Copyright 2019 Linaro, Ltd, Rob Herring <robh@kernel.org> */
#include <linux/atomic.h>
#include <linux/bitfield.h>
#include <linux/delay.h>
#include <linux/dma-mapping.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/iopoll.h>
#include <linux/io-pgtable.h>
#in... | {
"pile_set_name": "Github"
} |
/* eslint-disable */
const test_config = require('../test.config');
const { VERSIONS } = require('../constants');
const request = require('supertest');
const Server = require('./server');
let server;
// Helper function to replace express params with mock values
let fillRoute = (route, key) =>
route.replace(':base_... | {
"pile_set_name": "Github"
} |
/**
* The Forgotten Server - a free and open-source MMORPG server emulator
* Copyright (C) 2019 Mark Samman <mark.samman@gmail.com>
*
* 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; eithe... | {
"pile_set_name": "Github"
} |
# The MIT License
#
# Copyright (c) 2004-2010, Sun Microsystems, Inc., Reginaldo L. Russinholi, Cleiber Silva
#
# 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 ... | {
"pile_set_name": "Github"
} |
#
# Cookbook Name:: dd-agent-install
# Recipe:: _install_windows
#
# Copyright (C) 2019-2020 Datadog
#
# All rights reserved - Do Not Redistribute
#
include_recipe 'dd-agent-install::_install_windows_base'
agent_config_file = ::File.join(node['dd-agent-install']['config_dir'], 'datadog.conf')
# Set the Agent service... | {
"pile_set_name": "Github"
} |
disabled=06target
eclipse.preferences.version=1
| {
"pile_set_name": "Github"
} |
/* Copyright (C) 2009-2019 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Transactional Memory Library (libitm).
Libitm is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published ... | {
"pile_set_name": "Github"
} |
/*
Tencent is pleased to support the open source community by making Blueking Container Service available.
Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Licensed under the MIT License (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
# Copyright (c) 2018 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test the blocksdir option.
"""
import os
import shutil
from test_framework.test_framework import BitcoinTe... | {
"pile_set_name": "Github"
} |
desc = "another test of append"
filedata = \
"""{$
def bar () {
locals { v : [ -1 ] }
for (i, range (300)) {
append (v, i);
}
print (v[231], "\n");
}
for (i, range (3)) {
bar ();
}
$}"""
outcome = '230 ' * 3
| {
"pile_set_name": "Github"
} |
# name backbone
gbif_name_backbone <- function(name, rank = NULL, kingdom = NULL, phylum = NULL,
class = NULL, order = NULL, family = NULL, genus = NULL, strict = FALSE,
start = NULL, limit = 500, ...) {
url = 'https://api.gbif.org/v1/species/match'
args <- tc(list(name = name, rank = rank, kingdom = kingdom,
... | {
"pile_set_name": "Github"
} |
//
// Copyright (c) 2016, Scientific Toolworks, Inc.
//
// This software is licensed under the MIT License. The LICENSE.md file
// describes the conditions under which this software may be distributed.
//
// Author: Jason Haslam
//
#include "Repository.h"
#include "TagRef.h"
#include "Tag.h"
namespace git {
... | {
"pile_set_name": "Github"
} |
#ifndef DETECTOR_DESCRIPTION_CORE_DD_COMPACT_VIEW_H
#define DETECTOR_DESCRIPTION_CORE_DD_COMPACT_VIEW_H
#include <cstddef>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <unordered_map>
#include "DetectorDescription/Core/interface/DDRotationMatrix.h"
#include "DetectorDescription/Co... | {
"pile_set_name": "Github"
} |
// Created by cgo -godefs - DO NOT EDIT
// cgo -godefs defs_linux.go
package socket
const (
sysAF_UNSPEC = 0x0
sysAF_INET = 0x2
sysAF_INET6 = 0xa
sysSOCK_RAW = 0x3
)
type iovec struct {
Base *byte
Len uint64
}
type msghdr struct {
Name *byte
Namelen uint32
Pad_cgo_0 [4]byte
Iov *iove... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required ... | {
"pile_set_name": "Github"
} |
-----BEGIN CERTIFICATE-----
MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEW
MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg
Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh
dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM3WhcNMzYwOTE3MTk0NjM2WjB9
MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN... | {
"pile_set_name": "Github"
} |
var $builtinmodule = window.memoise('anvil.facebook.auth', function() {
var mod = {};
var loginCallbackResolve = null;
var displayLogInModal = function(additionalScopes) {
var anvil = PyDefUtils.getModule("anvil");
var appPath = Sk.ffi.remapToJs(anvil.tp$getattr(new Sk.builtin.str("app_... | {
"pile_set_name": "Github"
} |
#define IDD_BROWSE 95
#define IDL_BROWSE 100
#define IDT_BROWSE_FOLDER 101
#define IDE_BROWSE_PATH 102
#define IDC_BROWSE_FILTER 103
#define IDB_BROWSE_PARENT 110
#define IDB_BROWSE_CREATE_DIR 112
| {
"pile_set_name": "Github"
} |
function foo() {
}
if (typeof foo === 'function') {
console.log ("hello world");
}
| {
"pile_set_name": "Github"
} |
// +build !go1.7
package aws
import "time"
// An emptyCtx is a copy of the Go 1.7 context.emptyCtx type. This is copied to
// provide a 1.6 and 1.5 safe version of context that is compatible with Go
// 1.7's Context.
//
// An emptyCtx is never canceled, has no values, and has no deadline. It is not
// struct{}, sinc... | {
"pile_set_name": "Github"
} |
---
layout: pid
title: Usb2Most(USB to MOST adapter)
owner: smartgauges
license: GPLv3
site: https://github.com/smartgauges/usb2most
source: https://github.com/smartgauges/usb2most
---
Is a board to translate audio from a USB(UAC1) to MOST(Media Oriented Systems Transport) bus.
| {
"pile_set_name": "Github"
} |
//-----------------------------------------------------------------------------
// Copyright (c) 2013 GarageGames, LLC
//
// 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 restr... | {
"pile_set_name": "Github"
} |
function model = linregRobustHuberFit(X, y, delta, includeOffset)
% Minimize Huber loss function for linear regression
% We assume X is an N*D matrix; we will add a column of 1s internally
% w = [w0 w1 ... wD] is a column vector, where w0 is the bias
% This file is from pmtk3.googlecode.com
%PMTKauthor Mark Schmidt
... | {
"pile_set_name": "Github"
} |
'use strict';
module.exports = function generate_properties(it, $keyword) {
var out = ' ';
var $lvl = it.level;
var $dataLvl = it.dataLevel;
var $schema = it.schema[$keyword];
var $schemaPath = it.schemaPath + it.util.getProperty($keyword);
var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
var $brea... | {
"pile_set_name": "Github"
} |
package io.github.privacystreams.commons.string;
import io.github.privacystreams.utils.Assertions;
/**
* Check whether the string specified by a field contains a certain substring.
*/
final class StringContainOperator extends StringProcessor<Boolean> {
private final String searchString;
StringContainOpera... | {
"pile_set_name": "Github"
} |
# This file is part of MLDB. Copyright 2015 mldb.ai inc. All rights reserved.
try:
mldb.create_dataset({
"type": "beh.mutable", "id": "x",
"params":{
"dataFileUrl": "relative/path/without/protocol.beh"
}}).commit() #should complain about missing protocol!
... | {
"pile_set_name": "Github"
} |
<!-- We need jQuery at the top of the page -->
<script src="<?php echo \Idno\Core\Idno::site()->config()->getStaticURL() ?>vendor/npm-asset/jquery/dist/jquery.min.js"></script>
<!-- Le styles -->
<link
href="<?php echo \Idno\Core\Idno::site()->config()->getStaticURL() ?>vendor/twbs/bootstrap/dist/css/bootstrap.min... | {
"pile_set_name": "Github"
} |
//
// blocking_udp_client.cpp
// ~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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)
//
#include "asio/deadli... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2014 <a href="http://www.gutgames.com">James Craig</a>
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, ... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
//
// 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 ca... | {
"pile_set_name": "Github"
} |
/*
* mish_priv_cmd.h
*
* Copyright (C) 2020 Michel Pollet <buserror@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef LIBMISH_SRC_MISH_PRIV_CMD_H_
#define LIBMISH_SRC_MISH_PRIV_CMD_H_
/*
* I decided that the command list would't be attached to the mish_t,
*
* In any other API I would, for consist... | {
"pile_set_name": "Github"
} |
version https://git-lfs.github.com/spec/v1
oid sha256:a743f0d9d443367c206c530202194fd773ac922701516efe4a23f736bcbf2f02
size 682
| {
"pile_set_name": "Github"
} |
(ns reagent.dom
(:require [cljsjs.react.dom]
[reagent.impl.util :as util]
[reagent.impl.template :as tmpl]
[reagent.impl.batching :as batch]
[reagent.ratom :as ratom]
[reagent.debug :refer-macros [dbg]]
[reagent.interop :refer-macros [$ $!]]))
(... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for gunzip filter module.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx qw/ :DEFAULT :gzip /;
#######################... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
.cke_skin_kama
{
display: block;
}
/* Main editor only settings. */
span.cke_skin_kama
{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radiu... | {
"pile_set_name": "Github"
} |
import rostest
import rospy
import numpy
import unittest
import sys
from tf import Transformer
import tf_conversions.posemath as pm
from geometry_msgs.msg import TransformStamped
from PyKDL import Frame
class TestPoseMath(unittest.TestCase):
def setUp(self):
pass
def test_fromTf(self):
tran... | {
"pile_set_name": "Github"
} |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
/**
* Contains the Calendar_Factory class
*
* PHP versions 4 and 5
*
* LICENSE: 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 c... | {
"pile_set_name": "Github"
} |
/* ******************************************************************************
* Copyright (c) 2006-2012 XMind Ltd. and others.
*
* This file is a part of XMind 3. XMind releases 3 and
* above are dual-licensed under the Eclipse Public License (EPL),
* which is available at http://www.eclipse.org/legal/epl-v10... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2012, Ben Fortuna
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* o Redistributions of source code must retain the above copyright
* notice, this list of condit... | {
"pile_set_name": "Github"
} |
const { existsSync } = require('fs')
module.exports = function() {
if (!existsSync('_config.yml')) {
return false
}
return {
framework: 'jekyll',
frameworkPort: 4000,
command: 'bundle',
possibleArgsArrs: [['exec', 'jekyll', 'serve', '-w']],
dist: '_site',
}
}
| {
"pile_set_name": "Github"
} |
//==- DIAEnumSourceFiles.cpp - DIA Source File Enumerator impl ---*- 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"
} |
# KBD6x
A WKL Hot Swap Double USB C 60%
Keyboard Maintainer: [MechMerlin](https://github.com/mechmerlin)
Hardware Supported: KBD6x PCB
Hardware Availability: [KBDFans](https://kbdfans.cn/products/kbd6x-wkl-hot-swap-60-double-type-c-pcb)
Make example for this keyboard (after setting up your build environment):
... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#pragma mark -
//
// File: /Applications/Xcode-7GM.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator.sdk/System/Library/PrivateFrameworks/CoreC... | {
"pile_set_name": "Github"
} |
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:formvh="http://typo3.org/ns/TYPO3/CMS/Form/ViewHelpers" data-namespace-typo3-fluid="true">
<formvh:renderRenderable renderable="{element}">
<f:render partial="Field/Field" arguments="{element: element}" contentAs="elementContent">
<div id... | {
"pile_set_name": "Github"
} |
# -*- mode: makefile -*-
#
# Copyright (c) 2012, Joyent, Inc. All rights reserved.
#
# Makefile.deps: Makefile for including common tools as dependencies
#
# NOTE: This makefile comes from the "eng" repo. It's designed to be dropped
# into other repos as-is without requiring any modifications. If you find
# yourself ch... | {
"pile_set_name": "Github"
} |
package com.deliveredtechnologies.rulebook.lang;
import com.deliveredtechnologies.rulebook.model.Auditor;
import com.deliveredtechnologies.rulebook.model.Rule;
import com.deliveredtechnologies.rulebook.model.RuleBook;
import com.deliveredtechnologies.rulebook.model.RuleBookAuditor;
import com.deliveredtechnologies.rul... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>PyGopherd Manual</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><STYLE
TYPE="text/css"
>.synopsis, .classsynopsis {
background: #eeeeee;
border: solid 1px #aaaaaa;
padding: 0.5em;
}
.p... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache... | {
"pile_set_name": "Github"
} |
<?php
declare(strict_types=1);
namespace Neos\Neos\View;
/*
* This file is part of the Neos.Neos package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with thi... | {
"pile_set_name": "Github"
} |
# coding=utf-8
from __future__ import absolute_import
import torch
from torch import nn
from torch.autograd import Variable
import numpy as np
class NCALoss(nn.Module):
def __init__(self, alpha=16, k=32, **kwargs):
super(NCALoss, self).__init__()
self.alpha = alpha
self.K = k
def for... | {
"pile_set_name": "Github"
} |
name: Publish and commit bottles on schedule
on:
workflow_dispatch:
schedule:
# Once every hour
- cron: '*/60 * * * *'
env:
HOMEBREW_FORCE_HOMEBREW_ON_LINUX: 1
jobs:
autopublish:
if: github.repository == 'Homebrew/homebrew-core'
runs-on: ubuntu-latest
steps:
- name: Set up Homebrew
... | {
"pile_set_name": "Github"
} |
/**
* External dependencies
*/
import { __, sprintf } from '@wordpress/i18n';
import { Button, Icon } from '@wordpress/components';
import { Component, Fragment } from '@wordpress/element';
import { findIndex } from 'lodash';
import PropTypes from 'prop-types';
/**
* Internal dependencies
*/
import Tag from '../ta... | {
"pile_set_name": "Github"
} |
@CHARSET "ISO-8859-1";
table {
border-width: 1px;
border-style: solid;
border-color: #000000;
border-collapse: collapse;
width: 94%;
margin: 10px 3%;
}
DIV.title {
font-size: 30px;
font-weight: bold;
text-align: center
}
DIV.subtitle {
font-size: large;
text-align: center
}
DIV.contact {
margin:30px 3%;... | {
"pile_set_name": "Github"
} |
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
/*
* Copyright (c) 2016 Philip Chimento
*
* 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, includin... | {
"pile_set_name": "Github"
} |
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 ... | {
"pile_set_name": "Github"
} |
import { MultiArgument, ArgumentStore, Argument } from 'klasa';
export default class CoreMultiArgument extends MultiArgument {
public constructor(store: ArgumentStore, directory: string, file: readonly string[]) {
super(store, directory, file, { aliases: ['...role'] });
}
public get base(): Argument {
return ... | {
"pile_set_name": "Github"
} |
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller as BaseController;
use App\Models\Developer;
use App\Models\Payment;
use App\Models\StatisticalReportsAdmin;
use App\Models\User;
use App\Models\Withdraw;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
class DashboardCon... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -fsyntax-only -fshort-wchar -verify %s
void f() {
(void)L"\U00010000"; // unicode escape produces UTF-16 sequence, so no warning
(void)L'\U00010000'; // expected-error {{character too large for enclosing character literal type}}
(void)L'ab'; // expected-warning {{extraneous characters in ch... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class AndrewHoefling : IAmAMicrosoftMVP
{
public string FirstName => "Andrew";
public string LastName => "Hoeflin... | {
"pile_set_name": "Github"
} |
{
"extends": "tslint:recommended",
"rulesDirectory": [
"codelyzer"
],
"rules": {
"align": {
"options": [
"parameters",
"statements"
]
},
"array-type": false,
"arrow-return-shorthand": true,
"curly": true,
"deprecation": {
"severity": "warning"
},... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2009 Mike Cumings
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | {
"pile_set_name": "Github"
} |
"use strict";
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const { cloningSteps, domSymbolTree } = require("../helpers/internal-constants");
const { clone } = require("../node");
class HTMLTemplateElementImpl extends HTMLElementImpl {
constructor(args, privateData) {
super(args, privat... | {
"pile_set_name": "Github"
} |
// gameswf_video_impl.h -- Vitaly Alexeev <tishka92@yahoo.com> 2007
// This source code has been donated to the Public Domain. Do
// whatever you want with it.
#ifndef GAMESWF_VIDEO_H
#define GAMESWF_VIDEO_H
#include "gameswf_impl.h"
#include "as_netstream.h"
namespace gameswf
{
struct video_stream... | {
"pile_set_name": "Github"
} |
With the dark cloud of high raw material costs now clearing, large U.S. newspapers companies are expected to report good third-quarter earnings despite weak growth in advertising.
"I keep hearing good news out of these guys, and they're all smiling about newsprint," said Prudential Securities newspaper industry analyst... | {
"pile_set_name": "Github"
} |
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2019 F4EXB //
// written by Edouard Griffiths //
// ... | {
"pile_set_name": "Github"
} |
package Slim::Plugin::YALP::Plugin;
# WMA metadata parser for YALP radio
# /tilive1.alice.cdn.interbusiness.it/
use strict;
use Slim::Formats::RemoteMetadata;
use Slim::Utils::Log;
my $log = logger('formats.metadata');
use constant IMAGE_PREFIX => 'http://images.rossoalice.alice.it/musicbox/';
sub initPlugin {
S... | {
"pile_set_name": "Github"
} |
### Are you submitting a **bug report** or a **feature request**?
### What is the current behavior?
<!-- If this is a bug, please include steps to reproduce. -->
### What is the expected behavior?
### What's your environment?
<!-- Include Squidwarc version and OS affected, etc. -->
### Other information
<!-- I... | {
"pile_set_name": "Github"
} |
/**
*
* Copyright (c) 2014, the Railo Company Ltd. All rights reserved.
*
* This 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.1 of the License, or (at your option) ... | {
"pile_set_name": "Github"
} |
/***************************************************************************//**
* @file ad9172/src/parameters.h
* @brief Parameters Definitions.
* @author Cristian Pop (cristian.pop@analog.com)
********************************************************************************
* Copyright 2019(c) Analog Devi... | {
"pile_set_name": "Github"
} |
; RUN: llc < %s -march=x86 -mcpu=corei7 | FileCheck %s
define <2 x i64> @shl1(<4 x i32> %r, <4 x i32> %a) nounwind readnone ssp {
entry:
; CHECK-NOT: shll
; CHECK: pslld
; CHECK: paddd
; CHECK: cvttps2dq
; CHECK: pmulld
%shl = shl <4 x i32> %r, %a ; <<4 x i32>> [#uses=1]
%tmp2 = bitcast <4 x i... | {
"pile_set_name": "Github"
} |
/**
* @file /magma/core/encodings/qp.c
*
* @brief Functions for encoding/decoding quoted printable data, as described by RFC 2045, section 6.7.
* @note This function operates on standard 8-bit characters, transforming non-printable characters into printable ones.
* It is used as a MIME content encoding, and wr... | {
"pile_set_name": "Github"
} |
'use strict';
/*
* An AngularJS Localization Service
*
* Written by Jim Lavin
* http://codingsmackdown.tv
*
*/
angular.module('localization', [])
// localization service responsible for retrieving resource files from the server and
// managing the translation dictionary
.provider('localize', functio... | {
"pile_set_name": "Github"
} |
# crypto-browserify
A (partial) port of `crypto` to the browser.
[](https://travis-ci.org/dominictarr/crypto-browserify)
[](http://ci.testling.com/domini... | {
"pile_set_name": "Github"
} |
// ***************************************************************************
// *
// * Copyright (C) 2010 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File:<path>/common/main/sr_ME.xml
// *
// **************... | {
"pile_set_name": "Github"
} |
#region Copyright (C) 2005-2011 Team MediaPortal
// Copyright (C) 2005-2011 Team MediaPortal
// http://www.team-mediaportal.com
//
// MediaPortal 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, eith... | {
"pile_set_name": "Github"
} |
// Copyright 2016 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 openbsd
// +build 386 amd64 arm
package unix
import (
"errors"
"fmt"
"strconv"
"syscall"
"unsafe"
)
// Pledge implements the pledge syscall.
/... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ja_JP" version="2.1">
<context>
<name>KWalletPlugin</name>
<message>
<location filename="../kwalletpasswordbackend.cpp" line="53"/>
<source>KWallet</source>
<translation>KWallet</translation>
</message>
</context>
</TS> | {
"pile_set_name": "Github"
} |
/******************************************************************************************************
* (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
* under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
* LICEN... | {
"pile_set_name": "Github"
} |
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or a... | {
"pile_set_name": "Github"
} |
<?php
namespace Guzzle\Http\Message\Header;
/**
* Interface for creating headers
*/
interface HeaderFactoryInterface
{
/**
* Create a header from a header name and a single value
*
* @param string $header Name of the header to create
* @param string $value Value to set on the header
*
... | {
"pile_set_name": "Github"
} |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: >
MemberExpression calls ToObject(MemberExpression) and
ToString(Expression). CallExpression calls ToObject(CallExpression) and
ToString(Expression)
es5id: 11.2.1_... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.