text stringlengths 2 99.9k | meta dict |
|---|---|
#include "csvserializer.h"
#include <QStringList>
#include <QList>
#include <QDebug>
#include <QTime>
template <class C>
bool isCsvSeparator(QList<C>& ahead, const C& theChar, const QStringList& separators)
{
for (const QString& sep : separators)
if (isCsvSeparator(ahead, theChar, sep))
return ... | {
"pile_set_name": "Github"
} |
{
"_from": "escape-html@^1.0.3",
"_id": "escape-html@1.0.3",
"_inBundle": false,
"_integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
"_location": "/escape-html",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "escape-html@^1.0.3",
"name": "escape-html",
... | {
"pile_set_name": "Github"
} |
/** @page open_default_stream Opening a Stream Using Defaults
@ingroup tutorial
The next step is to open a stream, which is similar to opening a file. You can specify whether you want audio input and/or output, how many channels, the data format, sample rate, etc. Opening a ''default'' stream means opening the default... | {
"pile_set_name": "Github"
} |
#define PCMCIA 1
#include "fdomain.c"
| {
"pile_set_name": "Github"
} |
# Image: introlab3it/rtabmap:android-deps
FROM ubuntu:18.04
# Install build dependencies
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
RUN apt-get update && apt-get install -y \
git unzip wget ant cmake \
g++ lib32stdc++6 lib32z1 \
software-properties-common \
free... | {
"pile_set_name": "Github"
} |
(function() {
Sheet.Cell.prototype.addDependency = function(cell) {
if (cell === undefined || cell === null) return;
if (cell.type !== Sheet.Cell) {
throw new Error('Wrong Type');
}
if (this.dependencies.indexOf(cell) < 0 && this !== cell) {
cell.trace = cell.trace || [];
cell.trace.push(this);
... | {
"pile_set_name": "Github"
} |
import { Go } from './wasm-exec-go'
export async function wasmLoader(wasmUrl) {
const go = new Go() // Defined in wasm_exec.js
var wasm
if ('instantiateStreaming' in WebAssembly) {
WebAssembly.instantiateStreaming(fetch(wasmUrl), go.importObject).then(function (obj) {
wasm = obj.instance
go.run(... | {
"pile_set_name": "Github"
} |
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../shared/file/size', __FILE__)
describe "File.size?" do
it_behaves_like :file_size, :size?, File
end
describe "File.size?" do
it_behaves_like :file_size_to_io, :size?, File
end
describe "... | {
"pile_set_name": "Github"
} |
<?php
/**
* Template Lite generate_debug_output template internal module
*
* Type: template
* Name: generate_debug_output
*/
function generate_compiler_debug_output(&$object)
{
$debug_output = "\$assigned_vars = \$this->_vars;\n";
$debug_output .= "ksort(\$assigned_vars);\n";
$debug_output .= "if (@... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Stdlib\Cookie;
/**
* CookieReaderInterface provides the ability to read cookies sent in a request.
* @api
*/
interface CookieReaderInterface
{
/**
* Retrieve a value from a c... | {
"pile_set_name": "Github"
} |
<proxy xmlns="http://ws.apache.org/ns/synapse" name="iterateWithNullNamespaceForExpressionTestProxy" transports="http"
startOnLoad="true" trace="disable">
<target>
<inSequence>
<iterate id="iterator" expression="//m1:getQuote/m1:request"
preservePayload="true" attachP... | {
"pile_set_name": "Github"
} |
/*
* Knowage, Open Source Business Intelligence suite
* Copyright (C) 2016 Engineering Ingegneria Informatica S.p.A.
*
* Knowage 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, either version 3 o... | {
"pile_set_name": "Github"
} |
/* Copyright (c) 2017 The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope ... | {
"pile_set_name": "Github"
} |
{
"accessors" : [
{
"bufferView" : 0,
"componentType" : 5123,
"count" : 612,
"max" : [
335
],
"min" : [
0
],
"type" : "SCALAR"
},
{
"bufferView" :... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 2afedbe6e25844649ae7ac632544ef63
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/*
* @Author: ecitlm
* @Date: 2017-11-30 21:16:16
* @Last Modified by: ecitlm
* @Last Modified time: 2018-04-14 23:16:11
*/
const MYSQL = require('mysql') // 调用MySQL模块
// 创建一个connection
const connection = MYSQL.createConnection({
host: '127.0.0.1', // 主机
user: 'root', // MySQL认证用户名
password: '',
port: '3... | {
"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.Collections.Generic;
namespace Microsoft.VisualStudio.LanguageServices.Implementation.RQName.Nodes
{
internal class RQProperty : RQPropertyB... | {
"pile_set_name": "Github"
} |
package main
import (
"fmt"
"runtime"
"time"
)
func main() {
go func() {
for {
time.Sleep(time.Microsecond)
go func() {
n := 0
for i := 0; i < 100000000; i++ {
n += i
}
}()
}
}()
i := 0
t := time.Now()
for {
time.Sleep(100 * time.Millisecond)
i++
n := time.Now()
fmt.Print... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; width:100%%; height:100%%; background-color:#000; }
html { width:100%%; height:100%%; background-color:#000; }
.container iframe, .container object, .container embed { position: absolute;top: 0; left: 0; width: 100%% !important; height:... | {
"pile_set_name": "Github"
} |
# Test Folder
## Sub Folder 1
### F1 Project 1
Note line 1.
Note line 2.
- parent task F1 P1 1
- sub task with a colon:
- task F1 P1 2
### F1 Project 2
- task F1 P2 1
Note line 1.
Note line 2.
- task F1 P2 2
## Sub Folder 2
### F2 Project 1
- task F2 P1 1
- task F2 P1 2
- I'm done! done:**2... | {
"pile_set_name": "Github"
} |
/////////////////////////////////////////////////////////////////////////
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2014 Stanislav Shwartsman
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
//
// This library is free software;... | {
"pile_set_name": "Github"
} |
/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
.pace .pace-progress {
background: #eb7a55;
po... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MOBA_CSharp_Server.Library.DataReader;
using MOBA_CSharp_Server.Library.ECS;
namespace MOBA_CSharp_Server.Game
{
public class Sight : Effect
{
readonly float Duration;
publ... | {
"pile_set_name": "Github"
} |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data-major_survey.R
\docType{data}
\name{major_survey}
\alias{major_survey}
\alias{major.survey}
\title{Survey of Duke students and the area of their major}
\format{
A data frame with 218 observations on the following 2 variables.
\describe{ ... | {
"pile_set_name": "Github"
} |
/*
* wrg.c
*
* Copyright (C) 2005 Mike Baker
* Copyright (C) 2008 Felix Fietkau <nbd@nbd.name>
* Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
* Copyright (C) 2016 Stijn Tintel <stijn@linux-ipv6.be>
* Copyright (C) 2017 George Hopkins <george-hopkins@null.net>
*
* This program is free software; you ... | {
"pile_set_name": "Github"
} |
# Strfmt [](https://travis-ci.org/go-openapi/strfmt) [](https://codecov.io/gh/go-openapi/strfmt) [](https://sl... | {
"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"
} |
setlocal commentstring=#\ %s
setlocal comments=:#
| {
"pile_set_name": "Github"
} |
""
DialogScript DialogScript
CreateScript CreateScript
TypePropertiesOptions TypePropertiesOptions
Help Help
Tools.shelf Tools.shelf
InternalFileOptions InternalFileOptions
Contents.gz Contents.gz
IconSVG IconSVG
OnCreated OnCreated
ExtraFileOptions ExtraFileOptions
mops__TD__tools__05.svg mops_TD_tools_05.svg
| {
"pile_set_name": "Github"
} |
using System;
using NHapi.Base;
using NHapi.Base.Parser;
using NHapi.Base.Model;
using NHapi.Model.V251.Datatype;
using NHapi.Base.Log;
namespace NHapi.Model.V251.Segment{
///<summary>
/// Represents an HL7 GOL message segment.
/// This segment has the following fields:<ol>
///<li>GOL-1: Action Code (ID)... | {
"pile_set_name": "Github"
} |
// Copyright 2018 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 aix
// +build ppc
package unix
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64
//sysnb Setrlimit(resource int, rlim *Rlimit)... | {
"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"
} |
<#--
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 not use this... | {
"pile_set_name": "Github"
} |
#!/bin/bash
set -eu
DB=primarykey.sqlite
rm -f $DB
(
echo "CREATE TABLE words (word varchar NOT NULL PRIMARY KEY);"
echo "BEGIN;"
for w in $( cat words.txt ); do
echo "INSERT INTO words VALUES (\"$w\");"
done
echo "COMMIT;"
) | sqlite3 --batch $DB
| {
"pile_set_name": "Github"
} |
<!--
---
name: Sixfab XBee Shield V2
class: board
type: com
formfactor: pHAT
manufacturer: Sixfab
description: Use XBee modules with the Raspberry Pi
url: http://sixfab.com/product/xbee-shield/
buy: http://sixfab.com/product/xbee-shield/
image: 'sixfab-xbee-shield-v2.png'
pincount: 40
eeprom: no
power:
'2':
ground:
... | {
"pile_set_name": "Github"
} |
# aws_db_subnet_group
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements
No requirements.
## Providers
| Name | Version |
|------|---------|
| aws | n/a |
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| create | Whether to create ... | {
"pile_set_name": "Github"
} |
/*******************************************************
* Copyright (C) 2015 Haotian Wu
*
* This file is the solution to the question:
* https://www.hackerrank.com/challenges/encryption
*
* Redistribution and use in source and binary forms are permitted.
*******************************************************/
... | {
"pile_set_name": "Github"
} |
/*
* This file is part of hipSYCL, a SYCL implementation based on CUDA/HIP
*
* Copyright (c) 2019 Aksel Alpay
* 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 sou... | {
"pile_set_name": "Github"
} |
.class final Lcom/tencent/mm/plugin/freewifi/model/a$1;
.super Ljava/lang/Object;
.source "SourceFile"
# interfaces
.implements Lcom/tencent/mm/t/d;
# annotations
.annotation system Ldalvik/annotation/EnclosingMethod;
value = Lcom/tencent/mm/plugin/freewifi/model/a;->aaC()V
.end annotation
.annotation system Ld... | {
"pile_set_name": "Github"
} |
c2bc09ae256c6e95cdc2bf4e508dd94ef2168296
| {
"pile_set_name": "Github"
} |
package v02
import (
"encoding/json"
"net/url"
"reflect"
"strings"
"time"
)
// Event implements the the CloudEvents specification version 0.2
// https://github.com/cloudevents/spec/blob/v0.2/spec.md
type Event struct {
// SpecVersion is a mandatory property
// https://github.com/cloudevents/spec/blob/v0.2/spec... | {
"pile_set_name": "Github"
} |
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: Yann Mérignac <yann.merignac@laposte.net>\n"
"Language-Team: Vasseur Gilles <gillesvasseur58@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"L... | {
"pile_set_name": "Github"
} |
[Infinite Health]
10A483A4 00000190
[Max Health]
10A483A6 00000190
[Infinite Stamina]
20A4876A 00000074
20A4876B 00000074
[Infinite Suppressor]
2091F2B8 0000001E
2091F278 0000001E
[Infinite Battery]
20A4876E 0000002C
[Have/Infinite Fork]
1091C8B8 00000001
[Have/Infinite Cig Spray]
1091C8F8 00... | {
"pile_set_name": "Github"
} |
{
"name": "@curi-example/data-loading-react",
"private": true,
"description": "Prefetch data before navigating",
"main": "index.js",
"keywords": [
"curi",
"prefetch",
"data",
"loading"
],
"author": "Paul Sherman",
"license": "MIT",
"dependencies": {
"@curi/react-dom": "2.0.3",
... | {
"pile_set_name": "Github"
} |
// Code generated by smithy-go-codegen DO NOT EDIT.
package health
import (
"context"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/retry"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
smithy "github.com/awslabs/smithy-go"
"github.com/awslabs/smithy-go/middleware"
... | {
"pile_set_name": "Github"
} |
import makeColourObject from './convert'
import convert from '../helpers/convert-to-type'
export default function shade (shift, colourRef) {
var colour = convert('hsv', colourRef)
colour.v += shift
if (colour.v < 0) {
colour.v = 0
} else if (colour.v > 100) {
colour.v = 100
}
return makeColourObj... | {
"pile_set_name": "Github"
} |
// Copyright 2013 The go-github 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 github
import (
"encoding/json"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestRepositoriesService_List_authenticatedUser(t *testing.T... | {
"pile_set_name": "Github"
} |
10 predictions
NOM: 0.0 0.0 1.0 0.9999995409941143 4.5900588572256467E-7
NOM: 1.0 1.0 1.0 0.1699828189660011 0.8300171810339988
NOM: 1.0 1.0 1.0 6.768172301029505E-12 0.9999999999932319
NOM: 0.0 0.0 1.0 0.9999997310642107 2.68935789348773E-7
NOM: 1.0 1.0 1.0 0.1699828189660011 0.8300171810339988
NOM: 0.0 0.0 1.0 0.7074... | {
"pile_set_name": "Github"
} |
#pragma once
#include <eosio/testing/tester.hpp>
namespace eosio { namespace testing {
struct contracts {
static std::vector<uint8_t> system_wasm() { return read_wasm("${CMAKE_BINARY_DIR}/../eosio.system/eosio.system.wasm"); }
static std::string system_wast() { return read_wast("${CMAKE_BINARY_DIR}/../... | {
"pile_set_name": "Github"
} |
echo T.getline: test getline function
awk=${awk-../a.out}
who >foo1
cat foo1 | $awk '
BEGIN {
while (getline)
print
exit
}
' >foo
cmp -s foo1 foo || echo 'BAD: T.getline (bare getline)'
who >foo1
cat foo1 | $awk '
BEGIN {
while (getline xxx)
print xxx
exit
}
' >foo
cmp -s foo1 foo || echo 'BAD: T.getline (ge... | {
"pile_set_name": "Github"
} |
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
#pragma once
class SoundFi... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
"""
pygments.styles.fruity
~~~~~~~~~~~~~~~~~~~~~~
pygments version of my "fruity" vim theme.
:copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from pygments.style import Style
from pygments.token import Token, Co... | {
"pile_set_name": "Github"
} |
RTOS Task Review
=======================
Task name: KePFg8-arm-trampoline
Version reviewed: d3bfd0a5864cb6f621c69561f55611eb2726b685
Reviewer: stg
Date: 2013-01-21
Conclusion: Accepted
| {
"pile_set_name": "Github"
} |
package com.github.kfcfans.powerjob.worker.core.tracker.task;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
/**
* 持有 TaskTracker 对象
*
* @author tjq
* @since 2020/3/24
*/
public class TaskTrackerPool... | {
"pile_set_name": "Github"
} |
# ST Microelectronics STM32 all MCU lines
# Copyright (c) 2017, I-SENSE group of ICCS
# SPDX-License-Identifier: Apache-2.0
# Here are set all the Kconfig symbols common to the whole STM32 family
if SOC_FAMILY_STM32
config CORTEX_M_SYSTICK
bool
default n if STM32_LPTIM_TIMER
default y if !STM32_LPTIM_TIMER
conf... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "NPIShareWeChatF@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
} | {
"pile_set_name": "Github"
} |
/**
* Random Password
* @description Base64 随机密码串
*
* @param {Number} size 密码长度
* @return {String}
*
*/
export const randomPassword = (size) => {
const seed = new Array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','P','Q','R','S','T','U','V','W','X','Y','Z', 'a','b','c','d','e','f','g','h','i','j... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2000-2020 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace MVCTaxonomyPickerWeb
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource... | {
"pile_set_name": "Github"
} |
describe("module:ng.directive:ngChecked", function() {
var rootEl;
beforeEach(function() {
rootEl = browser.rootEl;
browser.get("./examples/example-example7/index-jquery.html");
});
it('should check both checkBoxes', function() {
expect(element(by.id('checkSlave')).getAttribute('checked')).toBeFa... | {
"pile_set_name": "Github"
} |
//
// AnonymousObserver.swift
// Rx
//
// Created by Krunoslav Zaher on 2/8/15.
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//
import Foundation
class AnonymousObserver<ElementType> : ObserverBase<ElementType> {
typealias Element = ElementType
typealias EventHandler = Event<Element> -> ... | {
"pile_set_name": "Github"
} |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011.
# Tran Van <vantxm@yahoo.co.uk>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: Django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-15 10:57+0200\n"
"PO-Revision-Date: 2012-0... | {
"pile_set_name": "Github"
} |
// underlying_type.hpp ---------------------------------------------------------//
// Copyright Beman Dawes, 2009
// Copyright (C) 2011-2012 Vicente J. Botet Escriba
// Copyright (C) 2012 Anthony Williams
// Copyright (C) 2014 Andrey Semashev
// Distributed under the Boost Software License, Version 1.0.... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"), require("../javascript/javascript"), require("../css/css"),... | {
"pile_set_name": "Github"
} |
var Minimatch = require("../minimatch.js").Minimatch
var tap = require("tap")
tap.test("cache test", function (t) {
var mm1 = new Minimatch("a?b")
var mm2 = new Minimatch("a?b")
t.equal(mm1, mm2, "should get the same object")
// the lru should drop it after 100 entries
for (var i = 0; i < 100; i ++) {
new... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available... | {
"pile_set_name": "Github"
} |
[TRAINER FORMAT]
Name|Stewart
TrainerClass|Psychic
Money|0
IntroMessage|...
OutroMessage|I focused my mind in silence...
DefeatMessage|I focused my mind in silence...
TextureID|battletower\39
Region|Johto
IniMusic|Johto_trainer_intro
DefeatMusic|trainer_defeat
BattleMusic|johto_trainer
Pokemon1|<system.rand... | {
"pile_set_name": "Github"
} |
{
"Press Resources": "",
"We love working with press—both within the Linux world and the greater tech and culture beats—to share our story and what we are working on.": "",
"Join Our Press List": "",
"Be the first to know about new releases and significant developments. We send early access to press rel... | {
"pile_set_name": "Github"
} |
{
"name": "@datafire/azure_servicebus",
"version": "4.0.0",
"main": "index.js",
"description": "DataFire integration for ServiceBusManagementClient",
"repository": {
"type": "git",
"url": "git+https://github.com/DataFire/integrations.git"
},
"author": "DataFire",
"license": "MIT",
"bugs": {
... | {
"pile_set_name": "Github"
} |
package config
import (
"net"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetTrafficEncapModeFromStr(t *testing.T) {
tests := []struct {
name string
mode string
expBool bool
expMode TrafficEncapModeType
}{
{"encap-mode-valid", "enCap", true, 0},
{"no-encap-mode-valid", "Noencap",... | {
"pile_set_name": "Github"
} |
[package]
name = "completion"
version = "0.1.0"
authors = ["Nick Cameron <ncameron@mozilla.com>"]
[dependencies]
| {
"pile_set_name": "Github"
} |
<refentry xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="5.0" xml:id="filename-pre... | {
"pile_set_name": "Github"
} |
[](https://drone.our.buildo.io/buildo/react-cookie-banner) 
# React Cookie Banner
A cookie banner for React that can be dismissed with a simple scroll. Because [fuck th... | {
"pile_set_name": "Github"
} |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Local File Inclusion Test... | {
"pile_set_name": "Github"
} |
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web serv... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Regression test for http://dartbug.com/11637
class _C {}
class _E {
throwIt() => throw "it";
}
cl... | {
"pile_set_name": "Github"
} |
package org.dddjava.jig.domain.model.jigmodel.lowmodel.declaration.field;
/**
* フィールドの名称
*/
public class FieldIdentifier {
String value;
public FieldIdentifier(String value) {
this.value = value;
}
public String text() {
return value;
}
}
| {
"pile_set_name": "Github"
} |
/*
Package to provides helpers to ease working with pointer values of marshalled structures.
*/
package to
// Copyright 2017 Microsoft Corporation
//
// 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... | {
"pile_set_name": "Github"
} |
/*
* searchtools.js_t
* ~~~~~~~~~~~~~~~~
*
* Sphinx JavaScript utilties for the full-text search.
*
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
/**
* Porter Stemmer
*/
var Stemmer = function() {
var step2list = {
ational: 'ate',
... | {
"pile_set_name": "Github"
} |
The HDR images in this directory are provided from sIBL Archive under the
Creative Commons license (CC BY-NC-SA 3.0 US). Please see the page below for
further details.
http://www.hdrlabs.com/sibl/archive.html
| {
"pile_set_name": "Github"
} |
/*! Special comment */@charset "UTF-8";@import"foo.css";.bar{display:block}.qux{display:block}
| {
"pile_set_name": "Github"
} |
RSpec.describe Hanami::Controller::Configuration do
before do
module CustomAction
end
end
let(:configuration) { Hanami::Controller::Configuration.new }
after do
Object.send(:remove_const, :CustomAction)
end
describe 'handle exceptions' do
it 'returns true by default' do
expect(confi... | {
"pile_set_name": "Github"
} |
from rl_coach.agents.td3_agent import TD3AgentParameters
from rl_coach.architectures.layers import Dense
from rl_coach.base_parameters import VisualizationParameters, PresetValidationParameters, EmbedderScheme
from rl_coach.core_types import EnvironmentEpisodes, EnvironmentSteps
from rl_coach.environments.environment i... | {
"pile_set_name": "Github"
} |
<?php
return [
'recurring' => 'განმეორებადი',
'every' => 'ყოველი',
'period' => 'პერიოდი',
'times' => 'დრო',
'daily' => 'ყოველდღე',
'weekly' => 'ყოველკვირა',
'monthly' => 'ყოველთვე',
... | {
"pile_set_name": "Github"
} |
//
// BluetoothKit
//
// Copyright (c) 2015 Rasmus Taulborg Hummelmose - https://github.com/rasmusth
//
// 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"
} |
reviewers:
- lavalamp
- smarterclayton
- wojtek-t
- deads2k
- derekwaynecarr
- caesarxuchao
- vishh
- mikedanese
- liggitt
- nikhiljindal
- erictune
- pmorie
- dchen1107
- saad-ali
- luxas
- yifan-gu
- eparis
- mwielgus
- timothysc
- jsafrane
- dims
- krousey
- a-robinson
- aveshagarwal
- resouer
- cjcullen
| {
"pile_set_name": "Github"
} |
console.log('b');
| {
"pile_set_name": "Github"
} |
context("Checking car")
test_that("car ...",{
})
| {
"pile_set_name": "Github"
} |
/*
Copyright (C) 2007 Thomas Jahns <Thomas.Jahns@gmx.net>
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AU... | {
"pile_set_name": "Github"
} |
/**
* @license AngularJS v1.2.13
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular, undefined) {
'use strict';
/**
* @ngdoc overview
* @name angular.mock
* @description
*
* Namespace from 'angular-mocks.js' which contains testing related code.
*/
angular.mock = {}... | {
"pile_set_name": "Github"
} |
import _ from 'lodash-es';
import { KubernetesServiceHeadlessPrefix } from 'Kubernetes/models/service/models';
class KubernetesServiceHelper {
static generateHeadlessServiceName(name) {
return KubernetesServiceHeadlessPrefix + name;
}
static findApplicationBoundService(services, rawApp) {
return _.find(... | {
"pile_set_name": "Github"
} |
[00:00] [music]
[00:03] Wes: Now we're going to learn about destructuring. Along with arrow functions, let, and const, it's probably something you're going to be using every single day. I find them to be extremely useful in the code that I'm writing.
[00:11] What does destructuring mean? It's a JavaScript express... | {
"pile_set_name": "Github"
} |
from __future__ import unicode_literals
| {
"pile_set_name": "Github"
} |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/mozilla-1.9.1-win32-xulrunner/build/dom/public/idl/events/nsIDOMKeyEvent.idl
*/
#ifndef __gen_nsIDOMKeyEvent_h__
#define __gen_nsIDOMKeyEvent_h__
#ifndef __gen_nsIDOMUIEvent_h__
#include "nsIDOMUIEvent.h"
#endif
/* For IDL files that ... | {
"pile_set_name": "Github"
} |
# SPDX-License-Identifier: GPL-2.0+
# Copyright (c) 2012 The Chromium OS Authors.
import ConfigParser
import os
import StringIO
def Setup(fname=''):
"""Set up the buildman settings module by reading config files
Args:
config_fname: Config filename to read ('' for default)
"""
global settin... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2016 Red Hat, Inc.
*
* Red Hat licenses this file to you 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... | {
"pile_set_name": "Github"
} |
#ifndef __SOCKETS_H
#define __SOCKETS_H
#include <windows.h>
#include <winsock.h>
#include "buffer.h"
class cSocket
{
private:
SOCKET Socket;
public:
cSocket(void);
cSocket(SOCKET InitSocket);
~cSocket(void);
const SOCKET GetSocket(void) { return Socket; }
void Free(void);
// straight winsock... | {
"pile_set_name": "Github"
} |
; RUN: opt < %s -pgo-instr-gen -S | FileCheck %s --check-prefix=GEN
; RUN: opt < %s -passes=pgo-instr-gen -S | FileCheck %s --check-prefix=GEN
; RUN: llvm-profdata merge %S/Inputs/criticaledge.proftext -o %t.profdata
; RUN: opt < %s -pgo-instr-use -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
... | {
"pile_set_name": "Github"
} |
# Latvian translations for gettext package.
# Copyright (C) 2013 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gettext package.
# Kouhei Sutou <kou@clear-code.com>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: gettext 3.0.1\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 20... | {
"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.
//
@class NSArray, PLLibraryServicesManager;
@protocol PLLibraryServicesDelegate
- (void)handleCompletedAllOperationsForLibraryState:(lon... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.