text stringlengths 2 99.9k | meta dict |
|---|---|
/*
* ====================================================================
* 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
... | {
"pile_set_name": "Github"
} |
package store
import (
"crypto/tls"
"errors"
"time"
)
// Backend represents a KV Store Backend
type Backend string
const (
// CONSUL backend
CONSUL Backend = "consul"
// ETCD backend
ETCD Backend = "etcd"
// ZK backend
ZK Backend = "zk"
// BOLTDB backend
BOLTDB Backend = "boltdb"
)
var (
// ErrBackendNo... | {
"pile_set_name": "Github"
} |
# Configuration file for fw_(printenv/setenv) utility.
# Up to two entries are valid, in this case the redundant
# environment sector is assumed present.
# Notice, that the "Number of sectors" is not required on NOR and SPI-dataflash.
# Futhermore, if the Flash sector size is ommitted, this value is assumed to
# be the... | {
"pile_set_name": "Github"
} |
test
testBroadcast
| w b t e eventId |
w := self newWorld.
w create: 3 turtles: 1.
eventId := EventId new.
e := eventId newNo.
b := self newGenerator.
b broadcast: e.
self assert: w raisedEvents isEmpty.
t := self newThread: w.
t forBreedNo: 3 index: 1.
t codes: b code.
t execute: 1.
self assert: (w raised... | {
"pile_set_name": "Github"
} |
<?php
/**
* @author
* @license The MIT License (MIT), http://opensource.org/licenses/MIT
*/
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['welcome.hello'] = 'Hello!';
| {
"pile_set_name": "Github"
} |
<!--- ------------------------------------------------------------------------- ----
Author: Ben Nadel
Desc: Handles the reading an writing of Excel files using the POI
package that ships with ColdFusion.
Special thanks to Ken Auenson and his suggestions:
http://ken.auenson.com/examples/func_ExcelToQu... | {
"pile_set_name": "Github"
} |
lf
lf
crlf
lf
lf
| {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
*
* This file is part of FFmpeg.
*
* FFmpeg 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,... | {
"pile_set_name": "Github"
} |
package com.shenjiajun.customizeviewdemo.views;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Shader;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.d... | {
"pile_set_name": "Github"
} |
<?php
/**
* This file is part of prooph/proophessor-do.
* (c) 2014-2018 prooph software GmbH <contact@prooph.de>
* (c) 2015-2018 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
de... | {
"pile_set_name": "Github"
} |
module Concurrent
module Synchronization
if Concurrent.on_jruby? && Concurrent.java_extensions_loaded?
# @!visibility private
# @!macro internal_implementation_note
class JRubyLockableObject < AbstractLockableObject
end
end
end
end
| {
"pile_set_name": "Github"
} |
/*
* 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, software
* distributed u... | {
"pile_set_name": "Github"
} |
var bool: BOOL____00005 :: is_defined_var :: var_is_introduced;
var 1..81: INT____00010 :: is_defined_var :: var_is_introduced;
var 1..81: total_sum :: output_var = INT____00010;
array [1..9] of var 0..9: x :: output_array([1..3, 1..3]);
constraint int_eq(x[5], 0);
constraint int_le_reif(1, x[1], true);
constraint int_... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2019 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*... | {
"pile_set_name": "Github"
} |
import module namespace ddl = "http://zorba.io/modules/store/static/collections/ddl";
import module namespace dml = "http://zorba.io/modules/store/static/collections/dml";
import module namespace ns = "http://www.example.com/example" at "../collection_001.xqdata";
ddl:create(xs:QName("ns:collection_queue"));
dml:ins... | {
"pile_set_name": "Github"
} |
from pyomo.environ import *
A = ['hammer', 'wrench', 'screwdriver', 'towel']
b = {'hammer':8, 'wrench':3, 'screwdriver':6, 'towel':11}
w = {'hammer':5, 'wrench':7, 'screwdriver':4, 'towel':3}
W_max = 14
model = ConcreteModel()
model.x = Var( A, within=Binary )
model.obj = Objective(
expr = sum( b[i]*model.x[i] f... | {
"pile_set_name": "Github"
} |
# 1 "m.c"
! mmixal:= 8H LOC Data_Section
.text ! mmixal:= 9H LOC 8B
.p2align 2
LOC @+(4-@)&3
.global main
main IS @
GET $0,rJ
PUSHJ $1,bar
PUSHJ $1,bar
PUT rJ,$0
POP 1,0
.data ! mmixal:= 8H LOC 9B
| {
"pile_set_name": "Github"
} |
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SYNC_INTERNAL_API_PUBLIC_BASE_NODE_ORDINAL_H_
#define SYNC_INTERNAL_API_PUBLIC_BASE_NODE_ORDINAL_H_
#include <stddef.h>
#include <stdint.h>
#inc... | {
"pile_set_name": "Github"
} |
package swarm
import (
"context"
"fmt"
"strings"
"github.com/docker/cli/cli"
"github.com/docker/cli/cli/command"
"github.com/docker/docker/api/types/swarm"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
type joinOptions struct {
remote string
listenAddr NodeAddrOption
// ... | {
"pile_set_name": "Github"
} |
{
"name": "Radar",
"script": "Radar.js",
"version": "0.1",
"description": "The Radar script creates an animated wavefront from a selected token to reveal visible and invisible tokens on the map, with optional character or token property filters. Output including directional and distance information of qualifyin... | {
"pile_set_name": "Github"
} |
/*
哈希表
*/
import "rhash.h"
main
{
rhash<int> a
a['abc']=3
a['121213']=4
a['1']=1
for i=1 to 1000
a[i.torstr]=i
a['121213'].printl
} | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the Qsnh/meedu.
*
* (c) XiaoTeng <616896861@qq.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace App\Http\Requests\Backend;
class NavRequest extends BaseRequest
{
/**
* Determine if the use... | {
"pile_set_name": "Github"
} |
import * as React from 'react';
import { Label } from '@fluentui/react-northstar';
import { CloseIcon } from '@fluentui/react-icons-northstar';
const LabelExampleRtl = () => (
<Label
content="جين دو"
circular
image={{ src: 'https://fabricweb.azureedge.net/fabric-website/assets/images/avatar/small/matt.jp... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>DocumentHandler (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="org.xml.sax.DocumentHandler interface">
<meta name="keywords" content="setDo... | {
"pile_set_name": "Github"
} |
#include "script_component.hpp"
class CfgPatches {
class ADDON {
name = CSTRING(component);
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"cba_common"};
author = "$STR_CBA_Author";
authors[] = {"Spooner"};
url =... | {
"pile_set_name": "Github"
} |
(* Copyright (c) 2014, TrustInSoft
* All rights reserved.
*)
(* See end of file for a HOWTO. *)
type 'a flamegraph = ((int * 'a) list * float) list
module Flamegraph(Key : Datatype.S) :
Datatype.S with type t = Key.t flamegraph
module type S = sig
type key
type data = private {
mutable count : int;
... | {
"pile_set_name": "Github"
} |
package com.boardgamegeek.sorter
import android.content.Context
import android.database.Cursor
import androidx.annotation.StringRes
import com.boardgamegeek.R
import com.boardgamegeek.extensions.asMinutes
import com.boardgamegeek.extensions.getInt
import com.boardgamegeek.provider.BggContract.Collection
abstract clas... | {
"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"
} |
// go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build aix,ppc64
package unix
import (
"unsafe"
)
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func utimes(path string, times *[2]Tim... | {
"pile_set_name": "Github"
} |
package com.alipay.api.response;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.iot.mdeviceprod.device.unbind response.
*
* @author auto create
* @since 1.0, 2019-09-17 15:22:37
*/
public class AlipayCommerceIotMdeviceprodDeviceUnbindResponse extends AlipayResponse {
pri... | {
"pile_set_name": "Github"
} |
{
"short_name": "microenvi",
"name": "microenvi",
"start_url": "/?utm_source=homescreen",
"icons": [
{
"src": "/images/favicon.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/icon.png",
"type": "image/png",
"sizes": "512x512"
}
],
"background_color": "#... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2013-2020 Cinchapi Inc.
*
* 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 agr... | {
"pile_set_name": "Github"
} |
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview A class for speaking navigation information.
*/
goog.provide('cvox.NavigationSpeaker');
goog.require('cvox.NavDescription');
/**... | {
"pile_set_name": "Github"
} |
<?php
/**
* @copyright (c) 2014 Valery Fremaux
* @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
* @author Valery Fremaux <valery.fremaux@gmail.com>
*/
$strings['archiverealroot'] = 'Archive container real root (no symlinks here)';
$strings['backtoindex'] = 'Back to instance index';
$stri... | {
"pile_set_name": "Github"
} |
require('../../modules/es7.object.values');
module.exports = require('../../modules/_core').Object.values; | {
"pile_set_name": "Github"
} |
#include "shader_codeword.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include <direct.h>
#include <windows.h>
#include "gpu_som.h"
#include "shader_som.h"
GPUSom::GPUSom()
{
memset( this, 0, sizeof(GPUSom) );
}
void GPUSom::init()
{
gpulbg_j = 0;
gpulbg_gp... | {
"pile_set_name": "Github"
} |
// torridgristle CRT - Brighten pass
// by torridgristle
// license: public domain
#pragma parameter BrightenLevel "Brighten Level" 2.0 1.0 10.0 1.0
#pragma parameter BrightenAmount "Brighten Amount" 0.1 0.0 1.0 0.1
#if defined(VERTEX)
#if __VERSION__ >= 130
#define COMPAT_VARYING out
#define COMPAT_ATTRIBUTE in
#de... | {
"pile_set_name": "Github"
} |
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin dragonfly freebsd netbsd openbsd
// BSD system call wrappers shared by *BSD based systems
// including OS X (Darwin) and FreeBSD. Like the ot... | {
"pile_set_name": "Github"
} |
#include "tommath_private.h"
#ifdef BN_MP_OR_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
* LibTomMath is a library that provides multiple-precision
* integer arithmetic as well as number theoretic functionality.
*
* The library was designed directly after the MPI library by
* Michael Fro... | {
"pile_set_name": "Github"
} |
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: xadmin-core\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-07-20 13:28+0800\n"
"PO-Revision-Date: 2013-... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:element name="bot">
<xsd:annotation>
<xsd:documentation>Root element describing an bot instance</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xs... | {
"pile_set_name": "Github"
} |
version: "3.6"
services:
flask:
build : .
volumes :
- ../scripts:/scripts
ports:
- 8080:5000
| {
"pile_set_name": "Github"
} |
#fullForm token general features
UF0:%x[0,0]
UF1:%x[0,1]
UF2:%x[0,2]
UF3:%x[0,3]
UF4:%x[0,4]
UF5:%x[0,5]
UF6:%x[0,6]
UF7:%x[0,7]
UF8:%x[0,8]
UF9:%x[0,9]
UF10:%x[0,10]
UF11:%x[0,11]
UF12:%x[0,12]
UF13:%x[0,13]
UF14:%x[0,14]
UF15:%x[0,15]
UF16:%x[0,16]
UF17:%x[0,17]
UF18:%x[0,18]
UF19:%x[0,19]
UF20:%x[0,20]
UF21:%x[0,21]... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "2.0_sixin_lt_lwother_@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "2.0_sixin_lt_lwother_@3x.png",
"scale" : "3x"
}
],
"info"... | {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.15
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Management.Fluent", "src\ResourceManagement\Azure.Fluent\Microsoft.Azure.Management.Flu... | {
"pile_set_name": "Github"
} |
require('./_typed-array')('Int32', 4, function (init) {
return function Int32Array(data, byteOffset, length) {
return init(this, data, byteOffset, length);
};
});
| {
"pile_set_name": "Github"
} |
ace.define("ace/mode/tex_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"], function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var lang = require("../lib/lang");
var TextHighlightRules = require("./text_highlight_rules").TextHi... | {
"pile_set_name": "Github"
} |
/**
* TestCase
*
* Embryonic unit test support class.
* Copyright (c) 2007 Henri Torgemane
*
* See LICENSE.txt for full license information.
*/
package com.hurlant.crypto.tests
{
public class TestCase
{
public var harness:ITestHarness;
public function TestCase(h:ITestHarness, title:Stri... | {
"pile_set_name": "Github"
} |
// RUN: %clangxx %target_itanium_abi_host_triple -O0 -g %s -c -o %t.o
// RUN: %test_debuginfo %s %t.o
// Radar 9440721
// If debug info for my_number() is emitted outside function foo's scope
// then a debugger may not be able to handle it. At least one version of
// gdb crashes in such cases.
// DEBUGGER: ptype foo
/... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright (c) Enalean, 2016-Present. All Rights Reserved.
*
* This file is a part of Tuleap.
*
* Tuleap 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 Foundation; either version 2 of the License, or
*... | {
"pile_set_name": "Github"
} |
ace.define("ace/mode/properties_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e=/\\u[0-9a-fA-F]{4}|\\/;this.$rules={start:[{token:"comment",regex:/[!#].*$/... | {
"pile_set_name": "Github"
} |
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ re... | {
"pile_set_name": "Github"
} |
#include <cassert>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <lithium_json.hh>
using namespace li;
struct R {
void append(uint8_t c) { s.append(1, c); }
std::string s;
};
void test_ascii(uint16_t c) {
R ref;
ref.append('"');
switch (c) {
case '"':
ref.append('\\');
ref.a... | {
"pile_set_name": "Github"
} |
{
"CVE_data_meta": {
"ASSIGNER": "cve@mitre.org",
"ID": "CVE-2008-1399",
"STATE": "PUBLIC"
},
"affects": {
"vendor": {
"vendor_data": [
{
"product": {
"product_data": [
{
... | {
"pile_set_name": "Github"
} |
@echo off
SET EXPECT_OUTPUT=
SET WAIT=
SET PSARGS=%*
SET ELECTRON_ENABLE_LOGGING=
SET ATOM_ADD=
SET ATOM_NEW_WINDOW=
FOR %%a IN (%*) DO (
IF /I "%%a"=="-f" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="--foreground" SET EXPECT_OUTPUT=YES
IF /I "%%a"=="-h" SET ... | {
"pile_set_name": "Github"
} |
/*
Copyright 2020 Rancher Labs.
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, software
d... | {
"pile_set_name": "Github"
} |
{
"ammo": {
"description": "returns amount of ammo held for currently selected weapon",
"teamplay-restricted": true,
"type": "integer"
},
"armor": {
"description": "returns current armor value",
"teamplay-restricted": true,
"type": "integer"
},
"armortype": {
"description": "return... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'pagebreak', 'fa', {
alt: 'شکستن صفحه',
toolbar: 'گنجاندن شکستگی پایان برگه'
} );
| {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
# Copyright (c) 2012 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Verifies that LD_DYLIB_INSTALL_NAME and DYLIB_INSTALL_NAME_BASE are handled
correctly.
"""
import TestGyp
import re
import subprocess
... | {
"pile_set_name": "Github"
} |
package toml_test
import (
"bytes"
"strings"
"testing"
"time"
"github.com/BurntSushi/toml"
"github.com/influxdata/influxdb/cmd/influxd/run"
itoml "github.com/influxdata/influxdb/toml"
)
// Ensure that megabyte sizes can be parsed.
func TestSize_UnmarshalText_MB(t *testing.T) {
var s itoml.Size
if err := s.U... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<title>EmptyState Struct Reference</title>
<link rel="stylesheet" type="text/css" href="../css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="../css/highlight.css" />
<meta charset='utf-8'>
<script src="../js/jquery.min.js" defer></script>
<s... | {
"pile_set_name": "Github"
} |
#include "WindowCommand.h"
class WindowResize : public WindowCommand {
Q_OBJECT
public:
WindowResize(WebPageManager *, QStringList &arguments, QObject *parent = 0);
protected:
virtual void windowFound(WebPage *);
};
| {
"pile_set_name": "Github"
} |
/**
* This method returns a new empty array.
*
* @static
* @memberOf _
* @since 4.13.0
* @category Util
* @returns {Array} Returns the new empty array.
* @example
*
* var arrays = _.times(2, _.stubArray);
*
* console.log(arrays);
* // => [[], []]
*
* console.log(arrays[0] === arrays[1]);
* // => false
... | {
"pile_set_name": "Github"
} |
熉
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
<script>
console.log(new Array(10))
</script>
</body>
</html>
| {
"pile_set_name": "Github"
} |
require File.dirname(__FILE__) + '/../test_helper'
require 'pictures_controller'
# Re-raise errors caught by the controller.
class PicturesController; def rescue_action(e) raise e end; end
class PicturesControllerTest < Test::Unit::TestCase
def setup
@controller = PicturesController.new
@request = Action... | {
"pile_set_name": "Github"
} |
define("ace/ext/elastic_tabstops_lite",["require","exports","module","ace/editor","ace/config"], function(require, exports, module) {
"use strict";
var ElasticTabstopsLite = function(editor) {
this.$editor = editor;
var self = this;
var changedRows = [];
var recordChanges = false;
this.onAfterExec ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Sun Sep 08 19:26:32 EDT 2013 -->
<TITLE>
BoxHolder (JHOVE Documentation)
</TITLE>
<META NAME="date" CONTENT="2013-09-08">
<LINK REL ="styles... | {
"pile_set_name": "Github"
} |
/**
******************************************************************************
* @file stm32f10x_exti.c
* @author MCD Application Team
* @version V3.6.1
* @date 05-March-2012
* @brief This file provides all the EXTI firmware functions.
**************************************************... | {
"pile_set_name": "Github"
} |
.Dd April 27, 2012
.Dt MK-CA-BUNDLE 1
.Os
.Sh NAME
.Nm mk-ca-bundle
.Nd create a new ca-bundle.crt from mozilla's certdata.txt
.Sh SYNOPSIS
.Nm
.Op Fl bilnqtuv
.Or outputfile
.Sh DESCRIPTION
The
.Nm
tool downloads the certdata.txt file from Mozilla's source tree, then
parses certdata.txt and extracts CA Root Certificat... | {
"pile_set_name": "Github"
} |
config SCSI_CXGB4_ISCSI
tristate "Chelsio T4 iSCSI support"
depends on PCI && INET && (IPV6 || IPV6=n)
select NETDEVICES
select ETHERNET
select NET_VENDOR_CHELSIO
select CHELSIO_T4
select SCSI_ISCSI_ATTRS
---help---
This driver supports iSCSI offload for the Chelsio T4 devices.
| {
"pile_set_name": "Github"
} |
/* Copyright (C) 2015-2020, Wazuh Inc.
* Copyright (C) 2009 Trend Micro Inc.
* All right reserved.
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
* License (version 2) as published by the FSF - Free Software
* Foundation
*/
/* Functions t... | {
"pile_set_name": "Github"
} |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18444
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 05631ea81b09d1f4fa8885bd25ecd4ce
ShaderImporter:
externalObjects: {}
defaultTextures: []
nonModifiableTextures: []
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
FROM node:6
WORKDIR /app
ADD . /app
RUN npm install
EXPOSE 3000
CMD ["npm", "run", "serve"]
| {
"pile_set_name": "Github"
} |
const basicHTML = require('../basichtml.js');
const {Document} = basicHTML;
const {document} = basicHTML.init();
const html = "<!DOCTYPE html><html lang='fr'><body><p>Hello</p></body></html>";
const tmp = document.createElement('div');
tmp.innerHTML = html;
const {attributes, children} = tmp.firstElementChild;
docum... | {
"pile_set_name": "Github"
} |
#name : until ... end
#group: control structure
# --
until ${condition}
$0
end | {
"pile_set_name": "Github"
} |
/*
Copyright 2017 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, ... | {
"pile_set_name": "Github"
} |
ace.define("ace/snippets/dockerfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dockerfile"}); (function() {
ace.require(["ace/snippets/dockerfile"], function(m) {
if (typeof module == "object" && typeof exports... | {
"pile_set_name": "Github"
} |
/*
* Metadata - jQuery plugin for parsing metadata from elements
*
* Copyright (c) 2006 John Resig, Yehuda Katz, Jörn Zaefferer, Paul McLanahan
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
/**
* Sets the... | {
"pile_set_name": "Github"
} |
/*
[auto_generated]
boost/numeric/odeint/external/compute/compute_resize.hpp
[begin_description]
Enable resizing for Boost.Compute vector
[end_description]
Copyright 2009-2011 Karsten Ahnert
Copyright 2009-2011 Mario Mulansky
Distributed under the Boost Software License, Version 1.0.
(See accompanying file ... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0+
/*
* Freescale QUICC Engine USB Host Controller Driver
*
* Copyright (c) Freescale Semicondutor, Inc. 2006.
* Shlomi Gridish <gridish@freescale.com>
* Jerry Huang <Chang-Ming.Huang@freescale.com>
* Copyright (c) Logic Product Development, Inc. 2007
... | {
"pile_set_name": "Github"
} |
'use strict'
const webpack = require('webpack')
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin')
const env = process.env.NODE_ENV
module.exports = {
externals: {
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
},
redux: {
ro... | {
"pile_set_name": "Github"
} |
/*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is grant... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2010-2013 Eric Kok et al.
*
* Transdroid 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 Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Transdroid is distr... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2018-07-26 07:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('document', '0051_auto_20180718_0713'),
]
operations = [
migrations.AddField... | {
"pile_set_name": "Github"
} |
from net.common import *
def rcnn_loss(scores, deltas, rcnn_labels, rcnn_targets):
def modified_smooth_l1( deltas, targets, sigma=3.0):
'''
ResultLoss = outside_weights * SmoothL1(inside_weights * (box_pred - box_targets))
SmoothL1(x) = 0.5 * (sigma * x)^2, if |x| < 1 / sigma^2
... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
heroku features:enable -a code-fund-ads preboot
| {
"pile_set_name": "Github"
} |
/*
* 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, software distributed under t... | {
"pile_set_name": "Github"
} |
@import 'reset.less';
@import '1px.less';
@import 'center.less';
@import 'reddot.less';
@import 'transition.less';
@import 'loading.less';
@import 'close.less';
@import 'tap.less'; | {
"pile_set_name": "Github"
} |
<VirtualHost *:80>
DocumentRoot %TRAVIS_BUILD_DIR%
<Directory "%TRAVIS_BUILD_DIR%">
Options FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
# Wire up Apache to use Travis CI's php-fpm.
<IfModule mod_fastcgi.c>
AddHandler php5-fcgi .php
... | {
"pile_set_name": "Github"
} |
<!-- <ng-template [ngTemplateOutlet]="templateTop" [ngTemplateOutletContext]="this"></ng-template> -->
<mat-card class="card">
<div class="center">
<mat-icon class="icon" role="img" fontSet="mdi-set" fontIcon="mdi-tools" ></mat-icon>
<h1>Coming soon!</h1>
<a [href]="helpurl" target="_blank">Click to learn... | {
"pile_set_name": "Github"
} |
package plugin
import (
"net/rpc"
"github.com/hashicorp/terraform/terraform"
)
// UIOutput is an implementatin of terraform.UIOutput that communicates
// over RPC.
type UIOutput struct {
Client *rpc.Client
}
func (o *UIOutput) Output(v string) {
o.Client.Call("Plugin.Output", v, new(interface{}))
}
// UIOutput... | {
"pile_set_name": "Github"
} |
package me.yokeyword.sample.demo_flow;
import android.content.Intent;
import android.os.Bundle;
import com.google.android.material.navigation.NavigationView;
import androidx.core.view.GravityCompat;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.appcompat.app.ActionBarDrawerToggle;
import android.vi... | {
"pile_set_name": "Github"
} |
/* dialog_information.png - 863 bytes */
static const unsigned char dialog_information_16x16_png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
0x61, 0x00, 0x0... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('throttle', require('../throttle'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d
https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
| {
"pile_set_name": "Github"
} |
define({
name: 'real'
});
| {
"pile_set_name": "Github"
} |
// This file is part of meshoptimizer library; see meshoptimizer.h for version/license details
#include "meshoptimizer.h"
#include <assert.h>
#include <limits.h>
#include <string.h>
// This work is based on:
// Francine Evans, Steven Skiena and Amitabh Varshney. Optimizing Triangle Strips for Fast Rendering. 1996
nam... | {
"pile_set_name": "Github"
} |
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "Security"
#define REACTOS_STR_INTERNAL_NAME "secur32"
#define REACTOS_STR_ORIGINAL_FILENAME "secur32.dll"
#include <reactos/version.rc>
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.