text stringlengths 2 99.1k | meta dict |
|---|---|
# This file exists as a helper for the test.test_frozen module.
| {
"pile_set_name": "Github"
} |
#log {
font-family: monospace;
}
canvas {
border: 1px solid gray;
display: block;
}
.scroll-container {
margin-bottom: 20px;
}
| {
"pile_set_name": "Github"
} |
issue_relation_001:
id: 1
issue_from_id: 10
issue_to_id: 9
relation_type: blocks
delay:
issue_relation_002:
id: 2
issue_from_id: 2
issue_to_id: 3
relation_type: relates
delay:
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env perl
# Decode HTML entities (e.g. < becomes <)
use HTML::Entities;
while(<>) {print decode_entities($_);}
| {
"pile_set_name": "Github"
} |
(function() {
var doT = require('../doT.js'),
fs = require('fs'),
data = { f1: 1, f2: 2, f3: 3, altEmail: "conditional works", farray:[{farray:[1,2,3,[11,22,33]],person:{name:'Ell',age:23}},{farray:{how:'really'}}, {farray:[5,6,7,8]}]},
defs = { a: 100, b: 200};
defs.loadfile = function(path) {
return fs.rea... | {
"pile_set_name": "Github"
} |
["tab character in string "]
| {
"pile_set_name": "Github"
} |
2008
2008
| {
"pile_set_name": "Github"
} |
2008
2008
| {
"pile_set_name": "Github"
} |
// Copyright (C) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in project root for information.
package com.microsoft.ml.spark.cognitive
case class Rectangle(left: Int, top: Int, width: Int, height: Int)
case class Rectangle2(x: Int, y: Int, w: Int, h: Int)
| {
"pile_set_name": "Github"
} |
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/explain_dplyr.R
\name{explain_line}
\alias{explain_line}
\title{explain a line of dplyr code}
\usage{
explain_line(expr, value, ok, visible)
}
\arguments{
\item{expr}{expression performed}
\item{value}{value returned}
\item{ok}{ok}
... | {
"pile_set_name": "Github"
} |
就是一个单独的服务,与项目独立,又与项目紧密联系
通过Java 端口通讯 提供服务 消费服务 | {
"pile_set_name": "Github"
} |
# -*- mode: snippet -*-
# name: elisp
# key: elisp
# uuid: elisp
# --
#+begin_src emacs-lisp :tangle yes
$0
#+end_src | {
"pile_set_name": "Github"
} |
Function constructor vs. function expression
`.bind()`
Get query/url variables
Easily generate a random `HEX` color
Check if a document is done loading | {
"pile_set_name": "Github"
} |
def runState[S, A]: State[S, A] => S => (A, S) = {
case State(f) => s => f(s)
} | {
"pile_set_name": "Github"
} |
import smart_imports
smart_imports.all()
@utils_jinja2.jinjaglobal
def sorted_recipients(recipients_ids, accounts):
recipients = [accounts[recipient_id] for recipient_id in recipients_ids]
recipients.sort(key=lambda account: account.nick_verbose)
return recipients
@utils_jinja2.jinjaglobal
def new_mes... | {
"pile_set_name": "Github"
} |
{
"name": "ng-boilerplate",
"version": "0.3.2",
"devDependencies": {
"angular": "~1.3.0",
"angular-mocks": "~1.3.0",
"angular-route": "~1.3.0",
"jquery": "latest",
"lodash": "latest",
"FullScreenMario": "git@github.com:blnight/FullScreenMario.git#mario-presentation-game",
"reveal.js": ... | {
"pile_set_name": "Github"
} |
using System;
namespace EvHttpSharp.Interop
{
internal class EvImportAttribute : Attribute
{
public EvDll Dll { get; set; }
public string Name { get; set; }
public EvImportAttribute(EvDll dll = EvDll.Core, string name = null)
{
Dll = dll;
Name = name;
... | {
"pile_set_name": "Github"
} |
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-environment.h"
| {
"pile_set_name": "Github"
} |
feature ordn {
# ordinals
sub [a o] by [ordfeminine ordmasculine];
} ordn; | {
"pile_set_name": "Github"
} |
---
sources:
- name: event_source
events:
- "*"
sinks:
- event_sink
sinks:
- name: event_sink
publishers:
- panko://
| {
"pile_set_name": "Github"
} |
name = "Could Typehint";
description = "Arguments that are tested with instanceof gain from making it a Typehint.
<?php
function foo($a, $b) {
// $a is tested for B with instanceof.
if (!$a instanceof B) {
return;
}
// More code
}
function foo(B $a, $b) {
// May omit the initial tes... | {
"pile_set_name": "Github"
} |
// run-pass
pub fn main() {
let x: isize = 3;
println!("&x={:x}", (&x as *const isize as usize));
}
| {
"pile_set_name": "Github"
} |
#Sat Sep 21 13:08:26 CEST 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip | {
"pile_set_name": "Github"
} |
# encoding: utf-8
from haystack import indexes
from .models import Checkin
class CheckinSearchIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True)
username = indexes.CharField(model_attr="username")
comment = indexes.CharField(model_attr="comment")
# Again, if you we... | {
"pile_set_name": "Github"
} |
require Test::Simple;
push @INC, 't/lib';
require Test::Simple::Catch;
my($out, $err) = Test::Simple::Catch::caught();
Test::Simple->import(tests => 2);
# Test we still get the right exit code despite having a die
# handler.
$SIG{__DIE__} = sub {};
require Dev::Null;
tie *STDERR, 'Dev::Null';
ok(1);
ok(1);
$! = 0... | {
"pile_set_name": "Github"
} |
/// Copyright (c) 2012 Ecma International. All rights reserved.
/**
* @path ch15/15.2/15.2.3/15.2.3.12/15.2.3.12-1-1.js
* @description Object.isFrozen - TypeError is thrown when the first param 'O' is undefined
*/
function testcase() {
try {
Object.isFrozen(undefined);
} catch (e) {
... | {
"pile_set_name": "Github"
} |
class C
{ cAttr; }
class E {
isA C;
cAttr;
}
| {
"pile_set_name": "Github"
} |
; RUN: llc < %s -mtriple=x86_64-apple-darwin -relocation-model=static | not grep lea
; RUN: llc < %s -mtriple=x86_64-pc-linux-gnu -relocation-model=static | not grep lea
@v = external global i32, align 8
@v_addr = external global i32*, align 8
define void @t() nounwind optsize {
store i32* @v, i32** @v_addr, align 8... | {
"pile_set_name": "Github"
} |
[package]
name = "encode"
version = "0.1.0"
[package.metadata.rosettacode]
url = "http://rosettacode.org/wiki/Roman_numerals/Encode"
| {
"pile_set_name": "Github"
} |
// This is a generated file. Not intended for manual editing.
package com.neueda.jetbrains.plugin.graphdb.language.cypher.psi;
import java.util.List;
import org.jetbrains.annotations.*;
import com.intellij.psi.PsiElement;
import com.neueda.jetbrains.plugin.graphdb.language.cypher.references.types.CypherNullYielding;
... | {
"pile_set_name": "Github"
} |
Attr.DefaultInvalidImage
TYPE: string
DEFAULT: ''
--DESCRIPTION--
This is the default image an img tag will be pointed to if it does not have
a valid src attribute. In future versions, we may allow the image tag to
be removed completely, but due to design issues, this is not possible right
now.
--# vim: et sw=... | {
"pile_set_name": "Github"
} |
<template>
<view class="uni-load-more">
<view v-show="status === 'loading' && showIcon" class="uni-load-more__img">
<view class="load1">
<view class="uni-load-view_wrapper" :style="{background:color}" />
<view class="uni-load-view_wrapper" :style="{background:color}" />
<view class="uni-load-view_wrap... | {
"pile_set_name": "Github"
} |
/* OpenACC cache directive. */
#include "../../../gcc/testsuite/c-c++-common/goacc/cache-1.c"
| {
"pile_set_name": "Github"
} |
**/*.eomodeld~/
**/*.woa/**
**/*.framework/**
| {
"pile_set_name": "Github"
} |
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
time: "02:00"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "03:00"
| {
"pile_set_name": "Github"
} |
# bundle
These are modules that help support bundling with Deno.
## Usage
The main usage is to load and run bundles. For example, to run a bundle named
`bundle.js` in your current working directory:
```sh
deno run https://deno.land/std/bundle/run.ts bundle.js
```
---
Copyright 2018-2019 the Deno authors. All righ... | {
"pile_set_name": "Github"
} |
<Canvas>
<Kind>42</Kind>
<Name>MATERIAL 1Settings</Name>
<IsMinified>1</IsMinified>
<XPosition>1.000000000</XPosition>
<YPosition>170.000000000</YPosition>
</Canvas>
<Widget>
<Kind>25</Kind>
<Name>AR</Name>
<Value>0.267015696</Value>
</Widget>
<Widget>
<Kind>25</Kind>
<Name>AG</N... | {
"pile_set_name": "Github"
} |
// Copyright 2019 Altinity Ltd and/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.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unles... | {
"pile_set_name": "Github"
} |
var convert = require('./convert');
module.exports = convert(require('../math'));
| {
"pile_set_name": "Github"
} |
FROM gradle:4.10.1-jdk8-alpine
# Install imagemagick
USER root
RUN apk --update add imagemagick
# Change user to gradle
# @see https://discuss.gradle.org/t/how-to-run-a-gradle-java-project-in-docker/24838
ADD --chown=gradle . .
EXPOSE 8080
RUN gradle test
RUN gradle shadowJar
CMD java -jar mono-api/build/libs/mono-a... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TvControl;
using TvDatabase;
using TvService;
using TypeMock.ArrangeActAssert;
namespace TVServiceTests.Mocks
{
public class Fakes
{
public static IUser FakeUser()
{
return Isolate.Fake.Instanc... | {
"pile_set_name": "Github"
} |
const React = {
createElement: () => {}
};
export const tsxElement: JSX.Element = <h1>Hello world!</h1>; | {
"pile_set_name": "Github"
} |
//! Adapted from [`html5ever`](https://github.com/servo/html5ever)
#![allow(
clippy::match_single_binding,
clippy::unknown_clippy_lints,
clippy::match_on_vec_items
)]
#[macro_use]
mod macros;
pub mod driver;
#[macro_use]
pub mod interface;
pub mod serializer;
pub mod tokenizer;
pub mod tree_builder;
pub mod... | {
"pile_set_name": "Github"
} |
```dart
class CounterText extends StatelessWidget {
@override
Widget build(BuildContext context) {
return BlocBuilder<CounterBloc, int>(
builder: (context, count) {
return Text('$count');
},
);
}
}
```
| {
"pile_set_name": "Github"
} |
file(REMOVE_RECURSE
"rviz_cloud_annotation_com_autogen"
"CMakeFiles/rviz_cloud_annotation_com_autogen.dir/AutogenOldSettings.txt"
"rviz_cloud_annotation_plugin_autogen"
"CMakeFiles/rviz_cloud_annotation_plugin_autogen.dir/AutogenOldSettings.txt"
"rviz_cloud_annotation_node_autogen"
"CMakeFiles/rviz_cloud_an... | {
"pile_set_name": "Github"
} |
exiftool.exe -b -EmbeddedImage "FLIRE4.jpg" -w "VIS.png"
exiftool.exe -b -rawthermalimage "FLIRE4.jpg" -w "IR.png"
pause | {
"pile_set_name": "Github"
} |
// ==> 18b253a4a89a84c5674165c6fc3efafad535eee3.scala <==
object x0 {
def x1[x2 <:_[ // error
// error | {
"pile_set_name": "Github"
} |
package common.test.tool.util;
public class AssertUtil {
public static <T> boolean isLambda(T e) {
return e.getClass().getSimpleName().contains("$$Lambda");
}
}
| {
"pile_set_name": "Github"
} |
金小判
嘟嘟臉
棉花糖
背心
瀏海
大眼兒
賈面
紅投鬼
藍擊鬼
巴里桑
直線
喬班尼
初美
麥克企
寶兒
羅密歐
羅密歐
伊芙
白雪
白雪
田邊
卡浦爾
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env perl
system("./install") if ($ENV{BUILD_STYLE} =~ /Release/ || $ENV{CONFIGURATION} =~ 'Release');
| {
"pile_set_name": "Github"
} |
//! This account contains the clock slot, epoch, and leader_schedule_epoch
//!
pub use crate::clock::Clock;
use crate::sysvar::Sysvar;
crate::declare_sysvar_id!("SysvarC1ock11111111111111111111111111111111", Clock);
impl Sysvar for Clock {}
| {
"pile_set_name": "Github"
} |
#
# Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
#
# (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
#
# SPDX-License-Identifier: GPL-2.0+
#
obj-y := woodburn.o
obj-y += lowlevel_init.o
| {
"pile_set_name": "Github"
} |
//go:generate protoc --go_out=plugins=grpc:. ipv6_if_brief.proto
// Cisco-IOS-XR-ipv6-ma-oper:ipv6-network/nodes/node/interface-data/vrfs/vrf/briefs/brief
package cisco_ios_xr_ipv6_ma_oper_ipv6_network_nodes_node_interface_data_vrfs_vrf_briefs_brief
| {
"pile_set_name": "Github"
} |
#pragma OPENCL EXTENSION cl_khr_int64_base_atomics : enable
kernel void _atom_add(global ulong *data)
{
atom_add(data, (ulong)UINT_MAX);
}
| {
"pile_set_name": "Github"
} |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
#!/bin/bash
set -eu -o pipefail
outdir=$PREFIX/share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM
mkdir -p $outdir
mkdir -p $PREFIX/bin
gzip -d mhap-$PKG_VERSION.jar.gz
cp mhap-$PKG_VERSION.jar $outdir/mhap.jar
cp $RECIPE_DIR/mhap.py $outdir/mhap
chmod +x $outdir/mhap
ln -s $outdir/mhap $PREFIX/bin/mhap
| {
"pile_set_name": "Github"
} |
# CrypTen PyCon Workshop 2020
## Installation
Install CrypTen using the instructions in the [README](https://github.com/facebookresearch/CrypTen#installing-crypten).
Then from this directory, `pip install -r requirements.txt`.
* Note CrypTen requires Python 3.7.
Alternatively, we provide a Dockerfile to make runni... | {
"pile_set_name": "Github"
} |
-- Enable advanced options
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
GO
-- Enabled ad hoc queries
EXEC sp_configure 'ad hoc distributed queries', 1
RECONFIGURE
GO
-- Execute SQL query on a remote SQL Server as a sysadmin. This uses the SQL Server service account to authenticate to the remote SQL Serve... | {
"pile_set_name": "Github"
} |
t db 0,1,2
mov al,t[1]
| {
"pile_set_name": "Github"
} |
# Plugins
A number of plugins are available to enhance the functionality of [yFuzz](https://github.com/yahoo/yfuzz):
* [Athenz](../services/yfuzz-server/plugins/athenz)
* Integrates yFuzz with [Athenz](http://www.athenz.io) for authorization.
* [MTLS](../services/yfuzz-server/plugins/mtls)
* Uses mutual TLS for aut... | {
"pile_set_name": "Github"
} |
# 数据库驱动jar 路径
drive.class.path=E:\\develop_softs\\.m2\\repository\\mysql\\mysql-connector-java\\5.1.30\\mysql-connector-java-5.1.30.jar
# 数据库连接参数
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/quick4j?useUnicode=true&characterEncoding=utf-8
jdbc.username=root
jdbc.password=admin123
# 包路径配置
mod... | {
"pile_set_name": "Github"
} |
/* 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 can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = function (grunt) {
grunt.config('concat', {
// auto configured by usemin
});
};
| {
"pile_set_name": "Github"
} |
/**
* @program JavaBooks
* @description: 模拟变量在内存的布局
* @author: mf
* @create: 2020/03/20 13:30
*/
package com.type;
public class IntegerTest {
int value = 1;
String s = "买";
int a = 257;
}
| {
"pile_set_name": "Github"
} |
echo:[]string{}
echo:[]string{"-n"}
echo:[]string{"foo"}
echo:[]string{"foo", "bar"}
echo:[]string{"-n", "foo"}
echo:[]string{"-e", "foo\\nbar"}
echo:[]string{"-n", "-e", "foo\\nbar"}
echo:[]string{"foo", "-n"}
echo:[]string{"foo", "-n", "-e"}
echo:[]string{"-------"}
echo:[]string{"*"}
echo:[]string{"*"}
| {
"pile_set_name": "Github"
} |
import XCTest
#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(StructsAndClassesTests.allTests)
]
}
#endif
| {
"pile_set_name": "Github"
} |
# Invalid query.
# =============
# This query cannot be run because of the following problems:
# * It contains a constraint type that can only be used internally (PathConstraintLoop)
| {
"pile_set_name": "Github"
} |
#!/bin/sh
java -jar -Djava.security.egd=file:/dev/./urandom /home/webgoat/webgoat.jar --server.address=0.0.0.0 --server.port=8080
| {
"pile_set_name": "Github"
} |
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_root/zfs_program
dist_pkgdata_SCRIPTS = \
setup.ksh \
cleanup.ksh \
zfs_program_json.ksh
| {
"pile_set_name": "Github"
} |
Extra docs for this struct.
| {
"pile_set_name": "Github"
} |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &1785143153843822
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4097624723285212}
- component: {fileID: 332570198... | {
"pile_set_name": "Github"
} |
import { Controller } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {}
| {
"pile_set_name": "Github"
} |
## What is MarkdownView?
It's an Android WebView that is capable of loading Markdown file or text and display it as HTML. The library uses MarkdownJ and extends Android WebView.
***
For more information, please visit the project page on [Github](https://github.com/falnatsheh/MarkdownView) | {
"pile_set_name": "Github"
} |
################################################################################
#
# xdriver_xf86-video-neomagic
#
################################################################################
XDRIVER_XF86_VIDEO_NEOMAGIC_VERSION = 1.3.0
XDRIVER_XF86_VIDEO_NEOMAGIC_SOURCE = xf86-video-neomagic-$(XDRIVER_XF86_VIDEO_N... | {
"pile_set_name": "Github"
} |
import { ActionCreatorWithoutPayload, PayloadActionCreator } from '@reduxjs/toolkit';
export const mockToolkitActionCreator = (creator: PayloadActionCreator<any>) => {
return Object.assign(jest.fn(), creator);
};
export type ToolkitActionCreatorWithoutPayloadMockType = typeof mockToolkitActionCreatorWithoutPayload ... | {
"pile_set_name": "Github"
} |
#pragma once
#include "il2cpp-config.h"
#include "il2cpp-object-internals.h"
namespace il2cpp
{
namespace icalls
{
namespace mscorlib
{
namespace System
{
namespace Security
{
namespace Cryptography
{
class LIBIL2CPP_CODEGEN_API RNGCryptoServiceProvider
{
public:
static void RngClose(intptr_t hand... | {
"pile_set_name": "Github"
} |
// @flow
import {Component} from 'react';
class MyComponent extends Component {
static defaultProps: DefaultProps = {};
props: Props;
state: State = {};
defaultProps: T;
static props: T;
static state: T;
a: T;
b = 5;
c: T = 5;
method() {}
}
const expression = () =>
class extends Component {
... | {
"pile_set_name": "Github"
} |
package com.consol.citrus;
/**
* @author Christoph Deppisch
*/
public interface TestCaseRunner extends TestCaseBuilder, GherkinTestActionRunner {
/**
* Starts the test case execution.
*/
void start();
/**
* Stops test case execution.
*/
void stop();
}
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env node
var cli = require('cli');
var output_file = function (file) {
cli.withInput(file, function (line, sep, eof) {
if (!eof) {
cli.output(line + sep);
} else if (cli.args.length) {
output_file(cli.args.shift());
}
});
};
if (cli.args.length) {
... | {
"pile_set_name": "Github"
} |
/* file generated by 'generate-global-headers.bat' */
#include "..\../crypto/bf/blowfish.h"
| {
"pile_set_name": "Github"
} |
%p
Welcome #{@resource.email}!
%p You can confirm your account through the link below:
%p= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token)
| {
"pile_set_name": "Github"
} |
.no-skin {
.navbar .navbar-toggle {
background-color: #75B3D7;
&:focus {
background-color: #75B3D7;
border-color: transparent;
}
&:hover {
background-color: darken(#75B3D7 , 5%);
border-color: rgba(255,255,255,0.1);
}
&.display, &[data-toggle=collapse]:not(.collapsed) {
background-color: ... | {
"pile_set_name": "Github"
} |
import os
import sys
import matplotlib.pyplot as plt
import seaborn
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__), "../"))
sys.path.append(ROOT)
from utils import benchmark
data = [
("Size", [16 * 1024,
32 * 1024,
36 * 1024,
48 * 1024,
128 ... | {
"pile_set_name": "Github"
} |
form=七律
tags=
好恨这风儿。
催俺分离。
船儿吹得去如飞。
因甚眉儿吹不展,
叵耐风儿。
不是这船儿。
载起相思。
船儿若念我孤恓。
载取人人篷底睡,
感谢风儿。
| {
"pile_set_name": "Github"
} |
<html>
<body>
Home Page
</body>
</html>
| {
"pile_set_name": "Github"
} |
'use strict'
const resources = require('../resources')
module.exports = {
method: 'POST',
path: '/api/v0/shutdown',
...resources.shutdown
}
| {
"pile_set_name": "Github"
} |
package main
import "testing"
import "time"
func TestPrint1(t *testing.T) {
print1()
}
func TestGoPrint1(t *testing.T) {
goPrint1()
time.Sleep(1 * time.Millisecond)
}
| {
"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"
} |
table_create Entries TABLE_NO_KEY
column_create Entries content COLUMN_SCALAR ShortText
load --table Entries
[
{"content": "<p>groonga and MySQL</p>"}
]
select Entries \
--output_columns ' \
snippet(content, \
"Groonga", "<span class=\\"keyword\\">", "</span>", \
{} \
)'
| {
"pile_set_name": "Github"
} |
contract A {
function g() public { revert("fail"); }
}
contract C {
A a = new A();
function f() public {
a.g();
}
}
// ====
// compileViaYul: also
// EVMVersion: >=byzantium
// revertStrings: debug
// ----
// f() -> FAILURE, hex"08c379a0", 0x20, 4, "fail"
| {
"pile_set_name": "Github"
} |
include stdlib
| {
"pile_set_name": "Github"
} |
project "BulletFileLoader"
kind "StaticLib"
targetdir "../../../build/lib"
includedirs {
"../.."
}
files {
"**.cpp",
"**.h"
} | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="TimesheetDatabase" connectionString="Server=192.168.3.2;Database=ToolsSampleDatabase;User=Snek;Password=p@ssw0rd" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
... | {
"pile_set_name": "Github"
} |
valgrind: no program specified
valgrind: Use --help for more information.
| {
"pile_set_name": "Github"
} |
Hungarian Academy of Fine Arts Budapest
| {
"pile_set_name": "Github"
} |
System.register([], function(_export) {
return {
execute: function () {
_export('hello', 'there');
}
};
}); | {
"pile_set_name": "Github"
} |
// switch_bug.cpp: bug in switch-case construct
// #include <stdio.h>
// #include <assert.h>
void foobar()
{
int i = 1;
switch(i)
{
static int s = 42;
s = 0; // unreachable code (which is put into the next case by mistake)
case 1:
i = s;
... | {
"pile_set_name": "Github"
} |
groups = [ 'GroupA' : new Group( "GroupA" ),
'GroupB' : new Group( "GroupB" )
];
return groups;
| {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
#include <iostream>
#include <memory>
static void print_str(std::string s)
{
std::cout << s << std::endl;
}
int main()
{
std::string s("Hello World!");
print_str(std::move(s));
std::cout << "|" << s << "|" << std::endl;
return 0;
}
| {
"pile_set_name": "Github"
} |
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Host Aggregates" %}{% endblock %}
{% block main %}
<div id="host-aggregates">
{{ host_aggregates_table.render }}
</div>
<div id="availability-zones">
{{ availability_zones_table.render }}
</div>
{% endblock %}
| {
"pile_set_name": "Github"
} |
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
declare const _default: ((string[] | undefined)[] | (string | string[])[])[];
export default _default;
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.