text stringlengths 2 99.9k | meta dict |
|---|---|
Block element characteristics
The difference between `visibility:hidden` and `display:none`
Disable resizable property of `textarea`
Use `:not()` to apply/unapply styles
Styling elements using `::before` and `::after` | {
"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 ssh
import (
"bytes"
"errors"
"fmt"
"io"
)
type authResult int
const (
authFailure authResult = iota
authPartialSuccess
authSuccess
)
// clie... | {
"pile_set_name": "Github"
} |
//===- llvm/Support/FileUtilities.h - File System Utilities -----*- 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"
} |
{% from 'flagit/includes/macros.html' import date_by_user with context %}
<h3 class="sumo-page-intro">{{ _('Title:') }}</h3>
<p class="title">{{ object.content_object.thread.title }}</p>
<h3 class="sumo-page-intro">{{ _('Content:') }}</h3>
<div class="content">{{ object.content_object.content_parsed }}</div>
<h3 class=... | {
"pile_set_name": "Github"
} |
/*
Copyright The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, softw... | {
"pile_set_name": "Github"
} |
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: grafanadashboards.integreatly.org
spec:
group: integreatly.org
names:
kind: GrafanaDashboard
listKind: GrafanaDashboardList
plural: grafanadashboards
singular: grafanadashboard
scope: Namespaced
subresource... | {
"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"); ... | {
"pile_set_name": "Github"
} |
:vars {
color1: rgb(0, 255, 0, 0.8);
}
.root {
color: value(color1);
}
| {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace TX.Framework.WindowUI.Controls
{
[ToolboxBitmap(ty... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2019 Oracle and/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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unle... | {
"pile_set_name": "Github"
} |
"""This script contains classes to help export nif header information."""
# ***** BEGIN LICENSE BLOCK *****
#
# Copyright © 2016, NIF File Format Library and Tools contributors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "2.0">
</Bucket>
| {
"pile_set_name": "Github"
} |
/*
* DRAM/SDRAM initialization - alter with care
* This file is intended to be included from other assembler files
*
* Note: This file may not modify r8 or r9 because they are used to
* carry information from the decompresser to the kernel
*
* Copyright (C) 2000-2007 Axis Communications AB
*
* Authors: Mikael... | {
"pile_set_name": "Github"
} |
# This file contains a list of people who've made non-trivial
# contribution to the Google C++ Testing Framework project. People
# who commit code to the project are encouraged to add their names
# here. Please keep the list sorted by first names.
Ajay Joshi <jaj@google.com>
Balázs Dán <balazs.dan@gmail.com>
Bharat ... | {
"pile_set_name": "Github"
} |
config VIDEO_TLG2300
tristate "Telegent TLG2300 USB video capture support"
depends on VIDEO_DEV && I2C && SND && DVB_CORE
select VIDEO_TUNER
select VIDEO_TVEEPROM
depends on RC_CORE
select VIDEOBUF_VMALLOC
select SND_PCM
select VIDEOBUF_DVB
---help---
This is a video4linux driver for Telegent tlg2300 based... | {
"pile_set_name": "Github"
} |
{
key: value, // with comment
key2: value,
'key-3': value,
key4: false ? undefined : true
}
| {
"pile_set_name": "Github"
} |
div
// es5 only in pug
.b-poll
.poll
.name= model.name
.text!= model.text_html
.poll-variants
for poll_variant in model.variants
if can_vote
.poll-variant.pending
label.b-radio
input(
name='poll_' + model.id
type=... | {
"pile_set_name": "Github"
} |
//
// Panels
// --------------------------------------------------
// Base class
.panel {
margin-bottom: @line-height-computed;
background-color: @panel-bg;
border: 1px solid transparent;
border-radius: @panel-border-radius;
.box-shadow(0 1px 1px rgba(0,0,0,.05));
}
// Panel contents
.panel-body {
paddin... | {
"pile_set_name": "Github"
} |
//
// ViewController.swift
// Demo
//
// Created by CHEN Xian’an on 1/16/16.
// Copyright © 2016 lazyapps. All rights reserved.
//
import UIKit
import MenuItemKit
class ViewController: UIViewController {
@IBOutlet var button: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
button.addTar... | {
"pile_set_name": "Github"
} |
@available(watchOS 2.0, *)
class CNContactRelation : NSObject, NSCopying, NSSecureCoding {
init(name name: String)
var name: String { get }
@available(watchOS 2.0, *)
func copy(with zone: NSZone = nil) -> AnyObject
@available(watchOS 2.0, *)
class func supportsSecureCoding() -> Bool
@available(watchOS 2.... | {
"pile_set_name": "Github"
} |
#include <iostream>
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <string.h>
#include <libgo/libgo.h>
#include <atomic>
#include <poll.h>
#include <fcntl.h>
using namespace std;
#define OUT(x) cout << #x << " = " << x << endl
#define O(x) cout << x << endl
#define ASSE... | {
"pile_set_name": "Github"
} |
namespace Models
{
public sealed class Country : ICountry
{
public string Name { get; set; }
public string ImagePath { get; set; }
public override string ToString() => Name;
}
}
| {
"pile_set_name": "Github"
} |
category:刑事
title:保安砍死同事后安然入睡 两次精神鉴定结果不一
content:今年1月,合肥市政务区水墨兰亭小区发生一起惨案,一名保安砍杀同事之后还安然入睡。记者昨日获悉,该案已经由公安机关移送至检察机关审查起诉。调查显示,沙某之所以砍死同事,是因为在向该同事借钱时被拒继而发生纠纷。案发当天凌晨1时许,居民听到两人居
今年1月,合肥市政务区水墨兰亭小区发生一起惨案,一名保安砍杀同事之后还安然入睡。记者昨日获悉,该案已经由公安机关移送至检察机关审查起诉。
调查显示,沙某之所以砍死同事,是因为在向该同事借钱时被拒继而发生纠纷。案发当天凌晨1时许,居民听到两人居住的员工宿舍传出争执声,持续近2个小时。当天17时许,居民... | {
"pile_set_name": "Github"
} |
GAMEDEF
limit
numPlayers = 3
numRounds = 1
blind = 1 1 1
raiseSize = 1
firstPlayer = 1
maxRaises = 1
numSuits = 1
numRanks = 4
numHoleCards = 1
numBoardCards = 0
END GAMEDEF
| {
"pile_set_name": "Github"
} |
#ifndef EMPTY_GLU
#define EMPTY_GLU
inline void gluOrtho2D( int a,int b, int c ,int d ) { } ;
inline void gluLookAt(
GLfloat a,GLfloat b, GLfloat c,
GLfloat d,GLfloat e, GLfloat f,
GLfloat g,GLfloat h, GLfloat i ) { };
#define GLU_FILL 1
#define GLU_SMOOTH 2
typedef int GLUquadric;
typedef GLUquadric ... | {
"pile_set_name": "Github"
} |
## This file is part of Scapy
## See http://www.secdev.org/projects/scapy for more informations
## Copyright (C) Philippe Biondi <phil@secdev.org>
## This program is published under a GPLv2 license
"""
Packet holding data in Abstract Syntax Notation (ASN.1).
"""
from packet import *
class ASN1_Packet(Packet):
AS... | {
"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"
} |
{
"cells": [
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"请输入一个符号:*\n",
"请输入行数:5\n",
" * \n",
" * * \n",
" * * * \n",
" * * * * \n",... | {
"pile_set_name": "Github"
} |
.smile.icon i {
position: absolute;
left: 3px;
top: 3px;
width: 8px;
height: 8px;
border-radius: 50%;
border-top: solid 1px transparent;
border-bottom: solid 1px currentColor;
border-left: solid 1px transparent;
border-right: solid 1px transparent;
}
| {
"pile_set_name": "Github"
} |
; <<>> DiG 9.9.5-3ubuntu0.8-Ubuntu <<>> AXFR lexus. @k.gmoregistry.net. +nocomments +nocmd +noquestion +nostats +time=15
;; global options: +cmd
; Transfer failed.
| {
"pile_set_name": "Github"
} |
<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by Sales... | {
"pile_set_name": "Github"
} |
/*
This is un example howto use Touch Intrrerupts
The bigger the threshold, the more sensible is the touch
*/
int threshold = 40;
bool touch1detected = false;
bool touch2detected = false;
void gotTouch1(){
touch1detected = true;
}
void gotTouch2(){
touch2detected = true;
}
void setup() {
Serial.begin(115200);
... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.recoveryservices.backup.v2017_07_01;
import java... | {
"pile_set_name": "Github"
} |
7e69ff9d5485e45958612d2b489d550e9aa23134
| {
"pile_set_name": "Github"
} |
@model PickupPointModel
<div asp-validation-summary="All"></div>
<input asp-for="Id" type="hidden" />
<input id="active-menu-item" type="hidden" value="/@Constants.AreaAdmin/Shipping/PickupPoints" />
<div class="form-horizontal">
<div class="form-body">
<div class="form-group">
<admin-label asp... | {
"pile_set_name": "Github"
} |
/*
Copyright (C) 2010 Srivats P.
This file is part of "Ostinato"
This 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 dist... | {
"pile_set_name": "Github"
} |
#import <Foundation/Foundation.h>
@interface PodsDummy_SDWebImage : NSObject
@end
@implementation PodsDummy_SDWebImage
@end
| {
"pile_set_name": "Github"
} |
<?php
/**
* PemFTP - An Ftp implementation in pure PHP
*
* @package PemFTP
* @since 2.5.0
*
* @version 1.0
* @copyright Alexey Dotsenko
* @author Alexey Dotsenko
* @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html
* @license LGPL https://opensource.org/licenses/lgpl-license.html
*... | {
"pile_set_name": "Github"
} |
# vue hello-world#
## 环境前提 ##
安装vue-cli
npm install --global vue-cli
## 创建应用 ##
vue init webpack my-app
## 启动应用 ##
vue run dev
## 打包应用 ##
vue run build
## 问题处理 ##
index页面打开空白
config 下index.js
assetsPublicPath:'/' 替换为 assetsPublicPath:'./'
参考链接 [https://www.cnblogs.com/xtjatswc/p/10306567... | {
"pile_set_name": "Github"
} |
package com.zoe.weiya.model;
import java.io.Serializable;
/**
* Created by chenghui on 2017/1/10.
*/
public class Message extends LuckyUser implements Serializable {
private String message;
private ZoeDate createTime;
public String getMessage() {
return message;
}
public void setMessag... | {
"pile_set_name": "Github"
} |
'use strict'
angular.module '<%= appname %>'
.filter '<%= compname %>', ->
(input) ->
'<%= compname %> filter: ' + input
| {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2014-2020 Bjoern Kimminich.
* SPDX-License-Identifier: MIT
*/
const chai = require('chai')
const sinonChai = require('sinon-chai')
const expect = chai.expect
const net = require('net')
chai.use(sinonChai)
const semver = require('semver')
const { checkIfRunningOnSupportedNodeVersion, checkIfPortI... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# vim: sw=4:ts=4:expandtab
"""
pipe2py.modules.pipefetchpage
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
http://pipes.yahoo.com/pipes/docs?doc=sources#FetchPage
"""
# Author: Gerrit Riessen, gerrit.riessen@open-source-consultants.de
# Copyright (C) 2011 Gerrit Riessen
# This code is licensed und... | {
"pile_set_name": "Github"
} |
/***********************************************************************
* Software License Agreement (BSD License)
*
* Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved.
* Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved.
*
* THE BSD LICENSE
*
* Redistribution an... | {
"pile_set_name": "Github"
} |
{
"name": "BBC News پښتو",
"short_name": "BBC News پښتو",
"Scope": "/pashto/",
"background_color": "#b80000",
"display": "standalone",
"theme_color": "#b80000",
"icons": [
{
"src": "https://news.files.bbci.co.uk/include/articles/public/pashto/images/icons/icon-72x72.png",
"sizes": "72x72",... | {
"pile_set_name": "Github"
} |
##
# This code was generated by
# \ / _ _ _| _ _
# | (_)\/(_)(_|\/| |(/_ v1.0.0
# / /
#
# frozen_string_literal: true
module Twilio
module REST
class Pricing < Domain
class V1 < Version
class VoiceList < ListResource
class CountryList < ListResource
##
... | {
"pile_set_name": "Github"
} |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation |
--------... | {
"pile_set_name": "Github"
} |
// Copyright 2008 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of ... | {
"pile_set_name": "Github"
} |
Connection: keep-alive
Content-Length: 0
Date: Fri, 06 Oct 2017 09:58:39 GMT
Server: JBoss-EAP/7
X-Powered-By: Undertow/1
| {
"pile_set_name": "Github"
} |
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using AutoLotDAL.Models.Base;
namespace AutoLotDAL.Models
{
[Table("Inventory")]
public partial class Inventory : EntityBase
{
[StringLength(50)]
public string ... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0-only
/*
* AMD Cryptographic Coprocessor (CCP) AES CMAC crypto API support
*
* Copyright (C) 2013,2018 Advanced Micro Devices, Inc.
*
* Author: Tom Lendacky <thomas.lendacky@amd.com>
*/
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/delay.h>
#include <linux/... | {
"pile_set_name": "Github"
} |
package test;
import java.util.List;
import com.mashibing.etl.util.IPSeekerExt;
import com.mashibing.etl.util.IPSeekerExt.RegionInfo;
public class TestIPSeekerExt {
public static void main(String[] args) {
IPSeekerExt ipSeekerExt = new IPSeekerExt();
RegionInfo info = ipSeekerExt.analyticIp("114.114.114.114");... | {
"pile_set_name": "Github"
} |
{
"name": "colors",
"description": "get colors in your node.js console like what",
"version": "0.6.2",
"author": {
"name": "Marak Squires"
},
"homepage": "https://github.com/Marak/colors.js",
"bugs": {
"url": "https://github.com/Marak/colors.js/issues"
},
"keywords": [
"ansi",
"termina... | {
"pile_set_name": "Github"
} |
# This is the official list of GoGo authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS file, which
# lists people. For example, employees are listed in CONTRIBUTORS,
# but not in AUTHORS, because the employer holds the copyright.
# Names should be added to this file as one of
# Organiza... | {
"pile_set_name": "Github"
} |
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Libxt(AutotoolsPackage, XorgPackage):
"""libXt - X Toolkit Intrinsics library."""
hom... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=========================================... | {
"pile_set_name": "Github"
} |
-- | A fragment profile determines what features a program can use.
module DDC.Core.Fragment.Profile
( Profile (..)
, mapFeaturesOfProfile
, zeroProfile
, Features(..)
, zeroFeatures
, setFeature)
where
import DDC.Core.Exp.Literal
import DDC.Core.Fragment.Feature
import... | {
"pile_set_name": "Github"
} |
/*
Copyright 2019 The Jetstack cert-manager contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... | {
"pile_set_name": "Github"
} |
// Go support for Protocol Buffers - Google's data interchange format
//
// Copyright 2011 The Go Authors. All rights reserved.
// https://github.com/golang/protobuf
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met... | {
"pile_set_name": "Github"
} |
#!/bin/bash
APPLICATION_NAME=external_petsc_solver
# If $METHOD is not set, use opt
if [ -z $METHOD ]; then
export METHOD=opt
fi
if [ -e ./unit/$APPLICATION_NAME-unit-$METHOD ]
then
./unit/$APPLICATION_NAME-unit-$METHOD
elif [ -e ./$APPLICATION_NAME-unit-$METHOD ]
then
./$APPLICATION_NAME-unit-$METHOD
else
ec... | {
"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"
} |
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_test(
name = "go_default_test",
srcs = ["ssh_test.go"],
embed = [":go_default_library"],
deps = [
"//staging/src/k8s.io/apimachinery/pkg/util/clock:go_default... | {
"pile_set_name": "Github"
} |
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { Link } from 'gatsby'
import { Menu } from 'semantic-ui-react'
class MenuLink extends Component {
render() {
const { children, strict, to, ...rest } = this.props
return (
<Menu.Item
color="red"
as={Link... | {
"pile_set_name": "Github"
} |
#region License
// Copyright (c) 2013, ClearCanvas Inc.
// All rights reserved.
// http://www.clearcanvas.ca
//
// This file is part of the ClearCanvas RIS/PACS open source project.
//
// The ClearCanvas RIS/PACS open source project is free software: you can
// redistribute it and/or modify it under the terms... | {
"pile_set_name": "Github"
} |
from __future__ import unicode_literals
from django import http
from django.contrib.contenttypes.models import ContentType
from django.contrib.sites.models import Site, get_current_site
from django.core.exceptions import ObjectDoesNotExist
from django.utils.translation import ugettext as _
def shortcut(request, conte... | {
"pile_set_name": "Github"
} |
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : continousbuildconf.h
//
// ------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ca_ES" sourcelanguage="en_US">
<context>
<name>AppsListModel</name>
<message>
<location filename="../apps/appslistmodel.cpp" line="70"/>
<source>Application</source>
<translation type="unfinished"></translat... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2018-2020 "Graph Foundation"
* Graph Foundation, Inc. [https://graphfoundation.org]
*
* Copyright (c) 2002-2020 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of ONgDB.
*
* ONgDB is free software: you can redistribute it and/or modify
* it under the terms of the GNU Gen... | {
"pile_set_name": "Github"
} |
package net.finmath.equities.models;
import java.time.LocalDate;
import java.util.ArrayList;
import net.finmath.equities.marketdata.VolatilityPoint;
/**
* This class implements the volatility interfaces for a flat volatility surface.
*
* @author Andreas Grotz
*/
public class FlatVolatilitySurface implements Vo... | {
"pile_set_name": "Github"
} |
<!--
Worksheet AR-by-row Template
All data is available using the worksheet dictionary.
Example for accessing and displaying data:
<p tal:content="python:worksheet['laboratory']['title']"></p>
or
<p tal:content="worksheet/laboratory/title"></p>
See README.txt for further details about the... | {
"pile_set_name": "Github"
} |
//**********************************************************************`
//* This is an include file generated by EtwPlusTool. *`
//* *`
//* Copyright (c) Microsoft Corporation. All Rights Reserved. *`
//****************... | {
"pile_set_name": "Github"
} |
package images
import (
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
// GetResult is the response from a Get operation. Call its Extract method to
// interpret it as an Image.
type GetResult struct {
gophercloud.Result
}
// DeleteResult is the result from a Delete operati... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2006-2020 Istituto Italiano di Tecnologia (IIT)
* All rights reserved.
*
* This software may be modified and distributed under the terms of the
* BSD-3-Clause license. See the accompanying LICENSE file for details.
*/
// This is an automatically generated file.
// Generated from the following... | {
"pile_set_name": "Github"
} |
/*
Copyright 2014 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"
} |
(class {
;
;
;
;
});
| {
"pile_set_name": "Github"
} |
package net.osmand.aidlapi.contextmenu;
parcelable UpdateContextMenuButtonsParams; | {
"pile_set_name": "Github"
} |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... | {
"pile_set_name": "Github"
} |
fails(not implemented, jruby/jruby#6149):TracePoint#eval_script is the evald source code
| {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
import pandas as pd
# ==========导入上证指数的原始数据
# 注意:这里请填写数据文件在您电脑中的路径,并注意路径中斜杠的方向
index_data = pd.read_csv('index data/sh600000.csv', parse_dates=['date'])
# 保留这几个需要的字段:'date', 'high', 'low', 'close', 'change'
index_data = index_data[['date', 'high', 'low', 'close', 'change']]
# 对数据按照【date】交易日期从小到... | {
"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>en</string>
<key>CFBundleDisplayName</key>
<string>GoogleSigninSampleApp</string>
<key>CFBundleExec... | {
"pile_set_name": "Github"
} |
// Copyright 2015 Eivind Vegsundvåg
//
// 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 i... | {
"pile_set_name": "Github"
} |
StartChar: Cacute.sq
Encoding: 1114197 -1 686
Width: 1024
VWidth: 0
Flags: W
HStem: -16 240<494.678 955.608> 1031 21G<885.5 930> 1056 240<493.97 925.892> 1408 21G<512 744.844>
VStem: 112 256<369.394 908.636>
LayerCount: 5
Back
Fore
SplineSet
653 1296 m 4
750 1296 844 1286 930 1271 c 5
930 1031 l 5
841 1046 741 1056 ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2016-present Open Networking Foundation
*
* 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 appli... | {
"pile_set_name": "Github"
} |
:root {
// Custom variable values only support SassScript inside `#{}`.
@each $color, $value in $colors {
--#{$color}: #{$value};
}
@each $color, $value in $theme-colors {
--#{$color}: #{$value};
}
@each $bp, $value in $grid-breakpoints {
--breakpoint-#{$bp}: #{$value};
}
// Use `inspect`... | {
"pile_set_name": "Github"
} |
import React from 'react';
import Timer from 'material-ui/svg-icons/image/timer';
import { amber800, red500 } from 'material-ui/styles/colors';
const DueDate = ({ due }) => {
const colors = {
tomorrow: amber800,
today: red500,
};
const styles = {
tomorrow: {
color: amber800,
},
today: {... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2008-2017 Katherine Flavel
*
* See LICENCE for the full copyright terms.
*/
#include <assert.h>
#include <stdlib.h>
#include <limits.h>
#include <ctype.h>
#include <adt/set.h>
#include <fsm/fsm.h>
#include <fsm/cost.h>
#include "../internal.h"
static int
isother(int c)
{
(void) c;
return 1;
}
... | {
"pile_set_name": "Github"
} |
'use strict';
var $export = require('./_export');
var $reduce = require('./_array-reduce');
$export($export.P + $export.F * !require('./_strict-method')([].reduceRight, true), 'Array', {
// 22.1.3.19 / 15.4.4.22 Array.prototype.reduceRight(callbackfn [, initialValue])
reduceRight: function reduceRight(callbackfn /... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<title>WebSocket Echo Test</title>
<script type="text/javascript" src="/Js/echotest.js">
</script>
</head>
<body>
<h2>WebSocket Echo Test</h2>
<div id="output"></div>
</body>
</html>
| {
"pile_set_name": "Github"
} |
package godo
import (
"fmt"
"github.com/digitalocean/godo/context"
)
const floatingBasePath = "v2/floating_ips"
// FloatingIPsService is an interface for interfacing with the floating IPs
// endpoints of the Digital Ocean API.
// See: https://developers.digitalocean.com/documentation/v2#floating-ips
type Floating... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2009-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NETBASE_H
#define BITCOIN_NETBASE_H
#if defined(HAVE_CONFIG_H)
#include "config/bitcoin-config.h"
#endif
#i... | {
"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"
} |
HTTP/1.0 200 Ok
Server: CppCMS-Embedded/1.2.1
Connection: close
Content-Type: text/plain; charset=utf-8
X-Powered-By: CppCMS/1.2.1
CONTENT_LENGTH:11
CONTENT_TYPE:application/x-www-form-urlencoded; charset=utf-8
GATEWAY_INTERFACE:CGI/1.0
PATH_INFO:
REMOTE_ADDR:127.0.0.1
REMOTE_HOST:127.0.0.1
REQUEST_METHOD:POST
S... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Workflow.Activities;
using Composite.C1Console.Actions;
using Composite.Data;
using Composite.Data.Types;
using Composite.Core.Extensions;
using Composite.Core.Types;
using Composite.C1Console.Workflow;
namespace Composite.Plu... | {
"pile_set_name": "Github"
} |
extern "C" {
#include <ccv.h>
#include <ccv_internal.h>
#include <nnc/ccv_nnc.h>
#include <nnc/ccv_nnc_easy.h>
#include <nnc/ccv_nnc_internal.h>
}
#include <nnc/gpu/ccv_nnc_compat.h>
#if defined(HAVE_CUDA) && defined(HAVE_CUB)
#include <cub/util_type.cuh>
#include <cub/device/device_radix_sort.cuh>
#include <cub/thre... | {
"pile_set_name": "Github"
} |
<html>
<head>
<title>Canvas - Single Image</title>
<style>
#sprite-cache {
visibility: hidden;
}
</style>
<script type="text/javascript" src="bench.js"></script>
<script type="text/javascript" src="sprites.js"></script>
<script type="text/javascript">
window.onload = init;
var NUM_SPRITES = 2000;
var canvas;
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.
package internal
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"math"
"mime"
"net/http"
"net/url"
"strconv"
"strings"
"sync"
... | {
"pile_set_name": "Github"
} |
/**
* This is a basic phantomJS script that will be used together
* with the xssValidator burp extender.
*
* This script launches a web server that listens by default
* on 127.0.0.1:8093. The server listens for POST requests with
* http-response data.
*
* http-response should contain base64 encoded HTTP respo... | {
"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"
} |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2011 Bucknell University
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program ... | {
"pile_set_name": "Github"
} |
--TEST--
Test strftime() function : usage variation - Passing month related format strings to format argument.
--FILE--
<?php
/* Prototype : string strftime(string format [, int timestamp])
* Description: Format a local time/date according to locale settings
* Source code: ext/date/php_date.c
* Alias to functions:
... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.