text stringlengths 2 99k | meta dict |
|---|---|
/*
* SonarQube JavaScript Plugin
* Copyright (C) 2012-2020 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program 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 3... | {
"pile_set_name": "Github"
} |
import { shallow } from 'enzyme';
import * as React from 'react';
import PasswordInput from './PasswordInput';
describe('PasswordInput', () => {
it('doesnt show password by default', () => {
const component = shallow(<PasswordInput/>);
});
});
| {
"pile_set_name": "Github"
} |
// THIS FILE IS GENERATED! DO NOT EDIT IT MANUALLY! ALL CHANGES TO IT WILL BE OVERWRITTEN ON EACH BUILD
package godot
import godot.internal.utils.invokeConstructor
import kotlinx.cinterop.COpaquePointer
open class VisualShaderNodeFaceForward : VisualShaderNode() {
override fun __new(): COpaquePointer = invokeConstr... | {
"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"
} |
// (C) Copyright John Maddock 2006.
// Use, modification and distribution are subject to 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 <boost/math/concepts/real_concept.hpp>
#include <boost/test/test_exec_monito... | {
"pile_set_name": "Github"
} |
package leafnodes
import (
"github.com/onsi/ginkgo/internal/failer"
"github.com/onsi/ginkgo/types"
"time"
)
type SuiteNode interface {
Run(parallelNode int, parallelTotal int, syncHost string) bool
Passed() bool
Summary() *types.SetupSummary
}
type simpleSuiteNode struct {
runner *runner
outcome types.SpecS... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2006 VMware, Inc.
* All Rights Reserved.
*
* 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, m... | {
"pile_set_name": "Github"
} |
<div id="main_column" class="XXLarge-11 xlarge-10 wide-9 medium-8 columns" style="padding-top: 1REM; height: 4313px;" data-equalizer-watch="">
<!-- Hand column content - how used to remove left column and center glad On Some pages -->
<h1>Nutritional Score - Color Notes - France</h1>
<h2>A system of grades from A ... | {
"pile_set_name": "Github"
} |
This is a fake file, which should be backed-up when the regtest starts
| {
"pile_set_name": "Github"
} |
<?php
namespace Illuminate\Queue\Connectors;
interface ConnectorInterface
{
/**
* Establish a queue connection.
*
* @param array $config
* @return \Illuminate\Contracts\Queue\Queue
*/
public function connect(array $config);
}
| {
"pile_set_name": "Github"
} |
/*! jQuery UI - v1.11.2 - 2014-10-16
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To ... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: d990b7a2916ce59408d539a7632231f3
timeCreated: 1523644777
licenseType: Free
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
using UnityEngine;
using UnityEngine.EventSystems;
public class QuickParameterTip : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
[SerializeField]
private RectTransform tipTarget;
[SerializeField]
private string tipEntry;
[SerializeField]
private ToolTipSize tipSize;
[Serializ... | {
"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"
} |
require 'spec_helper'
if Rails.version.start_with? "4."
describe "turbolinks spec", type: :feature, js: true do
it 'should invoke the API for each flash message' do
visit '/test/turbolinks'
click_link 'This is a turbolink'
expect(page).to have_content 'Turbolink content'
expect(evaluate_s... | {
"pile_set_name": "Github"
} |
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# Shared lit script for each tests. Run bash commands that run tests with make.
# RUN: KEEP_FILES=%keep FLAGS=%flags T... | {
"pile_set_name": "Github"
} |
<?php
/* Prototype : int mb_ereg(string $pattern, string $string [, array $registers])
* Description: Regular expression match for multibyte string
* Source code: ext/mbstring/php_mbregex.c
*/
/*
* Testing the following regular expression features match correctly:
* 1. definite quantifiers
* 2. Alternation
* ... | {
"pile_set_name": "Github"
} |
dir/é2
| {
"pile_set_name": "Github"
} |
### 313.超级丑数
#### 1.题目描述
<p>编写一段程序来查找第 <code><em>n</em></code> 个超级丑数。</p><br/><p>超级丑数是指其所有质因数都是长度为 <code>k</code> 的质数列表 <code>primes</code> 中的正整数。</p><br/><p><strong>示例:</strong></p><br/><pre><strong>输入:</strong> n = 12, <code>primes</code> = <code>[2,7,13,19]</code><br/><strong>输出:</strong> 32 <b... | {
"pile_set_name": "Github"
} |
## How-To Guides
### Maximize Reusability with Nested Elements
As you build out your elements, you may start to feel like abstracting some common code.
Well, it only takes two steps:
1. Create a partial Element template, but without the usual `.reactive-element`
HTML element inside. You can use all the usual Elemen... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.7) on Tue Jul 14 14:13:05 PDT 2020 -->
<title>ParquetValueWriters.StructWriter</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2020-07-14">
<link rel="stylesheet" type="t... | {
"pile_set_name": "Github"
} |
import { captureDocument, screenshotPathFromUrl, unslashit } from '../../helpers';
describe( 'VR Testing: lucca - welcoming', () => {
let pages = [];
it( 'Loads frontpage', () => {
let url = "https://wpnux.godaddy.com/v2/?template=lucca&style=welcoming&lang=en_US".replace(
unslashit( 'http... | {
"pile_set_name": "Github"
} |
#include <bdn/android/ScrollViewCore.h>
namespace bdn::ui::detail
{
CORE_REGISTER(ScrollView, bdn::ui::android::ScrollViewCore, ScrollView)
}
namespace bdn::ui::android
{
ScrollViewCore::ScrollViewCore(const std::shared_ptr<ViewCoreFactory> &viewCoreFactory)
: ScrollViewCore(viewCoreFactory,
... | {
"pile_set_name": "Github"
} |
PREHOOK: query: create table table1_n10 (id int, val string, val1 string, dimid int)
PREHOOK: type: CREATETABLE
PREHOOK: Output: database:default
PREHOOK: Output: default@table1_n10
POSTHOOK: query: create table table1_n10 (id int, val string, val1 string, dimid int)
POSTHOOK: type: CREATETABLE
POSTHOOK: Output: databa... | {
"pile_set_name": "Github"
} |
# neutron-rootwrap command filters for nodes on which neutron is
# expected to control network
#
# This file should be owned by (and only-writeable by) the root user
# format seems to be
# cmd-name: filter-name, raw-command, user, args
[Filters]
# neutron/agent/linux/iptables_firewall.py
# "ipset", "-A", ...
ipset:... | {
"pile_set_name": "Github"
} |
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * lunch
#
# Translators:
# Martin Trigaux <mat@odoo.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-10-02 11:26+0000\n"
"PO-Revision-Date: 2017... | {
"pile_set_name": "Github"
} |
table_create Tags TABLE_PAT_KEY ShortText
table_create Memos TABLE_HASH_KEY ShortText
column_create Memos tag COLUMN_SCALAR Tags
column_create Memos priority COLUMN_SCALAR Int64
load --table Memos
[
{"_key": "Groonga1", "tag": "Groonga", "priority": 10},
{"_key": "Groonga2", "tag": "Groonga", "priority": 20},
{"_key"... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace vendor\project;
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\Warning;
c... | {
"pile_set_name": "Github"
} |
; RUN: opt < %s -cost-model -analyze -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr8 | FileCheck %s
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
target triple = "powerpc64-unknown-linux-gnu"
define <4 x i32> @test1(<4 x i32> %arg) {... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation. All rights reserved.
-->
<configuration>
<appSettings>
</appSettings>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>
| {
"pile_set_name": "Github"
} |
// { dg-do compile }
// 2007-09-20 Benjamin Kosnik <bkoz@redhat.com>
// Copyright (C) 2007-2019 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as publish... | {
"pile_set_name": "Github"
} |
// Ceres Solver - A fast non-linear least squares minimizer
// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
// http://code.google.com/p/ceres-solver/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
... | {
"pile_set_name": "Github"
} |
<%--
Copyright © 2002 Instituto Superior Técnico
This file is part of FenixEdu Academic.
FenixEdu Academic 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 3 of the Lice... | {
"pile_set_name": "Github"
} |
1.7.0
+++++
* Implemented the template system.
* Replaced warnings by watchers messages.
* Fixed freeze() with frozen objects.
* Fixed unfreeze() with unfrozen objects.
* Parametrized DefFacts via reset() kwargs.
1.6.0
+++++
* Improved overall performance.
1.5.0
+++++
* Added Python version 3.7 to tox.ini.
* Mon... | {
"pile_set_name": "Github"
} |
# Backdoor CTF : busybee-150
**Category:** Stego
**Points:** 150
**Solves:** 30
**Description:**
> A deadly virus is killing bees in Busybee's village Busybox, India. Unfortuantely, you have to go to the village to fight the infection. Get the flag virus out of the infected files.
>
> Village address: <http://hack.bc... | {
"pile_set_name": "Github"
} |
//
// UIViewTap.m
// Momento
//
// Created by Michael Waterfall on 04/11/2009.
// Copyright 2009 d3i. All rights reserved.
//
#import "MWTapDetectingView.h"
@implementation MWTapDetectingView
- (id)init {
if ((self = [super init])) {
self.userInteractionEnabled = YES;
}
return self;
}
- (id)initWithFrame:(... | {
"pile_set_name": "Github"
} |
.\" DO NOT MODIFY THIS FILE! It was generated by gdoc.
.TH "gnutls_x509_crt_get_activation_time" 3 "3.6.13" "gnutls" "gnutls"
.SH NAME
gnutls_x509_crt_get_activation_time \- API function
.SH SYNOPSIS
.B #include <gnutls/x509.h>
.sp
.BI "time_t gnutls_x509_crt_get_activation_time(gnutls_x509_crt_t " cert ");"
.SH ARGUM... | {
"pile_set_name": "Github"
} |
// waitable_timer.hpp --------------------------------------------------------------//
// Copyright 2013 Andrey Semashev
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
#ifndef BOOST_DETAIL_WINAPI_WAITABLE_TIMER_HPP
#define BOOST_DETAIL_WINAPI_WAITABLE_... | {
"pile_set_name": "Github"
} |
#data-detail {
top: 50px;
.modal-header {
padding-bottom: 0;
}
hr {
margin-top: 15px;
margin-bottom: 5px;
}
}
.data-index a, .data-name a, .detail-refresh a {
cursor: pointer;
}
.labels {
color: silver;
}
.data-force-break {
word-break: break-all;
}
#count {
float: right;
margin: 37px... | {
"pile_set_name": "Github"
} |
/*
* GPIOs on MPC512x/8349/8572/8610 and compatible
*
* Copyright (C) 2008 Peter Korsgaard <jacmet@sunsite.dk>
*
* This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any warranty of any
* kind, whether express or implied.
*/
#include <... | {
"pile_set_name": "Github"
} |
{
"fields": {
"fieldList": "Feltliste"
}
} | {
"pile_set_name": "Github"
} |
/****************************************************************************
*
* Copyright 2018 Samsung Electronics 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... | {
"pile_set_name": "Github"
} |
package gifmeta
var (
header = []byte("GIF")
extension = byte(0x21)
extensionToken = []byte{extension}
trailer = byte(0x3B)
imageDescriptor = byte(0x2C)
version87a = []byte("87a")
version89a = []byte("89a")
)
var (
discard = make([]byte, 2048)
)
| {
"pile_set_name": "Github"
} |
{
"VpcEndpoints": [
{
"CreationTimestamp": "2019-04-11T18:59:11+00:00",
"DnsEntries": [],
"Groups": [],
"NetworkInterfaceIds": [],
"PolicyDocument": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
MASON_NAME=libcurl
MASON_VERSION=7.38.0-boringssl
MASON_LIB_FILE=lib/libcurl.a
MASON_PKGCONFIG_FILE=lib/pkgconfig/libcurl.pc
MASON_PWD=`pwd`
. ${MASON_DIR}/mason.sh
function mason_load_source {
mason_download \
https://curl.haxx.se/download/curl-7.38.0.tar.gz \
5463f1b9dc807... | {
"pile_set_name": "Github"
} |
Name: remoteControlReceived
Type: message
Syntax: remoteControlReceived <pEventType>
Summary:
Sent when the remote control is enabled and a remote control operation
occurs.
Introduced: 6.1
OS: ios
Platforms: mobile
Example:
on remoteControlReceived pEventType
put pEventType & return after field "log"
end re... | {
"pile_set_name": "Github"
} |
//
// TestTarget.xcconfig
//
// These are Test target settings for the gtest framework and examples. It
// is set in the "Based On:" dropdown in the "Target" info dialog.
PRODUCT_NAME = $(TARGET_NAME)
HEADER_SEARCH_PATHS = ../include
| {
"pile_set_name": "Github"
} |
{
This file is part of the Free Pascal run time library.
Copyright (c) 2005-2009 by Michael Van Canneyt and David Zhang
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY ... | {
"pile_set_name": "Github"
} |
#include <signal.h>
#include <errno.h>
#include <string.h>
#include "syscall.h"
#include "pthread_impl.h"
#include "libc.h"
#include "ksigaction.h"
void __restore(), __restore_rt();
static int unmask_done;
static unsigned long handler_set[_NSIG/(8*sizeof(long))];
void __get_handler_set(sigset_t *set)
{
memcpy(set, ... | {
"pile_set_name": "Github"
} |
t1
t2
| {
"pile_set_name": "Github"
} |
F1
F1
1
| {
"pile_set_name": "Github"
} |
package com.tencent.mm.plugin.appbrand.ui.banner;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Parcel;
import android.os.Parcelable.Creator;
import com.tencent.matrix.trace.core.AppMethodBeat;
import com.tencent.mm.kernel.g;
import com.tencent.mm.plugin.... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2007-2011 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file ex... | {
"pile_set_name": "Github"
} |
import {isEqual} from "lodash"
import {render} from "react-dom"
import {select, mouse, ContainerElement} from "d3"
import React from "react"
import {HistogramDataPoint} from "../MainHistogram/format"
import {Pen} from "../types"
import {getPointAt} from "../getPointAt"
type Args = {
wrapperClassName: string
rende... | {
"pile_set_name": "Github"
} |
require 'minitest_helper'
class TestMeshFaceSanityCheck < Minitest::Test
def test_that_it_works
scene = Mittsu::Scene.new
camera = Mittsu::PerspectiveCamera.new(75.0, 1.0, 0.1, 1000.0)
renderer = Mittsu::OpenGLRenderer.new width: 100, height: 100, title: 'TestMeshFaceSanityCheck'
geometry = Mittsu:... | {
"pile_set_name": "Github"
} |
using Microsoft.AspNetCore.Routing.Constraints;
namespace Exceptionless.Web.Utility {
public class TokenRouteConstraint : RegexRouteConstraint {
public TokenRouteConstraint() : base(@"^[a-zA-Z\d-]{24,40}$") { }
}
} | {
"pile_set_name": "Github"
} |
<?php
use Larabook\Statuses\StatusRepository;
use Laracasts\TestDummy\Factory as TestDummy;
class StatusRepositoryTest extends \Codeception\TestCase\Test
{
/**
* @var \IntegrationTester
*/
protected $tester;
/**
* @var Status Repository
*/
protected $repo;
/**
* Before each... | {
"pile_set_name": "Github"
} |
import React, { useState, useRef } from 'react'
import {
View,
ActivityIndicator as Spinner,
KeyboardAvoidingView,
Text,
TextInput,
TouchableHighlight,
TouchableOpacity,
ViewStyle,
Switch,
Vibration,
} from 'react-native'
import { useLayout } from '@react-native-community/hooks'
import { Translation } from 'r... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2009-2020 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.http.javadsl.model;
import akka.annotation.ApiMayChange;
import akka.http.impl.util.Util;
import akka.http.scaladsl.model.StatusCodes$;
import java.util.Optional;
/**
* Contains the set of predefined status-codes along with s... | {
"pile_set_name": "Github"
} |
conf_debug:
dconf_roundtrip_exactprint_only: false
dconf_dump_bridoc_simpl_par: false
dconf_dump_ast_unknown: false
dconf_dump_bridoc_simpl_floating: false
dconf_dump_config: false
dconf_dump_bridoc_raw: false
dconf_dump_bridoc_final: false
dconf_dump_bridoc_simpl_alt: false
dconf_dump_bridoc_simpl_in... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: fbd97b7335237bc4a9dcf601d4fcd98f
timeCreated: 1464089619
licenseType: Pro
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
# flake8 completion -*- shell-script -*-
_flake8()
{
local cur prev words cword split
_init_completion -s || return
case $prev in
--help | --version | -!(-*)h)
return
;;
--format)
COMPREPLY=($(compgen -W 'default py... | {
"pile_set_name": "Github"
} |
/**
* Copyright (C) 2009-2014 BIMserver.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
... | {
"pile_set_name": "Github"
} |
import React from 'react'
import ThemeProvider from 'providers/ThemeProvider'
export const wrapRootElement = ({ element }) => (
<ThemeProvider>{element}</ThemeProvider>
)
| {
"pile_set_name": "Github"
} |
package upenn.junto.algorithm
import upenn.junto.config.Flags
import upenn.junto.eval.GraphEval
import upenn.junto.graph._
import upenn.junto.util.Constants
import upenn.junto.util.MessagePrinter
import upenn.junto.util.ProbUtil
import java.util.{ArrayList,HashMap,Iterator}
import gnu.trove.list.array.TDoubleArrayLi... | {
"pile_set_name": "Github"
} |
/**
* @file tests/serdes/pattern_tests.cpp
* @brief Tests for the pattern module.
* @copyright (c) 2019 Avast Software, licensed under the MIT license
*/
#include <gtest/gtest.h>
#include <rapidjson/document.h>
#include <rapidjson/prettywriter.h>
#include <rapidjson/stringbuffer.h>
#include "retdec/common/patter... | {
"pile_set_name": "Github"
} |
require_relative '../../../spec_helper'
require_relative 'spec_helper'
require_relative 'fixtures/server'
describe "Net::FTP#size" do
before :each do
@server = NetFTPSpecs::DummyFTP.new
@server.serve_once
@ftp = Net::FTP.new
@ftp.connect(@server.hostname, @server.server_port)
end
after :each do... | {
"pile_set_name": "Github"
} |
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: memcached
Upstream-Contact: Andrei Zmievski <andrei@php.net>
Source: http://pecl.php.net/package/memcached/
Files: *
Copyright: 1997-2009, The PHP Group
License: PHP-3.0.1
This software is subject to version 3.01 of the PHP
lice... | {
"pile_set_name": "Github"
} |
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.vuejs.context
import com.intellij.lang.javascript.library.JSCDNLibManager
import com.intellij.openapi.vfs.VfsUtil
import com.intellij.psi.PsiFile
import com... | {
"pile_set_name": "Github"
} |
<!-- This file is automatically generated by build/architectures/build_index.py. Any updates will be lost. -->
<!-- markdownlint-disable MD033 -->
<li class="grid-item item-column" data-categories="DevOps ">
<article class="card">
<div class="card-header has-margin-bottom-none" aria-hidden="true">
<figure... | {
"pile_set_name": "Github"
} |
// Copyright 2015 Joyent, Inc.
module.exports = PrivateKey;
var assert = require('assert-plus');
var algs = require('./algs');
var crypto = require('crypto');
var Fingerprint = require('./fingerprint');
var Signature = require('./signature');
var errs = require('./errors');
var util = require('util');
var utils = req... | {
"pile_set_name": "Github"
} |
{% extends "process.html" %}
{% block process_content %}
<table class="table">
<thead>
<tr>
<th>Variable</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for var, value in process_environ.iteritems() %}
<tr>
... | {
"pile_set_name": "Github"
} |
/*
** 2002 February 23
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
********************... | {
"pile_set_name": "Github"
} |
/*
Copyright 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, softw... | {
"pile_set_name": "Github"
} |
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageCompat.h"
#import "SDWebImageManager.h"
/**
* Integrates SDWebImage a... | {
"pile_set_name": "Github"
} |
import { Plugins } from '@capacitor/core'
import debounce from 'lodash-es/debounce'
import Chessground from '../../chessground/Chessground'
import * as cgDrag from '../../chessground/drag'
import * as chess from '../../chess'
import router from '../../router'
import { loadLocalJsonFile, prop, Prop } from '../../utils'
... | {
"pile_set_name": "Github"
} |
var chartData = {
"compareQuery": {
labels: ["50", "100", "200", "300", "600"],
datasets: [
{
label: "JDBC",
data: [1812, 3828, 5217, 7239, 7169]
}, {
label: "Sharding-JDBC",
data: [1591, 2547, 5062, 7284, 7151]
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--********************************************************************
Copyright 2017 Georgia Institute of Technology
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version p... | {
"pile_set_name": "Github"
} |
#ifndef COIN_SOGLDISPLAYLIST_H
#define COIN_SOGLDISPLAYLIST_H
/**************************************************************************\
* Copyright (c) Kongsberg Oil & Gas Technologies AS
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitte... | {
"pile_set_name": "Github"
} |
///
/// Stellar by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Box */
.box {
border-radius: _size(border-radius);
border: solid _size(border-width);
margin-bottom: _size(element-margin);
padding: 1.5em;
> :... | {
"pile_set_name": "Github"
} |
{
"associatedToAll": false,
"associatedTypes": [
"PANW Endpoint Malware"
],
"breachScript": "",
"caseInsensitive": true,
"cliName": "detectedusers",
"closeForm": false,
"columns": null,
"content": true,
"defaultRows": null,
"description": "Detected users",
"editForm": true,
"fieldCalcScript": "",
"group... | {
"pile_set_name": "Github"
} |
//! moment.js locale configuration
//! locale : tamil (ta)
//! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
import moment from '../moment';
export default moment.defineLocale('ta', {
months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
... | {
"pile_set_name": "Github"
} |
// +build windows
package lcow
import (
"bytes"
"encoding/json"
"os"
"strconv"
"github.com/Microsoft/opengcs/service/gcsutils/remotefs"
"github.com/containerd/continuity/driver"
"github.com/sirupsen/logrus"
)
var _ driver.Driver = &lcowfs{}
func (l *lcowfs) Readlink(p string) (string, error) {
logrus.Debu... | {
"pile_set_name": "Github"
} |
This directory represents the state of the VAPORware Marketplace example application as
of the end of the first chapter. It demonstrates a single entity being mapped with JPA-style
annotations, and queried using a Hibernate session-based style.
This codebase is structured as a Maven-based project (http://maven.apach... | {
"pile_set_name": "Github"
} |
"use strict";
var Q = require('q');
module.exports = {
/**
* Checks whether a URL string starts with a scheme (or is protocol-relative).
*/
hasScheme: function (uri) {
return (/^([a-z][a-z.+-]+:|\/\/)/i).test(uri);
},
/**
* Copies and modifies an array, returning the original array if nothing was modifi... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. 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 o... | {
"pile_set_name": "Github"
} |
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2019 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"
} |
description=2.5K QHD 1440p 60 fps
frame_rate_num=60
frame_rate_den=1
width=2560
height=1440
progressive=1
sample_aspect_num=1
sample_aspect_den=1
display_aspect_num=16
display_aspect_den=9
colorspace=709
| {
"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"
} |
class Admin::FoosController < Comfy::Admin::BaseController
before_action :build_foo, only: [:new, :create]
before_action :load_foo, only: [:show, :edit, :update, :destroy]
def index
@foos = Foo.page(params[:page])
end
def show
render
end
def new
render
end
def edit
render
end... | {
"pile_set_name": "Github"
} |
.\" Automatically generated by Pandoc 1.16.0.2
.\"
.TH "redis\-cli" "0" "2016\-09\-15" "manpages\-tldr manuals" ""
.hy
.SH NAME
.PP
redis\-cli \- Opens a connection to a Redis server.
.SH EXAMPLES
.PP
Connect to the local server:
.IP
.nf
\f[C]
redis\-cli
\f[]
.fi
.PP
Connect to a remote server on the default port (6379... | {
"pile_set_name": "Github"
} |
--TEST--
Testing error on non-long parameter 6 of imagestring() of GD library
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$image = imagecreatetruecolor(180, 30);
$result = imagestring($... | {
"pile_set_name": "Github"
} |
/*
* Copyright Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2020 Luke Klinker
~
~ 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
~
... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<title>Recaf - modern bytecode editor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Recaf is a modern java bytecode editor using Objectweb's ASM and JavaFX.">
<meta name="keywo... | {
"pile_set_name": "Github"
} |
import Node from '../Node.js';
export default class ObjectPattern extends Node {
minify ( code, chars ) {
let c = this.start + 1;
for ( let i = 0; i < this.properties.length; i += 1 ) {
// TODO remove unused properties
const property = this.properties[i];
property.minify( code, chars );
if ( property... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\VarDumper\Cloner;
use Symfony\Component\VarDumper\Cas... | {
"pile_set_name": "Github"
} |
// Boost.Geometry (aka GGL, Generic Geometry Library)
// Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
// Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
// Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
// (ge... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<script src="/ws.js" async defer></script>
</head>
<body>
<h1>Welcome to echo server!</h1>
<input type="text" placeholder="Your message" id="input"
style="visibility: hidden">
<div id="responses"></div>
</body>
</html>
| {
"pile_set_name": "Github"
} |
-- Statistics of annotated entities based on their p(e|m) prio
-- Table 6 (right) from our paper
local function ent_prior_to_key(f)
if f <= 0.001 then
return '<=0.001'
elseif f <= 0.003 then
return '0.001-0.003'
elseif f <= 0.01 then
return '0.003-0.01'
elseif f <= 0.03 then
return '0.01-0.03'
... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.