text stringlengths 2 99.9k | meta dict |
|---|---|
// KiwiSDR
//
// Copyright (c) 2018 John Seamons, ZL/KF6VO
console.log('kiwi_js_load.js RUNNING');
// see: feather.elektrum.org/book/src.html
// all current script elements
js_load_scripts = document.getElementsByTagName('script');
// Search forward for first instance of ourselves, remove script element, and call c... | {
"pile_set_name": "Github"
} |
version https://git-lfs.github.com/spec/v1
oid sha256:4d652a0c463ee6e6ea6408e523648d3ad913bb5a3c40b4974a6054952e081087
size 13009
| {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
* 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 ... | {
"pile_set_name": "Github"
} |
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012-202... | {
"pile_set_name": "Github"
} |
DROP TABLE IF EXISTS A;
DROP TABLE IF EXISTS B;
CREATE TABLE A(k UInt32, t UInt32, a UInt64) ENGINE = MergeTree() ORDER BY (k, t);
INSERT INTO A(k,t,a) VALUES (1,101,1),(1,102,2),(1,103,3),(1,104,4),(1,105,5);
CREATE TABLE B(k UInt32, t UInt32, b UInt64) ENGINE = MergeTree() ORDER BY (k, t);
INSERT INTO B(k,t,b) VALU... | {
"pile_set_name": "Github"
} |
-- _________ __ __
-- / _____// |_____________ _/ |______ ____ __ __ ______
-- \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
-- / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ \
-- /_______ /|__| |__| (____ /__| (____ /\___ /|____//... | {
"pile_set_name": "Github"
} |
/*!
* content-disposition
* Copyright(c) 2014 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* Module exports.
*/
module.exports = contentDisposition
module.exports.parse = parse
/**
* Module dependencies.
*/
var basename = require('path').basename
/**
* RegExp to match non attr-char, *aft... | {
"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"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
namespace VirtoCommerce.Platform.Web.Middleware
{
public class ApiErrorWrappingMiddleware
{
priv... | {
"pile_set_name": "Github"
} |
---
title: Tableau Extensions API Basics
layout: docs
---
The Tableau Extensions API is organized by namespaces. The type of extension you create determines the set of namespaces the extension will have access to. For example, if you create and register a dashboard extension, the extension will have access to the `da... | {
"pile_set_name": "Github"
} |
#import <Nimble/DSL.h>
#import <Nimble/Nimble-Swift.h>
SWIFT_CLASS("_TtC6Nimble7NMBWait")
@interface NMBWait : NSObject
+ (void)untilTimeout:(NSTimeInterval)timeout file:(NSString *)file line:(NSUInteger)line action:(void(^)())action;
+ (void)untilFile:(NSString *)file line:(NSUInteger)line action:(void(^)())action;
... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2008 The Android Open Source 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 app... | {
"pile_set_name": "Github"
} |
# © 2017 James R. Barlow: github.com/jbarlow83
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from pluggy import HookimplMarker as _HookimplMarker
from ocrmypdf im... | {
"pile_set_name": "Github"
} |
/*
* #%L
* OME Bio-Formats package for reading and converting biological file formats.
* %%
* Copyright (C) 2005 - 2017 Open Microscopy Environment:
* - Board of Regents of the University of Wisconsin-Madison
* - Glencoe Software, Inc.
* - University of Dundee
* %%
* This program is free software: you ca... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main_done"
android:layout_... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
<test name="AdminMultip... | {
"pile_set_name": "Github"
} |
/usr/local/bin
Programs will be installed in this directory.
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2016 The Android Open Source 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 app... | {
"pile_set_name": "Github"
} |
CREATE TABLE fruits (
id int,
items jsonb
);
INSERT INTO fruits VALUES (1, '{"apple": 100}');
INSERT INTO fruits VALUES (2, '{"banana": 30}');
INSERT INTO fruits VALUES (3, '{"peach": 150}');
CREATE INDEX pgroonga_index ON fruits
USING pgroonga (items pgroonga_jsonb_ops);
SET enable_seqscan = off;
SET enabl... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env ts-node
/**
* Wechaty Chatbot SDK - https://github.com/wechaty/wechaty
*
* @copyright 2016 Huan LI (李卓桓) <https://github.com/huan>, and
* Wechaty Contributors <https://github.com/wechaty>.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not ... | {
"pile_set_name": "Github"
} |
/* -------------------------------------------------------------------------- */
/* Copyright (c) 2005-2012 by Timothy A. Davis, http://www.suitesparse.com. */
/* All Rights Reserved. See ../Doc/License for License. */
/* --------------------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
// новый пример работы с аналоговой клавиатурой
/*
Сигналы кнопок
1023
927
856
783
671
632
590
560
504
480
455
440
399
319
255
230
*/
#include "AnalogKey.h"
// указываем пин и количество кнопок
AnalogKey<A0, 3> keys;
#include <GyverButton.h>
GButton btn1, btn2, btn3;
void setup() {
... | {
"pile_set_name": "Github"
} |
<VSTemplate Version="3.0.0" Type="Project" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>D/VC++ based Windows Application</Name>
<Description>A Visual C++ project for creating a Win32 application, console application, DLL or static library. This is based on Visual C++... | {
"pile_set_name": "Github"
} |
{
"Name": "simpleScriptTaskStateMachine",
"Comment": "带ScriptTask的测试状态机定义",
"StartState": "FirstState",
"Version": "0.0.1",
"States": {
"FirstState": {
"Type": "ServiceTask",
"ServiceName": "demoService",
"ServiceMethod": "foo",
"Next": "Script... | {
"pile_set_name": "Github"
} |
apiVersion: apps/v1
kind: Deployment
metadata:
name: ingress-kong
namespace: kong
spec:
template:
spec:
imagePullSecrets:
- name: kong-enterprise-k8s-docker
containers:
- name: proxy
env:
- name: KONG_LICENSE_DATA
valueFrom:
secretKeyRef:
... | {
"pile_set_name": "Github"
} |
## @param ad_identifiers - list of strings - required
## A list of container identifiers that are used by Autodiscovery to identify
## which container the check should be run against. For more information, see:
## https://docs.datadoghq.com/agent/guide/ad_identifiers/
#
ad_identifiers:
- httpd
## All options defined... | {
"pile_set_name": "Github"
} |
Cookie: foo
| {
"pile_set_name": "Github"
} |
#define CATCH_CONFIG_MAIN
#include "catch2/catch.hpp"
#include "Arduino.h"
#include "catch_utils.hpp"
#include "boost/asynctcp.hpp"
WiFiClass WiFi;
ESPClass ESP;
#include "painlessMeshConnection.h"
#include "painlessmesh/mesh.hpp"
using PMesh = painlessmesh::Mesh<MeshConnection>;
using namespace painlessmesh;
... | {
"pile_set_name": "Github"
} |
Photo by Markus Spiske on Unsplash
https://unsplash.com/photos/LVWCSSwPlSU?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText
| {
"pile_set_name": "Github"
} |
Working with different response types
=====================================
Web and mobile applications are more than just rendered HTML nowadays.
Modern architecture moves the UI to the client, where all user interactions are handled by the client-side, utilizing server APIs to drive the frontend.
The JSON and XML fo... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2008 - 2015 The Loon Game Engine 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 appl... | {
"pile_set_name": "Github"
} |
//===-- Support/TargetRegistry.h - Target Registration ----------*- 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"
} |
************************************************************************
file with basedata : mm42_.bas
initial value random generator: 14384
************************************************************************
projects : 1
jobs (incl. supersource/sink ): 12
horizon ... | {
"pile_set_name": "Github"
} |
import 'package:bujuan/constant/Screens.dart';
import 'package:bujuan/entity/song_bean_entity.dart';
class Constants {
static bool dark = false;
static List<int> loveSongIds = [];
static final double bottomHeight = Screens.setHeight(60);
// static String playSongHistory = "PLAY_SONG_HISTORY";
// static String ... | {
"pile_set_name": "Github"
} |
export default {
el: {
colorpicker: {
confirm: 'جەزىملەش',
clear: 'قۇرۇقداش'
},
datepicker: {
now: 'ھازىرقى ۋاقىت',
today: 'بۈگۈن',
cancel: 'بىكار قىلىش',
clear: 'قۇرۇقداش',
confirm: 'جەزىملەش',
selectDate: 'چىسلا تاللاڭ',
selectTime: 'ۋاقىت تاللاڭ',
... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RCTView.h"
#import "RCTAutoInsetsProtocol.h"
#import "RCTBorderDrawing.h"
#import "RCTConvert.h"
#import "RCTI18nUtil.h"
... | {
"pile_set_name": "Github"
} |
import {
AppVersionDescriptor,
log,
PackagePath,
YarnLockParser,
} from 'ern-core';
import { getActiveCauldron } from 'ern-cauldron-api';
import {
askUserToChooseANapDescriptorFromCauldron,
epilog,
logErrorAndExitIfNotSatisfied,
tryCatchWrap,
} from '../../lib';
import { Argv } from 'yargs';
import tree... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved.
* Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; eith... | {
"pile_set_name": "Github"
} |
import { ArrayHelpers, Field } from "formik";
import * as React from "react";
import { useDrag } from "react-dnd";
import { useFocusIfEmpty } from "./useFocus";
interface KeywordFieldProps {
arrayHelpers: ArrayHelpers;
keywordType: string;
index: number;
}
export function KeywordField(props: KeywordFieldProps) ... | {
"pile_set_name": "Github"
} |
<Type Name="IToolShellImplementor" FullName="Gtk.IToolShellImplementor">
<TypeSignature Language="C#" Value="public interface IToolShellImplementor : GLib.IWrapper" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IToolShellImplementor implements class GLib.IWrapper" />
<Assemb... | {
"pile_set_name": "Github"
} |
namespace MvcForum.Web.ViewModels.Admin
{
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using Core.Models.Entities;
using Core.Models.General;
public class ChoosePermissionsViewModel
{... | {
"pile_set_name": "Github"
} |
-- Problem 4: ``50 shades of continuity''
{-
C(f) = ∀ c : X. Cat(f,c)
Cat(f,c) = ∀ ε > 0. ∃ δ > 0. Q(f,c,ε,δ)
Q(f,c,ε,δ) = ∀ x : X. abs(x - c) < δ ⇒ abs(f x - f c) < ε
C'(f) = ∃ getδ : X -> RPos -> RPos. ∀ c : X. ∀ ε > 0. Q(f,c,ε,getδ c ε)
4a: Define UC(f):
UC(f) = ∀ ε > 0. ∃ δ > 0. ∀ y : X.... | {
"pile_set_name": "Github"
} |
/*!
* jQuery UI CSS Framework 1.11.4
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
*
* To view and modify this theme, visit http://jqueryui.com/themeroller/
*/
/* Compo... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.roncoo.education.course.service.dao.impl.mapper.CourseIntroduceAuditMapper" >
<resultMap id="BaseResultMap" type="com.roncoo.education.course.serv... | {
"pile_set_name": "Github"
} |
open EditorCoreTypes;
open Oni_Model;
open Oni_IntegrationTestLib;
module Editor = Feature_Editor.Editor;
module LineNumber = EditorCoreTypes.LineNumber;
runTestWithInput(~name="RegressionFontFallback", (input, dispatch, wait, _) => {
wait(~name="Wait for split to be created 1", (state: State.t) => {
let splitCo... | {
"pile_set_name": "Github"
} |
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Xamarin.Forms.Internals;
using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
namespace Xamarin.Forms.Controls.GalleryPages.CollectionViewGalleries.CarouselViewGalleries
{
[Preserve(AllMembers =... | {
"pile_set_name": "Github"
} |
source ENV.fetch('GEM_SOURCE','https://rubygems.org')
gem "activerecord", "~> 3.2.1"
# Specify your gem's dependencies in fuzzily.gemspec
gemspec
| {
"pile_set_name": "Github"
} |
/*
Copyright 2015 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, ... | {
"pile_set_name": "Github"
} |
16.6: Typeahead Template-driven forms example
===================================
**Primary Actor**: User
**Scope**: Ngx-bootstrap DEMO / BS version 3&4
**Goal**: Show user how typeahead can be used in template-driven forms
Main success scenario:
----------------------
1. User opens Typeahead demo page
2. User click... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of jwt-auth.
*
* (c) Sean Tymon <tymon148@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tymon\JWTAuth\Claims;
class JwtId extends Claim
{
/**
* {@inheritdoc}
*/
... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
import SocketServer
import socket
import threading
import time
import logging
import os
from .defines import *
from .rtable import RoutingTable
from .htable import HashTable
from .bencode import bdecode, BTFailure
from .node import Node
from .utils import decode_nodes, encode_nodes, random_nod... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2010-2017 Zipline Games, Inc. All Rights Reserved.
// http://getmoai.com
#include "pch.h"
#include <zl-util/ZLBase64Reader.h>
//================================================================//
// ZLBase64Reader
//================================================================//
//----------------... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
a... | {
"pile_set_name": "Github"
} |
/* raFromTab - Convert tab-delimited file to ra file.. */
/* Copyright (C) 2011 The Regents of the University of California
* See README in this or parent directory for licensing information. */
#include "common.h"
#include "linefile.h"
#include "hash.h"
#include "options.h"
#include "asParse.h"
#include "obscure.h"... | {
"pile_set_name": "Github"
} |
ace.define("ace/mode/properties_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e=/\\u[0-9a-fA-F]{4}|\\/;this.$rules={start:[{token:"comment",regex:/[!#].*$/... | {
"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"
} |
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Page number formatting
## @page_number The current page number
#LOCALIZATION NOTE (pageofpages): Do not translate %ld ... | {
"pile_set_name": "Github"
} |
// This example creates a simple polygon representing the Bermuda Triangle. Note
// that the code specifies only three LatLng coordinates for the polygon. The
// API automatically draws a stroke connecting the last LatLng back to the first
// LatLng.
function initMap() {
const map = new google.maps.Map(document.getEl... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* 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 ag... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>PKIXRevocationChecker.Option (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="java.security.cert.PKIXRevocationChecker.Option class">
<meta n... | {
"pile_set_name": "Github"
} |
ace.define("ace/snippets/elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""});
(function() {
ace.require(["ace/snippets/elixir"], function(m) {
if (typeof module == "object" && typeof exports == "object" && m... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/default_round_touch_dark" android:state_selected="true"/>
<item android:drawable="@drawable/default_round_touch_dark" android:state_pressed="true"/>
<item android:dr... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.iotechn.unimall.data.mapper.SkuMapper">
<update id="decSkuStock">
UPDATE unimall_sku SET stock = stock - #{stock} WHERE id = #{skuId... | {
"pile_set_name": "Github"
} |
path: "tensorflow.keras.initializers.TruncatedNormal"
tf_class {
is_instance: "<class \'tensorflow.python.ops.init_ops.TruncatedNormal\'>"
is_instance: "<class \'tensorflow.python.ops.init_ops.Initializer\'>"
is_instance: "<type \'object\'>"
member_method {
name: "__init__"
argspec: "args=[\'self\', \'m... | {
"pile_set_name": "Github"
} |
#include "qtscriptshell_QStyleOptionComboBox.h"
#include <QtScript/QScriptEngine>
#include <QVariant>
#include <qstyleoption.h>
#include <qwidget.h>
#define QTSCRIPT_IS_GENERATED_FUNCTION(fun) ((fun.data().toUInt32() & 0xFFFF0000) == 0xBABE0000)
QtScriptShell_QStyleOptionComboBox::QtScriptShell_QStyleOptionComboBox... | {
"pile_set_name": "Github"
} |
<?php
/*
+---------------------------------------------------------------------------+
| Revive Adserver |
| http://www.revive-adserver.com |
| ... | {
"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
type WSAData struct {
Version uint16
HighVersion uint16
MaxSockets uint16
MaxUdpDg uint16
VendorInfo *byte
Description [W... | {
"pile_set_name": "Github"
} |
error[E0309]: the parameter type `Self` may not live long enough
--> $DIR/regions-infer-bound-from-trait-self.rs:46:9
|
LL | check_bound(x, self)
| ^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding an explicit lifetime bound `Self: 'a`...
error: aborting due to previous error
For more infor... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
Copyright (c) 2001-2015, Intel Corporation
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... | {
"pile_set_name": "Github"
} |
* Try using modesetting driver before falling back to scfb or vesa
*
* Use our scfb driver as fallback instead of Linux's fbdev
*
--- hw/xfree86/common/xf86AutoConfig.c.orig 2017-03-15 18:05:25 UTC
+++ hw/xfree86/common/xf86AutoConfig.c
@@ -294,7 +294,7 @@ listPossibleVideoDrivers(XF86MatchedDriv
xf86PciMatchDrive... | {
"pile_set_name": "Github"
} |
//+build !windows
package chrootarchive // import "github.com/docker/docker/pkg/chrootarchive"
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/docker/pkg/system"
... | {
"pile_set_name": "Github"
} |
//
// StopWatch.swift
// OpenGpxTracker
//
// Created by merlos on 21/09/14.
//
import Foundation
/// Posible status of the stop watch
enum StopWatchStatus {
/// It is counting time
case started
/// It is not counting time
case stopped
}
///
/// This class handles the logic behind a st... | {
"pile_set_name": "Github"
} |
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
display: none;
}
/* When Infinite Scroll has reached its end we n... | {
"pile_set_name": "Github"
} |
from rsf.proj import *
Fetch('dune3D.H','mideast')
Flow('dat','dune3D.H',
'dd form=native | window n3=1 f3=2 n1=500 f1=100 | scale dscale=100.')
Result('dune-dat','dat',
'grey pclip=95 label1="Time (s)" label2="Offset (m)" ')
Flow('noiz','dat',
'''
bandpass fhi=20. |
mutter half=n v0=1500... | {
"pile_set_name": "Github"
} |
# coding=utf-8
# Copyright 2018 The Google AI Language Team 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 ... | {
"pile_set_name": "Github"
} |
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package pkcs12
import (
"bytes"
"crypto/sha1"
"math/big"
)
var (
one = big.NewInt(1)
)
// sha1Sum returns the SHA-1 hash of in.
func sha1Sum(in []byte) [... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | {
"pile_set_name": "Github"
} |
'use strict';
exports.__esModule = true;
exports.diffCss = diffCss;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _base = require('./base');
var _base2 = _interopRequireDefault(_base);
var cssDiff = new _base2['default']();
exports.css... | {
"pile_set_name": "Github"
} |
Mercenary/Militia Heavy Vehicles C
LRM Carrier (Standard),1
Bulldog Medium Tank (LRM),2
Po Heavy Tank (Standard),3
Magi Infantry Support Vehicle (UCSV),4
Zhukov Heavy Tank (Standard),5
Manticore Heavy Tank (Standard),6
SRM Carrier (WoB),5
Manticore Heavy Tank (LB-X),4
Burke Defense Tank (HPPC),3
LRM Carrier (... | {
"pile_set_name": "Github"
} |
<?php
namespace Spatie\SchemaOrg\Contracts;
interface ContactPageContract
{
public function about($about);
public function abstract($abstract);
public function accessMode($accessMode);
public function accessModeSufficient($accessModeSufficient);
public function accessibilityAPI($accessibilityA... | {
"pile_set_name": "Github"
} |
/*!
* fresh
* Copyright(c) 2012 TJ Holowaychuk
* Copyright(c) 2016-2017 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict'
/**
* RegExp to check for no-cache token in Cache-Control.
* @private
*/
var CACHE_CONTROL_NO_CACHE_REGEXP = /(?:^|,)\s*?no-cache\s*?(?:,|$)/
/**
* Module exports.
* @public
*... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="ExDoc v0.18.3">
<title>Annon.Requests.Log – annon_api v0.16.2</title>
... | {
"pile_set_name": "Github"
} |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the JUCE 5 End... | {
"pile_set_name": "Github"
} |
/*
Copyright (C) 2014 Jerome Revaud
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 License, or
(at your option) any later version.
This program is distributed in the hope th... | {
"pile_set_name": "Github"
} |
.arial {
font-family: Arial Unicode MS;
}
.blue {
color: blue;
} | {
"pile_set_name": "Github"
} |
Node documentation
==================
The node.
.. toctree::
:maxdepth: 2
.. automodule:: openzwave.node
:members: ZWaveNode
| {
"pile_set_name": "Github"
} |
#pragma clang diagnostic ignored "-Wmissing-prototypes"
#pragma clang diagnostic ignored "-Wmissing-braces"
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
template<typename T, size_t Num>
struct spvUnsafeArray
{
T elements[Num ? Num : 1];
thread T& operator [] (size_t pos) thread
... | {
"pile_set_name": "Github"
} |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef NSSErrorsService_h
#define NSSErrorsService_h
#include "nsINSSErrorsService.h"
#include "mozilla/Attribut... | {
"pile_set_name": "Github"
} |
#!/bin/bash
set -ev
# run only on CI, pull requests and when NODE_ENV=test
if [[ ${CI} == "true" && (${NODE_ENV} = "test" && ${TRAVIS_PULL_REQUEST} != "false") ]]; then
chmod ugo+x ./test/scripts/install_chromedriver_travis.sh
sudo ./test/scripts/install_chromedriver_travis.sh
gem install bundler -v '< 2'
fi
| {
"pile_set_name": "Github"
} |
New {{ content_type }} entry needs to be moderated
You can moderate here: {{ moderated_object.get_admin_moderate_url }} | {
"pile_set_name": "Github"
} |
@echo off
TITLE Modifying your HOSTS file
COLOR 03
ECHO.
SET NEWLINE=^& echo.
ECHO Carrying out requested modifications to your HOSTS file
FIND /C /I "jpproject-sso" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%>>%WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO 127.0.0.1 jpp... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, soft... | {
"pile_set_name": "Github"
} |
{
"/api": {
"target": "http://localhost:9999",
"secure": false
},
"/search": {
"target": "http://localhost:9999",
"secure": false
}
}
| {
"pile_set_name": "Github"
} |
/*
Simple DirectMedia Layer
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
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.
Permission is granted to anyone to use this ... | {
"pile_set_name": "Github"
} |
{ -*- buffer-read-only: t -*-
Copyright 2015-2020 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be... | {
"pile_set_name": "Github"
} |
TextFileOutputLegacyDialog.FileIsCommand.Label=\u7ed3\u679c\u8f93\u9001\u81f3\u547d\u4ee4\u884c\u6216\u811a\u672c
| {
"pile_set_name": "Github"
} |
// stdafx.cpp : source file that includes just the standard includes
// StateCollection.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| {
"pile_set_name": "Github"
} |
/*******************************
User Variable Overrides
*******************************/
| {
"pile_set_name": "Github"
} |
Module(body=[FunctionDef(name='func',
args=arguments(args=[],
vararg=None,
kwarg=None,
defaults=[]),
body=[Return(value=Str(s='dog'))],
... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.