text stringlengths 2 99.9k | meta dict |
|---|---|
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | {
"pile_set_name": "Github"
} |
require('../../modules/esnext.reflect.get-own-metadata-keys');
var path = require('../../internals/path');
module.exports = path.Reflect.getOwnMetadataKeys;
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" co... | {
"pile_set_name": "Github"
} |
include ../../../../Makefile.def
OBJS = CStdLibRandGenerator.o RandomNumberGenerator.o
# Compilation control
all: $(OBJS)
# Miscellaneous
tidy:
@$(RM) $(RMFLAGS) Makefile.bak *~ #*# core
clean: tidy
@$(RM) $(RMFLAGS) $(OBJS) *.o
spotless: clean
wipe: spotless
# DO NOT DELETE THIS LINE -- make... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 jmrozanec
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, sof... | {
"pile_set_name": "Github"
} |
package LWP::MemberMixin;
our $VERSION = '6.44';
sub _elem {
my $self = shift;
my $elem = shift;
my $old = $self->{$elem};
$self->{$elem} = shift if @_;
return $old;
}
1;
__END__
=pod
=head1 NAME
LWP::MemberMixin - Member access mixin class
=head1 SYNOPSIS
package Foo;
use base qw(LWP::M... | {
"pile_set_name": "Github"
} |
package apoc.export.util;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import java.io.IOException;
import java.time.temporal.TemporalAccessor;
public class TemporalSerializer extends JsonSerializer<Tem... | {
"pile_set_name": "Github"
} |
/**
* Knowage, Open Source Business Intelligence suite
* Copyright (C) 2016 Engineering Ingegneria Informatica S.p.A.
*
* Knowage is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 o... | {
"pile_set_name": "Github"
} |
from .defs import *
from shutilwhich import which
import tempfile, shutil
from . import instrument
# from xml.dom import minidom
ARGS = get_args()
SUPPORT = set(['midi'])
SUPPORT_ALL = set(['midi', 'fluidsynth', 'soundfonts']) # gme,mpe,sonicpi,supercollider,csound
MIDI = True
SOUNDFONTS = False # TODO: make this a Sup... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "tabbar_compose_camera.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "tabbar_compose_camera@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "tabbar_compose_camera@3... | {
"pile_set_name": "Github"
} |
#
# (C) Copyright 2000-2006
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
#
obj-y = hymod.o flash.o bsp.o eeprom.o fetch.o input.o env.o
| {
"pile_set_name": "Github"
} |
#*
* Copyright 2012 LinkedIn Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "右-横图片遮罩@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
} | {
"pile_set_name": "Github"
} |
# Makefile for the dss1_divert ISDN module
# Each configuration option enables a list of files.
obj-$(CONFIG_ISDN_DIVERSION) += dss1_divert.o
# Multipart objects.
dss1_divert-y := isdn_divert.o divert_procfs.o divert_init.o
| {
"pile_set_name": "Github"
} |
VALIDATION_ERROR_UNEXPECTED_ARRAY_HEADER
| {
"pile_set_name": "Github"
} |
<?php
class TestIterator2 implements Iterator
{
protected $data;
public function __construct(array $array)
{
$this->data = $array;
}
public function current()
{
return current($this->data);
}
public function next()
{
next($this->data);
}
public fu... | {
"pile_set_name": "Github"
} |
package ioutils
import (
"errors"
"io"
)
var errBufferFull = errors.New("buffer is full")
type fixedBuffer struct {
buf []byte
pos int
lastRead int
}
func (b *fixedBuffer) Write(p []byte) (int, error) {
n := copy(b.buf[b.pos:cap(b.buf)], p)
b.pos += n
if n < len(p) {
if b.pos == cap(b.buf) {
... | {
"pile_set_name": "Github"
} |
// 代码地址: https://github.com/CoderMJLee/MJRefresh
// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000
// UIScrollView+MJRefresh.m
// MJRefreshExample
//
// Created by MJ Lee on 15/3/4.
// Copyright (c) 2015年 小码哥. All r... | {
"pile_set_name": "Github"
} |
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\bootstrap;
use yii\base\InvalidConfigException;
use yii\helpers\ArrayHelper;
/**
* Progress renders a bootstrap progress bar component.
*
* For examp... | {
"pile_set_name": "Github"
} |
/* tbs-nec.h - Keytable for tbs_nec Remote Controller
*
* keymap imported from ir-keymaps.c
*
* Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
*
* 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"
} |
package com.gf.mapper;
import com.gf.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface UserMapper {
@Select( "select id , username , password from user where username = #{username}" )
Use... | {
"pile_set_name": "Github"
} |
/*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed... | {
"pile_set_name": "Github"
} |
{
"name": "mshtml-dashboard",
"headless": true,
"dependencies": [
"target-specific/edgehtml/mshtml-helpers",
"dbgobject-tree",
"object-dashboard"
],
"augments": [
"wwwroot"
],
"includes": [
"mshtml-dashboard.js"
],
"targetModules": [
"e... | {
"pile_set_name": "Github"
} |
/*---
result: 64
---*/
a := {}
a.b = "6"
a.c = "4"
a.d = a.b + a.c
return a.d
| {
"pile_set_name": "Github"
} |
local US_StorageLarge = Storage:New{
name = "Large Storage Shed",
energyStorage = 3120,
buildCostMetal = 7000,
customParams = {
normaltex = "unittextures/LogisticsLarge_normals.dds",
},
}
return lowerkeys({
["USStorageLarge"] = US_StorageLarge,
})
| {
"pile_set_name": "Github"
} |
require('../../../modules/es6.array.sort');
module.exports = require('../../../modules/_entry-virtual')('Array').sort;
| {
"pile_set_name": "Github"
} |
--- !ruby/object:RI::MethodDescription
aliases: []
block_params:
comment:
- !ruby/struct:SM::Flow::P
body: "A convenience method for obtaining the first row of a result set, and discarding all others. It is otherwise identical to #execute."
- !ruby/struct:SM::Flow::P
body: "See also #get_first_value."
full_na... | {
"pile_set_name": "Github"
} |
// @flow
// @providesModule foo
export function foo(): string { return ''; }
| {
"pile_set_name": "Github"
} |
module.exports = function CustomOperatorsPlugin(builder) {
builder.hook("build", (_, build) => {
const {
pgSql: sql,
graphql: { GraphQLInt, GraphQLBoolean },
addConnectionFilterOperator,
} = build;
// simple
addConnectionFilterOperator(
"InternetAddress",
"familyEqualTo"... | {
"pile_set_name": "Github"
} |
// Copyright Amazon.com Inc. or its affiliates. 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. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file ... | {
"pile_set_name": "Github"
} |
// IE11 needs to wait for Polymer being loaded.
HTMLImports.whenReady(function() {
Polymer({
is: 'value-null',
properties: {
value: {
notify: true
}
},
});
});
describe('data binding', function() {
// Chro... | {
"pile_set_name": "Github"
} |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.MobileAnarchy.Android.Widgets.Joystick.DualJoystickView
android:id="@+id/dualjoystickView" android:layout_gravity="center_horizontal"... | {
"pile_set_name": "Github"
} |
{
"name" : "Hello %",
"hello" : {
"world" : "Hello world!"
},
"values" : "Hello everyone my name is % and I'm %, see you soon",
"username" : "My username is :username",
"level" : {
"one" : {
"two" : {
"three" : "This is a multilevel key"
}
... | {
"pile_set_name": "Github"
} |
.s-btn:hover .m-btn-line,
.s-btn-active .m-btn-line,
.s-btn-plain-active .m-btn-line {
display: inline-block;
}
.l-btn:hover .s-btn-downarrow,
.s-btn-active .s-btn-downarrow,
.s-btn-plain-active .s-btn-downarrow {
border-style: solid;
border-color: #bfbfbf;
border-width: 0 0 0 1px;
}
| {
"pile_set_name": "Github"
} |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/history/history_service_factory.h"
#include "base/memory/ptr_util.h"
#include "chrome/browser/bookmarks/bookmark_model_facto... | {
"pile_set_name": "Github"
} |
// Copyright 2018 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 "base/task/sequence_manager/thread_controller_with_message_pump_impl.h"
#include <algorithm>
#include <utility>
#include "base/auto_reset.h"
#i... | {
"pile_set_name": "Github"
} |
# Syntax:
#
# N: Firstname Lastname <email>
# F: file pattern or directory
# F: file pattern or directory
#
# The "F" entries can be:
#
# - A directory, in which case all patches touching any file in this
# directory or its subdirectories will be CC'ed to the developer.
# - A pattern, in which case the pattern will b... | {
"pile_set_name": "Github"
} |
{
"type": "bundle",
"id": "bundle--3e5e574d-623b-4b19-8e27-e6dff3b4d78f",
"spec_version": "2.0",
"objects": [
{
"type": "attack-pattern",
"id": "attack-pattern--800f8095-99b6-4bb9-8bc6-8b9727201a2f",
"created_by_ref": "identity--e50ab59c-5c4f-4d40-bf6a-d58418d... | {
"pile_set_name": "Github"
} |
---
title: "System.Convert Methods"
ms.date: "03/30/2017"
ms.assetid: 3ca6c5b6-ea5d-4ab0-b675-f082135b342c
---
# System.Convert Methods
[!INCLUDE[vbtecdlinq](../../../../../../includes/vbtecdlinq-md.md)] does not support the following <xref:System.Convert> methods.
- Versions with an <xref:System.IFormatProvider> par... | {
"pile_set_name": "Github"
} |
#
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# The contents of this file are subject to the terms of either the Universal Permissive License
# v 1.0 as shown at http://oss.oracle.com/licenses/upl
#
# or the follow... | {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('repeat', require('../repeat'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
--innodb_flush_log_at_trx_commit=2
--innodb_buffer_pool_size=512M
--log_slave_updates=0
| {
"pile_set_name": "Github"
} |
//
// StateMachine.swift
// Redstone
//
// Created by nixzhu on 2017/1/6.
// Copyright © 2017年 nixWork. All rights reserved.
//
public class StateMachine<State: Hashable, Transition: Hashable> {
public typealias Operation = () -> Void
private var body = [State: Operation?]()
public private(set) var pre... | {
"pile_set_name": "Github"
} |
import React from 'react'
/**
* React component for the Footer Section.
*/
export const Footer = () => {
return (
<footer className="footer">
<p>
© 2020 Amith Raravi - source code on{' '}
<a href="https://github.com/raravi/sudoku">Github</a>
</p>
</footer>
)
}
| {
"pile_set_name": "Github"
} |
## Substitute Decimals for floats in expressions
Originally published: 2005-03-29 23:59:05
Last updated: 2005-06-10 07:18:40
Author: Raymond Hettinger
Evaluate using Decimals instead of floats. | {
"pile_set_name": "Github"
} |
## [**3.1.0**](https://github.com/hapijs/qs/issues?milestone=24&state=open)
- [**#89**](https://github.com/hapijs/qs/issues/89) Add option to disable "Transform dot notation to bracket notation"
## [**3.0.0**](https://github.com/hapijs/qs/issues?milestone=23&state=closed)
- [**#77**](https://github.com/hapijs/qs/issu... | {
"pile_set_name": "Github"
} |
package cmd
import (
"fmt"
"github.com/jenkins-zh/jenkins-cli/app/cmd/common"
"github.com/jenkins-zh/jenkins-cli/app/i18n"
"github.com/spf13/cobra"
)
// ConfigListOption option for config list command
type ConfigListOption struct {
common.OutputOption
Config string
}
var configListOption ConfigListOption
fu... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2018 The WebRTC 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 in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<tests>
<!-- test the use of text() -->
<document url="xml/test/test_text.xml">
<context select="/">
<valueOf select="normalize-space(/message)">This should work</valueOf>
</context>
</document>
<!-- test cases for the use of = with nodesets -->
<document... | {
"pile_set_name": "Github"
} |
package main
import . "./li_cmalloc"
func main() {
p := Malloc_int()
Free_int(p)
ok := false
func() {
defer func() {
if recover() != nil {
ok = true
}
}()
p = Calloc_int(-1)
if p == nil {
ok = true
}
Free_int(p)
}()
if !ok {
panic(0)
}
}
| {
"pile_set_name": "Github"
} |
let sketch = function(p) {
let number_of_trees = 15;
let trees = [];
let radius = 400;
let initial_boundary_size = 10;
let number_of_tries = 10;
let terminated = false;
let colors;
p.setup = function() {
p.createCanvas(950,950);
p.noStroke();
p.fill(255,100,90);
p.background("#252525");... | {
"pile_set_name": "Github"
} |
ifeng.com
ifengimg.com
# Phoenix Center
phoenixcenter.cn
# Phoenix Education
fengedu.com
# Phoenix Weekly
ifengweekly.com
| {
"pile_set_name": "Github"
} |
package com.tencent.mm.plugin.wallet.pay.a.a;
import com.facebook.appevents.UserDataStore;
import com.google.android.gms.common.Scopes;
import com.tencent.matrix.trace.core.AppMethodBeat;
import com.tencent.mm.kernel.g;
import com.tencent.mm.plugin.wallet_core.model.Authen;
import com.tencent.mm.plugin.wallet_core.mod... | {
"pile_set_name": "Github"
} |
#include "tsystem.h"
#include "tiio_mp4.h"
#include "trasterimage.h"
#include "timageinfo.h"
#include "tsound.h"
#include "toonz/stage.h"
#include <QStringList>
//===========================================================
//
// TImageWriterMp4
//
//===========================================================
class ... | {
"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"
} |
PN結 PN接面
SQL注入 SQL隱碼攻擊
SQL注入攻擊 SQL隱碼攻擊
三極管 三極體
下拉列表 下拉選單
並行計算 平行計算
中間件 中介軟體
串口 串列埠
串行 序列
串行端口 串列埠
主引導記錄 主開機記錄
主板 主機板
二極管 二極體
互聯網 網際網路
交互 互動
交互式 互動式
人工智能 人工智慧
代碼 程式碼 代碼
代碼頁 內碼表
以太網 乙太網
任務欄 工作列
任務管理器 工作管理員
仿真 模擬
位圖 點陣圖
低級 低階 低級
便攜式 行動式 攜帶型
保存 儲存
信噪比 訊雜比
信息 資訊
信息安全 資訊保安
信息技術 資訊科技
信息論 資訊理論
信號 訊號 信號
信道 通道
傳感 感測
像素 畫素
僞代碼 虛擬... | {
"pile_set_name": "Github"
} |
'use strict';
var $export = require('./_export')
, $filter = require('./_array-methods')(2);
$export($export.P + $export.F * !require('./_strict-method')([].filter, true), 'Array', {
// 22.1.3.7 / 15.4.4.20 Array.prototype.filter(callbackfn [, thisArg])
filter: function filter(callbackfn /* , thisArg */){
re... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl
#
# Tests for backward compatibility with Pod::Parser.
#
# Copyright 2006, 2008-2009, 2012, 2015, 2018 by Russ Allbery <rra@cpan.org>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
#
# SPDX-License-Identifier: GPL-1.0-or-later OR Artist... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2004 The WebRTC 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 in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... | {
"pile_set_name": "Github"
} |
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | {
"pile_set_name": "Github"
} |
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Analyzers Documentation
</h1>
</section>
<!-- Main content -->
<section id="used_settings" class="content">
<div class="box">
<div class="box-body">
... | {
"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"
} |
// +build integration
//Package glacier provides gucumber integration tests support.
package glacier
import (
"github.com/aws/aws-sdk-go/awstesting/integration/smoke"
"github.com/aws/aws-sdk-go/service/glacier"
"github.com/gucumber/gucumber"
)
func init() {
gucumber.Before("@glacier", func() {
gucumber.World["... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2012 Manning
See the file license.txt for copying permission.
-->
<resources>
<string name="app_name">Hack009</string>
<string name="date">Date:</string>
<string name="picked_date_format">Picked date: %1$d/%2$d/%3$d</string>
</resources>
| {
"pile_set_name": "Github"
} |
==Phrack Inc.==
Volume One, Issue Nine, Phile #7 of 10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
(512)-396-1120
The Shack // presents
A Multi-User Cha... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 Blender Foundation
*
* 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 ... | {
"pile_set_name": "Github"
} |
<?php
namespace Concrete\Core\Backup\ContentImporter\Importer\Routine;
use Concrete\Core\Entity\Geolocator;
use Concrete\Core\Geolocator\GeolocatorService;
use Concrete\Core\Support\Facade\Application;
class ImportGeolocatorsRoutine extends AbstractRoutine
{
public function getHandle()
{
return 'geolo... | {
"pile_set_name": "Github"
} |
//
// Copyright 2016, Sander van Harmelen
//
// 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 a... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.... | {
"pile_set_name": "Github"
} |
in vec2 Texcoord;
OUTPUT
uniform bool textured;
uniform vec4 color;
uniform sampler2D tex;
void main()
{
outColor = color;
if (textured)
outColor = outColor * texture(tex, Texcoord);
}
| {
"pile_set_name": "Github"
} |
<?xml version='1.0' encoding='utf-8'?>
<section xmlns="https://code.dccouncil.us/schemas/dc-library" xmlns:codified="https://code.dccouncil.us/schemas/codified" xmlns:codify="https://code.dccouncil.us/schemas/codify" xmlns:xi="http://www.w3.org/2001/XInclude" containing-doc="D.C. Code">
<num>42-3405.09</num>
<headi... | {
"pile_set_name": "Github"
} |
package libpod
import (
"context"
"strings"
"github.com/containers/podman/v2/libpod/define"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type containerNode struct {
id string
container *Container
dependsOn []*containerNode
dependedOn []*containerNode
}
// ContainerGraph is a dependency ... | {
"pile_set_name": "Github"
} |
using System.Text.Json.Serialization;
using Essensoft.AspNetCore.Payment.Alipay.Domain;
namespace Essensoft.AspNetCore.Payment.Alipay.Response
{
/// <summary>
/// AlipayCommerceFixAttachmentUploadResponse.
/// </summary>
public class AlipayCommerceFixAttachmentUploadResponse : AlipayResponse
{
... | {
"pile_set_name": "Github"
} |
#include "Character.h"
#include <assert.h>
#include "util/json/json.h"
#include "util/FileUtil.h"
#include "util/JsonUtil.h"
// Json keys
const std::string cCharacter::gSkeletonKey = "Skeleton";
const std::string gPoseKey = "Pose";
const std::string gVelKey = "Vel";
cCharacter::cCharacter()
{
ResetParams();
}
cCha... | {
"pile_set_name": "Github"
} |
/*
* TestThrift.thrift, modified to use a separate package name.
*
* Any changes to this file *MUST* be mirrored in thrifty-test-server's copy!
*/
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additi... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2002, 2008, 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"
} |
/* global describe, it */
var requireMainFilename = require('./')
require('tap').mochaGlobals()
require('chai').should()
describe('require-main-filename', function () {
it('returns require.main.filename in normal circumstances', function () {
requireMainFilename().should.match(/test\.js/)
})
it('should us... | {
"pile_set_name": "Github"
} |
/*
* vfsv0 quota IO operations on file
*/
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/mount.h>
#include <linux/dqblk_v2.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/quotaops.h>
#include <asm/byteorder.h>
#include "quota_tr... | {
"pile_set_name": "Github"
} |
[Desktop Entry]
Encoding=UTF-8
Name=VeraCrypt
GenericName=VeraCrypt
Comment=VeraCrypt
Exec=/usr/bin/veracrypt
Icon=veracrypt
Terminal=false
Type=Application
Categories=Encryption;Encryption Tools;Utility;
| {
"pile_set_name": "Github"
} |
/** Used for built-in method references. */
var arrayProto = Array.prototype;
/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeJoin = arrayProto.join;
/**
* Converts all elements in `array` into a string separated by `separator`.
*
* @static
* @memberOf _
* @sinc... | {
"pile_set_name": "Github"
} |
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
rmdir /s /q %build-root%\cmake
mkdir %b... | {
"pile_set_name": "Github"
} |
{
"name": "cloudscribe Pwa Demo",
"short_name": "Pwa Demo",
"description": "The most awesome application in the world",
"icons": [
{
"src": "/manifest/apple-touch-icon-60x60.png",
"sizes": "60x60",
"type": "image/png"
},
{
"src": "/manifest/apple-touch-icon-76x76.png",
... | {
"pile_set_name": "Github"
} |
package cn.nukkit.level;
import cn.nukkit.nbt.tag.CompoundTag;
import cn.nukkit.utils.BinaryStream;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableMap;
import java.util.EnumMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Optional;
import static cn.nukki... | {
"pile_set_name": "Github"
} |
###### Mathematical symbols
$$include '../../meta/macros.ptl'
import [mix linreg clamp fallback] from '../../support/utils'
import [designParameters] from '../../meta/aesthetics'
glyph-module
glyph-block NotGlyphFn : begin
glyph-block-import CommonShapes
glyph-block-import Common-Derivatives
glyph-block-export no... | {
"pile_set_name": "Github"
} |
/*
* Phosphorus Five, copyright 2014 - 2017, Thomas Hansen, thomas@gaiasoul.com
*
* This file is part of Phosphorus Five.
*
* Phosphorus Five is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Found... | {
"pile_set_name": "Github"
} |
BR2_powerpc64=y
BR2_powerpc_power7=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.net/toolchains/tarballs/br-powerpc64-power7-glibc-2020.02.tar.bz2"
BR2_TOOLCHAIN_EXTERNAL_GCC_8=y
BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_4=y
BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIB... | {
"pile_set_name": "Github"
} |
# Format: //devtools/kokoro/config/proto/build.proto
env_vars: {
key: "PACKAGE"
value: "google-cloud-assured_workloads-v1beta1"
}
| {
"pile_set_name": "Github"
} |
var group__group01_unionsi4735__digital__output__format =
[
[ "refined", "group__group01.html#a35ccd17683cd73a68c47e8351f8f7520", null ],
[ "raw", "group__group01.html#a0fa2c05d8877d3c680e904842993c33e", null ]
]; | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2016 BayLibre, SAS
* Author: Neil Armstrong <narmstrong@baylibre.com>
* Copyright (C) 2015 Amlogic, Inc. All rights reserved.
* Copyright (C) 2014 Endless Mobile
*/
#include <linux/export.h>
#include "meson_drv.h"
#include "meson_viu.h"
#include "me... | {
"pile_set_name": "Github"
} |
## `php:7-zts-alpine3.11`
```console
$ docker pull php@sha256:8e641ff356f67df8485ffeadb8d69e752f31ab4039092abc8719f900d1c21423
```
- Manifest MIME: `application/vnd.docker.distribution.manifest.list.v2+json`
- Platforms:
- linux; amd64
- linux; arm variant v6
- linux; arm variant v7
- linux; arm64 variant v8
- l... | {
"pile_set_name": "Github"
} |
// +build linux
package namespaces
import (
"io"
"os"
"os/exec"
"syscall"
"github.com/docker/libcontainer"
"github.com/docker/libcontainer/cgroups"
"github.com/docker/libcontainer/cgroups/fs"
"github.com/docker/libcontainer/cgroups/systemd"
"github.com/docker/libcontainer/network"
"github.com/docker/libcon... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
... | {
"pile_set_name": "Github"
} |
using System;
using System.Linq;
namespace ArduinoUploader.BootloaderProgrammers.Protocols.STK500v2.Messages
{
internal class ExecuteSpiCommandRequest : Request
{
internal ExecuteSpiCommandRequest(byte numTx, byte numRx, byte rxStartAddr, byte[] txData)
{
var data = new byte[numTx]... | {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Documentation and examples for Bootstrap’s powerful, responsive navigation header, the navbar. Includes support for branding, navi... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) the libgit2 contributors. All rights reserved.
*
* This file is part of libgit2, distributed under the GNU GPL v2 with
* a Linking Exception. For full terms see the included COPYING file.
*/
#include "buffer.h"
#include "posix.h"
#include "git2/buffer.h"
#include "buf_text.h"
#include <ctype.h>
... | {
"pile_set_name": "Github"
} |
name: Run tests
on: [push]
jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies
run: npm install
- name: Build TS
run: npm build
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2020 OmniSci, 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"
} |
<div class="page-header">
<h2><?= t('Add group member to "%s"', $group['name']) ?></h2>
</div>
<?php if (empty($users)): ?>
<p class="alert"><?= t('There is no user available.') ?></p>
<div class="form-actions">
<?= $this->url->link(t('Close this window'), 'GroupListController', 'index', array(), fa... | {
"pile_set_name": "Github"
} |
using Ooui.Forms.Extensions;
using System;
using System.ComponentModel;
using Xamarin.Forms;
namespace Ooui.Forms.Renderers
{
public class SearchBarRenderer : ViewRenderer<SearchBar, Div>
{
Input _searchBar;
Button _searchButton;
bool _disposed;
IElementController ElementContr... | {
"pile_set_name": "Github"
} |
package nme.media;
#if (!flash)
class SoundLoaderContext
{
public function new()
{
}
}
#else
typedef SoundLoaderContext = flash.media.SoundLoaderContext;
#end
| {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.