text stringlengths 2 99.9k | meta dict |
|---|---|
hydra.Prms-testRequirement = "Test to verify, dataExtractor feature when nodes are down with OOME.";
hydra.Prms-testDescription = "The test starts a normal cluster ,creates tables and populates it,
at the same time, submit a job that introduces OOME in all of the server nodes.
Then the cluster is stopped and restar... | {
"pile_set_name": "Github"
} |
# DVB-T Collserola (Barcelona)
[BTV, TV Badalona, TV L'Hospitalet, TV del Besòs, COM Ràdio, Ràdio Ciutat Badalona, Ràdio L'Hospitalet]
DELIVERY_SYSTEM = DVBT
FREQUENCY = 514000000
BANDWIDTH_HZ = 8000000
CODE_RATE_HP = 2/3
CODE_RATE_LP = NONE
MODULATION = QAM/64
TRANSMISSION_MODE = 8K
GUARD_INTERVAL = 1/4
HIERA... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
@class CContact, NSArray, SessionSelectController;
@protocol SessionSelectControllerDelegate <NSObject>
@optional
- (void)OnSelectSessionCancel:(SessionSelec... | {
"pile_set_name": "Github"
} |
import material/tests/material_test_utils;
main() {
xVisible = make(false);
yVisible = make(false);
scrollY = make(0.);
scrollPosition = make(zeroPoint);
MScroll(TFixed(600., 600.), TFillXY(), [MScrollbarsVisible(xVisible, yVisible), MScrollPosition(scrollPosition)])
|> (\f -> MConstruct([makeSubscribe(xVisible... | {
"pile_set_name": "Github"
} |
## Scala and Java API
GeoSpark Scala and Java API: [http://www.public.asu.edu/~jiayu2/geospark/javadoc/](http://www.public.asu.edu/~jiayu2/geospark/javadoc/)
The "SNAPSHOT" folder has the API for the latest GeoSpark SNAPSHOT version.
Note: Scala can call Java APIs seamlessly. That means GeoSpark Scala users use the s... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of PHPExifTool.
*
* (c) 2012 Romain Neutron <imprec@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPExiftool\Driver\Tag\DICOM;
use JMS\Serializer\Annotation\ExclusionPolicy;
u... | {
"pile_set_name": "Github"
} |
/**********************************************************************
* Copyright (c) 2013, 2014 Pieter Wuille *
* Distributed under the MIT software license, see the accompanying *
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
*******************************... | {
"pile_set_name": "Github"
} |
@{
ViewBag.Title = "Contact";
}
<div class="l-main-content">
<h2>@ViewBag.Title</h2>
@ViewBag.Body
</div>
@section Scripts {
<script>
!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElem... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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.
#include "chrome/browser/android/offline_pages/offline_page_utils.h"
#include <stdint.h>
#include <utility>
#include "base/callback.h"
#include "base/co... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE knimeNode PUBLIC "-//UNIKN//DTD KNIME Node 3.0//EN" "http://www.knime.org/Node.dtd">
<knimeNode icon="icon.png" type="Other">
<name>My own name</name>
<shortDescription>My own short description</shortDescription>
<fullDescription>
<intro>My own intr... | {
"pile_set_name": "Github"
} |
{
"timeout": 120,
"tool": "nopen",
"binpath": ""
}
| {
"pile_set_name": "Github"
} |
/* Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* http://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
* http://www.boost.org/LICENSE_1_0.txt
* https://github.com/dlang/dmd/blob/master/src/dmd/root/filename.h
*/
#pragma o... | {
"pile_set_name": "Github"
} |
# Delegates to `succ` on sucecss or to `fail` on error
# ex: Thing.load 123, iferr cb, (thing) -> ...
iferr = (fail, succ) -> (err, a...) ->
if err? then fail err
else succ? a...
# Like iferr, but also catches errors thrown from `succ` and passes to `fail`
tiferr = (fail, succ) -> iferr fail, (a...) ->
try succ ... | {
"pile_set_name": "Github"
} |
<?php
/**
* Process an arbitrary SQL query - tricky! The main problem is that
* unless we implement a full SQL parser, there's no way of knowing
* how many SQL statements have been strung together with semi-colons
* @param $_SESSION['sqlquery'] The SQL query string to execute
*
* $Id: sql.php,v 1.43 2008... | {
"pile_set_name": "Github"
} |
dir-fn
=============
| **(dir-fn ns)**
返回一个有序序列,该序列包括给定命名空间(ns)的公共Var对象。
::
user=> (require 'clojure.repl 'clojure.string)
user=> (pprint (clojure.repl/dir-fn 'clojure.string))
(blank?
capitalize
escape
join
lower-case
replace
replace-first
reverse
split
... | {
"pile_set_name": "Github"
} |
#====================================================================
#
# Winim - Nim's Windows API Module
# (c) Copyright 2016-2020 Ward
#
#====================================================================
import winimbase
import windef
import winbase
import wingdi
#include <wincon.h>... | {
"pile_set_name": "Github"
} |
//
// Created by Terence on 2018/9/6.
//
#include <lib/cat_mpsc_queue.h>
#include <lib/cat_thread.h>
#define UT_MPSC_THREAD_NUM 32
#define UT_MPSC_PER_THREAD 5000
#define UT_MPSC_CAPACITY 10000
CatMPSCQueue *q;
PTHREAD produce(PVOID para) {
for (int i = 0; i < UT_MPSC_PER_THREAD; i++) {
auto * data = (i... | {
"pile_set_name": "Github"
} |
---
layout: post
title: 【转载】穷人心理学:社会不平等如何影响你的人生
categories: Archive
date: 2019-11-16
tags: 社会不平等
description: "有时候,我们感觉贫困像是一个强有力的磁场或者黑洞,一旦掉入贫困的陷阱,我们便很难摆脱贫困?这是个人的特质造成的,还是环境、制度或结构使然?"
---
原文来自微信公众号「孙立平社会观察」,作者熊易寒:~~[穷人心理学:社会不平等如何影响你的人生](http://206.189.252.32:8081/gh_582a6f5f933e_2019-11-12_2247487659_yGLDIE0V6t.y... | {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>The Ogg Skeleton Metadata Bitstream</title>
<style type="text/css">
body {
margin: 0 18px 0 18px;
padding-bottom: ... | {
"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"
} |
<?php
namespace devilbox;
/**
* Log devilbox intranet errors.
* If logging is not possible, it will generate emails
* that are handled by mail.php
*/
/**
* This is going to log into the PHP docker's /tmp directory
*/
class Logger
{
private $_record_separator = "====================\n";
/*******************... | {
"pile_set_name": "Github"
} |
// CodeContracts
//
// Copyright (c) Microsoft Corporation
//
// All rights reserved.
//
// MIT License
//
// 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 wit... | {
"pile_set_name": "Github"
} |
/*
* This file is part of the X10 project (http://x10-lang.org).
*
* This file is licensed to You under the Eclipse Public License (EPL);
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.opensource.org/licenses/eclipse-1.0.php
*
*... | {
"pile_set_name": "Github"
} |
/**
* @author Adam (charrondev) Charron <adam.c@vanillaforums.com>
* @copyright 2009-2019 Vanilla Forums Inc.
* @license GPL-2.0-only
*/
import Formatter from "@rich-editor/quill/Formatter";
import Quill, { RangeStatic, DeltaOperation } from "quill/core";
import { expect } from "chai";
import OpUtils, { inlineForm... | {
"pile_set_name": "Github"
} |
<annotation>
<folder>VOC2007</folder>
<filename>000829.jpg</filename>
<source>
<database>The VOC2007 Database</database>
<annotation>PASCAL VOC2007</annotation>
<image>flickr</image>
<flickrid>NULL</flickrid>
</source>
<owner>
<flickrid>NULL</flickrid>
<name>hunterlew</name>
</owner>
<size>
<width>... | {
"pile_set_name": "Github"
} |
// the configured options generated by cmake
// please don't modify it manually unless you know what you are doing
/* #undef BEHAVIAC_RELEASE_CUSTOMIZED */
// if BEHAVIAC_VERSION_MODE is set 'ForeUseRelease', BEHAVIAC_RELEASE will be defined as 1,
// if BEHAVIAC_VERSION_MODE is set 'Default', BEHAVIAC_RELEASE_CUSTOM... | {
"pile_set_name": "Github"
} |
selflink@1[.]2[.]3 test/fixtures/selflink
├── @scope/y@1[.]2[.]3 test/fixtures/selflink/node_modules/@scope/y
├─┬ @scope/z@1[.]2[.]3 test/fixtures/selflink/node_modules/@scope/z
│ └── glob@4[.]0[.]5 test/fixtures/selflink/node_modules/foo/node_modules/glob [(]symlink[)]
└─┬ foo@1[.]2[.]3 test/fixtures/selflink/node_mod... | {
"pile_set_name": "Github"
} |
Shader "Custom/170-179/176_Alpha"
{
Properties
{
_Alpha ("Alpha", Range(0, 1)) = 1
}
SubShader
{
CGPROGRAM
#pragma surface surf Lambert alpha
fixed _Alpha;
struct Input
{
fixed _;
};
void surf... | {
"pile_set_name": "Github"
} |
# this file contains generic properties for local development
# which are not specific to the docker-compose environment ( i.e. hostnames, ports, etc )
WHISK_VERSION_NAME="local"
CONFIG_whisk_info_date="09/01/2016"
CONFIG_whisk_info_buildNo="latest"
WHISK_LOGS_DIR="/logs"
SERVICE_CHECK_HTTP=/ping
SERVICE_CHECK_TIMEOU... | {
"pile_set_name": "Github"
} |
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
height: 36px;
}
.e-popup.e-ddl .e-dropdownbase {
min-height: 26px;
}
.e-ddl.e-popup {
border: 0;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
margin-top: 1px;
}
.e-ddl.e-popup .e-content.e-nodata {
background-color: #000;
}
.e-ddl.e-popup .e-dropdownb... | {
"pile_set_name": "Github"
} |
set(MOVEIT_LIB_NAME moveit_planning_scene_rviz_plugin)
add_library(${MOVEIT_LIB_NAME}_core
src/planning_scene_display.cpp
include/moveit/planning_scene_rviz_plugin/planning_scene_display.h)
set_target_properties(${MOVEIT_LIB_NAME}_core PROPERTIES VERSION "${${PROJECT_NAME}_VERSION}")
target_link_libraries(${MOVEIT... | {
"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"
"net/http"
)
// HTTPClient is the context key to use with golang.org/x/net/context's
// WithValue function to associate ... | {
"pile_set_name": "Github"
} |
var baseSetData = require('./_baseSetData'),
createBind = require('./_createBind'),
createCurry = require('./_createCurry'),
createHybrid = require('./_createHybrid'),
createPartial = require('./_createPartial'),
getData = require('./_getData'),
mergeData = require('./_mergeData'),
setData =... | {
"pile_set_name": "Github"
} |
#ifndef APM_H
#define APM_H
#include "qemu-common.h"
#include "hw/hw.h"
#include "exec/memory.h"
#define APM_CNT_IOPORT 0xb2
#define ACPI_PORT_SMI_CMD APM_CNT_IOPORT
typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg);
typedef struct APMState {
uint8_t apmc;
uint8_t apms;
apm_ctrl_changed_t ca... | {
"pile_set_name": "Github"
} |
# http-project
> A Vue.js project
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests
npm run unit... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2005-2006 Dan Marsden
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"
} |
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models.ServerViewModels
{
public class MaintenanceViewModel
{
[Display(Name = "Change domain")]
public string DNSDomain { get; set; }
public bool CanUseSSH { get; internal set; }
}
}
| {
"pile_set_name": "Github"
} |
(module PushButton_12x12mm_THT_GPTS203211B (layer F.Cu) (tedit 5AFB65B9)
(fp_text reference REF** (at 2.65 -2.57) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PushButton_12x12mm_THT_GPTS203211B (at 2.65 14.45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
... | {
"pile_set_name": "Github"
} |
package main
import (
"log"
)
const start = `version: 1.0
http://localhost:8000`
func main() {
log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime)
println(start)
println(ListenAndServe(":8000").Error())
}
| {
"pile_set_name": "Github"
} |
package org.httpkit.client;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLEngineResult;
import javax.net.ssl.SSLEngineResult.Status;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.net.InetSoc... | {
"pile_set_name": "Github"
} |
- legacyBooleanMappingKeys
- legacyNullMappingKey
| {
"pile_set_name": "Github"
} |
/*
Copyright 2010 OpenRTMFP
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in... | {
"pile_set_name": "Github"
} |
/*
* altera.c
*
* altera FPGA driver
*
* Copyright (C) Altera Corporation 1998-2001
* Copyright (C) 2010,2011 NetUP Inc.
* Copyright (C) 2010,2011 Igor M. Liplianin <liplianin@netup.ru>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lice... | {
"pile_set_name": "Github"
} |
base=./mount
dir=$base/temp/ai2018/sentiment/tfrecords/$SRC
fold=0
if [ $# == 1 ];
then fold=$1
fi
if [ $FOLD ];
then fold=$FOLD
fi
model_dir=$base/temp/ai2018/sentiment/model/v2/$fold/$SRC/qanet/
num_epochs=30
mkdir -p $model_dir/epoch
cp $dir/vocab* $model_dir
cp $dir/vocab* $model_dir/epoch
exe=./train.py... | {
"pile_set_name": "Github"
} |
/*
*
* Copyright 2020 gRPC 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"
} |
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_nbt",
"source": "block_entity",
"ops": [
{
"... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | {
"pile_set_name": "Github"
} |
@keyframes @name {
50% {width: 20px;}
}
| {
"pile_set_name": "Github"
} |
import torch
from mmdet.core import bbox2roi, build_assigner, build_sampler
from .. import builder
from ..registry import DETECTORS
from .two_stage import TwoStageDetector
@DETECTORS.register_module
class MaskScoringRCNN(TwoStageDetector):
"""Mask Scoring RCNN.
https://arxiv.org/abs/1903.00241
"""
... | {
"pile_set_name": "Github"
} |
//
// The MIT License (MIT)
//
// Copyright (c) 2020 Srdan Rasic (@srdanrasic)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the... | {
"pile_set_name": "Github"
} |
#include<stdio.h>
#include<stdlib.h>
int Input() {
char cha;
unsigned int x = 0;
while(cha = getchar())
if(cha != ' ' && cha != '\n' || cha == EOF) break;
if(cha == EOF) return -1;
x = cha-48;
while(cha = getchar()) {
if(cha == ' ' || cha == '\n') break;
... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2015-2017, Satoshi Tanda. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be
// found in the LICENSE file.
/// @file
/// @brief Declares interfaces to driver functions.
#ifndef HYPERPLATFORM_DRIVER_H_
#define HYPERPLATFORM_DRIVER_H_
#include "common.h"
#in... | {
"pile_set_name": "Github"
} |
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2014.02.04... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Main Menu -->
<string name="shows">Serier</string>
<string name="lists">Lister</string>
<string name="movies">Filmer</string>
<string name="statistics">Statistikk</string>
<string name="navigation_more">More</string>
<string name="searc... | {
"pile_set_name": "Github"
} |
# indent-string [](https://travis-ci.org/sindresorhus/indent-string)
> Indent each line in a string
## Install
```sh
$ npm install --save indent-string
```
## Usage
```js
var indentString = require('indent-string');
indentString(... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
* Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU General Public Licen... | {
"pile_set_name": "Github"
} |
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/Preferences.h"
#... | {
"pile_set_name": "Github"
} |
{
"none":
{
"Source/Platform/Linux":
[
"../Common/Unimplemented/LocalUser_SystemComponent_Unimplemented.cpp"
]
}
}
| {
"pile_set_name": "Github"
} |
extern NSString * const SERVICE_RESPONSE_ID;
extern NSString * const SERVICE_RESPONSE_UUID;
extern NSString * const SERVICE_RESPONSE_DEVICE_ID;
extern NSString * const SERVICE_RESPONSE_ID_PRIMARY;
| {
"pile_set_name": "Github"
} |
/*
* Callable.h - callable interface.
*
* Copyright (c) 2008 Higepon(Taro Minowa) <higepon@users.sourceforge.jp>
*
* 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 co... | {
"pile_set_name": "Github"
} |
import 'bin/knockout-file-bind';
import $ from 'jquery';
import { Character } from 'charactersheet/models';
import ko from 'knockout';
import logo from 'images/logo-all-icons.png';
import template from './index.html';
const dropboxPickerConfigOptions = {
// Required. Called when a user selects an item in the Choos... | {
"pile_set_name": "Github"
} |
package routers
import (
"context"
"net/http"
"net/url"
"github.com/gorilla/mux"
corev2 "github.com/sensu/sensu-go/api/core/v2"
corev3 "github.com/sensu/sensu-go/api/core/v3"
"github.com/sensu/sensu-go/backend/apid/actions"
"github.com/sensu/sensu-go/backend/apid/handlers"
"github.com/sensu/sensu-go/backend/... | {
"pile_set_name": "Github"
} |
3
1 2 3
4 5 6
1 0 1
1 1 1
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1020"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Plat... | {
"pile_set_name": "Github"
} |
<?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of La... | {
"pile_set_name": "Github"
} |
package search.graph;
/**
* Graph search
*
* <p/>
* Copyright 1998-2012 by Mark Watson. All rights reserved.
* <p/>
* This software is can be used under either of the following licenses:
* <p/>
* 1. LGPL v3<br/>
* 2. Apache 2
* <p/>
*/
abstract public class AbstractGraphSearch {
public void addNode(Str... | {
"pile_set_name": "Github"
} |
interactions:
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [rtv test suite PRAW/3.6.1 Python/3.6.1 b'Darwin-14.5.0-x86_64-i386-64bit']
method: GET
uri: https://www.reddit.com/r/Python/comments/2xmo63.json
... | {
"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/html; charset=utf-8" />
<title>master.automl.automl — tensormsa 1.0 document... | {
"pile_set_name": "Github"
} |
// Boost.Geometry Index
//
// n-dimensional Indexable validity check
//
// Copyright (c) 2011-2014 Adam Wulkiewicz, Lodz, Poland.
//
// Use, modification and distribution is subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1... | {
"pile_set_name": "Github"
} |
{
"name": "\u5feb\u7f51",
"author": "fofa",
"version": "0.1.0",
"matches": [
{
"search": "headers",
"text": "Fw-Via: "
}
]
} | {
"pile_set_name": "Github"
} |
// check-pass
// regression test for #73264
// should only give one error
/// docs [label][with#anchor#error]
//~^ WARNING multiple anchors
pub struct S;
| {
"pile_set_name": "Github"
} |
puts ENV['AN_ENV_VARIABLE']
| {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2015 The Project Lombok Authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modif... | {
"pile_set_name": "Github"
} |
// <copyright file="BelongsToGroupAttribute.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.GameServer.MessageHandler
{
using System;
/// <summary>
/// Attribute for <see cref="ISubPacket... | {
"pile_set_name": "Github"
} |
<wo:SPTextEmailWrapper title="Invitation">
You have been invited to the SecretPal group <wo:str value="$membership.group.name" escapeHTML="$false"/> by <wo:str value="$membership.group.owner.name" escapeHTML="$false"/>.
To accept the invitation, go to <wo:str value="$confirmationUrl" escapeHTML="$false"/>.
</wo:SPTex... | {
"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"
} |
# clrpick.tcl --
#
# This demonstration script prompts the user to select a color.
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
}
package require Tk
set w .clrpick
catch {destroy $w}
toplevel $w
wm title $w "Color Selection Dialog"
wm iconname $w "colors"
positionW... | {
"pile_set_name": "Github"
} |
package org.support.project.web.filter;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax... | {
"pile_set_name": "Github"
} |
// Copyright 2018 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 unix
import (
"syscall"
"unsafe"
)
// Unveil implements the unveil syscall.
// For more information see unveil(2).
// Note that the special case of ... | {
"pile_set_name": "Github"
} |
var lines, markov;
$(document).ready(function () {
markov = new RiMarkov(4);
RiTa.loadString('../../data/kafka.txt', function (data1) {
RiTa.loadString('../../data/wittgenstein.txt', function (data2) {
markov.loadText(data1);
markov.loadText(data2);
});
});
$('.textarea').text("clic... | {
"pile_set_name": "Github"
} |
---
title: "TemplateGroupID Element (Visual Studio Templates) | Microsoft Docs"
ms.date: 11/15/2016
ms.prod: "visual-studio-dev14"
ms.technology: "vs-ide-general"
ms.topic: reference
f1_keywords:
- "http://schemas.microsoft.com/developer/vstemplate/2005#TemplateGroupID"
helpviewer_keywords:
- "TemplateGroupID ele... | {
"pile_set_name": "Github"
} |
/*
Package pools provides information and interaction with the Pools of the
Load Balancing as a Service extension for the OpenStack Networking service.
Example to List Pools
listOpts := pools.ListOpts{
SubnetID: "d9bd223b-f1a9-4f98-953b-df977b0f902d",
}
allPages, err := pools.List(networkClient, listOpts).AllPa... | {
"pile_set_name": "Github"
} |
/*!
* reveal.js
* http://lab.hakim.se/reveal-js
* MIT licensed
*
* Copyright (C) 2016 Hakim El Hattab, http://hakim.se
*/
/*********************************************
* RESET STYLES
*********************************************/
html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal... | {
"pile_set_name": "Github"
} |
<?php
namespace Kladr\Core\Plugins\General {
use \Phalcon\Http\Request,
\Phalcon\Mvc\User\Plugin,
\Kladr\Core\Plugins\Base\IPlugin,
\Kladr\Core\Plugins\Base\PluginResult,
\Kladr\Core\Plugins\Tools\Tools,
\Kladr\Core\Models\Regions,
\Kladr\Core\Models\KladrFields,
... | {
"pile_set_name": "Github"
} |
/*
* Common ACPI functions for hot plug platforms
*
* Copyright (C) 2006 Intel Corporation
*
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of... | {
"pile_set_name": "Github"
} |
SRC += muse.c
| {
"pile_set_name": "Github"
} |
//
// WTBlogViewController.m
// v2ex
//
// Created by 无头骑士 GJ on 16/1/14.
// Copyright © 2016年 无头骑士 GJ. All rights reserved.
// 话题控制器
#import "WTTopicViewController.h"
#import "WTMemberDetailViewController.h"
#import "WTTopicDetailViewController.h"
#import "WTTopicCell.h"
#import "WTCellAnimationTool.h"
#import... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<!--Generated by crowdin.com-->
<!--
Copyright (C) 2012-2013 Andrew Neal
Copyright (C) 2012-2014 The CyanogenMod Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You m... | {
"pile_set_name": "Github"
} |
/*
* (C) Copyright 2007
* Stefan Roese, DENX Software Engineering, sr@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free So... | {
"pile_set_name": "Github"
} |
00:00:00 Michael Kennedy: If you've spent some time in the Python community, you've probably heard of the term PEP, which stands for Python Enhancement Proposal. In fact, the very first one was created in June 2000, and its purpose was to define the PEP process itself. Our guest this week, Nick Coghlan, was a co-author... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IPython Test Suite Runner.
"""
from __future__ import print_function
# The tests can't even run if nose isn't available, so might as well give the
# user a civilized error message in that case.
try:
import nose
except ImportError:
error = """\
ERROR: The IPyth... | {
"pile_set_name": "Github"
} |
package mekanism.common.registration.impl;
import javax.annotation.Nonnull;
import mekanism.common.registration.WrappedRegistryObject;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraftforge.fml.RegistryObject;
public class IRecipeSerializerRegistryO... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 1998, 2013, 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"
} |
# array-filter
`Array#filter` for older browsers.
[](https://ci.testling.com/juliangruber/array-filter)
[](http://travis-ci.org/juliangruber/array-filter)
## Usage
```... | {
"pile_set_name": "Github"
} |
body {
background: url(../images/bg.jpg) repeat-y;
background-size: cover;
font-family: 'EB Garamond', serif;
}
nav.top-bar {
background-color: rgba(255, 255, 255, .25);
}
.container {
position: absolute;
top: 40px;
margin: 0 auto;
background-color: rgba(255, 255, 255, .25);
width: 100vw;
min-heigh... | {
"pile_set_name": "Github"
} |
set(SORT_LIB_VERSION 3.1.1)
message("SortLib 3.1.1 config reached")
| {
"pile_set_name": "Github"
} |
Public Domain from GNS3
| {
"pile_set_name": "Github"
} |
<ul class="item-list">
<li>
<a href="/settings/password">
{{icon 'next' class="next"}}
{{t 'Change password'}}
</a>
</li>
<li>
<a href="/settings/export">
{{icon 'next' class="next"}}
{{t 'Import & export'}}
</a>
</li>
{{#unless confirmed}}
<li>
<a href="#resend-confirmation">
{{t ... | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright 2017 Capital One Services, LLC and Bitwise, 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... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.