text stringlengths 2 99k | meta dict |
|---|---|
#include <core.p4>
header IPv4_option_NOP {
bit<8> value;
}
struct Parsed_Packet {
IPv4_option_NOP[3] nop;
}
package Switch();
Switch() main;
| {
"pile_set_name": "Github"
} |
import LinkedList from '../../../../data-structures/linked-list/LinkedList';
import traversal from '../traversal';
describe('traversal', () => {
it('should traverse linked list', () => {
const linkedList = new LinkedList();
linkedList
.append(1)
.append(2)
.append(3);
const traversedN... | {
"pile_set_name": "Github"
} |
; Test return attributes
; RUN: llvm-as < %s | llvm-dis | grep "define inreg i32"
; RUN: llvm-as < %s | llvm-dis | grep "call inreg i32"
; RUN: verify-uselistorder %s
define inreg i32 @fn1() {
ret i32 0
}
define void @fn2() {
%t = call inreg i32 @fn1()
ret void
}
| {
"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 ... | {
"pile_set_name": "Github"
} |
gaia2 (2.4.3-1) unstable; urgency=low
* New upstream release
-- Nicolas Wack <nicolas.wack@upf.edu> Mon, 19 Dec 2011 16:37:49 +0100
gaia2 (2.4.2-1) unstable; urgency=low
* New upstream release
-- Nicolas Wack <nicolas.wack@upf.edu> Wed, 28 Sep 2011 18:21:33 +0200
gaia2 (2.4.1-1) unstable; urgency=low
*... | {
"pile_set_name": "Github"
} |
#!/bin/bash
#
# Swap File Creator
#
# This script will create and configure a swap file
# on your droplet at creation time.
# Tested on:
# Fedora 22
# Fedora 23
#
# <%MODE%> Please replace using "automatic" or "manual" mode.
#
# * automatic mode:
#
# Based Red Hat Enterprise Linux Administration Guide
# Sw... | {
"pile_set_name": "Github"
} |
๏ปฟ
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomActionSelector.Server", "CustomActionSelector.Server\CustomActionSelector.Server.csproj", "{BCC66C89-1AF0-411A-B2F3-99120E96987F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00... | {
"pile_set_name": "Github"
} |
pragma solidity ^0.5.0;
contract A {
uint a;
function f1(uint i) public {
a = i;
}
function f2(uint i) public {
a = i;
}
function g(uint i) public {
function (uint256) f = i < 100 ? f1 : f2;
f(i);
}
function h() public {
msg.sender.transfer(a);
... | {
"pile_set_name": "Github"
} |
// ๅ่ฝ๏ผไปฃ็ 3-4 ๅ้ๅผๆณ็ๅฎ็ฐ
// ไฝ่
๏ผๆฑไผ zhu1988wei@163.com
// ๆฅๆบ๏ผใOpenCVๅพๅๅค็็ผ็จๅฎไพใ
// ๅๅฎข๏ผhttp://blog.csdn.net/zhuwei1988
// ๆดๆฐ๏ผ2016-8-1
// ่ฏดๆ๏ผ็ๆๆๆ๏ผๅผ็จๆๆๅฝ่ฏท่็ณปไฝ่
๏ผๅนถๆ็
งไธ้ขๆ ผๅผๆณจๆๅบๅค๏ผ่ฐข่ฐขใ//
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
int main( )
{
// ๅพๅ่ฏปๅๅๅคๆญ
cv::Mat srcImage = cv::imread("..\\i... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
import random
from captcha.conf import settings
import django
if django.VERSION < (1, 10): # NOQA
from django.core.urlresolvers import reverse # NOQA
else: # NOQA
from django.urls import reverse # NOQA
from six import u, text_type
def math_challenge():
operators = ("+", "*", "... | {
"pile_set_name": "Github"
} |
//List of files which are indexed.
fl = new Array();
fl["0"]= "ch01.html";
fl["1"]= "ch02.html";
fl["2"]= "ch02s01.html";
fl["3"]= "ch02s02.html";
fl["4"]= "ch02s03.html";
fl["5"]= "ch02s04.html";
fl["6"]= "ch03.html";
fl["7"]= "ch03s01.html";
fl["8"]= "ch03s02.html";
| {
"pile_set_name": "Github"
} |
๏ปฟ<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
a... | {
"pile_set_name": "Github"
} |
๏ปฟusing LmpClient.Extensions;
using System.Collections.Generic;
using System.Linq;
namespace LmpClient.VesselUtilities
{
/// <summary>
/// This is a proof of concept. A class that can reload vessel parts
/// </summary>
public class OwnVesselReloader
{
public static bool ReloadOwnVessel(Proto... | {
"pile_set_name": "Github"
} |
---
fixes:
- Allow the configuration of image_member_quota
in Glance API. This error blocks the ability
of sharing images if the default value (128)
is reached.
| {
"pile_set_name": "Github"
} |
#!/bin/sh
# SUMMARY: Namespace stress with a single long running UDP/IPv6 "connection" over a veth pair in reverse order
# LABELS:
# REPEAT:
set -e
# Source libraries. Uncomment if needed/defined
#. "${RT_LIB}"
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
NAME=test-ns
clean_up() {
rm -rf ${NAME}-*
}
trap clean_up EXIT
l... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2015, Cisco Systems
// 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 source code must retain the above copyright notice,
// this list of condi... | {
"pile_set_name": "Github"
} |
// go run mksysnum.go https://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,dragonfly
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT = 1 ... | {
"pile_set_name": "Github"
} |
#pragma glslify: envMapEquirect = require(../../local_modules/glsl-envmap-equirect)
#pragma glslify: envMapCube = require(../../local_modules/glsl-envmap-cube)
#pragma glslify: toGamma = require(glsl-gamma/out)
#pragma glslify: toLinear = require(glsl-gamma/in)
#pragma glslify: tonemapU... | {
"pile_set_name": "Github"
} |
๏ปฟ<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FodyHelpers" Version="6.1.0" />
</ItemGroup>
</Project> | {
"pile_set_name": "Github"
} |
--
-- Test cube datatype
--
CREATE EXTENSION cube;
-- Check whether any of our opclasses fail amvalidate
SELECT amname, opcname
FROM pg_opclass opc LEFT JOIN pg_am am ON am.oid = opcmethod
WHERE opc.oid >= 16384 AND NOT amvalidate(opc.oid);
--
-- testing the input and output functions
--
-- Any number (a one-dimen... | {
"pile_set_name": "Github"
} |
/// Copyright (c) 2009 Microsoft Corporation
///
/// Redistribution and use in source and binary forms, with or without modification, are permitted provided
/// that the following conditions are met:
/// * Redistributions of source code must retain the above copyright notice, this list of conditions and
/// ... | {
"pile_set_name": "Github"
} |
.TH std::char_traits<CharT>::eof 3 "2019.08.27" "http://cppreference.com" "C++ Standard Libary"
.SH NAME
std::char_traits<CharT>::eof \- std::char_traits<CharT>::eof
.SH Synopsis
static int_type eof(); \fI(until C++11)\fP
static constexpr int_type eof() noexcept; \fI(since C++11)\fP
Retu... | {
"pile_set_name": "Github"
} |
/* sxr -- Scala X-Ray
* Copyright 2009 Mark Harrah
*/
package sxr
/** Escapes a raw string for use in HTML.*/
object Escape
{
def apply(s: String) =
{
val out = new StringBuilder
for(i <- 0 until s.length)
{
s.charAt(i) match
{
case '>' => out.append(">")
case '&' => out.append("&")
... | {
"pile_set_name": "Github"
} |
{
"@context": "e128-context-3.jsonld"
}
| {
"pile_set_name": "Github"
} |
SoundFX 1.3
6 24 4 15 15 6 47 8 0 64
2 0 1 3 4 5 1 3
64 1 0 hammelody1
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -fsyntax-only -verify %s
// rdar://15505492
@import Foundation; // expected-error {{use of '@import' when modules are disabled}}
@interface Subclass
+ (int)magicNumber;
@end
int main (void) {
return Subclass.magicNumber;
}
| {
"pile_set_name": "Github"
} |
/*
Unix SMB/CIFS implementation.
Utility functions for Samba
Copyright (C) Andrew Tridgell 1992-1999
Copyright (C) Jelmer Vernooij 2005
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software F... | {
"pile_set_name": "Github"
} |
123456
123456
MyFirstName MyLastName
MyDevelopmentUnitName
MyCompanyName
MyCity
MT
BR
y
123456
| {
"pile_set_name": "Github"
} |
<?php
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
* @copyright Copyright (C) 2015 - 2020 Vast Development... | {
"pile_set_name": "Github"
} |
sta<caret>te $var =123;
| {
"pile_set_name": "Github"
} |
/*
* FltLib related functions tests
*
* Copyright 2016 Ged Murphy (ged.murphy@reactos.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Licence as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option... | {
"pile_set_name": "Github"
} |
<?php
/*
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a... | {
"pile_set_name": "Github"
} |
# $NetBSD: Makefile,v 1.16 2020/09/13 16:04:28 taca Exp $
DISTNAME= posix-spawn-0.3.15
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/rtomayko/posix-spawn/
COMMENT= Ruby wrapper for the posix_spawn() system call
LICENSE= mit
RUBYGEM_OPTIONS+= --format-executable
.include "../../l... | {
"pile_set_name": "Github"
} |
//
// basic_datagram_socket.hpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_ASI... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the abov... | {
"pile_set_name": "Github"
} |
#lang ivy1.6
include order
module sequence_numbers = {
type t
instance iter : order_iterator_impl(this)
action next(seq:t) returns (res:t)
interpret t->bv[8]
implement next {
res := seq + 1
}
}
| {
"pile_set_name": "Github"
} |
Files:
tests/test-nonblocking-pipe.sh
tests/test-nonblocking-pipe-main.c
tests/test-nonblocking-pipe-child.c
tests/test-nonblocking-pipe.h
tests/test-nonblocking-writer.h
tests/test-nonblocking-reader.h
tests/test-nonblocking-misc.h
tests/macros.h
Depends-on:
stdbool
unistd
nonblocking
wait-process
pipe-posix
dup2
env... | {
"pile_set_name": "Github"
} |
--- spack-src/prism/Makefile.bak 2019-04-19 07:53:32.000000000 +0900
+++ spack-src/prism/Makefile 2020-09-08 15:22:09.775733701 +0900
@@ -66,6 +66,9 @@
ifneq (,$(findstring ia64, $(shell uname -m)))
ARCH = ia64
endif
+ ifneq (,$(findstring aarch64, $(shell uname -m)))
+ ARCH = aarch64
+ endif
endif
# For Mac/... | {
"pile_set_name": "Github"
} |
#ifndef __BRUBECK_SERVER_H__
#define __BRUBECK_SERVER_H__
struct brubeck_internal_stats {
int sample_freq;
struct {
uint32_t metrics;
uint32_t errors;
uint32_t unique_keys;
struct {
uint32_t failed;
uint32_t from_future;
uint32_t delayed;
uint32_t replayed;
} secure;
} live, sample;
};
// Se... | {
"pile_set_name": "Github"
} |
---
title: File Transform task
description: Apply configuration file transformations and variable substitution to a target package or folder
ms.topic: reference
ms.assetid: 7B6A6B5C-8AA1-410A-AE1F-08D59AF00E7B
ms.custom: seodec18
ms.author: ronai
author: RoopeshNair
ms.date: 02/21/2019
monikerRange: '> tfs-2018'
---
#... | {
"pile_set_name": "Github"
} |
// This file is derived from the Cesium code base under Apache 2 license
// See LICENSE.md and https://github.com/AnalyticalGraphicsInc/cesium/blob/master/LICENSE.md
// Reference code:
// https://github.com/AnalyticalGraphicsInc/cesium/blob/master/Source/Scene/Composite3DTileContent.js#L182
import {parse3DTileHeaderS... | {
"pile_set_name": "Github"
} |
package com.example.library.utils
import android.annotation.TargetApi
import android.app.Activity
import android.content.ContentUris
import android.content.ContentValues
import android.content.Context
import android.content.DialogInterface
import android.content.Intent
import android.database.Cursor
import android.net... | {
"pile_set_name": "Github"
} |
#ifndef BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED
#define BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2000-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.... | {
"pile_set_name": "Github"
} |
<?php
/**
* PHPExcel
*
* Copyright (c) 2006 - 2015 PHPExcel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later ve... | {
"pile_set_name": "Github"
} |
.select2-result-label {
.variant-autocomplete-item {
.variant-details {
padding: 0 10px;
float: left;
}
.variant-image {
margin-top: 5px;
background-color: white;
float: left;
margin-right: 10px;
}
ul.variant-details {
li {
display: inline-block;... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2011-2018, Meituan Dianping. All Rights Reserved.
*
* 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 Y... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts.conf file to configure system font access -->
<fontconfig>
<!-- Enable sub-pixel rendering
<match target="font">
<test qual="all" name="rgba">
<const>unknown</const>
... | {
"pile_set_name": "Github"
} |
<?php
/**
* Created by Hisune EchartsPHP AutoGenerate.
* @author: Hisune <hi@hisune.com>
*/
namespace Hisune\EchartsPHP\Doc\IDE\Grid\Tooltip;
use Hisune\EchartsPHP\Property;
/**
* @property string $color Default: '#fff'
* text color.
*
* @property string $fontStyle Default: 'normal'
* font style
* ... | {
"pile_set_name": "Github"
} |
--- ./src/Makefile.orig 2020-03-28 14:25:12.000000000 +0100
+++ ./src/Makefile 2020-04-03 21:01:21.744145133 +0200
@@ -206,7 +206,7 @@
# Enable multi-threading support.
PARALLEL_CFLAGS = -Dgmic_is_parallel
ifneq ($(OS),Windows)
-PARALLEL_LIBS = -lpthread
+#PARALLEL_LIBS = -lpthread
endif
# Enable parallelization... | {
"pile_set_name": "Github"
} |
export declare class DocumentReference {
readonly id: string;
readonly projection: Object;
set(data: Object): Promise<any>;
update(data: Object): Promise<any>;
remove(): Promise<any>;
get(): Promise<any>;
field(projection: Object): DocumentReference;
}
| {
"pile_set_name": "Github"
} |
vtk_module_test_data(
Data/GIS/raster.tif
Data/autoshop.jpg
Data/anisotropyTex.png
Data/bunny.ply
Data/clouds.jpeg
Data/dragon.ply
Data/normalMapping.png
Data/skybox-nx.jpg
Data/skybox-ny.jpg
Data/skybox-nz.jpg
Data/skybox-px.jpg
Data/skybox-py.jpg
Data/skybox-pz.jpg
Data/skybox/,REGEX:.*\.j... | {
"pile_set_name": "Github"
} |
## logs
logs is a Go logs manager. It can use many logs adapters. The repo is inspired by `database/sql` .
## How to install?
go get github.com/astaxie/beego/logs
## What adapters are supported?
As of now this logs support console, file,smtp and conn.
## How to use it?
First you must import it
import (
"g... | {
"pile_set_name": "Github"
} |
//
// Pager pagination
// --------------------------------------------------
.pager {
padding-left: 0;
margin: @line-height-computed 0;
list-style: none;
text-align: center;
&:extend(.clearfix all);
li {
display: inline;
> a,
> span {
display: inline-block;
padding: 5px 14px;
... | {
"pile_set_name": "Github"
} |
function handleDragStart(e) {
var refIndex = parseInt(e.target.getAttribute("class").split("fileindex")[1]);
var fullPath = require('path').join(desktopPath, filesOnDesktop[refIndex ]);
var fs = require('fs').stat(fullPath);
if(fs.type == "file") {
/*
var file = fs.file;
var leafName = fs.leafName;... | {
"pile_set_name": "Github"
} |
# WebWorks System Event Log Information
## NOTE: THIS IS A WORK IN PROGRESS
The WebWorks System Event Log API will allow you to write to the Blackberry System Event Log from within your WebWorks applications.
**Authors:**
[John Mutter](https://github.com/jmutter)
[Matthew Haag](https://github.com/muerl)
## Known ... | {
"pile_set_name": "Github"
} |
<?php
declare(strict_types=1);
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*... | {
"pile_set_name": "Github"
} |
/* -------------------------------------------------------------------------- */
/* Copyright 2002-2020, OpenNebula Project, OpenNebula Systems */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); you may ... | {
"pile_set_name": "Github"
} |
Gibraltar is a British overseas territory.
Contact the Gibraltar Government to find out about getting married there, including what documents youโll need.
$A
Civil Status and Registration Office
Government of Gibraltar
Secretaryโs Lane
Gibraltar
$A
$C
**Telephone**: +350 200 72289\\
**E-mail**: <marriages.csro@gibra... | {
"pile_set_name": "Github"
} |
๏ปฟ<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Should" version="1.1.20" targetFramework="net452" />
<package id="xunit" version="2.1.0" targetFramework="net452" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net452" />
<package id="xunit.assert" version="2.1.0" targetFrame... | {
"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"));
else if (typeof define == "function" && define.a... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfCompareValidator checks the equality of two dif... | {
"pile_set_name": "Github"
} |
import caffe.proto.caffe_pb2 as caffe_pb2
from google.protobuf.text_format import Merge
import argparse
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('source_prototxt')
parser.add_argument('target_prototxt')
args = parser.parse_args()
net = caffe_pb2.NetParameter... | {
"pile_set_name": "Github"
} |
#include "meta.h"
#include "../util.h"
/* BGW (FF XI) */
VGMSTREAM * init_vgmstream_bgw(STREAMFILE *streamFile) {
VGMSTREAM * vgmstream = NULL;
char filename[260];
off_t start_offset;
int32_t loop_start;
int loop_flag = 0;
int channel_count;
/* check extension, case insensitive */
stream... | {
"pile_set_name": "Github"
} |
/* eslint-disable functional/no-expression-statement, @typescript-eslint/naming-convention */
import test from 'ava';
import {
AuthenticationProgramStateBCH,
BytecodeGenerationResult,
hexToBin,
} from '../../lib';
import {
expectCompilationResult,
privkey,
} from './compiler-bch.e2e.spec.helper';
test(
'... | {
"pile_set_name": "Github"
} |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.aicaprio.curtainview"/>
| {
"pile_set_name": "Github"
} |
version: 1.1
kind: component
tags: [examples, keras]
inputs:
- {name: conv1_size, type: int, value: 32, isOptional: true}
- {name: conv2_size, type: int, value: 64, isOptional: true}
- {name: dropout, type: float, value: 0.8, isOptional: true}
- {name: hidden1_size, type: int, value: 500, isOptional: true}
- {name: op... | {
"pile_set_name": "Github"
} |
{-# LANGUAGE OverloadedStrings #-}
module Language.PlutusCore.Pretty.Utils
( prettyBytes
) where
import PlutusPrelude
import qualified Data.ByteString as BS
import qualified Data.Text as T
import Data.Text.Prettyprint.Doc.Internal
import ... | {
"pile_set_name": "Github"
} |
{
"@f": "@font-face {\n\tfont-family: ${1};\n\tsrc: url(${1});\n}",
"@ff": "@font-face {\n\tfont-family: '${1:FontName}';\n\tsrc: url('${2:FileName}.eot');\n\tsrc: url('${2:FileName}.eot?#iefix') format('embedded-opentype'),\n\t\t url('${2:FileName}.woff') format('woff'),\n\t\t url('${2:FileName}.ttf') format('truety... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon> | {
"pile_set_name": "Github"
} |
.. title:: clang-tidy - modernize-use-equals-delete
modernize-use-equals-delete
===========================
This check marks unimplemented private special member functions with ``= delete``.
To avoid false-positives, this check only applies in a translation unit that has
all other member functions implemented.
.. co... | {
"pile_set_name": "Github"
} |
if (CLANGD_ENABLE_REMOTE)
generate_grpc_protos(RemoteIndexProtos "Index.proto")
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../)
# FIXME(kirillbobyrev): target_compile_definitions is not working with
# add_clang_library for some reason. Is there any way... | {
"pile_set_name": "Github"
} |
// Copyright 2000-2018 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 com.intellij.util.indexing;
import com.intellij.util.io.DataInputOutputUtil;
import consulo.container.boot.ContainerPathManager;
import java.io.*;
class PersistentIndic... | {
"pile_set_name": "Github"
} |
-P:minibox:Ygeneric-constructor-code -P:minibox:warn-off
| {
"pile_set_name": "Github"
} |
<template>
<div class="bottom alignCenter scrollStyle" ref="bottom">
<div class="playControl">
<i class="iconfont icon-shangyishou prev" @click="prev" v-if="!isPreNext"></i>
<i class="iconfont icon-icon-test1 prev" style="font-size:32px;" v-if="isPreNext"></i>
<i class="iconfont palyClass play"... | {
"pile_set_name": "Github"
} |
/******************************************************************************
*
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2000-2007 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"
} |
---
title: ๅจ Windows 10ใ8.1ใ8 ไธๅฎ่ฃ
.NET Framework 3.5
description: ไบ่งฃๅฆไฝๅจ Windows 10ใWindows 8.1 ๅ Windows 8 ไธๅฎ่ฃ
.NET Framework 3.5ใ
ms.date: 07/16/2018
ms.openlocfilehash: cfe21c0821b8f3223301dcc802533e1aaf024a79
ms.sourcegitcommit: 7588136e355e10cbc2582f389c90c127363c02a5
ms.translationtype: HT
ms.contentlocale: zh-CN
... | {
"pile_set_name": "Github"
} |
# Copyright 2019 The dm_control 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 i... | {
"pile_set_name": "Github"
} |
<answer>fun sendMessageToClient(
client: Client?, message: String?, mailer: Mailer
) {
val email = client?.personalInfo?.email
if (email != null && message != null) {
mailer.sendMessage(email, message)
}
}</answer>
class Client (val personalInfo: PersonalInfo?)
class PersonalInfo (val email... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 3ff33a0e71e7b854bb7aa86eef2bbf8d
timeCreated: 1503273277
licenseType: Free
NativeFormatImporter:
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/* This test purpose is simply to check Standard header independancy that
* is to say that the header can be included alone without any previous
* include.
* Additionnaly, for C Standard headers that STLport expose, it can also be
* used to check that files included by those headers are compatible with
* pure C co... | {
"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><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta name="generator" content="Doxygen 1.8.14"/>
<link rel="stylesheet" type="text/css" href="search... | {
"pile_set_name": "Github"
} |
public class Test {
public static void main(String[] args) {
System.out.println("simple:website<caret>");
}
}
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2014 The AppCan Open Source Project.
*
* 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 of the License, or
* (at your option) any later versi... | {
"pile_set_name": "Github"
} |
apiVersion: scheduling.k8s.io/v1
description: "19"
globalDefault: true
kind: PriorityClass
metadata:
annotations:
"9": "10"
clusterName: "15"
creationTimestamp: null
deletionGracePeriodSeconds: -4955867275792137171
finalizers:
- "14"
generateName: "3"
generation: 8071137005907523419
labels:
"7... | {
"pile_set_name": "Github"
} |
var test = require('tape');
var parse = require('../');
test('boolean default true', function (t) {
var argv = parse([], {
boolean: 'sometrue',
default: { sometrue: true }
});
t.equal(argv.sometrue, true);
t.end();
});
test('boolean default false', function (t) {
var argv = parse([... | {
"pile_set_name": "Github"
} |
EXTRA_DIST=\
protocol.txt \
scripting.txt
| {
"pile_set_name": "Github"
} |
๏ปฟ<BSPagination Alignment="Alignment.Center">
<BSPaginationItem IsDisabled="true">
<BSPaginationLink Href="#" PaginationLinkType="PaginationLinkType.PreviousText" />
</BSPaginationItem>
<BSPaginationItem>
<BSPaginationLink Href="#" PaginationLinkType="PaginationLinkType.Custom">1</BSPaginatio... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SignVerifyMessageDialog</class>
<widget class="QDialog" name="SignVerifyMessageDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>700</width>
<height>380</height>
</rect>
</property>
<property name="windowTit... | {
"pile_set_name": "Github"
} |
var searchData=
[
['margin_28',['Margin',['../structwkhtmltopdf_1_1settings_1_1Margin.html',1,'wkhtmltopdf::settings::Margin'],['../structwkhtmltopdf_1_1settings_1_1PdfGlobal.html#a5134abc2cf21870b455416d5efc466f6',1,'wkhtmltopdf::settings::PdfGlobal::margin()']]]
];
| {
"pile_set_name": "Github"
} |
// Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2
// This file is part of Checkmk (https://checkmk.com). It is subject to the
// terms and conditions defined in the file COPYING, which is part of this
// source code package.
#include "TableCommands.h"
#include <memory>
#include <vector>
#in... | {
"pile_set_name": "Github"
} |
import defined from "../Core/defined.js";
import FrustumOutlineGeometry from "../Core/FrustumOutlineGeometry.js";
function createFrustumOutlineGeometry(frustumGeometry, offset) {
if (defined(offset)) {
frustumGeometry = FrustumOutlineGeometry.unpack(frustumGeometry, offset);
}
return FrustumOutlineGeometry.c... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -std=c++11 -triple x86_64-linux-gnu -fms-extensions -ast-dump -ast-dump-filter Test %s | FileCheck -strict-whitespace %s
class testEnumDecl {
enum class TestEnumDeclScoped;
enum TestEnumDeclFixed : int;
};
// CHECK: EnumDecl{{.*}} class TestEnumDeclScoped 'int'
// CHECK: EnumDecl{{.*}} Te... | {
"pile_set_name": "Github"
} |
๏ปฟ/*
setcolor.cpp
ะฃััะฐะฝะพะฒะบะฐ ัะฐัะพะฒัะบะธั
ัะฒะตัะพะฒ
*/
/*
Copyright ยฉ 1996 Eugene Roshal
Copyright ยฉ 2000 Far Group
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 source code must retain ... | {
"pile_set_name": "Github"
} |
<!--
~ Copyright (c) 2018 Wolfram Research, Inc. All rights reserved.
~ Redistribution or use of this work in any form, with or without modification,
~ requires written permission from the copyright holder.
-->
<h3><a href="http://reference.wolfram.com/mathematica/ref/HolidayCalendar.html">HolidayCalendar</a>... | {
"pile_set_name": "Github"
} |
#include "../../../src/scripttools/debugging/qscriptdebuggerjob_p_p.h"
| {
"pile_set_name": "Github"
} |
/**
* DSS - Digital Signature Services
* Copyright (C) 2015 European Commission, provided under the CEF programme
*
* This file is part of the "DSS - Digital Signature Services" project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Publ... | {
"pile_set_name": "Github"
} |
#!/bin/sh
N_STRUCTS=300
# Utility routine to "hand" check VTTs.
let i=1;
while [ $i != $N_STRUCTS ]; do
sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-clang.s |
grep -v '\.[sgm][elo]' | sed -e 's/[()]//g' -e '/^$/d' >test-clang-ztt
sed -n "/^__ZTT.*s$i:/,/\.[sgm][elo]/p" test-gcc.s |
grep -v '\.[sgm][elo]... | {
"pile_set_name": "Github"
} |
This module manages attributes that can be attached to subroutine and
variable declarations. Although it can be used directly, it is mainly
intended to be infrastructure for modules that supply particular attribute
semantics.
Meanings are assigned to attributes by code which is usually supplied by
modules and which ru... | {
"pile_set_name": "Github"
} |
{
"name": "20",
"version": "3.1.9",
"description": "A use of angular framework to write the news system, I used the style of weui, production of carousel figure by swiper, using nodejs's native module to make the server, using the gulp to build the project automation, I am wscats, my master is autumnswind,",
"m... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.