text stringlengths 2 99.5k | meta dict |
|---|---|
# package pc2_2.payload
import dsz
import pc2_2.payload.config
import pc2_2.payload.exe | {
"pile_set_name": "Github"
} |
require 'test_helper'
class ProductTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
| {
"pile_set_name": "Github"
} |
0
10
20
30
| {
"pile_set_name": "Github"
} |
true
false
| {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef GROUP_H
#define GROUP_H 1
bool arch_topdown_check_group(bool *warn);
void arch_topdown_group_warn(void);
#endif
| {
"pile_set_name": "Github"
} |
package foo;
class Bar{
}
class Baz {
} | {
"pile_set_name": "Github"
} |
True
True
True
True
True
True
True
True
True
Exception
Exception
| {
"pile_set_name": "Github"
} |
/var/log/mackerel-agent.log {
daily
rotate 7
missingok
sharedscripts
notifempty
compress
copytruncate
}
| {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgAtLyIPyhm1pN6hGd
xs7wgpz6d+wlAuNhGO3NYZGjfHWhRANCAATYEjw2hgV15CXijoqS5zoXJSfAfEsl
MYp4pFpwhhBmLriNJdrMgv6yxU9WB8pUXZ1por8YDivq+hCNfcDw0k9L
-----END PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
client
dev tun
proto udp
remote 139.28.218.43 1194
resolv-retry infinite
remote-random
nobind
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
persist-key
persist-tun
ping 15
ping-restart 0
ping-timer-rem
reneg-sec 0
remote-cert-tls server
auth-user-pass ../Own_VPN_Config/nordvpnauth.txt
verb 3
pull
fast-io
cipher AES-256-C... | {
"pile_set_name": "Github"
} |
/* SystemJS module definition */
declare var module: NodeModule;
interface NodeModule {
id: string;
}
declare module '*.json' {
const value: any;
export default value;
}
| {
"pile_set_name": "Github"
} |
from typing import Any
run_main: Any
compile: Any
f2py_testing: Any
| {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQguZyCKd02IZziRkK1
tsxzcCG6RW78M3ZBgZzR/OVuJbahRANCAARt9nY0uDB6MrEAfJPfBpOuvG/hqTMQ
+yzLCufg/BAkgFyuGY/29IRp39ivwnVud4ZXMgO30mn7SQXmdJlNMlZ5
-----END PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
(*
* Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*)
theory protoparamshadow
imports "CParser.CTranslation"
begin
external_file "protoparamshadow.c"
install_C_file "protoparamshadow.c"
context protoparamshadow
begin
thm f_body_def
thm realone_body_def
end
e... | {
"pile_set_name": "Github"
} |
17
17
17
15
14
14
14
14
14
16
16
15
15
16
17
17
17
16
16
17
| {
"pile_set_name": "Github"
} |
#!/bin/sh
# Copyright (c) 2004, Intel Corporation. All rights reserved.
# Created by: crystal.xiong REMOVE-THIS AT intel DOT com
# This file is licensed under the GPL license. For the full content
# of this license, see the COPYING file at the top level of this
# source tree.
# Test pthread_attr_getschedpolicy ret... | {
"pile_set_name": "Github"
} |
K 13
svn:mime-type
V 9
image/gif
END
| {
"pile_set_name": "Github"
} |
module.exports = ({ error }) => error("fpack build index.js");
| {
"pile_set_name": "Github"
} |
void foo()
{
}
| {
"pile_set_name": "Github"
} |
/* (No Comment) */
"NSHumanReadableDescription" = "Sociale filterlister med blokeringsregler";
/* Bundle display name */
"CFBundleDisplayName" = "AdGuard Social";
| {
"pile_set_name": "Github"
} |
-----BEGIN CERTIFICATE-----
MIIF0zCCA7ugAwIBAgIQWjHyC+NRh3emuuAwcEnKSjANBgkqhkiG9w0BAQsFADB0
MQswCQYDVQQGEwJYWDELMAkGA1UEBxMCWFgxCzAJBgNVBAkTAlhYMR4wHAYDVQQK
ExVJMlAgQW5vbnltb3VzIE5ldHdvcmsxDDAKBgNVBAsTA0kyUDEdMBsGA1UEAwwU
cmVzZWVkQGRpdmEuZXhjaGFuZ2UwHhcNMjAwNjA5MDUzNjQ1WhcNMzAwNjA5MDUz
NjQ1WjB0MQswCQYDVQQGEwJYWDELMAkG... | {
"pile_set_name": "Github"
} |
// +build !race
package mgo
const raceDetector = false
| {
"pile_set_name": "Github"
} |
true
true
| {
"pile_set_name": "Github"
} |
stringanother stringyet
another
stringnoescapes\nnewline
stringnewline
\\
| {
"pile_set_name": "Github"
} |
package com.anxpp.designpattern.chainofresponsibility;
//第三个具体处理者,处理>=0但小于10的
public class Handler3 implements Handler {
private Handler next;
@Override
public int handleRequest(int n) {
if(n<=Integer.MAX_VALUE) return n;
else{
if(next==null)
throw new NullPointerException("next 不能为空");
retur... | {
"pile_set_name": "Github"
} |
(* Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh
* Jagannathan, and Stephen Weeks.
*
* MLton is released under a HPND-style license.
* See the file MLton-LICENSE for details.
*)
structure LargeInt = IntInf
functor LargeInt_ChooseInt (A: CHOOSE_INT_ARG) :
sig val f : LargeInt.int A.t end =
... | {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
enable_language(C)
add_library(empty STATIC empty.c)
file(GENERATE
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/test.txt"
CONTENT "[$<TARGET_BUNDLE_DIR:empty>]"
)
| {
"pile_set_name": "Github"
} |
<?php
function foo(\\ $bar)
{
}
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
reviewers:
- smarterclayton
- jessfraz
| {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg00IwLLBKoi/9ikb6
ZOAV0S1XeNGWllvlFDeczRKQn2uhRANCAARrvCsQUNRpMUkzFaC7+zV4mClo+beg
4VkUyQR5y5Fle5UVH2GigChWnUoouTO2e2acA/DUuyLDHT0emeBMhoMC
-----END PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
-----BEGIN CERTIFICATE REQUEST-----
MIIBGDCBvwIBADA0MQswCQYDVQQGEwJOTDERMA8GA1UEChMIUG9sYXJTU0wxEjAQ
BgNVBAMTCWxvY2FsaG9zdDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDfMVtl2
CR5acj7HWS3/IG7ufPkGkXTQrRS192giWWKSTuUA2CMR/+ov0jRdXRa9iojCa3cN
Vc2KKg76Aci07f+gKTAnBgkqhkiG9w0BCQ4xGjAYMAkGA1UdEwQCMAAwCwYDVR0P
BAQDAgXgMAoGCCqGSM49BAME... | {
"pile_set_name": "Github"
} |
name=0/1 black Serf creature token
token=Serf
image=https://magiccards.info/extras/token/eternal-masters/serf.jpg
value=1
type=Creature
subtype=Serf
color=b
pt=0/1
| {
"pile_set_name": "Github"
} |
package com.lesspass.android;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
@Override
protected String getMainComponentName() {
return "LessPass";
}
}
| {
"pile_set_name": "Github"
} |
"C:\Python27\python.exe" make_zip.py --target=source
| {
"pile_set_name": "Github"
} |
Finished successfully.
ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
| {
"pile_set_name": "Github"
} |
export default {
failFast: true,
files: ['src/**/__tests__/**.js'],
require: ['./tests/helpers/browser-env.js']
};
| {
"pile_set_name": "Github"
} |
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIPEqEyB2AnCoPL/9U/YDHvdqXYbIogTywwyp6/UfDw6noAoGCCqGSM49
AwEHoUQDQgAEN8xW2XYJHlpyPsdZLf8gbu58+QaRdNCtFLX3aCJZYpJO5QDYIxH/
6i/SNF1dFr2KiMJrdw1VzYoqDvoByLTt/w==
-----END EC PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
/* Kikoo */
/**
* Kikoo
*/
| {
"pile_set_name": "Github"
} |
-----BEGIN CERTIFICATE-----
MIICSjCCAfCgAwIBAgIRAM2/N6Nx/UGvuhRi9VmvYFYwCgYIKoZIzj0EAwIwdjEL
MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG
cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs
c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMjAwMTE1MDY0NzAwWhcNMzAwMTEyMDY0
NzAwWjB2MQswCQYDVQQGEwJVUzETMBEG... | {
"pile_set_name": "Github"
} |
false
for v; do
exit 2
done
echo Zero:$?
| {
"pile_set_name": "Github"
} |
o<queue-buster> sub
m100 p12345
t#1
m6
m100 p-#5400 ; current tool
m100 p54321
o<queue-buster> endsub
| {
"pile_set_name": "Github"
} |
alter table ACT_RU_ENTITYLINK add column HIERARCHY_TYPE_ varchar(255);
update ACT_GE_PROPERTY set VALUE_ = '6.4.1.1' where NAME_ = 'entitylink.schema.version';
| {
"pile_set_name": "Github"
} |
var shimMixedSFOther = {
name: 'shim mixed sf',
c: shimMixedSC
};
| {
"pile_set_name": "Github"
} |
Introduction
============
.. include:: ../README.rst
:start-after: include:introduction/start
| {
"pile_set_name": "Github"
} |
import Footer from './Footer';
import Nav from './Nav';
import Layout from './Layout';
export default {
Nav,
Layout,
Footer
};
| {
"pile_set_name": "Github"
} |
<?php
declare(strict_types=1);
namespace YoutubeDl\Metadata;
interface MetadataReaderInterface
{
public function read(string $file): array;
}
| {
"pile_set_name": "Github"
} |
class Foo
def bees
rescue A, B
end
end
| {
"pile_set_name": "Github"
} |
//
// Licensed under the terms in License.txt
//
// Copyright 2010 Allen Ding. All rights reserved.
//
#import "KiwiConfiguration.h"
// KWNull exists to represent the same thing as NSNull, except that Kiwi needs
// to distinguish between null singletons used internally and those a user
// is using as an object parame... | {
"pile_set_name": "Github"
} |
MIME-Version: 1.0
From: Barry <barry@digicool.com>
To: Dingus Lovers <cravindogs@cravindogs.com>
Subject: Here is your dingus fish
Date: Fri, 20 Apr 2001 19:35:02 -0400
Content-Type: multipart/mixed; boundary="OUTER"
--OUTER
Content-Type: text/plain; charset="us-ascii"
A text/plain part
--OUTER
Content-Type: multipa... | {
"pile_set_name": "Github"
} |
-----BEGIN EC PRIVATE KEY-----
MIGkAgEBBDAPEbSXwyDfWf0+61Oofd7aHkmdX69mrzD2Xb1CHF5syfsoRIhnG0dJ
ozBulPZCDDWgBwYFK4EEACKhZANiAATjlMJAtKhEPqU/i7MsrgKcK/RmXHC6He7W
0p69+9qFXg2raJ9zvvbKxkiu2ELOYRDAz0utcFTBOIgoUJEzBVmsjZQ7dvFa1BKP
Ym7MFAKG3O2espBqXn+audgdHGh5B0I=
-----END EC PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
require 'support/game'
class GameFail < Game; end
| {
"pile_set_name": "Github"
} |
import faker
from test.test_project import TestProject
from test.test_scaffold import TestScaffold
from test.test_command_line_interface import TestCommandLineInterface
from test.test_environment_fetcher import TestEnvironmentFetcher
from test.test_config_listing import TestConfigListing
from test.job_submission imp... | {
"pile_set_name": "Github"
} |
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx4096M
kapt.incremental.apt=true | {
"pile_set_name": "Github"
} |
reviewers:
- lavalamp
- smarterclayton
- wojtek-t
- timothysc
- hongchaodeng
| {
"pile_set_name": "Github"
} |
owner = SOV
controller = SOV
add_core = SOV
infra = 6
| {
"pile_set_name": "Github"
} |
package net.jangaroo.jooc.model;
/**
* Created with IntelliJ IDEA. User: fwienber Date: 21.05.12 Time: 15:55 To change this template use File | Settings |
* File Templates.
*/
public interface TypedModel extends ActionScriptModel {
String getType();
void setType(String type);
}
| {
"pile_set_name": "Github"
} |
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
| {
"pile_set_name": "Github"
} |
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
| {
"pile_set_name": "Github"
} |
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
| {
"pile_set_name": "Github"
} |
package org.jetbrains.plugins.scala.lang.psi.stubs
/**
* @author Alefas
* @since 30.03.12
*/
trait ScMemberOrLocal {
def isLocal: Boolean
}
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
SiiNunit
{
}
| {
"pile_set_name": "Github"
} |
custom: ['https://www.buymeacoffee.com/UJGejcNli']
| {
"pile_set_name": "Github"
} |
##
##
## creates a temporary file containing the specified content
## returns the path for that file
function(fwrite_temp content)
set(ext ${ARGN})
if(NOT ext)
set(ext ".txt")
endif()
cmakepp_config(temp_dir)
ans(temp_dir)
path_vary("${temp_dir}/fwrite_temp${ext}")
ans(temp_path)
fwrite("${t... | {
"pile_set_name": "Github"
} |
export interface Size {
width: number;
height: number;
};
| {
"pile_set_name": "Github"
} |
-----BEGIN CERTIFICATE REQUEST-----
MIIBFzCBvwIBADA0MQswCQYDVQQGEwJOTDERMA8GA1UEChMIUG9sYXJTU0wxEjAQ
BgNVBAMTCWxvY2FsaG9zdDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDfMVtl2
CR5acj7HWS3/IG7ufPkGkXTQrRS192giWWKSTuUA2CMR/+ov0jRdXRa9iojCa3cN
Vc2KKg76Aci07f+gKTAnBgkqhkiG9w0BCQ4xGjAYMAkGA1UdEwQCMAAwCwYDVR0P
BAQDAgXgMAoGCCqGSM49BAMC... | {
"pile_set_name": "Github"
} |
#ifndef _ALLOCA_H_
#define _ALLOCA_H_
#undef alloca
#define alloca(size) __builtin_alloca(size)
#endif /* _ALLOCA_H_ */
| {
"pile_set_name": "Github"
} |
{
# invalid name
wrong name: 0
}
| {
"pile_set_name": "Github"
} |
/* As the included file, but specifying silent ENOSYS.
#notarget: cris*-*-elf
#sim: --cris-unknown-syscall=enosys-quiet
#output: ENOSYS\n
#output: xyzzy\n
*/
#include "sig7.c"
| {
"pile_set_name": "Github"
} |
interface Blue {
}
| {
"pile_set_name": "Github"
} |
digraph reqdeps {
rankdir=BT;
mclimit=10.0;
nslimit=10.0;ranksep=1;
"A1" [fontcolor=red,label="A1\n[10.00]"];
ReqVersion [shape=plaintext label="ReqVersion\nCommit [None] VCS Id [tests/RMTTest-Blackbox/RMTTest-BB005/input/topics]"]
}
| {
"pile_set_name": "Github"
} |
client
dev tun
proto udp
remote 23.82.136.225 1194
resolv-retry infinite
remote-random
nobind
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
persist-key
persist-tun
ping 15
ping-restart 0
ping-timer-rem
reneg-sec 0
comp-lzo no
remote-cert-tls server
auth-user-pass ../Own_VPN_Config/nordvpnauth.txt
verb 3
pull
fast-io
ciph... | {
"pile_set_name": "Github"
} |
var plangular = require('../dist/plangular');
| {
"pile_set_name": "Github"
} |
body: //div[@id="bloc_actu"]/parent::*
title: //div[@id="content"]/h1[1]
test_url: http://www.autoactu.com/thomas-owsianski-nomme-president-d-audi-chine.shtml
| {
"pile_set_name": "Github"
} |
require 'rspec/core/rake_task'
desc "run specs"
RSpec::Core::RakeTask.new(:spec) do
system("ruby -v")
module RedStorm; SPECS_CONTEXT = true; end
end
task :default => :spec
load 'lib/tasks/red_storm.rake'
| {
"pile_set_name": "Github"
} |
// Copyright Aleksey Gurtovoy 2002-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id$
// $Date$
// $Revision$
#define BOOST_MPL_PREPROC... | {
"pile_set_name": "Github"
} |
module.exports = require('./lib/ejs'); | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="&quot;" />
</head>
<body></body>
</html>
| {
"pile_set_name": "Github"
} |
use Universal ==
loop acc n =
if n == 0 then acc
else loop (acc + n) (n `drop` 1)
> loop 0 10000
| {
"pile_set_name": "Github"
} |
declare module 'parsehttpdate' {
declare export default function parseHttpDate(value: string, validate: ?boolean): Date;
} | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.Rendering;
namespace Identity.Dapper.Samples.Web.Models.ManageViewModels
{
public class ConfigureTwoFactorViewModel
{
public string SelectedProvider { get; set; }
pu... | {
"pile_set_name": "Github"
} |
// Opacity
.opacity(@opacity) {
opacity: @opacity;
// IE8 filter
@opacity-ie: (@opacity * 100);
filter: ~"alpha(opacity=@{opacity-ie})";
}
| {
"pile_set_name": "Github"
} |
class Test {
}
| {
"pile_set_name": "Github"
} |
commandlinefu_id: 16517
translator:
weibo: ''
hide: true
command: |-
Donne, Top Maniglie
summary: |-
Dump
| {
"pile_set_name": "Github"
} |
using System;
using System.Collections;
using System.ComponentModel;
namespace FastReport
{
/// <summary>
/// Represents a report summary band.
/// </summary>
public partial class ReportSummaryBand : HeaderFooterBandBase
{
}
} | {
"pile_set_name": "Github"
} |
File=pdfsettings.kcfg
ClassName=PDFSettings
Mutators=true
Singleton=true
| {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
Add Filename Generator
Write more validators
Add more callbacks
| {
"pile_set_name": "Github"
} |
# ELAN touchscreen/pen sensor present in the HP envy x360 Convertible 13-ag0xxx
[Device]
Name=ELAN 262b
ModelName=
DeviceMatch=i2c:04f3:262b
Class=ISDV4
Width=12
Height=7
IntegratedIn=Display;System
[Features]
Stylus=true
Touch=true
Buttons=0
| {
"pile_set_name": "Github"
} |
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: sqoop-role
rules:
- apiGroups: ["sqoop.solo.io"]
resources: ["schemas", "resolvermaps"]
verbs: ["*"]
| {
"pile_set_name": "Github"
} |
public class HelloWorld {
void testMethod() {}
private int testVariable;
}
| {
"pile_set_name": "Github"
} |
key.store=debug.keystore
key.alias=androiddebugkey
key.store.password=android
key.alias.password=android
| {
"pile_set_name": "Github"
} |
key.store=debug.keystore
key.alias=androiddebugkey
key.store.password=android
key.alias.password=android
| {
"pile_set_name": "Github"
} |
1
28
60
76
146
188
| {
"pile_set_name": "Github"
} |
dev tun
proto tcp
remote br-sp-smart.serverlocation.co 54
resolv-retry infinite
client
auth-user-pass /config/openvpn-credentials.txt
nobind
persist-key
persist-tun
remote-cert-tls server
compress lzo
reneg-sec 0
cipher AES-256-CBC
auth SHA256
# Uncomment following line if you use MS Windows
# block-outside-dns
verb 3
... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.