text stringlengths 2 99.9k | meta dict |
|---|---|
build:
docker build -t alpine-postgres --rm=true .
debug:
docker run -i -t --entrypoint=sh alpine-postgres
run:
docker run -i -P alpine-postgres
| {
"pile_set_name": "Github"
} |
class CreateCategories < ActiveRecord::Migration
def self.up
create_table :categories do |t|
t.string :name
t.timestamps
end
end
def self.down
drop_table :categories
end
end
| {
"pile_set_name": "Github"
} |
/*
* linux/fs/lockd/svcproc.c
*
* Lockd server procedures. We don't implement the NLM_*_RES
* procedures because we don't use the async procedures.
*
* Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
*/
#include <linux/types.h>
#include <linux/time.h>
#include <linux/lockd/lockd.h>
#include <linux/lockd/sha... | {
"pile_set_name": "Github"
} |
/* Copyright 2018-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wr... | {
"pile_set_name": "Github"
} |
/// Copyright (c) 2012 Ecma International. All rights reserved.
/**
* @path ch15/15.2/15.2.3/15.2.3.6/15.2.3.6-3-250-1.js
* @description Object.defineProperty - 'Attributes' is a String object that uses Object's [[Get]] method to access the 'set' property of prototype object (8.10.5 step 8.a)
*/
function testcas... | {
"pile_set_name": "Github"
} |
package org.knowm.xchange.examples.lgo.trade;
import java.io.IOException;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.dto.trade.UserTrade;
import org.knowm.xchange.dto.trade.UserTrades;
import org.knowm.xchange.examples.lgo.LgoExamplesUtils;
import org.knowm.xchange.lgo.service.LgoTradeHistoryParams;
i... | {
"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"
} |
<?php
class Model_User extends RedBean_SimpleModel
{
public function getMixedUserMedia($media)
{
$query = 'SELECT m.*, um.*, m.id AS media_id FROM usermedia um' .
' LEFT JOIN media m ON m.media = um.media AND m.mal_id = um.mal_id' .
' WHERE um.user_id = ?';
$rows = R::getAll($query, [$this->id]);
$rows = ... | {
"pile_set_name": "Github"
} |
--[[ SimpleScheduler ]]--
ROT=require 'src.rot'
function love.load()
f=ROT.Display(80, 24)
s=ROT.Scheduler.Simple:new()
for i=1,3 do s:add(i, true) end
end
function love.update()
love.timer.sleep(.5)
f:writeCenter('TURN: '..s:next())
end
function love.draw() f:draw() end
--]]
| {
"pile_set_name": "Github"
} |
# Kodi Media Center language file
# Addon Name: Dim
# Addon id: screensaver.xbmc.builtin.dim
# Addon Provider: Team-Kodi
msgid ""
msgstr ""
"Project-Id-Version: XBMC Main\n"
"Report-Msgid-Bugs-To: http://trac.xbmc.org/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Tra... | {
"pile_set_name": "Github"
} |
stderr of test 'any` in directory 'sql/test/subquery` itself:
# 08:20:29 >
# 08:20:29 > "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" "mapi_open=true" "--set" "mapi_port=35668" "--set" "mapi_usock=/var/tmp/mtest-3241/.s.monetdb.35668" "--set" "monet_prompt=" "--dbpath=/home/niels/scratch/monetdb/Linux... | {
"pile_set_name": "Github"
} |
module.exports = {
'after': require('./after'),
'ary': require('./ary'),
'before': require('./before'),
'bind': require('./bind'),
'bindKey': require('./bindKey'),
'curry': require('./curry'),
'curryRight': require('./curryRight'),
'debounce': require('./debounce'),
'defer': require('./defer'),
'del... | {
"pile_set_name": "Github"
} |
namespace ClassLib125
{
public class Class100
{
public static string Property => "ClassLib125";
}
}
| {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required ... | {
"pile_set_name": "Github"
} |
<!-- [START maps_place_details_iframe] -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBIwzALxUPNbatRBj3Xi1Uhp0fFzwWNBkE&callback=initMap&libraries=places&v=weekly"
defer
></script>
<style type="text/css">
/* Always... | {
"pile_set_name": "Github"
} |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/linearopt-variables.R
\docType{methods}
\name{-,LinearVariableSum,numeric-method}
\alias{-,LinearVariableSum,numeric-method}
\title{Minus}
\usage{
\S4method{-}{LinearVariableSum,numeric}(e1, e2)
}
\arguments{
\item{e1}{an object of type 'Line... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016 Nokia Solutions and Networks
* Licensed under the Apache License, Version 2.0,
* see license.txt file for details.
*/
package org.robotframework.ide.eclipse.main.plugin.model.cmd.variables;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import ... | {
"pile_set_name": "Github"
} |
/* mga_warp.c -- Matrox G200/G400 WARP engine management -*- linux-c -*-
* Created: Thu Jan 11 21:29:32 2001 by gareth@valinux.com
*
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this so... | {
"pile_set_name": "Github"
} |
Normally, we should use getsockopt(fd, SOL_SOCKET, SO_ERROR) on a pending
connect() to detect whether the connection correctly established or not.
Unfortunately, getsockopt() does not report the status of a pending connection,
which means that it returns 0 if the connection is still pending. This has to
be expected, b... | {
"pile_set_name": "Github"
} |
// Copyright 2016 The Draco 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 agree... | {
"pile_set_name": "Github"
} |
// Clearfix
//
// For modern browsers
// 1. The space content is one way to avoid an Opera bug when the
// contenteditable attribute is included anywhere else in the document.
// Otherwise it causes space to appear at the top and bottom of elements
// that are clearfixed.
// 2. The use of `table` rather than `... | {
"pile_set_name": "Github"
} |
var fs = require('fs');
var htmlterminal = require('..');
var html = htmlterminal(fs.readFileSync(__dirname + '/fixture/npm-chalk.html', 'utf8'), {});
console.log(html);
| {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using Google.Apis.ShoppingContent.v2_1;
using Google.Apis.ShoppingContent.v2_1.Data;
namespace ShoppingSamples.Content
{
/// <summary>
/// A sample consumer that runs multiple requests against the Products
/// service in t... | {
"pile_set_name": "Github"
} |
[Desktop Entry]
Name=System
Comment=Personal preferences and administration settings
Icon=preferences-other
Type=Directory
#TRANSLATIONS_DIR=translations
# Translations
Name[fur]=Sisteme
Comment[fur]=Preferencis personâls e impostazions di aministrazion
| {
"pile_set_name": "Github"
} |
import SwiftUI
public enum ClockStyle: Identifiable, CaseIterable {
case classic
case artNouveau
case drawing
case steampunk
public var description: String {
switch self {
case .classic: return "Classic"
case .artNouveau: return "Art Nouveau"
case .drawing: return "... | {
"pile_set_name": "Github"
} |
// RUN: %dxc -E main -T ps_6_0 %s | FileCheck %s
// CHECK: Sqrt
// CHECK: dot3
// CHECK: Saturate
// CHECK: Frc
// CHECK: dot4
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED... | {
"pile_set_name": "Github"
} |
// Generated by CoffeeScript 1.4.0
(function() {
var config_object, do_clean, do_export, start_export, syspath, sysutil, utils;
syspath = require('path');
sysutil = require('util');
utils = require('../util');
exports.usage = "文件首行添加 '/* [export] */' 或 '/* [export no_version] */'\n\t\t\t将被自动添加 fekit.confi... | {
"pile_set_name": "Github"
} |
---
title: "Manage System Health in Windows Server Essentials"
description: "Describes how to use Windows Server Essentials"
ms.date: 10/03/2016
ms.topic: article
ms.assetid: 3043f83b-389c-4f37-a1ff-85afe99314fa
author: nnamuhcs
ms.author: geschuma
manager: mtillman
---
# Manage System Health in Windows Server Essenti... | {
"pile_set_name": "Github"
} |
// Copyright 2019 Drone IO, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2002-2020 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j 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
... | {
"pile_set_name": "Github"
} |
name: example
description: Example project for the flutter_translate library
version: 1.5.7
environment:
sdk: ">=2.1.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
flutter_translate:
path: ../
flutter:
uses-material-design: true
assets:
- assets/i18n/
| {
"pile_set_name": "Github"
} |
require 'spec_helper'
RSpec.describe 'Routes' do
let(:user) { VCAP::CloudController::User.make }
let(:space) { VCAP::CloudController::Space.make }
before do
space.organization.add_user(user)
space.add_developer(user)
TestConfig.override(kubernetes: {})
stub_request(:get, 'http://localhost:3000/... | {
"pile_set_name": "Github"
} |
<configuration scan="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.ThresholdFil... | {
"pile_set_name": "Github"
} |
.PHONY: test
test_all:
python main.py ./tmptest/ /var/www/Lychee/ ./ressources/test_conf.json -v -d
test:
py.test -c ./ressources/pytest.ini --cov=lycheesync --pep8 --showlocals --duration=3 -v -s --confpath=${PWD}/ressources/test_conf.json --cov-report term-missing
# py.test -c ./ressources/pytest.ini --showlo... | {
"pile_set_name": "Github"
} |
using Uno;
using Uno.Collections;
using Uno.Testing;
using Fuse.Elements;
using FuseTest;
namespace Fuse.Triggers.Test
{
public class VisibilityTest : TestBase
{
[Test]
public void Basic()
{
var p = new UX.Visibility.Basic();
using (var root = TestRootPanel.CreateWithChild(p))
{
Assert.AreEqual(... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<dataset>
<phprbac_permissions ID="1" Lft="0" Rght="7" Title="root" Description="root" />
<phprbac_permissions ID="2" Lft="1" Rght="6" Title="permissions_1" Description="permissions Description 1" />
<phprbac_permissions ID="3" Lft="2" Rght="5" Title="permissions_2... | {
"pile_set_name": "Github"
} |
function main (.text) {
0x400546: push rbp
0x400547: rbp = rsp
0x40054a: rsp -= 16
0x40054e: edi = 0
0x400553: eax = 0
0x400558: call time
0x40055d: *(rbp - 4) = eax
0x400560: jmp loop_0x400584
loop {
loop_0x400584:
# 0x400584: cmp dword ptr [rbp - 4], 0x63
# ... | {
"pile_set_name": "Github"
} |
disableUnopt: true
| {
"pile_set_name": "Github"
} |
[package]
name = "interpreter"
version = "0.1.0"
authors = ["ChainSafe Systems <info@chainsafe.io>"]
edition = "2018"
[dependencies]
address = { package = "forest_address", path = "../address" }
actor = { path = "../actor" }
message = { package = "forest_message", path = "../message" }
runtime = { path = "../runtime" ... | {
"pile_set_name": "Github"
} |
; This .ico file used to write this test was lost when the author left
; before comitting, and the binary wasn't uploaded to Phabricator. This
; will be fixed as soon as we can recover the file.
; XFAIL: *
; RUN: rm -rf %t
; RUN: mkdir %t
; RUN: cd %t
; RUN: cp %p/Inputs/icon*.ico .
; RUN: cp %p/Inputs/cursor*.cur .
;... | {
"pile_set_name": "Github"
} |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
* pci_regs.h
*
* PCI standard defines
* Copyright 1994, Drew Eckhardt
* Copyright 1997--1999 Martin Mares <mj@ucw.cz>
*
* For more information, please consult the following manuals (look at
* http://www.pcisig.com/ for how to get them):
*
* PCI... | {
"pile_set_name": "Github"
} |
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
#ifndef SpeechRecognitionEventInit_h
#define SpeechRecognitionEventIn... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2019-2020 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AFFERO GENERAL PUBLIC LICENSE version 3 license that can be found via the following link.
*
* https://github.com/mamoe/mira... | {
"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"); y... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated on Tue Aug 12 11:08:13 2014 by SUMO duarouter Version dev-SVN-r16857ID
This data file and the accompanying materials
are made available under the terms of the Eclipse Public License v2.0
which accompanies this distribution, and is available at
http://www.eclipse.or... | {
"pile_set_name": "Github"
} |
[-foo]
| {
"pile_set_name": "Github"
} |
"""
ASGI config for shopify_django_app project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('D... | {
"pile_set_name": "Github"
} |
# -*- ruby -*-
#
# Copyright (C) 2011-2018 Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later v... | {
"pile_set_name": "Github"
} |
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin linux solaris
package ipv4
import (
"net"
"unsafe"
"golang.org/x/net/internal/iana"
"golang.org/x/net/internal/socket"
)
func marshalPa... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft... | {
"pile_set_name": "Github"
} |
// ***********************************************************************
// Assembly : HZH_Controls
// Created : 08-08-2019
//
// ***********************************************************************
// <copyright file="TextInputType.cs">
// Copyright by Huang Zhenghui(黄正辉) All, QQ group... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | {
"pile_set_name": "Github"
} |
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
url('#{$fa-font-path}/fontawesome-webfont.wof... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/feature_extraction.iml" filepath="$PROJECT_DIR$/.idea/feature_extraction.iml" />
</modules>
</component>
</project> | {
"pile_set_name": "Github"
} |
#!/usr/bin/python
# coding: utf-8
######################
# Uwsgi RCE Exploit
######################
# Author: wofeiwo@80sec.com
# Created: 2017-7-18
# Last modified: 2018-1-30
# Note: Just for research purpose
import sys
import socket
import argparse
import requests
def sz(x):
s = hex(x if isinstance(x, int) else... | {
"pile_set_name": "Github"
} |
#
# modularer ISDN driver
#
menuconfig MISDN
tristate "Modular ISDN driver"
help
Enable support for the modular ISDN driver.
if MISDN != n
config MISDN_DSP
tristate "Digital Audio Processing of transparent data"
depends on MISDN
help
Enable support for digital audio processing capability.
This module ... | {
"pile_set_name": "Github"
} |
module.exports = {
// CLI commands
commands: [],
// Rewrite config redirectives
directives: [],
// HTTP server routes
routes: []
};
| {
"pile_set_name": "Github"
} |
// Azerite powers, wow build 9.0.2.36037
static const std::array<azerite_power_entry_t, 379> __azerite_power_data { {
{ 13, 263978, 4775, "Azerite Empowered" , 0 },
{ 14, 268594, 0, "Longstrider" , 1 },
{ 15, 263962, 0, "Resounding Protection" , 1 },
... | {
"pile_set_name": "Github"
} |
<?php
$this->title = Yum::t("Create user");
$this->pageTitle = Yum::t("Create user");
$this->breadcrumbs = array(
Yum::t('Users') => array('index'),
Yum::t('Create'));
echo $this->renderPartial('_form', array(
'user'=>$user,
'passwordform'=>$passwordform,
'profile'=>isset($profile) ? $profile : null)); ?>... | {
"pile_set_name": "Github"
} |
package com.tencent.mm.plugin.sport.model;
import android.os.Build;
import com.tencent.matrix.trace.core.AppMethodBeat;
import com.tencent.mm.ai.b;
import com.tencent.mm.ai.b.a;
import com.tencent.mm.ai.f;
import com.tencent.mm.ai.m;
import com.tencent.mm.network.k;
import com.tencent.mm.network.q;
import com.tencent.... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="LnAbuK5v09x6DFGtdKOBfNyOvNI=">
<bindingConfigurations>
<bindingConfiguration bindingType="basicHttpBinding" name="Temp... | {
"pile_set_name": "Github"
} |
package oauth1
import (
"fmt"
"net/http"
)
// Transport is an http.RoundTripper which makes OAuth1 HTTP requests. It
// wraps a base RoundTripper and adds an Authorization header using the
// token from a TokenSource.
//
// Transport is a low-level component, most users should use Config to create
// an http.Client... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2009-2010 Gael Guennebaud <gael.guennebaud@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, You c... | {
"pile_set_name": "Github"
} |
package com.vladmihalcea.book.hpjp.hibernate.type.array;
import org.hibernate.type.AbstractSingleColumnStandardBasicType;
import org.hibernate.usertype.DynamicParameterizedType;
import java.util.Properties;
/**
* @author Vlad Mihalcea
*/
public class EnumArrayType
extends AbstractSingleColumnStandardBasicT... | {
"pile_set_name": "Github"
} |
/*
Firewall Builder
Copyright (C) 2011 NetCitadel, LLC
Author: Vadim Kurland vadim@fwbuilder.org
This program is free software which we release under the GNU General Public
License. You may redistribute and/or modify this program under the terms
of that licens... | {
"pile_set_name": "Github"
} |
--
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; y... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloHacktoberfest
{
class HolaMundo
{
static void Main(string[] args)
{
Console.WriteLine("HelloWorld => Hola Mundoooooo..!");
}
}
}
| {
"pile_set_name": "Github"
} |
package jmespath
import (
"errors"
"reflect"
)
// IsFalse determines if an object is false based on the JMESPath spec.
// JMESPath defines false values to be any of:
// - An empty string array, or hash.
// - The boolean value false.
// - nil
func isFalse(value interface{}) bool {
switch v := value.(type) {
case b... | {
"pile_set_name": "Github"
} |
# RQ2JK6 - Crazy Climber Wii
[Video_Settings]
SuggestedAspectRatio = 2
| {
"pile_set_name": "Github"
} |
;; i64 operations
(module
(func (export "add") (param $x i64) (param $y i64) (result i64) (i64.add (get_local $x) (get_local $y)))
(func (export "sub") (param $x i64) (param $y i64) (result i64) (i64.sub (get_local $x) (get_local $y)))
(func (export "mul") (param $x i64) (param $y i64) (result i64) (i64.mul (get... | {
"pile_set_name": "Github"
} |
/**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE... | {
"pile_set_name": "Github"
} |
# DO NOT CHANGE the "init" and "install" sections below
# Download script file from GitHub
init:
ps: |
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1... | {
"pile_set_name": "Github"
} |
//-----------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="Marimer LLC">
// Copyright (c) Marimer LLC. All rights reserved.
// Website: https://cslanet.com
// </copyright>
// <summary>no summary</summary>
//-------------------------------------------... | {
"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 not ... | {
"pile_set_name": "Github"
} |
"""
This test verifies that we don't prefix GDB by 'x86-linux' or
'x86-windows' when the project targets a 32-bit host platform.
"""
import GPS
from gs_utils.internal.utils import *
import platform
@run_test_driver
def run_test():
prj = GPS.Project.root()
if platform.system() == "Windows":
prj.set_sc... | {
"pile_set_name": "Github"
} |
#-------------------------------------------------------------------------
# This file contains real Python object wrappers for DB and DBEnv
# C "objects" that can be usefully subclassed. The previous SWIG
# based interface allowed this thanks to SWIG's shadow classes.
# -- Gregory P. Smith
#--------------------... | {
"pile_set_name": "Github"
} |
//
// Optional.swift
// RxSwift
//
// Created by tarunon on 2016/12/13.
// Copyright © 2016 Krunoslav Zaher. All rights reserved.
//
extension ObservableType {
/**
Converts a optional to an observable sequence.
- seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/fr... | {
"pile_set_name": "Github"
} |
package com.example.pluginmain;
import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TabHost;
import com.limpoxe.fairy.core.FairyGlobal;
import com.limpoxe.fairy.core.PluginIntentResolver;
@SuppressWarnings("ALL")
public class TestTabActivity extends TabActiv... | {
"pile_set_name": "Github"
} |
<%--
Copyright © 2002 Instituto Superior Técnico
This file is part of FenixEdu Academic.
FenixEdu Academic is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the Lice... | {
"pile_set_name": "Github"
} |
//
// CommandTokenizer.swift
// Locu
//
// Created by Terry on 2/28/17.
// Copyright © 2017 Boogaloo. All rights reserved.
//
import Foundation
private let sNormal = CharacterSet(charactersIn: " \"\'\\")
private let sWeakQuotes = CharacterSet(charactersIn: "\"")
private let sStrongQuotes = CharacterSet(characters... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<LanguageData>
<Bullet_Dummy.label>dummy bullet</Bullet_Dummy.label>
<Gun_BinocularsRadio.label>쌍안경과 무전기</Gun_BinocularsRadio.label>
<Gun_BinocularsRadio.description>쌍안경과 휴대용 무전기로 구성된 관측장비. 포격임무를 조율하는데 유용합니다.\n\n표적 대상에 표식을 남겨 이에 사격하는 박격포의 직,간접적인 사격 방해요소를 제거합니다. 또한, 지시된 모든... | {
"pile_set_name": "Github"
} |
{
"name": "tiptap",
"version": "1.30.0",
"description": "A rich-text editor for Vue.js",
"homepage": "https://tiptap.dev",
"license": "MIT",
"main": "dist/tiptap.common.js",
"module": "dist/tiptap.esm.js",
"unpkg": "dist/tiptap.js",
"jsdelivr": "dist/tiptap.js",
"files": [
"src",
"dist"
],... | {
"pile_set_name": "Github"
} |
class AddWeightToReleases < ActiveRecord::Migration[4.2]
def change
add_column :releases, :weight, :string
end
end
| {
"pile_set_name": "Github"
} |
#
# Copyright 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or ... | {
"pile_set_name": "Github"
} |
{
"WebObjects Release" = "WebObjects 5.0";
encoding = NSUTF8StringEncoding;
} | {
"pile_set_name": "Github"
} |
/**
* Copyright (C) 2011
* Michael Mosmann <michael@mosmann.de>
* Martin Jöhren <m.joehren@googlemail.com>
*
* with contributions from
* konstantin-ba@github,
Archimedes Trajano (trajano@github),
Kevin D. Keck (kdkeck@github),
Ben McCann (benmccann@github)
*
* Licensed under the Apache License, Version ... | {
"pile_set_name": "Github"
} |
VERSION = $(shell cat pom.xml | grep '<version>[0-9.]\+' | sed 's/<version>\([0-9.]\+\)<\/version>/\1/g' | tr -d '[:space:]')
DIST_TARGET=datashare-dist/target/datashare-dist-$(VERSION)-docker
PATH_TO_APP_DIST=../datashare-client/dist/
$(DIST_TARGET): dist
clean:
mvn clean
.PHONY: dist
dist:
mvn validate package... | {
"pile_set_name": "Github"
} |
Route131_MapScripts:: @ 81F7404
map_script MAP_SCRIPT_ON_TRANSITION, Route131_OnTransition
.byte 0
Route131_OnTransition: @ 81F740A
compare VAR_SOOTOPOLIS_CITY_STATE, 4
call_if_ge Route131_EventScript_CheckSetAbnormalWeather
call Route131_EventScript_SetLayout
end
Route131_EventScript_SetLayout:: @ 81F741B
set... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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.o... | {
"pile_set_name": "Github"
} |
page-home {
}
| {
"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"
} |
// Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
// Licensed under the Mozilla Public License v2.0
package oci
import (
"context"
"github.com/hashicorp/terraform/helper/schema"
oci_core "github.com/oracle/oci-go-sdk/v25/core"
)
func init() {
RegisterDatasource("oci_core_boot_volum... | {
"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 japanese
import (
"errors"
"unicode/utf8"
"golang.org/x/text/encoding"
"golang.org/x/text/encoding/internal"
"golang.org/x/text/encoding/internal... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2018 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... | {
"pile_set_name": "Github"
} |
#!/bin/bash
MY_IP=$(hostname -I | cut -d " " -f 1)
export ROS_IP=${MY_IP}
echo "Setting ROS_IP to host IP, which is $ROS_IP"
if [ ! -z "$ROS_MASTER_URI" ]; then
echo "ROS_MASTER_URI was externally set to \"$ROS_MASTER_URI\", skipping configuration."
elif [ ! -z "$DUCKIEBOT_NAME" ] && [ ! -z "$DUCKIEBOT_IP" ]; then... | {
"pile_set_name": "Github"
} |
@svg-geo-s2-cell: @c-pool;
@svg-geo-region: @c-star;
@svg-geo-point: @c-dreamsicle;
svg[id^='geo-s2-cells-'] {
max-width: 250px;
.geo-cell{fill:fade(@svg-geo-s2-cell, 25%);stroke:@svg-geo-s2-cell;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:10;}
.geo-region{fill:fade(@svg-geo-region, 35%);stroke:@svg-ge... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2002-2020 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j 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
... | {
"pile_set_name": "Github"
} |
!!!
%html
!= @render 'layout/header'
%body.list
#content.list
%h1.full_list_header Method List
!= @render 'partials/list_nav'
#search
Search:
%input{ type: 'text' }
%ul
- for method in @environment.visibleMethods()
%li{deprecated: if method.documentat... | {
"pile_set_name": "Github"
} |
export * from './create';
export * from './types';
| {
"pile_set_name": "Github"
} |
/*
* Copyright 2009-2012 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unles... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.