text stringlengths 2 99.9k | meta dict |
|---|---|
//----------------------------------------------------------------------------//
//|
//| MachOKit - A Lightweight Mach-O Parsing Library
//! @file MKNodeFieldTypeQuadWord.h
//!
//! @author D.V.
//! @copyright Copyright (c) 2014-2015 D.V. All rights reserved.
//|
//| Permission is hereby granted, ... | {
"pile_set_name": "Github"
} |
#
# owner/status file
# owner: institution that is responsible for this package
# status: e.g. active, maintenance, unmaintained
#
owner:Intel
status:active
| {
"pile_set_name": "Github"
} |
# Node.js Foundation Modules Team Meeting 2018-07-11
* **Recording**: https://www.youtube.com/watch?v=2iNkMhlnYyk
* **GitHub Issue**: https://github.com/nodejs/modules/issues/148
* **Minutes Google Doc**: https://docs.google.com/document/d/1m1yCbb5A6t8KGy9Ov33I7YNKR_fxMPCIJLC3HymGLS8/edit
## Present
- Bradley Faria... | {
"pile_set_name": "Github"
} |
/******************************************************************************\
Vanquish Utils - Copyright (c)2003 XShadow, All rights reserved.
This program is free software; you can redistribute it but not modify
it under the terms of license.txt file that came with this package
This program is distrib... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
#include "util.h"
#include "../debug.h"
/*
* Default error logging functions
*/
static int perf_stdio__error(const char *format, va_list args)
{
fprintf(stderr, "Error:\n");
vfprintf(stderr, format, args);
return 0;
}
static int perf_stdio__warning(const char *format, va_list... | {
"pile_set_name": "Github"
} |
/*===---- cuda_builtin_vars.h - CUDA built-in variables ---------------------===
*
* 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 ri... | {
"pile_set_name": "Github"
} |
// linux/mksysnum.pl -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK = 2
SYS_READ ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2013 David Tinker
*
* 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 ... | {
"pile_set_name": "Github"
} |
require('http').createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end('Hello <b>World</b>');
}).listen(3000);
| {
"pile_set_name": "Github"
} |
use ron::de::from_str;
#[test]
fn test_char() {
let de: char = from_str("'Փ'").unwrap();
assert_eq!(de, 'Փ');
}
#[test]
fn test_string() {
let de: String = from_str("\"My string: ऄ\"").unwrap();
assert_eq!(de, "My string: ऄ");
}
| {
"pile_set_name": "Github"
} |
// Copyright 2016 The Snappy-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 !amd64 appengine !gc noasm
package snappy
func load32(b []byte, i int) uint32 {
b = b[i : i+4 : len(b)] // Help the compiler eliminate bound... | {
"pile_set_name": "Github"
} |
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in w... | {
"pile_set_name": "Github"
} |
$tab-control-width = $tab-height*0.5;
.tab-container {
position: relative;
display: flex;
flex-direction: column;
align-items: stretch;
width: 100%;
height: 100%;
}
.tab-content {
flex: 1 0 auto;
position: relative;
}
.tab-content-container {
absolute(0);
.tab-content-placeholder-monkey {
conte... | {
"pile_set_name": "Github"
} |
//========================================================================
// GLFW 3.1 Mir - www.glfw.org
//------------------------------------------------------------------------
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
//
// This software is provided 'as-is', without any express o... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 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"
} |
everyone knows that old rule , 'never work with children and animals . '
in this latest horror flick mimic case , it's 'never work with children and genetically enhanced killer animals' instead , as mimic features both of these and succeeds in doing nothing except mildly engaging the audience .
the film begins in new... | {
"pile_set_name": "Github"
} |
package convey
import (
"github.com/smartystreets/goconvey/convey/reporting"
)
type nilReporter struct{}
func (self *nilReporter) BeginStory(story *reporting.StoryReport) {}
func (self *nilReporter) Enter(scope *reporting.ScopeReport) {}
func (self *nilReporter) Report(report *reporting.AssertionResult) {}
f... | {
"pile_set_name": "Github"
} |
// @flow
import GLExtensionsManager from "../low_level/core/GLExtensionsManager";
import GLBoostObject from "../low_level/core/GLBoostObject";
import Matrix44 from "../low_level/math/Matrix44";
import Vector3 from "../low_level/math/Vector3";
import Vector4 from "../low_level/math/Vector4";
import EffekseerElement fro... | {
"pile_set_name": "Github"
} |
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
target datalayout = "p:0:32:32"
; CHECK: Invalid pointer size of 0 bytes
| {
"pile_set_name": "Github"
} |
<resources>
<string name="app_name">Material Icon</string>
<string name="menu_countries">Show countries</string>
<string name="menu_alternate_countries">Show alternate countries</string>
<string name="menu_contacts">Show contacts</string>
<string name="menu_alternate_contacts">Show alternate contact... | {
"pile_set_name": "Github"
} |
#include "easylogging++.h"
#include "mymath.h"
INITIALIZE_EASYLOGGINGPP
TIMED_SCOPE(benchmark, "benchmark-program");
int main(int argc, char *argv[])
{
// ELPP_INITIALIZE_SYSLOG("my_proc", LOG_PID | LOG_CONS | LOG_PERROR, LOG_USER);
el::Loggers::reconfigureAllLoggers(el::ConfigurationType::ToStandardOutput,... | {
"pile_set_name": "Github"
} |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the Licen... | {
"pile_set_name": "Github"
} |
//
//
// Author:
// Lluis Sanchez Gual
//
//
// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
//
// 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... | {
"pile_set_name": "Github"
} |
/*
* cht-bsw-nau8824.c - ASoc Machine driver for Intel Cherryview-based
* platforms Cherrytrail and Braswell, with nau8824 codec.
*
* Copyright (C) 2018 Intel Corp
* Copyright (C) 2018 Nuvoton Technology Corp
*
* Author: Wang, Joseph C <joequant@gmail.com>
* Co-author: John Hsu <KCHSU0@nuvoton.com... | {
"pile_set_name": "Github"
} |
// Copyright 2014 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 !go1.9
package context
import "time"
// A Context carries a deadline, a cancelation signal, and other values across
// API boundaries.
//
// Contex... | {
"pile_set_name": "Github"
} |
#!/bin/bash
log_path="/config/access.log"
number_of_logs_to_keep=3
file_size_limit_kb=10240
# wait for nginx process to start (listen for port)
while [[ $(netstat -lnt | awk '$6 == "LISTEN" && $4 ~ ".9080"') == "" ]]; do
sleep 0.1
done
# wait for nginx to start logging access to file
while [[ ! -f "${log_path}" ]];... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 4a69256217ba25f438aef685b909438f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
module.exports = (gulp, config) => () => {
const path = require('path');
const typeDoc = require('gulp-typedoc');
const appName = require(path.join(config.projectDir, 'package.json')).name;
const tsConfig = require(path.join(config.srcDir, 'tsconfig.json'));
const compilerOptions = tsConfig.compilerOptions;
... | {
"pile_set_name": "Github"
} |
---
http_interactions:
- request:
method: post
uri: http://ruby-fiddle-exec.heroku.com/
body:
encoding: US-ASCII
string: code=++++raise+StandardError.new+%22stuffit%22%0A
headers:
accept:
- ! '*/*'
user-agent:
- Ruby
content-type:
- application/x-www-form-... | {
"pile_set_name": "Github"
} |
/*==============================================================================
Copyright (c) 2005-2010 Joel de Guzman
Copyright (c) 2010 Thomas Heller
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... | {
"pile_set_name": "Github"
} |
<p>
\{"{{field->name|cli\Filter::label}}"}: <span class="notice" id="{{field->name}}-notice">\{"Please choose a {{field->name|cli\Filter::spaces}}."}</span>
\{% for _key, _value in array () %}
<br />
<label>
<input type="{{field->type}}" name="{{field->name}}" value="\{{_key|quotes}}"
\{% if _key == $data->{{fie... | {
"pile_set_name": "Github"
} |
// DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py.
// OffscreenCanvas test in a worker:2d.drawImage.zerocanvas
// Description:
// Note:
importScripts("/resources/testharness.js");
importScripts("/html/canvas/resources/canvas-tests.js");
var t = async_test("");
var t_pass = t.done.bind(t);
... | {
"pile_set_name": "Github"
} |
#
# Configuration File for JavaScript Lint 0.3.0
# Developed by Matthias Miller (http://www.JavaScriptLint.com)
#
# This configuration file can be used to lint a collection of scripts, or to enable
# or disable warnings for scripts that are linted via the command line.
#
### Warnings
# Enable or disable warnings based... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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 precis
import (
"errors"
"unicode/utf8"
"golang.org/x/text/runes"
"golang.org/x/text/secure/bidirule"
"golang.org/x/text/transform"
"golang.org/... | {
"pile_set_name": "Github"
} |
/*
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
* its licensors.
*
* For complete copyright and license terms please see the LICENSE at the root of this
* distribution (the "License"). All use of this software is governed by the License,
* or, if provided, by the license below or t... | {
"pile_set_name": "Github"
} |
// Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
#pragma once
#include <CryExtension/ICryFactoryRegistry.h>
#include <CryEntitySystem/IEntityBasicTypes.h>
#include <CryEntitySystem/IEntityComponent.h>
// Implemented in a similar way to CListenerSet
// Forward decl.
template<typename T>
class ... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2014 MongoDB 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 to in... | {
"pile_set_name": "Github"
} |
import * as fs from 'fs';
import * as path from 'path';
import { Project } from '../model';
const stripJsonComments = require('strip-json-comments');
export class Utils {
public static removeSingleLineComments(s: string): string {
return stripJsonComments(s);
}
public static getAllFiles(dir: string): string... | {
"pile_set_name": "Github"
} |
{
"required" : true ,
"$schema" : "http://json-schema.org/draft-03/schema" ,
"type" : "object" ,
"properties" : {
"Users" : {
"type" : "string" ,
"required" : false
} ,
"Administrators" : {
"type" : "string" ,
"required" : false
} ,
"Developers" : {
"type" : "st... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1996, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
// Package aws provides core functionality for making requests to AWS services.
package aws
// SDKName is the name of this AWS SDK
const SDKName = "aws-sdk-go"
// SDKVersion is the version of this SDK
const SDKVersion = "1.30.28"
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
Name="bounds"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\Debug"
IntermediateD... | {
"pile_set_name": "Github"
} |
/*
* FLI/FLC Animation Video Decoder
* Copyright (C) 2003, 2004 The FFmpeg project
*
* 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... | {
"pile_set_name": "Github"
} |
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!129 &1
PlayerSettings:
m_ObjectHideFlags: 0
serializedVersion: 20
productGUID: 1662e5eb61e76df4aaa9f58e8c7e89e3
AndroidProfiler: 0
AndroidFilterTouchesWhenObscured: 0
AndroidEnableSustainedPerformanceMode: 0
defaultScreenOrientation: 3
targetDevice: 2
us... | {
"pile_set_name": "Github"
} |
[1] <INTSXP[10]> (altrep )
_class [2] <RAWSXP[144]> ()
_attrib [3] <LISTSXP> ()
[4] <SYMSXP: compact_intseq> ()
[5] <SYMSXP: base> ()
[6] <INTSXP[1]> ()
_data1 [7] <REALSXP[3]> ()
_data2 <NILSXP>
| {
"pile_set_name": "Github"
} |
//
// Copyright (c) 2015-present Marin Todorov, Underplot ltd.
// This code is distributed under the terms and conditions of the 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 w... | {
"pile_set_name": "Github"
} |
/*
* This file is part of Discord4J.
*
* Discord4J is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Discord4J is dist... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2019, Niklas Hauser
#
# This file is part of the modm project.
#
# 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/M... | {
"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"
} |
// Copyright (C) 2012 Codership Oy <info@codership.com>
/*!
* Original Bob Jenkins' test implementation:
* http://www.burtleburtle.net/bob/c/testspooky.cpp
*
* $Id$
*/
#include "gu_spooky_test.h"
#include "../src/gu_spooky.h"
#include "../src/gu_hexdump.h"
#define BUFSIZE 512
static uint64_t const expected[BUF... | {
"pile_set_name": "Github"
} |
{% set page_title = _("Account Activation") %}
{% set active_forum_nav=True %}
{% extends theme("layout.html") %}
{% block content %}
{% from theme("macros.html") import horizontal_field %}
<div class="panel page-panel">
<div class="panel-heading page-head">
{% trans %}Account Activation{% endtrans %}
... | {
"pile_set_name": "Github"
} |
audiograph.xyz
concerned-day.surge.sh | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0-or-later
/* Request a key from userspace
*
* Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
* Written by David Howells (dhowells@redhat.com)
*
* See Documentation/security/keys/request-key.rst
*/
#include <linux/export.h>
#include <linux/sched.h>
#include <linux/km... | {
"pile_set_name": "Github"
} |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S11.13.2_A2.1_T1.8;
* @section: 11.13.2;
* @assertion: Operator uses GetValue;
* @description: Either Type is not Reference or GetBase is not null, check opeartor is "x ... | {
"pile_set_name": "Github"
} |
/**
* ScandiPWA - Progressive Web App for Magento
*
* Copyright © Scandiweb, Inc. All rights reserved.
* See LICENSE for license details.
*
* @license OSL-3.0 (Open Software License ("OSL") v. 3.0)
* @package scandipwa/base-theme
* @link https://github.com/scandipwa/base-theme
*/
/* eslint-disable func-names, ... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2010-2020 Contributors to the openHAB project
//
// See the NOTICE file(s) distributed with this work for additional
// information.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/... | {
"pile_set_name": "Github"
} |
# ext-theme-neutral/sass/etc
This folder contains miscellaneous SASS files. Unlike `"ext-theme-neutral/sass/etc"`, these files
need to be used explicitly.
| {
"pile_set_name": "Github"
} |
<%--
Created by IntelliJ IDEA.
User: warframe
Date: 2017/6/7
Time: 10:39
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %>
<!--管理页面的导航栏-->
<div class="adminNav">
<nav class="navbar navbar-default navb... | {
"pile_set_name": "Github"
} |
//! moment.js locale configuration
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined'
&& typeof require === 'function' ? factory(require('../moment')) :
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
factory(global.moment)
}(this, ... | {
"pile_set_name": "Github"
} |
/*
* This file is provided under a dual BSD/GPLv2 license. When using or
* redistributing this file, you may do so under either license.
*
* GPL LICENSE SUMMARY
*
* Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it un... | {
"pile_set_name": "Github"
} |
// node d.ts file
// declare module 'autodll-webpack-plugin'
| {
"pile_set_name": "Github"
} |
package bbolt
import (
"fmt"
"syscall"
"time"
"unsafe"
"golang.org/x/sys/unix"
)
// flock acquires an advisory lock on a file descriptor.
func flock(db *DB, exclusive bool, timeout time.Duration) error {
var t time.Time
if timeout != 0 {
t = time.Now()
}
fd := db.file.Fd()
var lockType int16
if exclusiv... | {
"pile_set_name": "Github"
} |
CLASS net/minecraft/class_3229 net/minecraft/world/gen/chunk/FlatChunkGeneratorLayer
FIELD field_14026 blockState Lnet/minecraft/class_2680;
FIELD field_14027 startY I
FIELD field_14028 thickness I
FIELD field_24974 CODEC Lcom/mojang/serialization/Codec;
METHOD <init> (ILnet/minecraft/class_2248;)V
ARG 1 thickne... | {
"pile_set_name": "Github"
} |
@code{(require 'html-for-each)}
@ftindex html-for-each
@defun html-for-each file word-proc markup-proc white-proc newline-proc
@var{file} is an input port or a string naming an existing file containing
HTML text.
@var{word-proc} is a procedure of one argument or #f.
@var{markup-proc} is a procedure of one argument o... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<!--
Copyright World Wide Web Consortium, (Massachusetts Institute of
Technology, Institut National de Recherche en Informatique et en
Automatique, Keio University).
All Rights Reserved.
Please see the full Copyright clause at
<http://www.w3.org/Consortium/Legal/copyright-software.... | {
"pile_set_name": "Github"
} |
import ExtractTextPlugin from '../../../src/index';
module.exports = {
entry: './index',
plugins: [
new ExtractTextPlugin({
filename: 'file.css',
}),
],
};
| {
"pile_set_name": "Github"
} |
// Clearfix
//
// For modern browsers
// 1. The space content is one way to avoid an Opera bug when the
// contenteditable attribute is included anywhere else in the document.
// Otherwise it causes space to appear at the top and bottom of elements
// that are clearfixed.
// 2. The use of `table` rather than `... | {
"pile_set_name": "Github"
} |
/**
*
* WARNING! This file was autogenerated by:
* _ _ _ _ __ __
* | | | | | | |\ \ / /
* | | | | |_| | \ V /
* | | | | _ | / \
* | |_| | | | |/ /^\ \
* \___/\_| |_/\/ \/
*
* This file was autogenerated by UnrealHxGenerator using UHT definitions.
* It only includes UPROPERTYs and UFU... | {
"pile_set_name": "Github"
} |
// <auto-generated />
using System;
using BaGet.Database.PostgreSql;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata... | {
"pile_set_name": "Github"
} |
// mkerrors.sh -m64
// MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
// +build ppc64le,linux
// Created by cgo -godefs - DO NOT EDIT
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_ALG = 0x26
AF_APPLETALK = 0x5
AF_ASH ... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0-or-later
/* -*- mode: c; c-basic-offset: 8; -*-
* vim: noexpandtab sw=8 ts=8 sts=0:
*
* export.c
*
* Functions to facilitate NFS exporting
*
* Copyright (C) 2002, 2005 Oracle. All rights reserved.
*/
#include <linux/fs.h>
#include <linux/types.h>
#include <cluster/masklog.... | {
"pile_set_name": "Github"
} |
/**
* Module dependencies.
*/
var pathRegexp = require('path-to-regexp');
var debug = require('debug')('express:router:layer');
/**
* Module variables.
*/
var hasOwnProperty = Object.prototype.hasOwnProperty;
/**
* Expose `Layer`.
*/
module.exports = Layer;
function Layer(path, options, fn) {
if (!(this i... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="9.00"
Name="TestLibrary"
ProjectGUID="{483CB510-16C7-4C85-86B7-D79119C4A0FB}"
RootNamespace="TestLibrary"
Keyword="Win32Proj"
TargetFrameworkVersion="196613"
>
<Platforms>
<Platform
Name="Digi JumpStart (A... | {
"pile_set_name": "Github"
} |
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license an... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless requi... | {
"pile_set_name": "Github"
} |
#include "sun4i-ss.h"
int sun4i_ss_prng_seed(struct crypto_rng *tfm, const u8 *seed,
unsigned int slen)
{
struct sun4i_ss_alg_template *algt;
struct rng_alg *alg = crypto_rng_alg(tfm);
algt = container_of(alg, struct sun4i_ss_alg_template, alg.rng);
memcpy(algt->ss->seed, seed, slen);
return 0;
}
int ... | {
"pile_set_name": "Github"
} |
StartChar: uni0754.init_BaaRaaIsol
Encoding: 1114931 -1 1103
Width: 234
Flags: HW
AnchorPoint: "TashkilAbove" 119 801 basechar 0
AnchorPoint: "TashkilBelow" 95 -327 basechar 0
LayerCount: 2
Fore
Refer: 195 -1 N 1 0 0 1 134 -166 2
Refer: 191 -1 N 1 0 0 1 119 396 2
Refer: 67 -1 N 1 0 0 1 0 0 2
EndChar
| {
"pile_set_name": "Github"
} |
use Test::Nginx::Socket;
use Cwd qw(cwd);
plan tests => repeat_each() * (blocks() * 4);
my $pwd = cwd();
$ENV{TEST_NGINX_RESOLVER} = '8.8.8.8';
$ENV{TEST_COVERAGE} ||= 0;
our $HttpConfig = qq{
lua_package_path "$pwd/lib/?.lua;/usr/local/share/lua/5.1/?.lua;;";
error_log logs/error.log debug;
init_by_lu... | {
"pile_set_name": "Github"
} |
//------------------------------------//
// $BUTTONS
//------------------------------------//
.btn {
display: inline-block;
margin: 0;
padding: .4em 1em;
color: $primary;
font-size: 1rem;
line-height: 1.6em;
text-align: center;
vertical-align: middle;
white-space: nowrap;
border: 1px solid $gray;
... | {
"pile_set_name": "Github"
} |
// Copyright 2011 Google Inc. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the COPYING file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All contributing project authors may
// be... | {
"pile_set_name": "Github"
} |
<?php
Yii::import('application.modules.comment.events.CommentEvent');
Yii::import('application.modules.notify.NotifyModule');
Yii::import('application.modules.blog.models.Post');
Yii::import('application.modules.blog.models.Blog');
/**
* Class BlogPostCommentListener
*/
class BlogPostCommentListener
{
/**
... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2014 Tom Zhou<iwebpp@gmail.com>
package com.iwebpp.node;
import java.util.Date;
import com.iwebpp.SimpleDebug;
import com.iwebpp.libuvpp.LibUV;
import com.iwebpp.libuvpp.cb.TimerCallback;
import com.iwebpp.libuvpp.handles.LoopHandle;
import com.iwebpp.libuvpp.handles.TimerHandle;
// Node.android ... | {
"pile_set_name": "Github"
} |
/*
* init.c, Common initialization routines for NEC VR4100 series.
*
* Copyright (C) 2003-2009 Yoichi Yuasa <yuasa@linux-mips.org>
*
* 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; ... | {
"pile_set_name": "Github"
} |
@model ICollection<Microsoft.AspNet.Identity.UserLoginInfo>
@if (Model.Count > 0)
{
<h4>Registered Logins</h4>
<table class="table">
<tbody>
@foreach (var account in Model)
{
<tr>
<td>@account.LoginProvider</td>
<td>
... | {
"pile_set_name": "Github"
} |
/*
* OLPC XO-1 additional sound features
*
* Copyright © 2006 Jaya Kumar <jayakumar.lkml@gmail.com>
* Copyright © 2007-2008 Andres Salomon <dilinger@debian.org>
*
* 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... | {
"pile_set_name": "Github"
} |
InstallerModal = {}
InstallerModal.__index = InstallerModal
function InstallerModal:Init(title, editorUI)
-- print("Create installer modal")
local _installerModal = {} -- our new object
setmetatable(_installerModal, InstallerModal) -- make Account handle lookup
_installerModal.editorUI = editorUI
_install... | {
"pile_set_name": "Github"
} |
var baseGet = require('./_baseGet');
/**
* A specialized version of `baseProperty` which supports deep paths.
*
* @private
* @param {Array|string} path The path of the property to get.
* @returns {Function} Returns the new accessor function.
*/
function basePropertyDeep(path) {
return function(object) {
re... | {
"pile_set_name": "Github"
} |
" Language: LaTeX (tex)
" Author: Julian Wulfheide
" License: The MIT License
" \ { 'pattern': '\\\\(\(sub\)\{0,2}section\|chapter\|paragraph\){.*}',
function! ctrlp#funky#ft#tex#filters()
let filters = [
\ { 'pattern': '\\\(\(sub\)\{0,2}section\|chapter\|\(sub\)\=paragraph\|part\)\(*\)\={.*}',
... | {
"pile_set_name": "Github"
} |
/*
The MIT License (MIT)
Copyright (c) 2018 Helix Toolkit contributors
*/
using global::SharpDX;
using global::SharpDX.Direct3D11;
using System;
using System.Collections.Generic;
using System.Linq;
#if !NETFX_CORE
namespace HelixToolkit.Wpf.SharpDX
#else
#if CORE
namespace HelixToolkit.SharpDX.Core
#else
namespace Hel... | {
"pile_set_name": "Github"
} |
# coding: utf-8
"""
(C) Copyright 2016-2019 Nuxeo (http://nuxeo.com/) and contributors.
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Lesser General Public License
(LGPL) version 2.1 which accompanies this distribution, and is available at
http://www.gnu... | {
"pile_set_name": "Github"
} |
//
// Labels
// --------------------------------------------------
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: @label-color;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
// Add hover effe... | {
"pile_set_name": "Github"
} |
/* eslint-disable
camelcase,
max-len,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* Full docs: https... | {
"pile_set_name": "Github"
} |
Files:
tests/test-strncat.c
tests/unistr/test-strncat.h
tests/zerosize-ptr.h
tests/signature.h
tests/macros.h
m4/mmap-anon.m4
Depends-on:
extensions
getpagesize
configure.ac:
gl_FUNC_MMAP_ANON
AC_CHECK_HEADERS_ONCE([sys/mman.h])
AC_CHECK_FUNCS_ONCE([mprotect])
Makefile.am:
TESTS += test-strncat
check_PROGRAMS += tes... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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... | {
"pile_set_name": "Github"
} |
---
title: Sigmoid Cross-Entropy Loss Layer
---
# Sigmoid Cross-Entropy Loss Layer
* Layer type: `SigmoidCrossEntropyLoss`
* [Doxygen Documentation](http://caffe.berkeleyvision.org/doxygen/classcaffe_1_1SigmoidCrossEntropyLossLayer.html)
* Header: [`./include/caffe/layers/sigmoid_cross_entropy_loss_layer.hpp`](https:... | {
"pile_set_name": "Github"
} |
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package license
import (
"time"
"github.com/elastic/cloud-on-k8s/pkg/controller/... | {
"pile_set_name": "Github"
} |
Title: Sites can not be assigned to global scope
Class: fix
Compatible: compat
Component: multisite
Date: 1574758570
Edition: cme
Knowledge: doc
Level: 1
Version: 2.0.0i1
Users can be assigned to configured customers and the provider or to a
global scope to have access to all sites. The same option generators is
used ... | {
"pile_set_name": "Github"
} |
/*
Licensed to Diennea S.r.l. under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. Diennea S.r.l. licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.