text stringlengths 2 99.9k | meta dict |
|---|---|
/*
** © 2014 by Philipp Dunkel <pip@pipobscure.com>
** Licensed under MIT License.
*/
void FSEvents::lockingStart() {
if (lockStarted) return;
lockStarted = true;
pthread_mutex_init(&lockmutex, NULL);
}
void FSEvents::lock() {
if (!lockStarted) return;
pthread_mutex_lock(&lockmutex);
}
void FSEvents::unloc... | {
"pile_set_name": "Github"
} |
require "redcarpet"
module Hspec
module Toc
def toc(content)
renderer = Redcarpet::Render::HTML_TOC.new(nesting_level: 2)
Redcarpet::Markdown.new(renderer).render(content)
end
end
end
Liquid::Template.register_filter(Hspec::Toc)
| {
"pile_set_name": "Github"
} |
- content_for :page_title do
= t('authorize_follow.title', acct: @resource.acct)
.form-container
.follow-prompt
= render 'application/card', account: @resource
- if current_account.following?(@resource)
.flash-message
%strong
= t('authorize_follow.already_following')
= render 'post_fo... | {
"pile_set_name": "Github"
} |
//===--- BugType.h - Bug Information Desciption ----------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | {
"pile_set_name": "Github"
} |
#
# itk::Archetype
# ----------------------------------------------------------------------
# Base class for all widgets in the [incr Tk] Toolkit. Provides
# facilities to merge widget options into a composite list of options
# for the overall widget. Derived classes add widgets and methods to
# specialize behavior.
... | {
"pile_set_name": "Github"
} |
<!DOCTYPE doctype PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<HTML>
<HEAD>
<META name="generator" content=
"HTML Tidy for Java (vers. 2009-12-01), see jtidy.sourceforge.net">
<TITLE>Highlighting</TITLE>
<LINK rel="stylesheet" type="text/css" href="../../shared/Frontpage.css">
</HEAD>
<BODY lan... | {
"pile_set_name": "Github"
} |
<?php
namespace Drupal\Tests\user\Unit\Views\Argument;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Tests\UnitTestCase;
use Drupal\user\Entity\Role;
use Drupal\user\Plugin\views\argument\RolesRid;
/**
* @coversDefaultClass \Drupal\user\Plugin\views\argument\RolesRid
* @group user
*/
class Role... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="4dp"/>
<solid android:color="@color/color_white"/>
<stroke android:width="1dp" android:color="@color/gray_50"/>
</shape> | {
"pile_set_name": "Github"
} |
package nl.jqno.equalsverifier.internal.prefabvalues.factories;
import static org.junit.Assert.assertEquals;
import java.util.LinkedHashSet;
import java.util.Optional;
import nl.jqno.equalsverifier.internal.prefabvalues.JavaApiPrefabValues;
import nl.jqno.equalsverifier.internal.prefabvalues.PrefabValues;
import nl.j... | {
"pile_set_name": "Github"
} |
vipa_user_index:
path: /user
host: "%base_host%"
defaults: { _controller: "VipaJournalBundle:Manager:userIndex" }
vipa_user_myjournals:
path: /editor/myjournals
defaults: { _controller: "VipaJournalBundle:Manager:myJournals" }
| {
"pile_set_name": "Github"
} |
//
// LanguageSetting.swift
// Monolingual
//
// Created by Ingmar Stein on 16.07.14.
//
//
import Foundation
final class LanguageSetting: Setting {
var folders: [String]
@objc var displayName: String
init(enabled: Bool, folders: [String], displayName: String) {
self.folders = folders
self.displayName = di... | {
"pile_set_name": "Github"
} |
FROM ubuntu:bionic
MAINTAINER Glenn ten Cate <glenn.ten.cate@owasp.org>
#Install dependencies
RUN apt-get update && apt-get install --fix-missing -y git \
bash \
python3-pip \
build-essential \
gcc \
gdb \
vim \
wget \
openssh-server \
net-tools
#Add a new user
RUN useradd -ms /bin/bash stack
RUN echo "stack:stack" ... | {
"pile_set_name": "Github"
} |
"""
Connection to hardware authentication device.
It is used for getting SSH public keys and ECDSA signing of server requests.
"""
import io
import logging
from . import formats, util
log = logging.getLogger(__name__)
class Client:
"""Client wrapper for SSH authentication device."""
def __init__(self, dev... | {
"pile_set_name": "Github"
} |
# An idiomatic F# implementation of Domain-Driven Design
[Domain-Driven Design With F# and EventStore](http://gorodinski.com/blog/2013/02/17/domain-driven-design-with-fsharp-and-eventstore/)
[Domain-Driven Design With F# and EventStore:Projections](http://gorodinski.com/blog/2013/02/24/domain-driven-design-with-fshar... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' lang='en'>
<head>
<meta charset='utf-8' />
<title>Log in and sign up template</title>
<link rel='stylesheet' type='text/css' href='src/css/style.css' />
<script type='text/javascript' src='src/js/app.js'></script>
</head>
<?php session_sta... | {
"pile_set_name": "Github"
} |
#include <stdio.h>
#include <rsf.h>
#include "tomo.h"
int main(void) {
float dot1[2], dot2[2];
static int nz=100, nx=100, np=11;
static float dz=1., dx=2.;
tomo_init(np, nz, nx, dz, dx);
sf_dot_test(tomo_lop, nz*nx, np*nx, dot1, dot2);
printf ("%12.8f ? %12.8f\n",dot1[0],dot1[1]);
print... | {
"pile_set_name": "Github"
} |
{
"name": "vipa/vipa",
"license": "MIT",
"type": "project",
"description": "Virtual Intelligent Publishing Assistant",
"version": "2.4.0-dev",
"keywords": [
"vipa",
"journal software",
"open journal software",
"Virtual Intelligent Publishing Assistant"
],
"support": {
"email": "hi@oj... | {
"pile_set_name": "Github"
} |
| Title | Blue Mockingbird |
|:-------------------------|:------------------|
| **Description** | Attempts to detect system changes made by Blue Mockingbird |
| **ATT&CK Tactic** | <ul><li>[TA0002: Execution](https://attack.mitre.org/tactics/TA0002)</li></ul> |
| **ATT&CK ... | {
"pile_set_name": "Github"
} |
function [bboxes, speed] = tracker(varargin)
%% default hyper-params for SiamFC tracker.
p.join.method = 'corrfilt';
p.net = 'cfnet-conv2_e80.mat';
p.net_gray = 'cfnet-conv2_gray_e40.mat';
p.numScale = 3;
p.scaleStep = 1.0575;
p.scalePenalty = 0.9780;
p.scaleLR = 0.52;
p.responseUp =... | {
"pile_set_name": "Github"
} |
// Copyright 2016 The etcd 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 t... | {
"pile_set_name": "Github"
} |
namespace TestRuntimeComponent2
{
[default_interface]
runtimeclass TestStaticLibrary2Class
{
TestStaticLibrary2Class();
void Test();
}
}
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<model ref="r:3b3c0810-4dd3-4255-8940-4905e81db866(test.analyses.base.nodes_tracing.core@tests)">
<persistence version="9" />
<languages>
<use id="f61473f9-130f-42f6-b98d-6c438812c2f6" name="jetbrains.mps.baseLanguage.unitTest" version="1" />
<use id="8585453e-6bfb-4d8... | {
"pile_set_name": "Github"
} |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`CheckBox Component should allow custom checked Icon 1`] = `
<ForwardRef
accessibilityRole="checkbox"
accessibilityState={
Object {
"checked": true,
}
}
checkedIcon={
<Image
source={
Object {
"uri": "https://image.ibb.... | {
"pile_set_name": "Github"
} |
---
author: rgregg
ms.author: rgregg
ms.date: 09/10/2017
ms.topic: conceptual
title: Sharing items - OneDrive API
localization_priority: Normal
---
# Sharing items in OneDrive and SharePoint
OneDrive Personal, OneDrive for Business, and SharePoint provide two different
primary ways to share items with other users:
* ... | {
"pile_set_name": "Github"
} |
import './server';
| {
"pile_set_name": "Github"
} |
/* -*- mode: c; c-basic-offset: 8; -*-
* vim: noexpandtab sw=8 ts=8 sts=0:
*
* ver.h
*
* Function prototypes
*
* Copyright (C) 2002, 2004 Oracle. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as publishe... | {
"pile_set_name": "Github"
} |
var forOf = require('./_for-of');
module.exports = function (iter, ITERATOR) {
var result = [];
forOf(iter, false, result.push, result, ITERATOR);
return result;
};
| {
"pile_set_name": "Github"
} |
li[34mTest run started[0m
liTest scala.scalanative.junit.[33mAssertEqualsTest[0m.[36mtest[0m started
leTest scala.scalanative.junit.[33mAssertEqualsTest[0m.[31mtest[0m failed: expected:<false> but was:<true>, took <TIME>
e2scala.scalanative.junit.AssertEqualsTest.test
ldTest scala.scalanative.junit.[33mAsser... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.rongcloud.im">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="MediaStore.Images.Media.INTERNAL_CONTENT_URI"/>
<uses-permissi... | {
"pile_set_name": "Github"
} |
# encoding: utf-8
#
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
#
zh-CN:
activerecord:
models:
api_tokens: API Token
trade: 交易
order: 挂单
order_bid: 买入
order_ask: 卖出
document: 文档
withdraw: 提现
deposit: 充值
payment_... | {
"pile_set_name": "Github"
} |
/*
Package inflection pluralizes and singularizes English nouns.
inflection.Plural("person") => "people"
inflection.Plural("Person") => "People"
inflection.Plural("PERSON") => "PEOPLE"
inflection.Singular("people") => "person"
inflection.Singular("People") => "Person"
inflection.Singular("PEOPLE") => "PER... | {
"pile_set_name": "Github"
} |
import * as React from "react";
import { shallow } from "enzyme";
import ToggleValue from "../ToggleValue";
describe("ToggleValue", () => {
it("render the initial text value", () => {
const instance = shallow(
<ToggleValue primaryValue="primary" secondaryValue="secondary" />
);
const content = in... | {
"pile_set_name": "Github"
} |
<?php
/**
* This file is part of prooph/event-store.
* (c) 2014-2020 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2020 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.
*/
dec... | {
"pile_set_name": "Github"
} |
// Typography
// [converter] $parent hack
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color;
}
a#{$parent}:hover,
a#{$parent}:focus {
color: darken($color, 10%);
}
}
| {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2026
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnimalsMvc", "AnimalsMvc\AnimalsMvc.csproj", "{FBA57FB3-8D6E-4B55-A661-7DD3F06A1168}"
EndProject
Global
G... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2005-2012 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Eclipse Public License (EPL).
* Please see the license.txt included with this distribution for details.
* Any modifications to this file must keep this entire header intact.
*/
package org.python.pydev.debug.... | {
"pile_set_name": "Github"
} |
# DescribeSecurityGroupAttribute {#DescribeSecurityGroupAttribute .reference}
查询安全组详情。
## 请求参数 {#RequestParameter .section}
|名称|类型|是否必需|描述|
|:-|:-|:---|:-|
|Action|String|是|系统规定参数。取值:DescribeSecurityGroupAttribute|
|RegionId|String|是|安全组所属地域 ID。您可以调用 [DescribeRegions](intl.zh-CN/API参考/地域/DescribeRegions.md#) 查看最新的阿里... | {
"pile_set_name": "Github"
} |
//
// DCNewAdressViewController.h
// CDDStoreDemo
//
// Created by 陈甸甸 on 2017/12/19.
//Copyright © 2017年 RocketsChen. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM (NSUInteger,DCSaveAdressType){
DCSaveAdressNewType = 0, //保存
DCSaveAdressChangeType = 1, //编辑
};
@class DCAdressItem;
@in... | {
"pile_set_name": "Github"
} |
/*++
Copyright (c) 2013 Minoca Corp.
This file is licensed under the terms of the GNU General Public License
version 3. Alternative licensing terms are available. Contact
info@minocacorp.com for details. See the LICENSE file at the root of this
project for complete licensing information.
Module Name:... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
# WebPwn3r is a Web Applications Security Scanner
# By Ebrahim Hegazy - twitter.com/zigoo0
# First demo conducted 12Apr-2014 @OWASP Chapter Egypt
# https://www.owasp.org/index.php/Cairo
import urllib
import re
import time
from urllib import FancyURLopener
class colors:
def __init__(self):... | {
"pile_set_name": "Github"
} |
name = 'Armadillo'
version = '4.300.8'
homepage = 'http://arma.sourceforge.net/'
description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
as well as a subset of trigon... | {
"pile_set_name": "Github"
} |
#!/usr/bin/python
# This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
# License: AGPLv3 s.t. "Commons Clause" – read LICENSE.md for details
from __future__ import absolute_import, print_function
import json, os, time
REMOTE_TIMEOUT_S = 90
SMC = os.environ['SMC']
os.chdir(SMC)
status = {}
def set(prop, ... | {
"pile_set_name": "Github"
} |
/*
*
* Copyright (c) 2018 Google LLC.
* Copyright (c) 2017 Nest Labs, Inc.
* 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:/... | {
"pile_set_name": "Github"
} |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | {
"pile_set_name": "Github"
} |
/*************************************************************************
QR Code plotter example.
Pier Andrea Serra, University of Sassari, Italy. 2015
***************************************************************************/
/*
* Converts a number to a bit array.
*
* @param num
* The number.
* @return
* ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2008-2011 Atheros Communications Inc.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" A... | {
"pile_set_name": "Github"
} |
---
sources:
- name: event_source
events:
- "*"
sinks:
- event_sink
sinks:
- name: event_sink
publishers:
- panko://
| {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\Tests\Linter;
use org\bovigo\... | {
"pile_set_name": "Github"
} |
function F = diag(f, d)
%DIAG Pointwise multiplication operator.
% This function is deprecated. Use OPERATORBLOCK.MULT.
% Copyright 2017 by The University of Oxford and The Chebfun Developers.
% See http://www.chebfun.org/ for Chebfun information.
F = linop( operatorBlock.mult(f, double(d)) );
end
| {
"pile_set_name": "Github"
} |
/*
* Created on Dec 11, 2007
*/
package org.wicketstuff.googlecharts;
import java.awt.Color;
/**
* @author Daniel Spiewak
*/
public class RangeMarker implements IRangeMarker
{
private static final long serialVersionUID = 885106818212539922L;
private Color color;
private double end = -1;
private double start ... | {
"pile_set_name": "Github"
} |
/**
* The base implementation of `_.values` and `_.valuesIn` which creates an
* array of `object` property values corresponding to the property names
* of `props`.
*
* @private
* @param {Object} object The object to query.
* @param {Array} props The property names to get values for.
* @returns {Object} Returns ... | {
"pile_set_name": "Github"
} |
#define exec_op glue(exec_, OP)
#define exec_opq glue(glue(exec_, OP), q)
#define exec_opl glue(glue(exec_, OP), l)
#define exec_opw glue(glue(exec_, OP), w)
#define exec_opb glue(glue(exec_, OP), b)
#ifndef OP_SHIFTD
#ifdef OP_NOBYTE
#define EXECSHIFT(size, rsize, res, s1, s2, flags) \
asm ("push %4\n\t"\
... | {
"pile_set_name": "Github"
} |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import <Foundation/Foundation.h>
#import "Tile.h"
@interface DOCKSeparatorTile : Tile
{
float _midPoint;
}
- (int)axSetAttributeValue:(CFStringRef)arg1 value:(void *)arg2;... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "f_static_071@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "f_static_071@3x.png",
"scale" : "3x"
}
],
"info" : {
"version"... | {
"pile_set_name": "Github"
} |
<!doctype html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.2/raphael-min.js"></script>
<script src="../morris.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettif... | {
"pile_set_name": "Github"
} |
# check for linker name in error message about linker crash
[!gc] skip
! go build -ldflags=-crash_for_testing x.go
stderr [\\/]tool[\\/].*[\\/]link
-- x.go --
package main; func main() {}
| {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
#include "testing/gtest/include/gtest/gtest.h"
#include "tools/gn/source_file.h"
// The SourceFile object should normalize the input passed to the constr... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
* copy, modify, and distribute this software in source code or binary form for use
* in connection with the web services and APIs provided by Facebook.
*
* As ... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2000, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at http://ec... | {
"pile_set_name": "Github"
} |
/*
Copyright (C) 1996-1997 Id Software, Inc.
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 Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in th... | {
"pile_set_name": "Github"
} |
# RUN: llvm-mc -arch=amdgcn -mcpu=tonga -disassemble -show-encoding < %s | FileCheck %s -check-prefix=VI
#===----------------------------------------------------------------------===#
# Trap Handler related - 32 bit registers
#===----------------------------------------------------------------------===#
# VI: s_add... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of FbReconstruct2d</title>
<meta name="keywords" content="FbReconstruct2d">
<meta name="description" content="Use to see how much image information is ... | {
"pile_set_name": "Github"
} |
define([
'models/course_seats/course_seat',
'views/course_seat_form_fields/course_seat_form_field_view'
],
function(CourseSeat,
CourseSeatFormFieldView) {
'use strict';
var model, view;
beforeEach(function() {
model = new CourseSeat();
view = n... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.plugins.setLang("codesnippet","hr",{button:"Ubaci isječak kôda",codeContents:"Sadržaj kôda",emptySnippetError:"Isječak kôda ne može biti prazan."... | {
"pile_set_name": "Github"
} |
package yaml
import (
"encoding"
"fmt"
"io"
"reflect"
"regexp"
"sort"
"strconv"
"strings"
"time"
"unicode/utf8"
)
// jsonNumber is the interface of the encoding/json.Number datatype.
// Repeating the interface here avoids a dependency on encoding/json, and also
// supports other libraries like jsoniter, whi... | {
"pile_set_name": "Github"
} |
// CodeContracts
//
// Copyright (c) Microsoft Corporation
//
// All rights reserved.
//
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit... | {
"pile_set_name": "Github"
} |
#region PDFsharp - A .NET library for processing PDF
//
// Authors:
// Stefan Lange
//
// Copyright (c) 2005-2019 empira Software GmbH, Cologne Area (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy... | {
"pile_set_name": "Github"
} |
# cliui
[](https://travis-ci.org/bcoe/cliui)
[](https://coveralls.io/r/bcoe/cliui?branch=)
[](https://www.npmjs.com/package/cliui)
easil... | {
"pile_set_name": "Github"
} |
## Lab 7 - Optional
Update August 19, 2020
## GoldenGate Micro services Heterogeneous Replication
## Introduction
In this lab, you will take a look at how to set up replication from MySQL DB to Oracle Database using Classic Goldengate for MySQL and Goldengate Microservices architecture.
This lab supports the follow... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Interactive Board Demo</title>
<script src="js/jquery.min.js"></script>
<script src="js/iframeSizer.contentWindow.min.js"></script>
<link rel="stylesheet" href="css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="css/base.... | {
"pile_set_name": "Github"
} |
/*
* CAN driver for PEAK System USB adapters
* Derived from the PCAN project file driver/src/pcan_usb_core.c
*
* Copyright (C) 2003-2010 PEAK System-Technik GmbH
* Copyright (C) 2010-2012 Stephane Grosjean <s.grosjean@peak-system.com>
*
* Many thanks to Klaus Hitschler <klaus.hitschler@gmx.de>
*
* This program... | {
"pile_set_name": "Github"
} |
/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #f8f8f8;
-webkit-text-size-adjust: none;
}
.hljs-comment,
.diff .hljs-header,
.hljs-javadoc {
color: #998;
font-style: italic;
}
.hljs-keyword,
.css .r... | {
"pile_set_name": "Github"
} |
/**
*
*/
/**
* Title: package-info
* Description: 数据接口层
* Version:1.0.0
* @author pancm
* @date 2018年1月8日
*/
package com.pancm.dao; | {
"pile_set_name": "Github"
} |
//
// SlideOutMenuTests.swift
// SlideOutMenuTests
//
// Created by Allen on 16/1/30.
// Copyright © 2016年 Allen. All rights reserved.
//
import XCTest
@testable import SlideOutMenu
class SlideOutMenuTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This me... | {
"pile_set_name": "Github"
} |
{
"matches": "right-019-ref.xht",
"assert": "The 'right' property sets a positive nominal length value in inches.",
"help": [
"http://www.w3.org/TR/CSS21/visuren.html#propdef-right",
"http://www.w3.org/TR/CSS21/visuren.html#position-props"
],
"test_case": {
"tag": "body",
... | {
"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/.
# Map Expat error codes to error strings
1 = 메모리 부족
2 = 문법 오류
3 = 요소 없음
4 = 부적합한 형식
5 = 닫히지 않은 토큰
6 = 닫히지 않은 토큰
7 = 맞지 않... | {
"pile_set_name": "Github"
} |
---
title: "neovim"
layout: formula
---
{{ content }}
| {
"pile_set_name": "Github"
} |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | {
"pile_set_name": "Github"
} |
import collections
from mmdet.utils import build_from_cfg
from ..registry import PIPELINES
@PIPELINES.register_module
class Compose(object):
def __init__(self, transforms):
assert isinstance(transforms, collections.abc.Sequence)
self.transforms = []
for transform in transforms:
... | {
"pile_set_name": "Github"
} |
/**
* @license
* Copyright Google LLC 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
*/
import * as ts from 'typescript';
import {Reference} from '../../imports';
import {ClassDeclaration, ClassMember, Cl... | {
"pile_set_name": "Github"
} |
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace Microsoft.Deployment.WindowsInstaller
{
/// <summary>
/// Subclasses of this abstract class represent an inst... | {
"pile_set_name": "Github"
} |
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
This software may be distributed and modified under the terms of the GNU
General Public License version 2 (GPL2) as published by the Free Software
Foundation and appearing in the file GPL2.TXT included in the packaging of
this file. Please note that GPL... | {
"pile_set_name": "Github"
} |
/* Used for Ace demo only, to style Button that launches help, help content, etc */
.onpage-help-toggle-btn:focus {
outline: none;
}
.onpage-help-toggle-container {
position: fixed;
top: 135px;
}
.onpage-help-toggle-container.active {
z-index: 100001;
}
@media (min-width: 768px) {
.main-container.container ~ .o... | {
"pile_set_name": "Github"
} |
INTEGER FUNCTION IOK2CPY(LUI,LUO)
C$$$ SUBPROGRAM DOCUMENTATION BLOCK
C
C SUBPROGRAM: IOK2CPY
C PRGMMR: J. ATOR ORG: NP20 DATE: 2009-06-26
C
C ABSTRACT: THIS FUNCTION DETERMINES WHETHER A MESSAGE, OR A SUBSET
C FROM A MESSAGE, CAN BE COPIED FROM LOGICAL UNIT IOLUN(LUI) TO
C LOGICAL UNIT ... | {
"pile_set_name": "Github"
} |
/*
* Implementation of the kernel access vector cache (AVC).
*
* Authors: Stephen Smalley, <sds@epoch.ncsc.mil>
* James Morris <jmorris@redhat.com>
*
* Update: KaiGai, Kohei <kaigai@ak.jp.nec.com>
* Replaced the avc_lock spinlock by RCU.
*
* Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redha... | {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
... | {
"pile_set_name": "Github"
} |
---
title: 'Mettre en ligne un site internet sur son hébergement web'
slug: mettre-mon-site-en-ligne
excerpt: 'Apprenez à mettre en ligne un site internet sur votre hébergement web OVHcloud'
section: 'Premiers pas'
order: 2
---
**Dernière mise à jour le 05/05/2020**
## Objectif
Sur le web, il existe une multitude de... | {
"pile_set_name": "Github"
} |
=pod
=encoding utf8
=head1 NAME
ts - Time Stamping Authority tool (client/server)
=head1 SYNOPSIS
B<gmssl> B<ts>
B<-query>
[B<-rand> file:file...]
[B<-config> configfile]
[B<-data> file_to_hash]
[B<-digest> digest_bytes]
[B<-[digest]>]
[B<-tspolicy> object_id]
[B<-no_nonce>]
[B<-cert>]
[B<-in> request.tsq]
[B<-ou... | {
"pile_set_name": "Github"
} |
// FB Alpha WWF WrestleFest (Double Dragon 3 driver) driver module
// based on MAME driver by Bryan McPhail, David Haywood
#include "tiles_generic.h"
#include "m68000_intf.h"
#include "z80_intf.h"
#include "burn_ym2151.h"
#include "msm6295.h"
static UINT8 DrvInputPort0[8] = {0, 0, 0, 0, 0, 0, 0, 0};
static ... | {
"pile_set_name": "Github"
} |
/* The following is the NetBSD libc qsort implementation modified in order to
* support partial sorting of ranges for Redis.
*
* Copyright(C) 2009-2012 Salvatore Sanfilippo. All rights reserved.
*
* The original copyright notice follows. */
/* $NetBSD: qsort.c,v 1.19 2009/01/30 23:38:44 lukem Exp $ */
/*-
* Co... | {
"pile_set_name": "Github"
} |
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24"
android:viewportWidth="24">
<path
android:fillColor="#aaa"
android:pathData="M15.5,8C16.3,8,17,8.7,17,9.5S16.3,11,15.5,11c-0.8,0-1.5-0.7-1.5-1.5S1... | {
"pile_set_name": "Github"
} |
#%RAML 1.0
title: test
types:
TestType:
properties:
prop: string
| {
"pile_set_name": "Github"
} |
#ifndef CONFIG_H
#define CONFIG_H
#include "config_struct.h"
#define VERSION_STR "0.5"
#define PROJECT_NAME "LazzyQuant"
#define LOWER_CASE_NAME "lazzyquant"
#define UNIQ_PREFIX "com." LOWER_CASE_NAME "."
#define ORGANIZATION PROJECT_NAME
#d... | {
"pile_set_name": "Github"
} |
//
// MPWindowTitleMenuDelegate.h
// MacPass
//
// Created by Michael Starke on 04/12/14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
// 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 F... | {
"pile_set_name": "Github"
} |
// Auto-generated - DO NOT EDIT
package pg_query
func (node CollateClause) Deparse() string {
panic("Not Implemented")
}
| {
"pile_set_name": "Github"
} |
/**
* DescribeSpotPriceHistory.java
*
* This file was auto-generated from WSDL
* by the Apache Axis2 version: 1.5.1 Built on : Oct 19, 2009 (10:59:34 EDT)
*/
package com.amazon.ec2;
/**
* DescribeSpotPriceHistory bean class
*/
... | {
"pile_set_name": "Github"
} |
bp says it will tender for remaining pct of standard oil at dlrs a share cash
| {
"pile_set_name": "Github"
} |
/* Definitions for the xt_mmu TIE package */
/*
* Customer ID=7011; Build=0x2b6f6; Copyright (c) 2004 by Tensilica Inc. ALL RIGHTS RESERVED.
* These coded instructions, statements, and computer programs are the
* copyrighted works and confidential proprietary information of Tensilica Inc.
* They may not be ... | {
"pile_set_name": "Github"
} |
package org.ggp.base.util.gdl;
import org.ggp.base.util.gdl.grammar.Gdl;
import org.ggp.base.util.gdl.grammar.GdlConstant;
import org.ggp.base.util.gdl.grammar.GdlDistinct;
import org.ggp.base.util.gdl.grammar.GdlFunction;
import org.ggp.base.util.gdl.grammar.GdlLiteral;
import org.ggp.base.util.gdl.grammar.Gdl... | {
"pile_set_name": "Github"
} |
function H = vl_histmarg(H, dims)
% VL_HISTMARG Marginal of histogram
% H = VL_HISTMARG(H, DIMS) marginalizes the historgram H w.r.t the
% dimensions DIMS. This is done by summing out all dimensions not
% listed in DIMS and deleting them.
%
% Remark::
% If DIMS lists only one dimension, the returned histog... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.