text stringlengths 2 99.9k | meta dict |
|---|---|
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\repeating\cli.js" %*
) ELSE (
node "%~dp0\..\repeating\cli.js" %*
) | {
"pile_set_name": "Github"
} |
/* generalized minimum residual method for general complex operators
* Copyright (C) 2014 University of Texas at Austin
* Inspired by:
* Copyright (C) 1998-2006 Kengo Ichiki <kichiki@users.sourceforge.net>
* $Id: gmres.c,v 2.10 2006/10/10 19:53:27 ichiki Exp $
*
* Reference :
* GMRES(m) : Y.Saad & M.H.Schultz,... | {
"pile_set_name": "Github"
} |
// ----------------------------------------------------------------------
// Copyright (C) 2020 即时通讯网(52im.net) & Jack Jiang.
// The MobileIMSDK_X (MobileIMSDK v4.x) Project.
// All rights reserved.
//
// > Github地址: https://github.com/JackJiang2011/MobileIMSDK
// > 文档地址: http://www.52im.net/forum-89-1.html
/... | {
"pile_set_name": "Github"
} |
#import "UserVoiceAccount.h"
@implementation UserVoiceAccount
+ (void)load { [Account registerClass:self]; }
+ (BOOL)requiresDomain { return YES; }
+ (NSString *)domainSuffix { return @".uservoice.com"; }
- (void)validateWithPassword:(NSString *)password {
NSString *URL = [NSString stringWithFormat:@"http:/... | {
"pile_set_name": "Github"
} |
/*
Copyright The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softw... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl -w
# Written by Bryan Henderson
# Contributed to the public domain.
use strict;
use English;
use Getopt::Long;
use File::Temp "tempfile";
use File::Spec;
use File::Copy;
use Fcntl ":seek";
my ($TRUE, $FALSE) = (1,0);
my ($opt_center, $opt_meancolor, $opt_meanpixel, $opt_floyd,
$opt_spreadbright... | {
"pile_set_name": "Github"
} |
#ifdef __CYGWIN__
/* Pipes need POSIX things, not just std ones */
#define _POSIX_C_SOURCE 200809L
#endif
#include <stdio.h>
int
main()
{
FILE *fp;
fp = popen("/tmp/xyz","r");
return (fp==NULL);
}
| {
"pile_set_name": "Github"
} |
const obj = {};
obj.modify = modify;
function modify() {
this.modified = true;
}
obj.modify();
assert.strictEqual(obj.modified ? 'MODIFIED' : 'BROKEN', 'MODIFIED');
| {
"pile_set_name": "Github"
} |
/// <reference path='./types/leaflet.d.ts' />
/// <reference path='./types/no-ui-slider.d.ts' />
/// <reference path='./types/main.d.ts' />
/* BEWARE! THERE BE DRAGONS! 🐉
Big parts of following file were written by a Python programmer with minimal exposure
to idiomatic Javascript. It should not serve as an authoriti... | {
"pile_set_name": "Github"
} |
/*
* Common NFSv4 ACL handling definitions.
*
* Copyright (c) 2002 The Regents of the University of Michigan.
* All rights reserved.
*
* Marius Aamodt Eriksen <marius@umich.edu>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followin... | {
"pile_set_name": "Github"
} |
//===--- HexagonMapAsm2IntrinV62.gen.td -----------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | {
"pile_set_name": "Github"
} |
const { parse } = require("./syntax")
const {
Label,
Icon,
Input,
Block,
Comment,
Glow,
Script,
Document,
} = require("./model.js")
const { allLanguages, loadLanguages } = require("./blocks.js")
module.exports = {
allLanguages,
loadLanguages,
parse,
Label,
Icon,
Input,
Block,
Commen... | {
"pile_set_name": "Github"
} |
#pragma once
#include "Utils/NonCopyable.hpp"
#include "Inputs/InputAxis.hpp"
namespace acid {
/**
* @brief Combines multiple axes inputs into a single axis.
*/
class ACID_EXPORT CompoundInputAxis : public InputAxis::Registrar<CompoundInputAxis>, NonCopyable {
inline static const bool Registered = Register("compou... | {
"pile_set_name": "Github"
} |
[%%define scan_state_with_tps_goal false]
[%%define scan_state_transaction_capacity_log_2 2]
[%%define scan_state_work_delay 1] | {
"pile_set_name": "Github"
} |
<style lang="less">
.single-cellgroup {
margin-bottom: 10px;
}
.single-cellgroup .cell-class > view:last-of-type{
font-size: 10px;
}
.title-new{
display: inline-block;
margin-right: 5px;
}
.title-text{
color: red;
}
.icon{
display: inline-block;
margin-right: 5px;
}
</style>
<template>
<view class="kai-co... | {
"pile_set_name": "Github"
} |
/*
* Xilinx Zynq MPSoC emulation
*
* Copyright (C) 2015 Xilinx Inc
* Written by Peter Crosthwaite <peter.crosthwaite@xilinx.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
* Free Software Foundation; either ... | {
"pile_set_name": "Github"
} |
@using NetCoreCMS.Framework.Core.Models.ViewModels
@model StartupViewModel
@{
Layout = Constants.AdminLayoutName;
ViewData["PageTitle"] = "Startup";
ViewData["PageSubtitle"] = "Set Startup Page";
}
<div class="row">
@if (ViewBag.Message != null)
{
<div class="alert alert-danger">@ViewBag.... | {
"pile_set_name": "Github"
} |
package io.iohk.ethereum.mpt
import java.io.File
import java.nio.file.Files
import io.iohk.ethereum.db.dataSource._
import io.iohk.ethereum.db.storage._
trait PersistentStorage {
def withRocksDbNodeStorage(testCode: MptStorage => Unit): Unit = {
val dbPath = Files.createTempDirectory("rocksdb").toAbsolutePath... | {
"pile_set_name": "Github"
} |
// Copyright 2011 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 windows
import "syscall"
const (
// Windows errors.
ERROR_FILE_NOT_FOUND syscall.Errno = 2
ERROR_PATH_NOT_FOUND syscall.Errno = 3
... | {
"pile_set_name": "Github"
} |
#ifndef __ODAS_SIGNAL_POINT
#define __ODAS_SIGNAL_POINT
/**
* \file point.h
* \author François Grondin <francois.grondin2@usherbrooke.ca>
* \version 2.0
* \date 2018-03-18
* \copyright
*
* This program is free software: you can redistribute it and/or modify
* it under the ... | {
"pile_set_name": "Github"
} |
using System;
using Microsoft.Extensions.Logging;
using NLogs = NLog;
using Util.Logs.Abstractions;
using Util.Logs.Formats;
namespace Util.Logs.NLog {
/// <summary>
/// NLog日志提供程序
/// </summary>
public class NLogProvider : ILogProvider {
/// <summary>
/// NLog日志操作
/// </summar... | {
"pile_set_name": "Github"
} |
# RUN: false
| {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2001-2011 Hartmut Kaiser
http://spirit.sourceforge.net/
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or cop... | {
"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"
} |
#############################################################################
# Copyright (c) 2019 Balabit
#
# 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, or (at your option) any lat... | {
"pile_set_name": "Github"
} |
[libfuzzer]
dict = ovs.dict
close_fd_mask = 3 | {
"pile_set_name": "Github"
} |
// Type definitions for ntlm-client 0.1
// Project: https://github.com/clncln1/node-ntlm-client
// Definitions by: Manuel Borrajo <https://github.com/borrajo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
interface NtlmType2 {
flags: number;
encoding: string;... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2017, Ford Motor Company
* 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, this
* list of condit... | {
"pile_set_name": "Github"
} |
use association_AddIndexControlFunctions.ump;
use association_AddMNToMany.ump;
use association_AddMNToOnlyOne.ump;
use association_AddMNToOptionalOne.ump;
use association_AddMStarToMany.ump;
use association_AddMandatoryManyToOne.ump;
use association_AddManyToManyMethod.ump;
use association_AddManyToOne.ump;
use associa... | {
"pile_set_name": "Github"
} |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\atob\bin\atob.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\atob\bin\atob.js" %*
) | {
"pile_set_name": "Github"
} |
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
kea{
Keys{
calendar{"Kalendáriu"}
}
Languages{
ab{"abkáziu"}
af{"afrikaner"}
agq{"aghem"}
ak{"akan"}
am{"amáriku"}
ar{"árabi"}
... | {
"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 name="generator" content="rustdoc"><meta name="description" content="Source to the Rust file `/Users/rseymour/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.11.27/src/header/co... | {
"pile_set_name": "Github"
} |
/*-
* Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
* 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,... | {
"pile_set_name": "Github"
} |
/******************************************************************************
*
* (C)Copyright 1998,1999 SysKonnect,
* a business unit of Schneider & Koch & Co. Datensysteme GmbH.
*
* See the file "skfddi.c" for further information.
*
* This program is free software; you can redistribute it and/or modify
* it... | {
"pile_set_name": "Github"
} |
<html>
<head>
<title>Vantage Linguistics AnswerWorks 4 API ActiveX Control Buffer Overflow Exploit</title>
<script language="JavaScript" defer>
function Check() {
var buf = 'A';
while (buf.length <= 214) buf = buf + 'A';
// win32_exec - EXITFUNC=seh CMD=c:\windows\system32\calc.exe Size=378 ... | {
"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"
} |
<!--
~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
... | {
"pile_set_name": "Github"
} |
CONFIG_9P_FS=y
# CONFIG_9P_FS_POSIX_ACL is not set
# CONFIG_9P_FS_SECURITY is not set
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
CONFIG_ARCH_HAS_KCOV=y
CONFIG_ARCH_HAS_M... | {
"pile_set_name": "Github"
} |
#include "SerializedProperty.hpp"
#include <cassert>
int FishEditor::SerializedProperty::intValue()
{
assert(m_propertyType == SerializedPropertyType::Integer);
return boost::any_cast<int>(m_value);
}
long FishEditor::SerializedProperty::longValue()
{
assert(m_propertyType == SerializedPropertyType::Integer);
re... | {
"pile_set_name": "Github"
} |
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement cannot contain an `import` declaration
esid: sec-modules
negative:
phase: parse
type: SyntaxError
flags: [module]
---*/
$DONOTEVALUATE();
try { } f... | {
"pile_set_name": "Github"
} |
/*
Pencil - Traditional Animation Software
Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
Copyright (C) 2012-2020 Matthew Chiawen Chang
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; vers... | {
"pile_set_name": "Github"
} |
define(function () {
'use strict';
function dependsOnExternal () {
console.log( external.message );
}
function external () {
dependsOnExternal();
}
external.message = 'don\'t try this at home';
external();
}); | {
"pile_set_name": "Github"
} |
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults exempt_group=admin
Defaults secure_path="/usr/local/sbin:/... | {
"pile_set_name": "Github"
} |
# Makefile.in generated by automake 1.11.6 from Makefile.am.
# tests/test-concatenated-options/Makefile. Generated from Makefile.in by configure.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
# This Makefil... | {
"pile_set_name": "Github"
} |
//===-- FileRemapper.h - File Remapping Helper ------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | {
"pile_set_name": "Github"
} |
---
title: Файлы исходного кода
description: По-умолчанию, Nuxt.js использует vue-loader, file-loader и url-loader для Webpack'а, чтобы обрабатывать файлы с исходным кодом.
category: getting-started
position: 107
---
> По-умолчанию, Nuxt.js использует vue-loader, file-loader и url-loader для Webpack'а, чтобы обрабатыв... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 802519ecbf0a64d4fb8a54f353552b49
folderAsset: yes
timeCreated: 1455708380
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
#@author:九世
#@time:2020/4/25
#@file:fuzz.py
from gevent import monkey;monkey.patch_all()
from multiprocessing import Process
from colorama import Fore,init
import asyncio,os,config,chardet,aiohttp
init(wrap=True,autoreset=True)
class Fuzz(object):
def __init__(self,filename):
self.pathlist=[] ... | {
"pile_set_name": "Github"
} |
package jetbrains.mps.lang.typesystem.editor;
/*Generated by MPS */
import jetbrains.mps.nodeEditor.DefaultNodeEditor;
import jetbrains.mps.openapi.editor.cells.EditorCell;
import jetbrains.mps.openapi.editor.EditorContext;
import org.jetbrains.mps.openapi.model.SNode;
public class PrintToTrace_Editor extends Defaul... | {
"pile_set_name": "Github"
} |
package com.nowcoder.async;
import java.util.HashMap;
import java.util.Map;
/**
* Created by 周杰伦 on 2018/5/8.
*/
//事件实体
public class EventModel {
private EventType eventType;
private int actorId;//触发者
//触发对象
private int entityId;
private int entityType;
//触发对象拥有者,拥有者会收到通知
private int ent... | {
"pile_set_name": "Github"
} |
// Copyright (C) 2002 Charless C. Fowlkes <fowlkes@eecs.berkeley.edu>
// Copyright (C) 2002 David R. Martin <dmartin@eecs.berkeley.edu>
//
// 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; eith... | {
"pile_set_name": "Github"
} |
#include "../../../tools/designer/src/lib/sdk/abstractnewformwidget_p.h"
| {
"pile_set_name": "Github"
} |
package com.slack.api.app_backend.interactive_components.payload;
import com.google.gson.annotations.SerializedName;
import com.slack.api.model.view.View;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* https://api.slack.com/reference/block-kit/bloc... | {
"pile_set_name": "Github"
} |
package cpu
import (
"context"
"fmt"
"os/exec"
"reflect"
"regexp"
"runtime"
"strconv"
"strings"
"unsafe"
"github.com/shirou/gopsutil/internal/common"
"golang.org/x/sys/unix"
)
var ClocksPerSec = float64(128)
var cpuMatch = regexp.MustCompile(`^CPU:`)
var originMatch = regexp.MustCompile(`Origin\s*=\s*"(.+... | {
"pile_set_name": "Github"
} |
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../coffee-script/bin/cake" "$@"
ret=$?
else
node "$basedir/../coffee-script/bin/cake" "$@"
ret=$?
fi
exit $ret
| {
"pile_set_name": "Github"
} |
import AppKit
import Mocha
import ImageIO
/*
let url = URL(string: "...")!
self.incremental = CGIncrementalImage(url: url)
//self.incremental?.imageHeaderOnly = true
self.incremental?.handler = { img, _, _ in
self.imageView.image = img
}
self.incremental?.start()
*/
public class CGIncrementalImage: NSObject, URLSe... | {
"pile_set_name": "Github"
} |
@echo off
cd ..
npm start
| {
"pile_set_name": "Github"
} |
/**\file z80mem.c
* \brief Z80 memory handling
*
* \author Andreas Boose <viceteam@t-online.de>
*
* This file is part of VICE, the Versatile Commodore Emulator.
* See README for copyright notice.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge... | {
"pile_set_name": "Github"
} |
# schema.py
# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
"""Compatibility namespace for sqlalchemy.sql.schema and related.
"""
from .sql.base imp... | {
"pile_set_name": "Github"
} |
; $Id$
name = AjaXplorer Bridge
description = A bridge for using drupal users inside AjaXplorer
core = 6.x | {
"pile_set_name": "Github"
} |
tests/complex/sumo/ToCDevice/No_accel_during_ToC_preparation_default/runner.py
| {
"pile_set_name": "Github"
} |
/**
* Button Bar
* --------------------------------------------------
*/
.button-bar {
@include display-flex();
@include flex(1);
width: 100%;
&.button-bar-inline {
display: block;
width: auto;
@include clearfix();
> .button {
width: auto;
display: inline-block;
float: ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2004 John Ellis
* Copyright (C) 2008 - 2016 The Geeqie Team
*
* Author: John Ellis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, o... | {
"pile_set_name": "Github"
} |
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "hud.h"
#include "hudelement.h"
#include "hud_macros.h"
#include "hud_numericdisplay.h"
#include "iclientmode.h"
... | {
"pile_set_name": "Github"
} |
// leaf_node.hpp
// Copyright (c) 2007-2009 Ben Hanson (http://www.benhanson.net/)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file licence_1_0.txt or copy at http://www.lslboost.org/LICENSE_1_0.txt)
#ifndef BOOST_LEXER_LEAF_NODE_HPP
#define BOOST_LEXER_LEAF_NODE_HPP
#include ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<report xmlns="http://www.eclipse.org/birt/2005/design" version="3.2.23" id="1">
<cubes>
<tabular-cube name="Cube_Test_1" id="4">
<property name="dimensions">
<tabular-dimension name="Customer" id="6">
<property name="defaul... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // A... | {
"pile_set_name": "Github"
} |
.class Lcom/motorola/server/batterytemp/BattTempCountDownDialog$2;
.super Landroid/os/CountDownTimer;
.source "BattTempCountDownDialog.java"
# annotations
.annotation system Ldalvik/annotation/EnclosingMethod;
value = Lcom/motorola/server/batterytemp/BattTempCountDownDialog;->onCreate(Landroid/os/Bundle;)V
.end a... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 Open mHealth
*
* 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"
} |
/*
***************************************************************************************
* Copyright (C) 2006 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com ... | {
"pile_set_name": "Github"
} |
min-conflicts,37,0.03
| {
"pile_set_name": "Github"
} |
[gcr.io/google-containers/ubuntu-slim-arm64](https://hub.docker.com/r/anjia0532/google-containers.ubuntu-slim-arm64/tags/)
-----
[gcr.io/google-containers/ubuntu-slim-arm64:0.10](https://hub.docker.com/r/anjia0532/google-containers.ubuntu-slim-arm64/tags/)
[gcr.io/google-containers/ubuntu-slim-arm64:0.11](https://... | {
"pile_set_name": "Github"
} |
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"refinedstorage:coloring_recipes/green_controller"
]
},
"criteria": {
"refinedstorage:controller": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "refined... | {
"pile_set_name": "Github"
} |
polygon
1
1.452929E+01 4.154701E+01
1.452956E+01 4.154962E+01
1.453061E+01 4.155046E+01
1.453081E+01 4.155067E+01
1.453128E+01 4.155124E+01
1.453214E+01 4.155291E+01
1.453183E+01 4.155679E+01
1.453009E+01 4.155870E+01
1.452925E+01 4.155939E+01
1.452902E+01 4.155988E+01
1.452935E+01 4.156069E+01
1.453061E+01... | {
"pile_set_name": "Github"
} |
/* Copyright (C) 2009 by Pavel Savara
This file is part of of jni4net - bridge between Java and .NET
http://jni4net.sourceforge.net/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either versi... | {
"pile_set_name": "Github"
} |
version: "3"
services:
nodeosd:
image: eosio/eos-dev:latest
command: /opt/eosio/bin/nodeosd.sh --data-dir /opt/eosio/bin/data-dir -e --delete-all-blocks #--genesis-json /opt/eosio/bin/data-dir/genesis.json #--contracts-console #-e — Enable block production, even if the chain is stale
hostname: nodeosd
... | {
"pile_set_name": "Github"
} |
# Format: //devtools/kokoro/config/proto/build.proto
# Build logs will be here
action {
define_artifacts {
regex: "**/*sponge_log.xml"
regex: "**/*sponge_log.txt"
}
}
# Download trampoline resources.
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
# Use the trampoline script to run ... | {
"pile_set_name": "Github"
} |
syntax = "proto3";
package containerd.services.namespaces.v1;
import weak "gogoproto/gogo.proto";
import "google/protobuf/empty.proto";
import "google/protobuf/field_mask.proto";
option go_package = "github.com/containerd/containerd/api/services/namespaces/v1;namespaces";
// Namespaces provides the ability to manip... | {
"pile_set_name": "Github"
} |
package com.bilibili.lingxiao.play.model
import com.google.gson.annotations.SerializedName
data class VideoDetailData(
val allow_bp: Int,
val allow_download: Int,
val allow_feed: Int,
val arctype: String,
val author: String,
val cid: Int,
val coins: Int,
val created: Int,
val creat... | {
"pile_set_name": "Github"
} |
package cyclops.monads.transformers.reactor;
import java.util.Iterator;
import java.util.concurrent.TimeUnit;
import java.util.function.*;
import com.oath.cyclops.types.foldable.Folds;
import com.oath.cyclops.types.foldable.To;
import com.oath.cyclops.types.functor.ReactiveTransformable;
import cyclops.control.Fut... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_custom_api_container"
android:layout_width="match_parent"
android:layout_height=... | {
"pile_set_name": "Github"
} |
/*
* Driver for the Conexant CX23885 PCIe bridge
*
* Copyright (c) 2006 Steven Toth <stoth@linuxtv.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; either version 2 of the Lice... | {
"pile_set_name": "Github"
} |
#ifndef TGCALLS_MEDIA_MANAGER_H
#define TGCALLS_MEDIA_MANAGER_H
#include "rtc_base/thread.h"
#include "rtc_base/copy_on_write_buffer.h"
#include "rtc_base/third_party/sigslot/sigslot.h"
#include "api/transport/field_trial_based_config.h"
#include "pc/rtp_sender.h"
#include "Instance.h"
#include "Message.h"
#include "... | {
"pile_set_name": "Github"
} |
// Copyright 2014 Google Inc. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package internal
// This file has code for accessing metadata.
//
// References:
// https://cloud.google.com/compute/docs/metadata
import (
"fmt"
"io/ioutil"... | {
"pile_set_name": "Github"
} |
var baseRepeat = require('./_baseRepeat'),
isIterateeCall = require('./_isIterateeCall'),
toInteger = require('./toInteger'),
toString = require('./toString');
/**
* Repeats the given string `n` times.
*
* @static
* @memberOf _
* @since 3.0.0
* @category String
* @param {string} [string=''] The stri... | {
"pile_set_name": "Github"
} |
# Plataformas y esfuerzos tecnológicos en respuesta al sismo
Debido a la creciente cantidad de esfuerzos al rededor del sismo, se considera importante crear esta lista para:
* No duplicar esfuerzos, sumarlos
* Contribuír con habilidades técnicas y no técnicas
* Difundir en redes sociales y personas que puedan necesit... | {
"pile_set_name": "Github"
} |
<html>
<head>
#parse("head.vm")
</head>
<body>
<div id="admin"><a href="#url_root/#/#core_name">Solr Admin</a></div>
<div id="header">
#parse("header.vm")
</div>
<div id="tabs">
#parse("tabs.vm")
</div>
<div id="content">
$content
</div>
<div id="foot... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
antlr.java
</TITLE>
<META NAME="keywords" CONTENT="antlr.java package">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/jav... | {
"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 agre... | {
"pile_set_name": "Github"
} |
<%@ page language="java" session="false" %>
<%@ page pageEncoding="UTF-8" %>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="form" uri="http://www.springframewo... | {
"pile_set_name": "Github"
} |
require 'test_helper'
class RemoteGestpayIntegrationTest < Test::Unit::TestCase
include ActiveMerchant::Billing::Integrations
def setup
# Your Gestpay ShopLogin
@shop_login = 'SHOPLOGIN'
@helper = Gestpay::Helper.new('order-500', @shop_login, :amount => '5.00', :currency => 'EUR')
end
def te... | {
"pile_set_name": "Github"
} |
/* QLogic qed NIC Driver
* Copyright (c) 2015-2017 QLogic Corporation
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2019 IBM 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 by applicable law or agreed to ... | {
"pile_set_name": "Github"
} |
/* { dg-additional-options "-std=gnu99" {target c } } */
extern
#ifdef __cplusplus
"C"
#endif
void abort (void);
#define M(x, y, z) O(x, y, z)
#define O(x, y, z) x ## _ ## y ## _ ## z
#define F parallel for
#define G pf
#include "for-1.h"
#undef F
#undef G
#define F for
#define G f
#include "for-1.h"
#undef F
#unde... | {
"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"
} |
package org.mozilla.testpilot.notes;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.webkit.CookieManager;
import android.webkit.WebStorage;
import an... | {
"pile_set_name": "Github"
} |
1
00:00:34,470 --> 00:00:36,489
<清野とおるさんの漫画➡
2
00:00:36,489 --> 00:00:38,457
『その「おこだわり」、
俺にもくれよ!!』。
3
00:00:38,457 --> 00:00:40,443
他人には
なかなか理解できないけど➡
4
00:00:40,443 --> 00:00:42,478
本人は幸せになれる
おこだわりを持つ人との➡
5
00:00:42,478 --> 00:00:44,480
交流を描いた作品です。
6
00:00:44,480 --> 00:00:46,532
この漫画を題材にした
バラエティー番組に➡
7
00:00:... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2013 The Guava Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | {
"pile_set_name": "Github"
} |
/*
[auto_generated]
boost/numeric/odeint/external/compute/compute_operations.hpp
[begin_description]
Operations of Boost.Compute zipped iterators. Is the counterpart of the compute_algebra.
[end_description]
Copyright 2009-2011 Karsten Ahnert
Copyright 2009-2011 Mario Mulansky
Distributed under the Boost Sof... | {
"pile_set_name": "Github"
} |
POST / HTTP/1.1
Host0.0.1:51273
Ust: */*
Transfer-Encoding: chunkedst: */*
Transfer-Encoding: chunked
Content-Type: applicatTP/1.1
Host0.0.1:51273
Ust: */*
Transfer-Encoding: chunked
Content-Type: application/x
Content-Type: applicatTP/1.1
Host0.0.1:51273
Ust: */*
Transfer-Encoding: chunked
Content-Type: ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.