text
stringlengths
2
99k
meta
dict
.CellButton { display: block; box-sizing: border-box; outline: none; text-decoration: none; margin: 0; padding: 0; border: none; cursor: default; width: 100%; background: transparent; position: relative; } .CellButton[disabled] { opacity: .4; } .CellButton__in { display: flex; align-it...
{ "pile_set_name": "Github" }
{ "id": "query.json#", "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "comment": { "type": "string" } } }
{ "pile_set_name": "Github" }
#ifndef _SPI_API_H_ #define _SPI_SPI_H_ unsigned long raspi_init(void); int spi_env_init(void); int raspi_write(char *buf, unsigned int to, int len); int raspi_read(char *buf, unsigned int from, int len); int raspi_erase(unsigned int offs, int len); int raspi_erase_write(char *buf, unsigned int offs, int count); #...
{ "pile_set_name": "Github" }
package mcjty.rftools.shapes; import net.minecraft.util.math.BlockPos; import java.util.ArrayList; import java.util.List; /** * Extra transient data that can be added to a scan (by the Locator for example) */ public class ScanExtraData { private final List<Beacon> beacons = new ArrayList<>(); private long...
{ "pile_set_name": "Github" }
package com.brandon3055.draconicevolution.client.render.tile; import com.brandon3055.draconicevolution.DraconicEvolution; import com.brandon3055.draconicevolution.blocks.tileentity.TileEnergyCoreStabilizer; import com.brandon3055.draconicevolution.client.model.ModelLargeECStabilizer; import com.mojang.blaze3d.matrix.M...
{ "pile_set_name": "Github" }
# -*- encoding: utf-8 -*- # # Copyright © 2012 New Dream Network, LLC (DreamHost) # Copyright © 2013 eNovance # # Author: Doug Hellmann <doug.hellmann@dreamhost.com> # Julien Danjou <julien@danjou.info> # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in com...
{ "pile_set_name": "Github" }
// $Id: ScriptAnaly.cc 6219 2008-10-01 05:39:07Z vern $ // // See the file "COPYING" in the main distribution directory for copyright. #include "Dict.h" #include "Expr.h" #include "Traverse.h" #include "ScriptAnaly.h" typedef const char cchar; declare(PDict, cchar); class FindNoteCallback : public TraversalCallback...
{ "pile_set_name": "Github" }
#!/usr/bin/python '''Uses Cocoa classes via PyObjC to set a desktop picture on all screens. Tested on Mountain Lion and Mavericks. Inspired by Greg Neagle's work: https://gist.github.com/gregneagle/6957826 See: https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSWorkspace_...
{ "pile_set_name": "Github" }
#pragma once namespace LuaCpp { template <int N, typename Ret, typename... Args> class ObjFunc : public BaseFunc { using _func_type = std::function<Ret(Args...)>; public: ObjFunc(lua_State *l, const std::string &name, Ret(*func)(Args...)) : ObjFunc(l, name, _func_type(func)) {} // Set function f...
{ "pile_set_name": "Github" }
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportHeight="24.0" android:viewportWidth="24.0"> <path android:fillColor="#3fb562" android:pathData="M12,4A4,4 0,0 1,16 8A4,4 0,0 1,12 12A4,4 0,0 1,8 8A4,4 0,0 1,1...
{ "pile_set_name": "Github" }
==================================== INPUT ==================================== fragment LinkedHandleField on User { friends(first: 10) @__clientField(handle: "clientFriends") @__clientField(handle: "otherFriends") { count } } ==================================== OUTPUT =================================...
{ "pile_set_name": "Github" }
/* * uimon.c - Monitor access interface. * * Written by * Hannu Nuotio <hannu.nuotio@tut.fi> * * Based on code by * Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de> * * This file is part of VICE, the Versatile Commodore Emulator. * See README for copyright notice. * * This program is free software; you can r...
{ "pile_set_name": "Github" }
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.IO; using System.Linq; using BuildXL.Cache.ContentStore.Hashing; using BuildXL.Cache.MemoizationStore.Interfaces.Sessions; using Xunit; namespace BuildXL.Cache.MemoizationStore.InterfacesTest.Sessions { ...
{ "pile_set_name": "Github" }
// It's possible to suppress a lint error with a normal suppression comment, but // a suppression comment over a lint which was never enabled should not be // considered "used." Instead, it should show up as an unused suppression. // Note: this test assumes that sketchy-null-string is never explicitly enabled declare...
{ "pile_set_name": "Github" }
#if binary_serialization using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.CompilerServices; using ExpressionToCodeLib; using Xunit; namespace ExpressionToCodeTest { public class ExceptionsSerialization { [MethodImpl(MethodImplOptions.NoInlining)]...
{ "pile_set_name": "Github" }
<?php /** * Rubedo -- ECM solution * Copyright (c) 2014, WebTales (http://www.webtales.fr/). * All rights reserved. * licensing@webtales.fr * * Open Source License * ------------------------------------------------------------------------------------------ * Rubedo is licensed under the terms of the Open Sourc...
{ "pile_set_name": "Github" }
#ifndef CAFFE_DUMMY_DATA_LAYER_HPP_ #define CAFFE_DUMMY_DATA_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/filler.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" namespace caffe { /** * @brief Provides data to the Net generated by a Filler. * * TODO(dox): thorough docum...
{ "pile_set_name": "Github" }
var path = require('path'); function Gently() { this.expectations = []; this.hijacked = {}; var self = this; process.addListener('exit', function() { self.verify('process exit'); }); }; module.exports = Gently; Gently.prototype.stub = function(location, exportsName) { function Stub() { return Stu...
{ "pile_set_name": "Github" }
/** @file * * Copyright (c) 2018, Hisilicon Limited. All rights reserved. * Copyright (c) 2018, Linaro Limited. All rights reserved. * * SPDX-License-Identifier: BSD-2-Clause-Patent * **/ #ifndef _HISI_PLATFORM_SAS_PROTOCOL_H_ #define _HISI_PLATFORM_SAS_PROTOCOL_H_ typedef struct _HISI_PLATFORM_SAS_PRO...
{ "pile_set_name": "Github" }
import { IconDefinition } from "@fortawesome/fontawesome-common-types"; declare const iconDef: IconDefinition; export = iconDef;
{ "pile_set_name": "Github" }
{ "name" : "Set" }
{ "pile_set_name": "Github" }
/* * Copyright 2017-2019 B2i Healthcare Pte Ltd, http://b2i.sg * * 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 require...
{ "pile_set_name": "Github" }
/* ** 2019-10-23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** **************************...
{ "pile_set_name": "Github" }
proc ad_dacfifo_create {dac_fifo_name dac_data_width dac_dma_data_width dac_fifo_address_width} { upvar ad_hdl_dir ad_hdl_dir create_bd_intf_port -mode Slave -vlnv xilinx.com:interface:diff_clock_rtl:1.0 sys_clk_c1 set_property -dict [list CONFIG.FREQ_HZ {250000000}] [get_bd_intf_ports sys_clk_c1] create_bd...
{ "pile_set_name": "Github" }
/** * Big Screens Week 4 * Reads sound level from microphone and broadcasts volume to all clients * @author Shiffman */ package soundinput; import ddf.minim.AudioInput; import ddf.minim.Minim; import mpe.client.TCPClient; import processing.core.PApplet; public class Volume extends PApplet { final int ID = 0;...
{ "pile_set_name": "Github" }
{ "version" : "6.0.0", "timestamp" : 1589386993189, "path" : "query-validation-tests/histogram.json", "schemas" : { "CTAS_S2_0.Aggregate.Aggregate.Materialize" : { "schema" : "`ID` BIGINT KEY, `ID` BIGINT, `VALUE` STRING, `KSQL_AGG_VARIABLE_0` MAP<STRING, BIGINT>", "serdeOptions" : [ ] }, ...
{ "pile_set_name": "Github" }
all: test build: @cargo build --all-features doc: @cargo doc --all-features test: cargotest cargotest: @rustup component add rustfmt 2> /dev/null @cargo test @cargo test --all-features @cargo test --no-default-features @cargo test --features redactions,backtrace -- --test-threads 1 @cd cargo-insta; cargo te...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Icon file</key> <string>AppIcon</string> <key>CFBundleVersion</key> <string>6</string> <key>CFBundleShortVersionString</key> <string>1.40<...
{ "pile_set_name": "Github" }
<div class="page-header"> <h2>.</h2> </div> <div class="container theme-showcase" role="main"> <h1>チーム情報の更新</h1> <div id="update-team-box"> <form method="POST" action="/team"> <div class="form-group"> <label for="teamName">チーム名(変更不可)</label> <input type="text" class="form-control" id="...
{ "pile_set_name": "Github" }
16, 16, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 16, 16, 32, 16, 16, 16, 33, 34, 35, 36, 37, 38, 39, 16, 16, 40, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 41, 42, 16, 16, 43, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 1...
{ "pile_set_name": "Github" }
# The MIT License # # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant # # 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, includin...
{ "pile_set_name": "Github" }
idx label predict basePredict correct time 0 3 2 2 0 0:00:01.719906 20 7 1 9 0 0:00:01.498593 40 4 8 8 0 0:00:01.487559 60 7 2 2 0 0:00:01.503982 80 8 -1 8 0 0:00:01.510276 100 4 3 3 0 0:00:01.497506 120 8 -1 8 0 0:00:01.530801 140 6 2 2 0 0:00:01.513078 160 2 0 0 0 0:00:01.499855 180 0 9 8 0 0:00:01.492818 ...
{ "pile_set_name": "Github" }
/* * Copyright 2010-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "lice...
{ "pile_set_name": "Github" }
#!/bin/sh # Source debconf library. . /usr/share/debconf/confmodule # TODO: we should really try to determine if nipapd is installed on this # machine here, but as packages are not yet guaranteed to be unpacked in the # config stage we cannot determine if nipapd is or is going to be installed by # looking if files ex...
{ "pile_set_name": "Github" }
--- title: TaskRequestUpdateItem.Session Property (Outlook) keywords: vbaol11.chm1919 f1_keywords: - vbaol11.chm1919 ms.prod: outlook api_name: - Outlook.TaskRequestUpdateItem.Session ms.assetid: 12e7fa2c-1067-4faa-c827-b1b1f8dc4238 ms.date: 06/08/2017 --- # TaskRequestUpdateItem.Session Property (Outlook) Returns t...
{ "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 a...
{ "pile_set_name": "Github" }
Software License Agreement (BSD License) Copyright (c) 2012, Adafruit Industries All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice,...
{ "pile_set_name": "Github" }
#!/usr/bin/env bats load test_helper @test "dst-server console redirect" { fixtures dsta-console docker run -d --name $CONTAINER $IMAGE docker exec -i $CONTAINER dst-server console <"$FIXTURE_ROOT/commands.txt" wait_until_loaded sleep 1 docker cp $CONTAINER:/var/lib/dsta/cluster/shard/server_log.txt "$TMP/serv...
{ "pile_set_name": "Github" }
--- title: Make changes for the tax rule type "individual states" visible issue: NEXT-10666 author: Maike Sestendrup author_email: m.sestendrup@shopware.com --- # Administration * Added fix to display changes when selecting or deselecting individual states in `sw-settings-tax-rule-type-indiv...
{ "pile_set_name": "Github" }
<?xml version='1.0' encoding='UTF-8'?> <node order="90" type="folder"> <label>38044</label> <icon>DefaultMusicArtists.png</icon> <path>musicdb://artists/?albumartistsonly=false</path> </node>
{ "pile_set_name": "Github" }
form=未知 tags= 阴律随寒改, 阳和应节生。 祥云观魏阙, 瑞气映秦城。 验炭论时政, 书云受岁盈。 晷移长日至, 雾敛远霄清。 景暖仙梅动, 风柔御柳倾。 那堪封得意, 空对物华情。
{ "pile_set_name": "Github" }
import javax.swing.tree.TreeModel; public interface TreeTableSorter<T extends TreeModel, C extends TreeColumnModel> { public interface SortCycle {} }
{ "pile_set_name": "Github" }
#ifndef FIRMATA_DEBUG_H #define FIRMATA_DEBUG_H #ifdef SERIAL_DEBUG #define DEBUG_BEGIN(baud) Serial.begin(baud); while(!Serial) {;} #define DEBUG_PRINTLN(x) Serial.println (x); Serial.flush() #define DEBUG_PRINT(x) Serial.print (x) #else #define DEBUG_BEGIN(baud) #define DEBUG_PRINTLN(x) #define DEBUG...
{ "pile_set_name": "Github" }
// // impl/system_context.hpp // ~~~~~~~~~~~~~~~~~~~~~~~ // // 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) // #ifndef BOOST_ASIO_IM...
{ "pile_set_name": "Github" }
index_title=מחולל דוח דיונון index_econf=קובץ התצורה של Sarg $1 לא נמצא במערכת שלך. אולי Sarg לא מותקן, או <a href='$2'>תצורת המודול</a> שגויה. index_ecmd=תוכנית Sarg $1 לא נמצאה במערכת שלך. אולי הוא לא מותקן, או <a href='$2'>תצורת המודול</a> שגויה. index_eversion=השגת הגרסה של Sarg נכשלה עם הפקודה $1 : $2 index_versi...
{ "pile_set_name": "Github" }
defmodule Logger.Watcher do @moduledoc false require Logger use GenServer @doc """ Starts a watcher server. This is useful when there is a need to start a handler outside of the handler supervision tree. """ def start_link(tuple) do GenServer.start_link(__MODULE__, tuple) end ## Callbacks ...
{ "pile_set_name": "Github" }
/** * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/2815083 * @preserve **/ (function (CKEDITOR) { function findElementByName(element, name) { if (element.name === name) { return element; } var found = null; element.forEach(functio...
{ "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. // This file is a copy of $GOROOT/src/go/internal/gcimporter/bimport.go. package gcimporter import ( "encoding/binary" "fmt" "go/constant" "go/token" "go...
{ "pile_set_name": "Github" }
# Blender v2.66 (sub 1) OBJ File: '' # www.blender.org g Sphere v -0.195090 0.980785 0.000000 v -0.382683 0.923880 0.000000 v -0.555570 0.831470 0.000000 v -0.707107 0.707107 0.000000 v -0.831470 0.555570 0.000000 v -0.923880 0.382683 0.000000 v -0.980785 0.195090 0.000000 v -1.000000 0.000000 0.000000 v -0.980785 -0.1...
{ "pile_set_name": "Github" }
{ "tutorials": [ { "title": "Prerequisites", "description": "Login to Oracle Cloud", "filename": "https://raw.githubusercontent.com/oracle/learning-library/master/common/labs/cloud-login/cloud-login-livelabs2.md" },{ "title": "Introduction", ...
{ "pile_set_name": "Github" }
package winio //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go file.go pipe.go sd.go fileinfo.go privilege.go backup.go hvsock.go
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>$(DEVELOPMENT_LANGUAGE)</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> ...
{ "pile_set_name": "Github" }
package common import ( "github.com/mitchellh/packer/template/interpolate" ) // FloppyConfig is configuration related to created floppy disks and attaching // them to a VirtualBox machine. type FloppyConfig struct { FloppyFiles []string `mapstructure:"floppy_files"` } func (c *FloppyConfig) Prepare(ctx *interpolat...
{ "pile_set_name": "Github" }
#ifndef _ARPT_MANGLE_H #define _ARPT_MANGLE_H #include <linux/netfilter_arp/arp_tables.h> #define ARPT_MANGLE_ADDR_LEN_MAX sizeof(struct in_addr) struct arpt_mangle { char src_devaddr[ARPT_DEV_ADDR_LEN_MAX]; char tgt_devaddr[ARPT_DEV_ADDR_LEN_MAX]; union { struct in_addr src_ip; } u_s; union { struct in_addr ...
{ "pile_set_name": "Github" }
1
{ "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" }
//------------------------------------------------------------------------------ // <auto-generated /> // // This file was automatically generated by SWIG (http://www.swig.org). // Version 3.0.12 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. //----...
{ "pile_set_name": "Github" }
/* Copyright 2020 The Tekton Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, softw...
{ "pile_set_name": "Github" }
import Postbox public final class RecentHashtagItem: OrderedItemListEntryContents { public init() { } public init(decoder: PostboxDecoder) { } public func encode(_ encoder: PostboxEncoder) { } }
{ "pile_set_name": "Github" }
{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Linked List Reversal \n", "\n", "## Problem\n", "\n", "Write a function to reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n", "\n", ...
{ "pile_set_name": "Github" }
/* SDL - Simple DirectMedia Layer Copyright (C) 1997-2009 Sam Lantinga 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 op...
{ "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 <objc/NSObject.h> @class NSArray, NSError, NSMutableArray; __attribute__((visibility("hidden"))) @interface _NSKeyedUnarchive...
{ "pile_set_name": "Github" }
{ "__type__": "cc.AnimationClip", "_name": "line", "_objFlags": 0, "_rawFiles": null, "_duration": 0.48333333333333334, "sample": 60, "speed": 0.5, "wrapMode": 2, "curveData": { "comps": { "cc.Sprite": { "spriteFrame": [ { "frame": 0, "value": { ...
{ "pile_set_name": "Github" }
// // UIImage+AFNetworking.h // // // Created by Paulo Ferreira on 08/07/15. // // 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 ri...
{ "pile_set_name": "Github" }
<?xml version="1.0" ?> <FileOriMnt> <NameFileMnt>/data/RODIN-TEXT/F050_IMG_0064_Tex4_MpDcraw8B_GR_Masq.tif</NameFileMnt> <NombrePixels>5634 3754</NombrePixels> <OriginePlani>0 0</OriginePlani> <ResolutionPlani>1 1</ResolutionPlani> <OrigineAlti>0</OrigineAlti> <ResolutionAlti>1</Resolution...
{ "pile_set_name": "Github" }
-- -- This is a Media Cloud PostgreSQL schema difference file (a "diff") between schema -- versions 4435 and 4436. -- -- If you are running Media Cloud with a database that was set up with a schema version -- 4435, and you would like to upgrade both the Media Cloud and the -- database to be at version 4436, import this...
{ "pile_set_name": "Github" }
common: sources: board: - source/board/wizwiki_w7500p.c family: - source/family/wiznet/w7500/target.c - source/family/wiznet/target_reset_wiznet.c
{ "pile_set_name": "Github" }
/* * Renesas R-Car DVC support * * Copyright (C) 2014 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Found...
{ "pile_set_name": "Github" }
/* # Created by Fabrizio Di Vittorio (fdivitto2013@gmail.com) # Copyright (c) 2015/2016 Fabrizio Di Vittorio. # All rights reserved. # GNU GPL LICENSE # # This module 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 Found...
{ "pile_set_name": "Github" }
<component name="DependencyValidationManager"> <scope name="JDBC" pattern="lib:javax.sql..*||lib:java.sql..*" /> </component>
{ "pile_set_name": "Github" }
/* * Summary: The DTD validation * Description: API for the DTD handling and the validity checking * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_VALID_H__ #define __XML_VALID_H__ #include <libxml/xmlversion.h> #include <libxml/xmlerror.h> #include <libxm...
{ "pile_set_name": "Github" }
import discourseComputed from "discourse-common/utils/decorators"; import { keyValueStore as pushNotificationKeyValueStore } from "discourse/lib/push-notifications"; import DesktopNotificationConfig from "discourse/components/desktop-notification-config"; const userDismissedPromptKey = "dismissed-prompt"; export defa...
{ "pile_set_name": "Github" }
//===- DebugInfoMetadata.cpp - Implement debug info metadata --------------===// // // 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" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Class: BoostingStrategy</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js...
{ "pile_set_name": "Github" }
//---------------------------------------------------------------------------// // Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.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 // // See http://boostorg.gi...
{ "pile_set_name": "Github" }
--- layout: default title: Examples --- <div class="row"> <div class="col-sm-3" > <div data-spy="affix" data-offset-top="0" data-offset-bottom="0" markdown="1"> * Some TOC {:toc} </div> </div> {% raw %} <div class="doc-body col-sm-9" markdown="1"> <p class="title h1">Examples</p> ## Basic Alerts ### Com...
{ "pile_set_name": "Github" }
; <<>> DiG 9.9.5-3ubuntu0.8-Ubuntu <<>> AXFR hk. @V.HKIRC.NET.hk. +nocomments +nocmd +noquestion +nostats +time=15 ;; global options: +cmd ; Transfer failed.
{ "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" }
uint32_t gk104_grhub_data[] = { /* 0x0000: hub_mmio_list_head */ 0x00000300, /* 0x0004: hub_mmio_list_tail */ 0x00000304, /* 0x0008: gpc_count */ 0x00000000, /* 0x000c: rop_count */ 0x00000000, /* 0x0010: cmd_queue */ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000...
{ "pile_set_name": "Github" }
<?php /** * RuleRepositoryInterface.php * Copyright (c) 2019 james@firefly-iii.org * * This file is part of Firefly III (https://github.com/firefly-iii). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the F...
{ "pile_set_name": "Github" }
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Tests; use PHPUnit\Framework\TestCase; use Symfo...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2008 Travis Geiselbrecht * Copyright (c) 2009 François Revol, revol@free.fr * * 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 withou...
{ "pile_set_name": "Github" }
import Collapse from 'components/Markdown/Collapse' import Code from 'components/Markdown/Code' import Info from 'components/Markdown/Info' import Warning from 'components/Markdown/Warning' export const meta = { title: "Datamodel (MongoDB)", position: 20, technology: "mongodb", technologyOrder: 3, articleGro...
{ "pile_set_name": "Github" }
knownfailure
{ "pile_set_name": "Github" }
// SPDX-License-Identifier: GPL-2.0 /* * Handling of different ABIs (personalities). * * We group personalities into execution domains which have their * own handlers for kernel entry points, signal mapping, etc... * * 2001-05-06 Complete rewrite, Christoph Hellwig (hch@infradead.org) */ #include <linux/init.h...
{ "pile_set_name": "Github" }
"""Migration for the Submitty system.""" import re import os import pwd import shutil from pathlib import Path def up(config): """ Run up migration. :param config: Object holding configuration details about Submitty :type config: migrator.config.Config """ # User 'postgres' uid and gid are n...
{ "pile_set_name": "Github" }
// Only apply the blueprint form styles to forms with // a class of "bp". This makes it easier to style // forms from scratch if you need to. form.bp { @include blueprint-form; }
{ "pile_set_name": "Github" }
<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>netcoreapp2.0</TargetFramework> </PropertyGroup> <ItemGroup> <Folder Include="wwwroot\" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.6" /> <PackageReference Includ...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_162) on Tue Mar 24 11:10:01 PDT 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.fasterxml...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_162) on Sat Apr 25 19:12:33 PDT 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package com.fasterx...
{ "pile_set_name": "Github" }
/* * sha1.c * * Description: * This file implements the Secure Hashing Algorithm 1 as * defined in FIPS PUB 180-1 published April 17, 1995. * * The SHA-1, produces a 160-bit message digest for a given * data stream. It should take about 2**n steps to find a * message with the same d...
{ "pile_set_name": "Github" }
/** * Mupen64PlusAE, an N64 emulator for the Android platform * * Copyright (C) 2013 Paul Lamb * * This file is part of Mupen64PlusAE. * * Mupen64PlusAE 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,...
{ "pile_set_name": "Github" }
// Copyright 2006 The Closure Library Authors. 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 requ...
{ "pile_set_name": "Github" }
// RUN: %empty-directory(%t) // RUN: %target-swift-frontend -emit-module %S/Inputs/lookup_moduleD.swift -module-name D -o %t -I %t // RUN: %target-swift-frontend -emit-module %S/Inputs/lookup_moduleC.swift -module-name C -o %t -I %t // RUN: %target-swift-frontend -emit-module %S/Inputs/lookup_moduleB.swift -module-nam...
{ "pile_set_name": "Github" }
%%%----------------------------------------------------------------------------- %%% @copyright (C) 2018-2020, 2600Hz %%% @doc API for retrieving attachment handlers errors. %%% %%% 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 thi...
{ "pile_set_name": "Github" }
# This file is part of NIT ( http://www.nitlanguage.org ). # # 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...
{ "pile_set_name": "Github" }
# # DO NOT MODIFY!!!! # This file is automatically generated by Racc 1.4.16 # from Racc grammar file "". # require 'racc/parser.rb' module TwoWaySQL class Parser < Racc::Parser module_eval(<<'...end twowaysql.y/module_eval...', 'twowaysql.y', 148) require 'strscan' def initialize(opts={}) opts = { :debug =>...
{ "pile_set_name": "Github" }
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace ...
{ "pile_set_name": "Github" }
/* ------------------------------------------------------------------------- */ /* "inform" : The top level of Inform: switches, pathnames, filenaming */ /* conventions, ICL (Inform Command Line) files, main */ /* */ ...
{ "pile_set_name": "Github" }
// Microsoft Visual C++ generated resource script. // #include "resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 2 resource. // // #include "afxres.h" #include "WinResrc.h" #define IDC_STATIC -1 ...
{ "pile_set_name": "Github" }