text stringlengths 2 99k | meta dict |
|---|---|
namespace Server.Items
{
public class HydraScale : Item
{
[Constructable]
public HydraScale()
: base(0x26B4)
{
Hue = 0xC2; // TODO check
}
public HydraScale(Serial serial)
: base(serial)
{
}
public override int... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
#
# Test that qemu-img info --backing-chain detects infinite loops
#
# Copyright (C) 2012 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of ... | {
"pile_set_name": "Github"
} |
// Copyright Aleksey Gurtovoy 2000-2004
//
// 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)
//
// Preprocessed version of "boost/mpl/apply_wrap.hpp" header
// -- DO NOT modify by hand!
namespace boost { names... | {
"pile_set_name": "Github"
} |
/*
* 12/21/2008
*
* AutoCompleteDemoApp.java - A demo program for the auto-completion library.
*
* This library is distributed under a modified BSD license. See the included
* RSyntaxTextArea.License.txt file for details.
*/
package org.fife.ui.autocomplete.demo;
import java.awt.*;
import javax.swing.*;
impor... | {
"pile_set_name": "Github"
} |
<?php
use Movim\Migration;
use Illuminate\Database\Schema\Blueprint;
class UpdateUniqueConstraintSessions extends Migration
{
public function up()
{
$this->schema->table('sessions', function (Blueprint $table) {
$table->dropUnique('host');
$table->unique('user_id');
});... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2013-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | {
"pile_set_name": "Github"
} |
//
// mime_types.cpp
// ~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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)
//
#include "mime_types.hpp"
namespace ht... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2020, the SerenityOS developers
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* l... | {
"pile_set_name": "Github"
} |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/proj.R
\name{proj_install}
\alias{proj_install}
\title{Install project dependencies into the project library}
\usage{
proj_install(
pkg = NULL,
root = ".",
upgrade = FALSE,
optional = FALSE,
ask = interactive()
)
}
\arguments{
\item... | {
"pile_set_name": "Github"
} |
package stenographer
import (
"sync"
"github.com/onsi/ginkgo/types"
)
func NewFakeStenographerCall(method string, args ...interface{}) FakeStenographerCall {
return FakeStenographerCall{
Method: method,
Args: args,
}
}
type FakeStenographer struct {
calls []FakeStenographerCall
lock *sync.Mutex
}
type... | {
"pile_set_name": "Github"
} |
---
layout: page
title: "Q61502: .MODEL Directive Makes All Procedure Names Public"
permalink: /pubs/pc/reference/microsoft/kb/Q61502/
---
## Q61502: .MODEL Directive Makes All Procedure Names Public
Article: Q61502
Version(s): 5.10 | 5.10
Operating System: MS-DOS | OS/2
Flags: ENDUSER | .MODEL PUBLIC
Last Mod... | {
"pile_set_name": "Github"
} |
#
# Cookbook: consul
# License: Apache 2.0
#
# Copyright 2014-2016, Bloomberg Finance L.P.
#
default['firewall']['allow_consul'] = false
| {
"pile_set_name": "Github"
} |
/*
* Copyright 2014 The GDG Frisbee Project
*
* 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"
} |
+++
title = "مبادئ هندسة الفوضى"
date = 2020-01-28T16:25:57+02:00
draft = false
+++
# مبادئ هندسة الفوضى
آخر تحديث: مايو 2018
هندسة الفوضى هي ضبط التجارب
على نظام ما موَزع
من أجل بناء الثقة في قدرة النظام على تحمل ظروف الإخراج المضطربة.
قد أدى التطور في أنظمة البرامج الموزعة على نطاق واسع إلى تغيير لعبة هندسة البرم... | {
"pile_set_name": "Github"
} |
#pragma once
#include <_cheader.h>
/*
* The bulk of these match Linux.
* Descriptions come from newlib.
*/
_Begin_C_Header
#define EPERM 1 /* Not super-user */
#define ENOENT 2 /* No such file or directory */
#define ESRCH 3 /* No such process */
#define EINTR 4 ... | {
"pile_set_name": "Github"
} |
#!/bin/bash
if [ -z "${PG_PASS}" ]
then
echo "$0: you need to specify PG_PASS=... $0 $*"
exit 1
fi
# DTFROM="2018-10-15" REPO="cncf/devstats" GHA2DB_QOUT=1 GHA2DB_DEBUG=1 GHA2DB_GHAPISKIPEVENTS=1 PG_DB=cncf ghapi2db
# REPO="cncf/devstats" GHA2DB_DEBUG=1 GHA2DB_GHAPISKIPEVENTS=1 GHA2DB_QOUT=1 PG_DB=cncf ghapi2db
# D... | {
"pile_set_name": "Github"
} |
use crate::exec;
#[test]
fn while_loop_late_break() {
// Ordering with statement before the break.
let scenario = r#"
let a = 1;
while (a < 5) {
a++;
if (a == 3) {
break;
}
}
a;
"#;
assert_eq!(&exec(scenario), "3");
}
... | {
"pile_set_name": "Github"
} |
using System.Collections;
using UnityEngine;
using Mirror;
using Pipes;
public class PipeDispenser : NetworkBehaviour
{
const float DISPENSING_TIME = 2; // As per sprite sheet JSON file.
ObjectBehaviour objectBehaviour;
WrenchSecurable securable;
HasNetworkTab netTab;
SpriteHandler spriteHandler;
Coroutine an... | {
"pile_set_name": "Github"
} |
let interactive = ref false
let trace = ref false
let unchecked = ref false
let print_sig = ref false
let dry = ref false
let width = ref 80
let harness = ref true
| {
"pile_set_name": "Github"
} |
{
"type": "bundle",
"id": "bundle--e6f7450f-1901-4238-baa1-949546752072",
"spec_version": "2.0",
"objects": [
{
"created_by_ref": "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5",
"object_marking_refs": [
"marking-definition--fa42a846-8d90-4e51-bc29-71d5b4... | {
"pile_set_name": "Github"
} |
<?php
// Start of recode v.7.1.1
/**
* Recode a string according to a recode request
* @link http://www.php.net/manual/en/function.recode-string.php
* @param string $request The desired recode request type
* @param string $string The string to be recoded
* @return string the recoded string or false, if unable to... | {
"pile_set_name": "Github"
} |
/*
* LICENCE : CloudUnit is available under the Affero Gnu Public License GPL V3 : https://www.gnu.org/licenses/agpl-3.0.html
* but CloudUnit is licensed too under a standard commercial license.
* Please contact our sales team if you would like to discuss the specifics of our Enterprise license.
* If you are not su... | {
"pile_set_name": "Github"
} |
// Apple
/obj/item/seeds/apple
name = "pack of apple seeds"
desc = "These seeds grow into apple trees."
icon_state = "seed-apple"
species = "apple"
plantname = "Apple Tree"
product = /obj/item/reagent_containers/food/snacks/grown/apple
lifespan = 55
endurance = 35
yield = 5
growing_icon = 'icons/obj/hydroponi... | {
"pile_set_name": "Github"
} |
FactoryBot.define do
factory :zone_member, class: Spree::ZoneMember do
zone { |member| member.association(:zone) }
zoneable { |member| member.association(:zoneable) }
end
end
| {
"pile_set_name": "Github"
} |
// RB tree implementation -*- C++ -*-
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published b... | {
"pile_set_name": "Github"
} |
//Code, Title, Codepage, FullFonts, FlagSpriteID, Fallback Locale, TranslatorCredit
bel, Belarusian, 1251, 0, 71, , Mik0
ptb, Brazilian Portuguese, 1252, 0, 48, , |Vinycius Maia & Edson Hoffmann Junior
bul, ... | {
"pile_set_name": "Github"
} |
//
// Created by ssrlive on 2020-09-09.
//
#include <stdlib.h>
#include <memory.h>
#include <unistd.h>
#if defined(_WIN32)
#include <Windows.h>
#elif TARGET_OS_IPHONE
#pragma message("exe_file_path will return NULL")
#elif defined(__APPLE__)
#include <stdint.h>
#include <mach-o/dyld.h>
#elif defined(__linux__)
#defin... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or any later version.
*
* This progr... | {
"pile_set_name": "Github"
} |
//=====-- LanaiSubtarget.h - Define Subtarget for the Lanai -----*- C++ -*--==//
//
// 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"
} |
/*
MIT License
Copyright(c) 2018-2020 megai2
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, dist... | {
"pile_set_name": "Github"
} |
ace.define("ace/snippets/jsx",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText =undefined;
exports.scope = "jsx";
});
| {
"pile_set_name": "Github"
} |
static unsigned char Q35AcpiDsdtAmlCode[] = {
0x44,
0x53,
0x44,
0x54,
0xb8,
0x1d,
0x0,
0x0,
0x1,
0x35,
0x42,
0x58,
0x50,
0x43,
0x0,
0x0,
0x42,
0x58,
0x44,
0x53,
0x44,
0x54,
0x0,
0x0,
0x2,
0x0,
0x0,
0x0,
0x49,
0x4e,
0x54,
0x4c,
0x7,
0x11,
0x14,
0x20,
0x10,
0x49,
0x4,
0x5c,
0x0,
0x5b,
0x80,
0x44,
0x42,
0x47,
0x5f,
0x1,
0... | {
"pile_set_name": "Github"
} |
package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.dataflow.server.EnableDataFlowServer;
@EnableDataFlowServer
@EnableDisc... | {
"pile_set_name": "Github"
} |
describe('Asynchronous validation', function() {
before(() => {
cy.loadStory(['Validation', 'Asynchronous validation', 'Field async rule'])
})
it('Bypasses async validation for empty optional field with async rule', () => {
cy.getField('fieldOne')
.focus()
.blur({ force: true })
.valid(... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>... | {
"pile_set_name": "Github"
} |
//
// Profile.swift
// TraceCovid19
//
// Created by yosawa on 2020/04/19.
//
import Foundation
struct Profile: DictionaryEncodable, DictionaryDecodable {
private(set) var prefecture: Int?
private(set) var organizationCode: String?
init(prefecture: PrefectureModel?, organizationCode: String?) {
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE pov SYSTEM "/usr/share/cgc-docs/replay.dtd">
<pov>
<cbid>CROMU_00033</cbid>
<replay>
<write echo="ascii"><data>NDIR\x0a/oGX5TRVAh</data></write>
<read echo="ascii"><delim>\n</delim><match><data>[INFO] Added new directory\n</data></match></read>
<write echo="ascii... | {
"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.
/*---
info: >
String.prototype.split(separator, limit):
i) can be transferred to other kinds of objects for use as a method.
separator and limit can be any kinds of object sin... | {
"pile_set_name": "Github"
} |
// K-3D
// Copyright (c) 1995-2008, Timothy M. Shead
//
// Contact: tshead@k-3d.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
// version 2 of the License, or (at your option) ... | {
"pile_set_name": "Github"
} |
package pers.husen.highdsa.web.test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod... | {
"pile_set_name": "Github"
} |
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
n = n + '';
var i = n.indexOf('.');
return (i == -1) ? 0 : n.length - i - 1;
}
function getVF(n, opt_pre... | {
"pile_set_name": "Github"
} |
//===----------------------------------------------------------------------===//
//
// 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"
} |
// flutter/examples/flutter_gallery/lib/demo/cupertino/cupertino_navigation_demo.dart
Widget build(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: const CupertinoNavigationBar(
middle: const Text('Support Chat'),
trailing: const ExitButton(),
),
child: ListVi... | {
"pile_set_name": "Github"
} |
multiplier 140411
Multiplies two input waveforms, from channels zero and one. | {
"pile_set_name": "Github"
} |
# These are supported funding model platforms
github: borkdude # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: borkdude # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: borkdude
tidelift: # Replace with a single Tid... | {
"pile_set_name": "Github"
} |
#%RAML 1.0 Overlay
extends: master.raml
title: overlay
description: some overlaid description
/master:
displayName: overlaid display name
/child:
displayName: child overlaid display name over default
| {
"pile_set_name": "Github"
} |
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package astutil
// This file defines utilities for working with source positions.
import (
"fmt"
"go/ast"
"go/token"
"sort"
)
// PathEnclosingInterval re... | {
"pile_set_name": "Github"
} |
#!/bin/bash
#
# Copyright (C) 2013-2018 Draios Inc dba Sysdig.
#
# This file is part of sysdig .
#
# 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... | {
"pile_set_name": "Github"
} |
using System.Text.Json.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Response
{
/// <summary>
/// KoubeiTradeItemorderRefundResponse.
/// </summary>
public class KoubeiTradeItemorderRefundResponse : AlipayResponse
{
/// <summary>
/// 口碑订单号
/// </summary>
... | {
"pile_set_name": "Github"
} |
<tr>
<td>{$row['ip']}</td>
<td>{$row['port']}</td>
<if !$is_nginx><td><if $row['listen_statement']=='1'>{$lng['panel']['yes']}<else>{$lng['panel']['no']}</if></td></if>
<if $is_apache && !$is_apache24><td><if $row['namevirtualhost_statement']=='1'>{$lng['panel']['yes']}<else>{$lng['panel']['no']}</if></td></if>
<t... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0.30319" />
<supportedRuntime version="v3.5" />
<supportedRuntime version="v3.0" />
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>
| {
"pile_set_name": "Github"
} |
#include "GLideN64_mupenplus.h"
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <osal_files.h>
#include <algorithm>
#include "../Textures.h"
#include "../Config.h"
#include "../GLideN64.h"
#include "../GBI.h"
#include "../RSP.h"
#include "../Log.h"
Config config;
m64p_handle g... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
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)
This is an auto-generated file... | {
"pile_set_name": "Github"
} |
"""
GUISCRCPY by srevinsaju
Get it on : https://github.com/srevinsaju/guiscrcpy
Licensed under GNU Public License
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 3 of the Licens... | {
"pile_set_name": "Github"
} |
<?php
/*
MIT License
Copyright 2013-2020 Zordius Chen. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, cop... | {
"pile_set_name": "Github"
} |
--TEST--
Bug #29585 (Support week numbers in strtotime())
--FILE--
<?php
date_default_timezone_set("GMT");
echo gmdate("Y-m-d H:i:s", strtotime("2004W30"));
?>
--EXPECT--
2004-07-19 00:00:00
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.0" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<SyntheticProperties>
<SyntheticProperty name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-3... | {
"pile_set_name": "Github"
} |
// Package ais provides core functionality for the AIStore object storage.
/*
* Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
*/
package ais
import (
"bytes"
"io/ioutil"
"net/http"
"net/url"
"time"
"github.com/NVIDIA/aistore/3rdparty/glog"
"github.com/NVIDIA/aistore/cluster"
"github.com/... | {
"pile_set_name": "Github"
} |
github.com/go-logr/logr v0.1.0 h1:M1Tv3VzNlEHg6uyACnRdtrploV2P7wZqH8BoQMtz0cg=
github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas=
| {
"pile_set_name": "Github"
} |
using System.Windows;
namespace GUIConsole.Wpf
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public App()
{
}
}
}
| {
"pile_set_name": "Github"
} |
package com.java2nb.novel.mapper;
import java.sql.JDBCType;
import javax.annotation.Generated;
import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class BookContentDynamicSqlSupport {
@Generated("org.mybatis.generator.api.MyBatisGenerator")
public static final BookC... | {
"pile_set_name": "Github"
} |
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# ebuild generated by hackport 0.6.4.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Binding to GIO"
HOMEPAGE="http://projects.haskell.org/gtk2hs/"
SRC_URI="htt... | {
"pile_set_name": "Github"
} |
sbt-scalariform
===============
Welcome to sbt-scalariform, an <a href="https://github.com/sbt/sbt">sbt</a> plugin adding support for source code formatting
using <a href="https://github.com/scala-ide/scalariform">Scalariform</a>.
Installing
--------------------------
```
addSbtPlugin("org.scalariform" % "sbt-scalar... | {
"pile_set_name": "Github"
} |
The MIT License (MIT)
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.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 without limitation the... | {
"pile_set_name": "Github"
} |
module.exports = require('./zipObject');
| {
"pile_set_name": "Github"
} |
// #Conformance #FSI
#nowarn "222"
#load "flagcheck.fs"
| {
"pile_set_name": "Github"
} |
<?php
namespace Acclimate\Container\Exception;
use Psr\Container\NotFoundExceptionInterface;
/**
* No entry was found in the container
*
* @method static NotFoundException fromPrevious($id, \Exception $prev = null)
*/
class NotFoundException extends ContainerException implements NotFoundExceptionInterface
{
... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
"""A shuffle vector fuzz tester.
This is a python program to fuzz test the LLVM shufflevector instruction. It
generates a function with a random sequnece of shufflevectors, maintaining the
element mapping accumulated across the function. It then generates a main
function which calls it with a di... | {
"pile_set_name": "Github"
} |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`amplify-s3-image spec: Render logic -> should render no pre tag without 'textKey' or 'path' 1`] = `
<amplify-s3-text>
<mock:shadow-root>
<div>
<div class="text-container">
<pre>
Fallback Content
</pre>
</div>
</div>
<... | {
"pile_set_name": "Github"
} |
/*
* GENANN - Minimal C Artificial Neural Network
*
* Copyright (c) 2015-2018 Lewis Van Winkle
*
* http://CodePlea.com
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Per... | {
"pile_set_name": "Github"
} |
<?php
class NotVoidTestCase extends PHPUnit_Framework_TestCase
{
}
| {
"pile_set_name": "Github"
} |
# python-engineio change log
**Release 3.13.2** - 2020-08-18
- Improved signal handler for the async client [#523](https://github.com/miguelgrinberg/python-socketio/issues/523) ([commit](https://github.com/miguelgrinberg/python-engineio/commit/eabfdaa9d1644d3346ec3ec7fae040c85029b75e))
- Add SameSite attribute to Soc... | {
"pile_set_name": "Github"
} |
out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java/android/app/IWallpaperManager.java: \
frameworks/base/core/java/android/app/IWallpaperManager.aidl \
frameworks/base/core/java/android/os/Bundle.aidl \
frameworks/base/core/java/android/os/ParcelFileDescriptor.aidl \
frameworks/base/core... | {
"pile_set_name": "Github"
} |
[
{
"description": "minItems validation",
"schema": {"minItems": 1},
"tests": [
{
"description": "longer is valid",
"data": [1, 2],
"valid": true
},
{
"description": "exact length is valid",
... | {
"pile_set_name": "Github"
} |
using System;
using System.Runtime.InteropServices;
namespace OnlyChain.Database {
#pragma warning disable CA1032 // Implement standard exception constructors
internal class LevelDBException : Exception {
public LevelDBException(IntPtr error) : base(Marshal.PtrToStringAnsi(error)) { }
}
#pragma warnin... | {
"pile_set_name": "Github"
} |
if [ ! -f .version ]
then
echo 1
else
expr 0`cat .version` + 1
fi
| {
"pile_set_name": "Github"
} |
<?php
/**
* @version
* @author Tadashi Jokagi <elf2000@users.sourceforge.net>
* EN-Revision: 690
*/
@define('PLUGIN_EVENT_WRAPPER_NAME', 'イベント出力ラッパー');
@define('PLUGIN_EVENT_WRAPPER_DESC', 'Displays gathered data by a certain event plugin');
@define('PLUGIN_EVENT_WRAPPER_PLUGIN', 'ソースイベントプラグイン');
@define('PLUG... | {
"pile_set_name": "Github"
} |
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export "FLUTTER_ROOT=C:\flutter"
export "FLUTTER_APPLICATION_PATH=C:\Users\PC\Desktop\Other Projects\koukicons_flutter\example"
export "FLUTTER_TARGET=lib\main.dart"
export "FLUTTER_BUILD_DIR=build"
export "SYMROOT=${SOURCE_ROOT}/../build\... | {
"pile_set_name": "Github"
} |
function generateConfig(context, amplifyConfig, newAWSConfig) {
const metadata = context.amplify.getProjectMeta();
amplifyConfig = amplifyConfig || {
UserAgent: 'aws-amplify-cli/2.0',
Version: '1.0',
};
constructAnalytics(metadata, amplifyConfig);
constructApi(metadata, amplifyConfig);
// Auth plugi... | {
"pile_set_name": "Github"
} |
{
"symbol": "unicSAI",
"invalid_erc20_symbol": true,
"name": "Uniswap: Compound Dai",
"type": "ERC20",
"address": "0x45A2FDfED7F7a2c791fb1bdF6075b83faD821ddE",
"ens_address": "",
"decimals": 18,
"invalid_erc20_decimals": true,
"website": "https://www.uniswap.io",
"logo": {
... | {
"pile_set_name": "Github"
} |
The roadwarriors <b>carol</b> and <b>dave</b> restart a connection each
to gateway <b>moon</b>. The authentication is based on <b>X.509 certificates</b>.
Both <b>carol</b> and <b>dave</b> request a <b>virtual IP</b> via the IKEv2 configuration
payload. The gateway moon reassigns the static and reserved virtual IP addr... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or any later version.
*
* This progr... | {
"pile_set_name": "Github"
} |
approvers:
- davidkarlsen
- prymitive
reviewers:
- davidkarlsen
- prymitive
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.... | {
"pile_set_name": "Github"
} |
[%%cenum
type t =
| A
]
| {
"pile_set_name": "Github"
} |
namespace example;
// This is a student
//$?[End_of_model]$?
class Student
{
} | {
"pile_set_name": "Github"
} |
Set-StrictMode -Version Latest
class RedisCache: AzSVTBase
{
hidden [PSObject] $ResourceObject;
RedisCache([string] $subscriptionId, [SVTResource] $svtResource):
Base($subscriptionId, $svtResource)
{
$this.GetResourceObject();
}
hidden [PSObject] GetResourceObject()
... | {
"pile_set_name": "Github"
} |
/etc/issue
/etc/motd
/etc/passwd
/etc/passwd
/etc/shadow
/etc/group
/etc/security/group
/etc/security/passwd
/etc/security/user
/etc/security/environ
/etc/security/limits
/usr/lib/security/mkuser.default
/apache/logs/error.log
/apache/logs/access.log
/etc/httpd/logs/access.log
/etc/httpd/logs/error_log
... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Oct 15 2018 10:31:50).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <CloudDocs/NSObject-Protocol.h>
@class CKShareMetadata, NSURL;
@protocol CKXPCShareDaemon <NSObject>
- (void)handleCloudKitSh... | {
"pile_set_name": "Github"
} |
/*!
* wwwhisper - web access control.
*/
/**
* Injects wwwhisper sign out iframe into a body of a document.
*/
(function () {
'use strict';
function createIframe() {
var iframe = document.createElement('iframe');
iframe.id = 'wwwhisper-iframe';
iframe.src = '/wwwhisper/auth/overlay.html';
ifra... | {
"pile_set_name": "Github"
} |
# Microsoft Developer Studio Project File - Name="logdump" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
CFG=logdump - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NM... | {
"pile_set_name": "Github"
} |
// Debug-mode error formatting implementation -*- C++ -*-
// Copyright (C) 2003-2013 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library 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"
} |
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(require('es5-ext/global'), 'WeakMap',
{ value: require('./polyfill'), configurable: true, enumerable: false,
writable: true });
}
| {
"pile_set_name": "Github"
} |
{
"admin/services/smartdns": {
"title": "SmartDNS",
"action": {
"type": "view",
"path": "smartdns/smartdns"
},
"depends": {
"uci": { "smartdns": true }
}
}
}
| {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wc++11-narrowing -Wmicrosoft -verify -fms-extensions -std=c++11
// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -Wc++11-narrowing -Wmicrosoft -verify -fms-extensions -std=c++11 -fms-compatibility -DMS_COMPAT
struct A {
unsigned int a;
};
int b ... | {
"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.
package oauth2
import (
"errors"
"io"
"net/http"
"sync"
)
// Transport is an http.RoundTripper that makes OAuth 2.0 HTTP requests,
// wrapping a base Roun... | {
"pile_set_name": "Github"
} |
<?php
namespace edsonmedina\php_testability\NodeVisitors;
use edsonmedina\php_testability\VisitorAbstract;
use edsonmedina\php_testability\NodeWrapper;
use edsonmedina\php_testability\Contexts\CollectionSpecification;
use edsonmedina\php_testability\Issues\ExternalClassConstantFetchIssue;
use PhpParser;
use PhpParser\... | {
"pile_set_name": "Github"
} |
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//===========================================================================//
#ifndef ENGINECALLBACK_H
#define ENGINECALLBACK_H
#ifndef EIFACE_H
#include "eiface.h"
#endif
class IFileSystem; // in... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="all_69... | {
"pile_set_name": "Github"
} |
/*
* 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, software
* distributed u... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.