text stringlengths 2 99.9k | meta dict |
|---|---|
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.lslboost.org/LICENSE_1_0.txt)
=====================================... | {
"pile_set_name": "Github"
} |
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
// +-------------------------------------------... | {
"pile_set_name": "Github"
} |
57
Lattice="1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0" Properties=species:S:1:pos:R:3:Z:I:1 pbc="F F F"
N -4.36254787 2.76986599 -0.28717801 7
C -2.92329097 2.52653003 -0.41562900 6
C -2.53898096 1.37459099 0.47788900 6
O -2.72259593 1.46547103 ... | {
"pile_set_name": "Github"
} |
time
t_new.y
d_t_new.y
clock1.y
clock2.y
d2_t_new.y
| {
"pile_set_name": "Github"
} |
# Web Storage
  Web存储最初作为HTML5的一部分被定义成API形式,但是后来被剥离出来作为独立的一份标准了。Web存储标准所描述的API包含localStorage对象和sessionStorage对象,这两个对象实际上是持久化关联数组,是名值对的映射表,“名”和“值”都是字符串。Web存储易于使用、支持大容量(但非无限量)数据存储同时兼容当前所有主流浏览器。本文将详细介绍Web Storage
### 概述
  Web Storage的目的是克服由cookie带来的一些限制,当数据需要被严格控制在客户端... | {
"pile_set_name": "Github"
} |
from test.support import run_unittest
from _locale import (setlocale, LC_ALL, LC_CTYPE, LC_NUMERIC, localeconv, Error)
try:
from _locale import (RADIXCHAR, THOUSEP, nl_langinfo)
except ImportError:
nl_langinfo = None
import unittest
import sys
from platform import uname
if uname()[0] == "Darwin":
maj, min... | {
"pile_set_name": "Github"
} |
{
"name": "@datafire/amazonaws_data_jobs_iot",
"version": "5.0.0",
"main": "index.js",
"description": "DataFire integration for AWS IoT Jobs Data Plane",
"repository": {
"type": "git",
"url": "git+https://github.com/DataFire/integrations.git"
},
"author": "DataFire",
"license": "MIT",
"bugs": ... | {
"pile_set_name": "Github"
} |
CodeMirror.defineMode("r", function(config) {
function wordObj(str) {
var words = str.split(" "), res = {};
for (var i = 0; i < words.length; ++i) res[words[i]] = true;
return res;
}
var atoms = wordObj("NULL NA Inf NaN NA_integer_ NA_real_ NA_complex_ NA_character_");
var builtins = wordObj("list q... | {
"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"
} |
<?xml version="1.0" encoding="UTF-8"?>
<tei xmlns="http://www.tei-c.org/ns/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML">
<teiHeader>
<fileDesc>
<sourceDesc>
<biblStruct>
<analytic>
<author>
-
<affiliation>
<orgName type="department">D... | {
"pile_set_name": "Github"
} |
<!--
@license
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http:... | {
"pile_set_name": "Github"
} |
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Rails.application
| {
"pile_set_name": "Github"
} |
//
// Copyright 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Based on Hello_Triangle.c from
// Book: OpenGL(R) ES 2.0 Programming Guide
// Authors: Aaftab Munshi, Dan Ginsburg, Dave S... | {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
# Copyright 2020 Google LLC
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicabl... | {
"pile_set_name": "Github"
} |
config BR2_PACKAGE_SKELETON_INIT_OPENRC
bool
select BR2_PACKAGE_HAS_SKELETON
select BR2_PACKAGE_SKELETON_INIT_COMMON
config BR2_PACKAGE_PROVIDES_SKELETON
default "skeleton-init-openrc" if BR2_PACKAGE_SKELETON_INIT_OPENRC
| {
"pile_set_name": "Github"
} |
From 283b211aa01bdae94dffb3121655dbb20bf237f4 Mon Sep 17 00:00:00 2001
From: Russell King <rmk+kernel@armlinux.org.uk>
Date: Tue, 3 Dec 2019 15:22:05 +0000
Subject: net: sfp: avoid tx-fault with Nokia GPON module
The Nokia GPON module can hold tx-fault active while it is initialising
which can take up to 60s. Avoid th... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2018-2020 the original author or 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | {
"pile_set_name": "Github"
} |
<?php
namespace Illuminate\Database\Migrations;
interface MigrationRepositoryInterface
{
/**
* Get the ran migrations for a given package.
*
* @return array
*/
public function getRan();
/**
* Get the last migration batch.
*
* @return array
*/
public function ge... | {
"pile_set_name": "Github"
} |
{
"nome": "Torreano",
"codice": "030122",
"zona": {
"codice": "2",
"nome": "Nord-est"
},
"regione": {
"codice": "06",
"nome": "Friuli-Venezia Giulia"
},
"provincia": {
"codice": "030",
"nome": "Udine"
},
"sigla": "UD",
"codiceCatastale": "L246",
"cap": [
"33040"
],
"popolazione": 2213
}
| {
"pile_set_name": "Github"
} |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/datasync/model/CreateTaskRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::DataSync::Model;
using namespace Aws::Utils::Json;
using nam... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/licens... | {
"pile_set_name": "Github"
} |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Quantum.QsCompiler.Transformations.Core
open System
open System.Collections.Generic
open System.Collections.Immutable
open System.Numerics
open Microsoft.Quantum.QsCompiler.DataTypes
open Microsoft.Qua... | {
"pile_set_name": "Github"
} |
/* bzero is in memset.S */
| {
"pile_set_name": "Github"
} |
#!/bin/bash
#
# Create platformio.ini templates for all examples, if missing.
# Start this script from within the examples directory.
for d in *; do
if [ -d "$d" -a -f "$d/$d.ino" -a ! -e "$d/platformio.ini" ]
then
cp -av platformio.ini "$d/"
fi
done
| {
"pile_set_name": "Github"
} |
<!doctype html>
<html>
<head>
<title>Delete an Item Dynamically | jPList - jQuery Data Grid Controls</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- font libs -->
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" t... | {
"pile_set_name": "Github"
} |
/******************************************************************************
* Copyright (c) 2004, 2008 IBM Corporation
* All rights reserved.
* This program and the accompanying materials
* are made available under the terms of the BSD License
* which accompanies this distribution, and is available at
* http:... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2013 Square, 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 agre... | {
"pile_set_name": "Github"
} |
import os
import shutil
import sys
import tempfile
import unittest
from io import StringIO
from django.conf import settings
from django.contrib.staticfiles import finders, storage
from django.contrib.staticfiles.management.commands.collectstatic import (
Command as CollectstaticCommand,
)
from django.core.cache.ba... | {
"pile_set_name": "Github"
} |
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
// basic_xml_iarchive.ipp:
// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// ht... | {
"pile_set_name": "Github"
} |
{
"extends": "@rnw-scripts/ts-config",
"include": ["src"],
"exclude": ["node_modules"]
}
| {
"pile_set_name": "Github"
} |
// Boost.Range library
//
// Copyright Neil Groves & Thorsten Ottosen & Pavol Droba 2003-2004.
// Use, modification and distribution is subject to 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)
//
// For more information, see ht... | {
"pile_set_name": "Github"
} |
var fs = require('fs');
var util = require('util');
var stream = require('stream');
var Readable = stream.Readable;
var Writable = stream.Writable;
var PassThrough = stream.PassThrough;
var Pend = require('pend');
var EventEmitter = require('events').EventEmitter;
exports.createFromBuffer = createFromBuffer;
exports.c... | {
"pile_set_name": "Github"
} |
/*
* GLCommandBuffer.cpp
*
* This file is part of the "LLGL" project (Copyright (c) 2015-2019 by Lukas Hermanns)
* See "LICENSE.txt" for license information.
*/
#include "GLCommandBuffer.h"
#include "../RenderState/GLState.h"
namespace LLGL
{
void GLCommandBuffer::SetIndexFormat(GLRenderState& renderState, b... | {
"pile_set_name": "Github"
} |
"""
Using This Code Example
=========================
The code examples provided are provided by Daniel Greenfeld and Audrey Roy of
Two Scoops Press to help you reference Two Scoops of Django: Best Practices
for Django 1.11 for Django 2.0 projects. Code Samples follow PEP-0008, with exceptions made for the
purposes o... | {
"pile_set_name": "Github"
} |
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011-2012, Matteo Munaro [matteo.munaro@dei.unipd.it], Filippo Basso [filippo.basso@dei.unipd.it]
* Copyright (c) 2013-, Open Perception, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modifi... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2017-2019, bruce.ge.
* 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; version 2 of
* the License.
* This program is distributed in the hope that it will b... | {
"pile_set_name": "Github"
} |
testmux
=======
[](https://circleci.com/gh/CenturyLinkLabs/testmux)
[](https://godoc.org/github.com/CenturyLinkLabs/testmux)
testmux provides a testing-only HTTP request m... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2019, Lars Brubaker, John Lewin
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 conditions and... | {
"pile_set_name": "Github"
} |
// /** @file
// PCI Library that layers on top of the PCI Root Bridge I/O Protocol.
//
// This library produces the APIs from the PCI Library and implements these APIs
// by calling into the PCI Root Bridge I/O Protocol. The PCI Root Bridge I/O Protocol is
// typically produced by a chipset specific DXE driver.
/... | {
"pile_set_name": "Github"
} |
package org.springframework.roo.petclinic.config;
import org.springframework.roo.addon.layers.repository.jpa.annotations.RooJpaRepositoryConfiguration;
/**
* = SpringDataJpaDetachableRepositoryConfiguration
*
* TODO Auto-generated class documentation
*
*/
@RooJpaRepositoryConfiguration
public class SpringDataJpaD... | {
"pile_set_name": "Github"
} |
// created by cgo -cdefs and then converted to Go
// cgo -cdefs defs_darwin.go
package runtime
import "unsafe"
const (
_EINTR = 0x4
_EFAULT = 0xe
_PROT_NONE = 0x0
_PROT_READ = 0x1
_PROT_WRITE = 0x2
_PROT_EXEC = 0x4
_MAP_ANON = 0x1000
_MAP_PRIVATE = 0x2
_MAP_FIXED = 0x10
_MADV_DONTNEED = 0x4
_M... | {
"pile_set_name": "Github"
} |
%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module class_decl.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
%--------------... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2005 Mike McCormack
*
* 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 version.
*
* This libra... | {
"pile_set_name": "Github"
} |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/application-insights/model/Tier.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
using namespace Aws::Uti... | {
"pile_set_name": "Github"
} |
/*
* Tencent is pleased to support the open source community by making 蓝鲸 available.,
* Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the ",License",); you may not use this file except
* in compliance with the License. You may obtain a copy of the... | {
"pile_set_name": "Github"
} |
#pragma once
#include "resource.h"
| {
"pile_set_name": "Github"
} |
---
title: "ORVIBO T30W3Z control via MQTT"
description: "Integrate your ORVIBO T30W3Z via Zigbee2MQTT with whatever smart home
infrastructure you are using without the vendors bridge or gateway."
---
*To contribute to this page, edit the following
[file](https://github.com/Koenkk/zigbee2mqtt.io/blob/master/docs/devi... | {
"pile_set_name": "Github"
} |
//========================================================================
//
// PDFDoc.h
//
// Copyright 1996-2003 Glyph & Cog, LLC
//
//========================================================================
//========================================================================
//
// Modified under the Poppler ... | {
"pile_set_name": "Github"
} |
package com.android.rs.test_v11;
class UnitTest {
int mRsMessage;
int testID;
int numTests;
int RS_MSG_TEST_FAILED;
int RS_MSG_TEST_PASSED;
int mCtx;
int msgHandled;
int mRSTC;
int mItem;
int result;
int name;
}
class UT_rstypes {
int mRes;
}
class UT_rstime {
int mRes;
}
class UT_rsdebug {
... | {
"pile_set_name": "Github"
} |
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Supermarket.API.Domain.Models;
using Supermarket.API.Domain.Repositories;
using Supermarket.API.Persistence.Contexts;
namespace Supermarket.API.Persistence.Repositories
{
public class CategoryRepository : Bas... | {
"pile_set_name": "Github"
} |
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="Watches a multilog file for irregularities"
HOMEPAGE="https://www.eyrie.org/~eagle/software/multilog-watch/"
SRC_URI="https://archives.eyrie.org/software/system/multilog-watch... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2010 Lockheed Martin Corporation
*
* 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 b... | {
"pile_set_name": "Github"
} |
#ifndef KGRAPH_VALUE_TYPE
#define KGRAPH_VALUE_TYPE float
#endif
#include <cctype>
#include <type_traits>
#include <iostream>
#include <boost/timer/timer.hpp>
#include <boost/program_options.hpp>
#include <sys/time.h>
#include <cctype>
#include <random>
#include <iomanip>
#include <type_traits>
#include <boost/timer/... | {
"pile_set_name": "Github"
} |
// go run mksysnum.go /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/sys/syscall.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,darwin
package unix
const (
SYS_SYSCALL = 0
SYS_EXIT ... | {
"pile_set_name": "Github"
} |
<div style="display: flex; align-items: center;">
<div style="flex-basis: 34px; margin-right: 8px; color: initial; max-width: 40px; max-height: 40px">
${icon}
</div>
<div style="padding: 4px 8px; width: 100%;">
<h6 style="height: 18px;
line-height: 18px;
margin: 0;
padding: 0;... | {
"pile_set_name": "Github"
} |
// Copyright 2019 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.
package cmd
import (
"context"
"flag"
"fmt"
"io/ioutil"
"github.com/govim/govim/cmd/govim/internal/golang_org_x_tools/lsp/diff"
"github.com/govim/govim/... | {
"pile_set_name": "Github"
} |
/* Cygwin */
#if defined(__CYGWIN__)
#define DUK_F_CYGWIN
#endif
| {
"pile_set_name": "Github"
} |
Newsgroups: rec.motorcycles
Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!zaphod.mps.ohio-state.edu!cs.utexas.edu!asuvax!ncar!uars2!chucks
From: chucks@uars2.acd.ucar.edu (Chuck Smythe)
Subject: Re: Shaft-drives and Wheelies
Message-ID: <1993Apr21.... | {
"pile_set_name": "Github"
} |
{
"title": "Uses for Promises",
"group": "Promises",
"keywords":["custom","promise","promises"],
"description": "See how promises can help out practically",
"author": "Jeremy Foster",
"dateCreated": "2012/10/01"
}
| {
"pile_set_name": "Github"
} |
package env
import (
"errors"
"fmt"
"io/ioutil"
"os"
"strconv"
"strings"
"time"
"github.com/go-acme/lego/v3/log"
)
// Get environment variables
func Get(names ...string) (map[string]string, error) {
values := map[string]string{}
var missingEnvVars []string
for _, envVar := range names {
value := GetOrF... | {
"pile_set_name": "Github"
} |
## tcell views
This package provides some enhanced functionality on top of base tcell.
In particular, support for logical views, and a few different kinds of
widgets like title bars, and scrollable areas, are provided.
These make up a higher level interface than tcell itself.
| {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright 2017 Omnibond Systems, L.L.C.
*/
#include "protocol.h"
#include "orangefs-kernel.h"
#include "orangefs-bufmap.h"
struct orangefs_dir_part {
struct orangefs_dir_part *next;
size_t len;
};
struct orangefs_dir {
__u64 token;
struct orangefs_dir_part *part;
loff_... | {
"pile_set_name": "Github"
} |
/*
* Copyright Andrey Semashev 2007 - 2015.
* 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)
*/
/*!
* \file snprintf.hpp
* \author Andrey Semashev
* \date 20.02.2009
*
* ... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 4d5645b79cc5e4251827ffe171ed4658
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
package dns
import (
"fmt"
"time"
"github.com/Azure/azure-sdk-for-go/services/dns/mgmt/2018-05-01/dns"
"github.com/hashicorp/go-azure-helpers/response"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terrafo... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
* Copyright (C) 2009 Joseph Pecoraro
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1... | {
"pile_set_name": "Github"
} |
import { AsyncStorage } from 'react-native';
const set = async (key, value) => {
if (!key) {
return ;
}
if (typeof key !== 'string') {
key = JSON.stringify(key)
}
await AsyncStorage.setItem(key, JSON.stringify(value))
}
const get = async (key) => {
if (!key) {
return ;
}
const value = a... | {
"pile_set_name": "Github"
} |
---
# required metadata
title: Reduction days example
description: Reduction days example.
author: ShylaThompson
manager: tfehr
ms.date: 05/01/2018
ms.topic: article
ms.prod:
ms.service: dynamics-ax-applications
ms.technology:
# optional metadata
ms.search.form: SMASubscriptionTable
# ROBOTS:
audience: Applic... | {
"pile_set_name": "Github"
} |
As they search for a rental, users might also want to narrow their search to a specific city.
While our [initial](../simple-component/) rental listing component only displayed rental information, this new filter component will also allow the user to provide input in the form of filter criteria.
To begin, let's generat... | {
"pile_set_name": "Github"
} |
The `ui` directory contains static files and templates used in the web UI.
For easier distribution, they are statically compiled into the binary using
the [vfsgen](https://github.com/shurcooL/vfsgen) library.
During development it is more convenient to always use the files on disk to
directly see changes without recom... | {
"pile_set_name": "Github"
} |
ActionController::Routing::Routes.draw do |map|
# The priority is based upon order of creation: first created -> highest priority.
# Sample of regular route:
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
# Keep in mind you can assign values other than :controller and :action
# ... | {
"pile_set_name": "Github"
} |
/* crypto/buffer/buffer.h */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and no... | {
"pile_set_name": "Github"
} |
<?php
/**
* @copyright 2012,2013 Binovo it Human Project, S.L.
* @license http://www.opensource.org/licenses/bsd-license.php New-BSD
*/
namespace Binovo\ElkarBackupBundle\Listener;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Custom login listen... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" default-locale="en-GB">
<info>
<title>Journal of the South African Veterinary Association</title>
<title-short>JSAVA</title-short>
<id>http://www.zotero.... | {
"pile_set_name": "Github"
} |
const gulp = require("gulp");
const gap = require("gulp-append-prepend");
gulp.task("licenses", async function () {
// this is to add Creative Tim licenses in the production mode for the minified js
gulp
.src("build/static/js/*chunk.js", { base: "./" })
.pipe(
gap.prependText(`/*!
==================... | {
"pile_set_name": "Github"
} |
Human rights activists and the computer industry joined in a rare show of cooperation on Thursday, urging more effective policing of pornography and violence in the anarchic "virtual wild west" of the Internet.
Stories proliferate about pornography, sexual violence
against women and children, bomb-making recipe... | {
"pile_set_name": "Github"
} |
// DefaultName.cpp
#include "StdAfx.h"
#include "DefaultName.h"
static const wchar_t *kEmptyFileAlias = L"[Content]";
UString GetDefaultName2(const UString &fileName,
const UString &extension, const UString &addSubExtension)
{
int extLength = extension.Length();
int fileNameLength = fileName.Le... | {
"pile_set_name": "Github"
} |
本模块导出函数`Vibration.vibrate()`用于控制设备震动。震动触发是异步的,也就是说这个函数会立即返回而非等待震动结束。
在不支持震动的设备上(如iOS模拟器),调用此方法没有任何效果。
注意对于android来说需要在`AndroidManifest.xml`中添加`<uses-permission android:name="android.permission.VIBRATE"/>`权限。
震动模式设置现在还不支持。
### 方法
<div class="props">
<div class="prop"><h4 class="propTitle"><a class="anchor" name="vi... | {
"pile_set_name": "Github"
} |
// stb_leakcheck.h - v0.4 - quick & dirty malloc leak-checking - public domain
// LICENSE
//
// See end of file.
#ifdef STB_LEAKCHECK_IMPLEMENTATION
#undef STB_LEAKCHECK_IMPLEMENTATION // don't implement more than once
// if we've already included leakcheck before, undefine the macros
#ifdef malloc
#undef malloc
#u... | {
"pile_set_name": "Github"
} |
/*
* linux/arch/arm26/mm/memc.c
*
* Copyright (C) 1998-2000 Russell King
*
* 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 Free Software Foundation.
*
* Page table sludge for older ARM processor arc... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2010 The Android Open Source Project
* 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 above copyright
* notice, t... | {
"pile_set_name": "Github"
} |
// boost thread_clock.cpp -----------------------------------------------------------//
// Copyright 2010 Vicente J. Botet Escriba
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
// See http://www.boost.org/libs/chrono for documentation.
//------------... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 71f7e805a7fc35046afbcf5c2639d116
timeCreated: 1466604313
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/*
* Code heavily adapted from Udacity's code, e.g.
* CarND-MPC-Quizzes: mpc_to_line
*/
#include "MPC.h"
#include <cppad/cppad.hpp>
#include <cppad/ipopt/solve.hpp>
#include "Eigen-3.3/Eigen/Core"
#include <math.h>
using CppAD::AD;
// TODO: Set the timestep length and duration
// size_t: type returned by sizeof, w... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<resources name="en" flag="gb" title="English">
<string_add name="_bx_payment_grid_action_title_crt_checkout"><![CDATA[Checkout with {0}]]></string_add>
<string_add name="_bx_payment_popup_title_ods_order_subscription_change_details"><![CDATA[Change Subscription Details]]></stri... | {
"pile_set_name": "Github"
} |
/* stbsv.f -- translated by f2c (version 20061008).
You must link the resulting object file with libf2c:
on Microsoft Windows system, link with libf2c.lib;
on Linux or Unix systems, link with .../path/to/libf2c.a -lm
or, if you install libf2c.a in a standard place, with -lf2c -lm
-- in that order, at the end of ... | {
"pile_set_name": "Github"
} |
;
; $Id: vorbis.def 16335 2009-07-25 22:52:38Z cristianadam $
;
LIBRARY
vorbis.dll
EXPORTS
_floor_P
_mapping_P
_residue_P
;
vorbis_info_init
vorbis_info_clear
vorbis_info_blocksize
;
vorbis_comment_init
vorbis_comment_add
vorbis_comment_add_tag
vorbis_comment_query
vorbis_comment_query_count
vorbis_comment_clear
;
vor... | {
"pile_set_name": "Github"
} |
/* Copyright (C) 2004, 2005, 2009 Free Software Foundation, Inc.
Contributed by Apple, Inc.
This file is part of GCC.
GCC 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, or (at your option)
... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google 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 agreed t... | {
"pile_set_name": "Github"
} |
/*
* The MIT License
*
* Copyright (c) 2019 Fulcrum Genomics LLC
*
* 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 without limitation the rights
* to us... | {
"pile_set_name": "Github"
} |
'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};
| {
"pile_set_name": "Github"
} |
import _ from 'lodash';
import { MAX_EXPIRATION_TIME } from '../../constants';
/* @ngInject */
function composerExpiration(dispatchers, notification, gettextCatalog, translator) {
const { dispatcher } = dispatchers(['composer.update']);
const I18N = translator(() => ({
maxEpiration: gettextCatalog.ge... | {
"pile_set_name": "Github"
} |
{
"name": "Popping and Locking",
"colors": {
"--color-long-round": "#458588",
"--color-short-round": "#7ec16e",
"--color-focus-round": "#f42c3e",
"--color-background": "#21222d",
"--color-background-light": "#313242",
"--color-background-lightest": "#7f7d7a",
"--color-foreground": "#f2e5... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The flex property</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<style>
body {
font-family: Raleway;
... | {
"pile_set_name": "Github"
} |
// Copyright 2013 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.
package cldr
// This file implements the various inheritance constructs defined by LDML.
// See http://www.unicode.org/reports/tr35/#Inheritance_and_Validity
/... | {
"pile_set_name": "Github"
} |
{% extends "layouts.admin" %}
{% block title %} {{ trans('admin::tasks.scheduled_tasks') }} {% endblock %}
{% block contents %}
<div class="admin-body__header">
<h1 class="admin-body__header__title"> {{ trans('admin::tasks.scheduled_tasks') }} </h1>
<div class="admin-body__header__buttons">
... | {
"pile_set_name": "Github"
} |
/*
*******************************************************************************
* Copyright (C) 2007-2014, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************... | {
"pile_set_name": "Github"
} |
package us.parr.bookish.entity;
import us.parr.bookish.parse.BookishParser;
public class ChapterDef extends EntityWithScope {
public ChapterDef(int chapNumber,
BookishParser.ChapterContext ctx,
EntityWithScope enclosingScope)
{
super(chapNumber, ctx.attrs(), enclosingScope);
... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.header,
.conten... | {
"pile_set_name": "Github"
} |
# Generated by Django 3.0.5 on 2020-05-12 10:33
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('part', '0035_auto_202004... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.