text stringlengths 2 99.9k | meta dict |
|---|---|
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_MAX_COST_ASSIgNMENT_Hh_
#define DLIB_MAX_COST_ASSIgNMENT_Hh_
#include "max_cost_assignment_abstract.h"
#include "../matrix.h"
#include <vector>
#include <deque>
namespace dlib
... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // A... | {
"pile_set_name": "Github"
} |
# Create a Raspbian image with already installed Kalliope
This documentation aims at explaining how to creta a Raspbian image with pre installed Kalliope.
Install a fresh [image of Raspbian](http://downloads.raspberrypi.org/raspbian/images/) as usual on your raspberry Pi.
Once deployed, follow manual steps bellow.
>... | {
"pile_set_name": "Github"
} |
var Component = require('@yoda/bolero').Component
class Bar extends Component {
constructor (runtime) {
super(runtime)
this.word = 'bar'
}
hello () {
return this.component.foo.hello() + this.word
}
}
module.exports = Bar
| {
"pile_set_name": "Github"
} |
FreezeGun is a library that allows your python tests to travel
through time by mocking the datetime module.
| {
"pile_set_name": "Github"
} |
package chapter01.section10.thread_1_10_1.project_1_t18;
public class MyThread2 extends Thread {
@Override
public void run() {
System.out.println("MyThread2 run priority=" + this.getPriority());
}
}
| {
"pile_set_name": "Github"
} |
const createServer = require("fs-remote/createServer");
// createServer returns a net.Server
const server = createServer();
server.listen(3000, () => {
console.log("fs-remote server is listening on port 3000");
});
| {
"pile_set_name": "Github"
} |
VTH264EncHW="Codificator hardware H264 Apple VT"
VTH264EncSW="Codificator software H264 Apple VT"
VTEncoder="Codificator VideoToolbox"
Bitrate="Rată de biți"
UseMaxBitrate="Limitează rata de biți"
MaxBitrate="Rată de biți maximă"
MaxBitrateWindow="Fereastră de rată de biți maximă (secunde)"
KeyframeIntervalSec="Interva... | {
"pile_set_name": "Github"
} |
# 5s concurrent inverval
INTERVAL_SIZE = 5000000
# when to count the start time of an interval for an operating unit
INTERVAL_START = -2500000
# The size between to inverval segments
INTERVAL_SEGMENT = 1000000
# The added small bias when calculating the interference ratio
RATIO_DIVISION_EPSILON = 0.1
| {
"pile_set_name": "Github"
} |
/*============================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center (DKFZ)
All rights reserved.
Use of this source code is governed by a 3-clause BSD license that can be
found in the LICENSE file.
=================... | {
"pile_set_name": "Github"
} |
/**
* The OWASP CSRFGuard Project, BSD License
* Eric Sheridan (eric@infraredsecurity.com), Copyright (c) 2011
* 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 o... | {
"pile_set_name": "Github"
} |
{
"title":"Shared Array Buffer",
"description":"Type of ArrayBuffer that can be shared across Workers.",
"spec":"https://tc39.github.io/ecmascript_sharedmem/shmem.html",
"status":"other",
"links":[
{
"url":"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayB... | {
"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\Form\Tests\Extension\Core\Type;
use Symfony\Component... | {
"pile_set_name": "Github"
} |
# Changelog for Highstock v2.1.7 (2015-06-26)
- Most changes listed under Highcharts 4.1.7 above also apply to Highstock 2.1.7.
## Bug fixes
- Fixed #3013, top X axis was not considered when placing range selector.
- Fixed #4226, individual line color on candlestick up-points didn't take effect.
- Fixed #4229... | {
"pile_set_name": "Github"
} |
paasta\_tools.dump\_locally\_running\_services module
=====================================================
.. automodule:: paasta_tools.dump_locally_running_services
:members:
:undoc-members:
:show-inheritance:
| {
"pile_set_name": "Github"
} |
var convert = require('./convert'),
func = convert('set', require('../set'));
func.placeholder = require('./placeholder');
module.exports = func;
| {
"pile_set_name": "Github"
} |
# Copyright (C) 2019 The ESPResSo project
#
# This file is part of ESPResSo.
#
# ESPResSo 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 versio... | {
"pile_set_name": "Github"
} |
include ../../../GDALmake.opt
OBJ = ogrodbcdatasource.o ogrodbclayer.o ogrodbcdriver.o \
ogrodbctablelayer.o ogrodbcselectlayer.o
CPPFLAGS := $(GDAL_INCLUDE) -I.. -I../.. $(CPPFLAGS)
default: $(O_OBJ:.o=.$(OBJ_EXT))
clean:
rm -f *.o $(O_OBJ)
| {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.IO;
namespace AutoFixture.Kernel
{
/// <summary>
/// Trace writer that will write out a trace of object requests and created objects
/// in the <see cref="ISpecimenBuilder" /> pipeline.
/// </summary>
[System.Diagnostics.CodeAnalysis.Supp... | {
"pile_set_name": "Github"
} |
// removeSubsets
// Given an array of nodes, remove any member that is contained by another.
exports.removeSubsets = function(nodes) {
var idx = nodes.length, node, ancestor, replace;
// Check if each node (or one of its ancestors) is already contained in the
// array.
while (--idx > -1) {
node = ancestor = node... | {
"pile_set_name": "Github"
} |
# This source code refers to The Go Authors for copyright purposes.
# The master list of authors is in the main Go distribution,
# visible at http://tip.golang.org/AUTHORS.
| {
"pile_set_name": "Github"
} |
using Microsoft.AspNetCore.Http;
using System.Diagnostics;
using System.Threading.Tasks;
namespace ClassifiedAds.Infrastructure.Web.Middleware
{
public class DebuggingMiddleware
{
private readonly RequestDelegate _next;
public DebuggingMiddleware(RequestDelegate next)
{
_n... | {
"pile_set_name": "Github"
} |
//===-- SparcMCCodeEmitter.cpp - Convert Sparc code to machine code -------===//
//
// 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"
} |
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
/* global child_process$ChildProcess */
import type {ServerID} from './utils';
import {spawn} from 'ch... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the `liip/LiipImagineBundle` project.
*
* (c) https://github.com/liip/LiipImagineBundle/graphs/contributors
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace Liip\ImagineBundle\Controlle... | {
"pile_set_name": "Github"
} |
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods
| {
"pile_set_name": "Github"
} |
# REQUIRES: hexagon
# RUN: llvm-mc -filetype=obj -triple=hexagon-unknown-elf %s -o %t.o
# RUN: llvm-mc -filetype=obj -triple=hexagon-unknown-elf %S/Inputs/hexagon-shared.s -o %t2.o
# RUN: ld.lld -shared %t2.o -soname=so -o %t2.so
# RUN: ld.lld -shared %t.o %t2.so -o %t3.so
# RUN: llvm-objdump --print-imm-hex -d -j .tex... | {
"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 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GanttBarStartEndType (MPXJ 8.2.0 API)</title>
<link rel="stylesheet" ty... | {
"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>SchemeUserState</key>
<dict>
<key>WatchDemo.xcscheme</key>
<dict>
<key>orderHint</key>
<integer>2</integer>
</dict>
</dict>
</dic... | {
"pile_set_name": "Github"
} |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
pa... | {
"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"
} |
#include <errno.h>
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static int
do_test (void)
{
char tmpl[] = "/tmp/tst-fdopendir2-XXXXXX";
int fd = mkstemp (tmpl);
if (fd == -1)
{
puts ("cannot open temp file");
return 1;
}
errno = 0;
DIR *d = fdopendir (f... | {
"pile_set_name": "Github"
} |
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Copyright 2015 Mozilla 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... | {
"pile_set_name": "Github"
} |
install:
- gradle -Prelease=true -p lib/java/ clean install
| {
"pile_set_name": "Github"
} |
{% extends '@CoreUpdater/layout.twig' %}
{% block content %}
<div class="header">
<h1>{{ 'CoreUpdater_UpdateSuccessTitle'|translate }}</h1>
</div>
<div class="content">
<h2>
{{ 'CoreUpdater_ThankYouUpdatePiwik'|translate }}
</h2>
<p>
{{ 'CoreUpdate... | {
"pile_set_name": "Github"
} |
// Copyright 2015 The etcd 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 t... | {
"pile_set_name": "Github"
} |
import os
def configuration(parent_package='', top_path=None):
import numpy
from numpy.distutils.misc_util import Configuration
config = Configuration('neighbors', parent_package, top_path)
libraries = []
if os.name == 'posix':
libraries.append('m')
config.add_extension('_ball_tree',... | {
"pile_set_name": "Github"
} |
// Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable ... | {
"pile_set_name": "Github"
} |
pipelineConfig:
env:
- name: FRUIT
value: BANANA
- name: GIT_AUTHOR_NAME
value: somebodyelse
- name: _JAVA_OPTIONS
value: something else
pipelines:
release:
promote:
steps:
- sh: echo "FRUIT is ${FRUIT}"
| {
"pile_set_name": "Github"
} |
Decoupling FindBugs from BCEL
Document history:
DHH 7/3/2006: Created
Goals:
- eliminate tight coupling between FindBugs and BCEL
- Allow other bytecode frameworks (such as ASM and maybe Soot) to
be used by detectors
*** Detectors could even do their own scanning on the raw classfile
data, without any ... | {
"pile_set_name": "Github"
} |
---
machine_translated: true
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
toc_folder_title: "Op\xE9rations"
toc_priority: 41
toc_title: Introduction
---
# Opérations {#operations}
Le manuel d'exploitation de ClickHouse comprend les principales sections suivantes:
- [Exigence](requirements.md)
-... | {
"pile_set_name": "Github"
} |
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
names... | {
"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">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Plat... | {
"pile_set_name": "Github"
} |
##
# StandardError ISO Test
assert('StandardError', '15.2.23') do
assert_equal Class, StandardError.class
end
| {
"pile_set_name": "Github"
} |
/* ========================================
* PurestSquish - PurestSquish.h
* Created 8/12/11 by SPIAdmin
* Copyright (c) 2011 __MyCompanyName__, All rights reserved
* ======================================== */
#ifndef __PurestSquish_H
#define __PurestSquish_H
#ifndef __audioeffect__
#include "audioeffectx.h"... | {
"pile_set_name": "Github"
} |
Description: Patch deletes or comments out all unused variables.
Author: Sergei Golovan
Last-Modified: Wed, 09 Jul 2014 19:18:23 +0400
--- a/generic/bltTree.c
+++ b/generic/bltTree.c
@@ -1234,7 +1234,7 @@
int
Blt_TreeRelabelNode(TreeClient *clientPtr, Node *nodePtr, CONST char *string)
{
- int result, inode;
+ ... | {
"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/. */
gTestfile = 'expression-019.js';
... | {
"pile_set_name": "Github"
} |
{
"kind": "webfonts#webfont",
"family": "Baloo Chettan 2",
"category": "display",
"variants": ["regular", "500", "600", "700", "800"],
"subsets": ["latin", "latin-ext", "malayalam", "vietnamese"],
"version": "v1",
"lastModified": "2020-03-06",
"files": {
"500": "http://fonts.gstatic.com/s/baloochett... | {
"pile_set_name": "Github"
} |
/*
* Solution to Project Euler problem 112
* Copyright (c) Project Nayuki. All rights reserved.
*
* https://www.nayuki.io/page/project-euler-solutions
* https://github.com/nayuki/Project-Euler-solutions
*/
public final class p112 implements EulerSolution {
public static void main(String[] args) {
System.... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2013, Vastech SA (PTY) LTD. All rights reserved.
// http://github.com/gogo/protobuf/gogoproto
//
// 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... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env node
require('grunt').cli();
| {
"pile_set_name": "Github"
} |
{
"actions": [
{
"verb": "createSPList",
"listName": "Manager on Duty",
"templateType": 100,
"subactions": [
{
"verb": "setDescription",
"description": "A list to keep track of which staff are on duty for a particular day"
},
{
"verb": ... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2007 Julien Pommier
// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
// Copyright (C) 2016 Konstantinos Margaritis <markos@freevec.org>
//
// This Source Code Form is subject to the terms of the ... | {
"pile_set_name": "Github"
} |
# XI9 - (unknown title - INI file autogenerated from vWii system menu list of titles without 16:9 support)
[Video_Settings]
SuggestedAspectRatio = 2
| {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the Panther project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Symfony\Component\Panther\Tests\DomCrawler\Field;
... | {
"pile_set_name": "Github"
} |
/*-----------------------------------------------------------------------------+
Copyright (c) 2008-2009: Joachim Faulhaber
+------------------------------------------------------------------------------+
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENCE.txt or c... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... | {
"pile_set_name": "Github"
} |
##bic_advsimd_reg_execute
CheckFPAdvSIMDEnabled64();
bits(datasize) operand1 = V[n];
bits(datasize) operand2 = V[m];
bits(datasize) result;
if invert then operand2 = NOT(operand2);
case op of
when LogicalOp_AND
result = operand1 AND operand2;
end
when LogicalOp_ORR
result = operand1 OR ope... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 929a813e205b2284fbb80ebe3442b3e9
timeCreated: 1457507442
licenseType: Pro
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 4
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mip... | {
"pile_set_name": "Github"
} |
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Exceptions
{
public class MovieNotFoundException : NzbDroneException
{
public int TmdbMovieId { get; set; }
public MovieNotFoundException(int tmdbMovieId)
: base(string.Format("Movie with tmdbId {0} was not found, it may hav... | {
"pile_set_name": "Github"
} |
################################################################################
#
# perl-path-tiny
#
################################################################################
PERL_PATH_TINY_VERSION = 0.108
PERL_PATH_TINY_SOURCE = Path-Tiny-$(PERL_PATH_TINY_VERSION).tar.gz
PERL_PATH_TINY_SITE = $(BR2_CPAN_MIRRO... | {
"pile_set_name": "Github"
} |
<?php
/*{{{LICENSE
+-----------------------------------------------------------------------+
| SlightPHP Framework |
+-----------------------------------------------------------------------+
| This program is free software; you can redistribute it and/or modify |
| it ... | {
"pile_set_name": "Github"
} |
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
/****************************************************
*
* @File: template.php
* @Package: GetSimple
* @Action: Cardinal theme for GetSimple CMS
*
*****************************************************/
?>
<!DOCTYPE html>
<html>
<head>
<meta c... | {
"pile_set_name": "Github"
} |
//=====================================================
// File : action_syr2.hh
// Author : L. Plagne <laurent.plagne@edf.fr)>
// Copyright (C) EDF R&D, lun sep 30 14:23:19 CEST 2002
//=====================================================
//
// This program is free software; you can redistribute it and/or
// modi... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="ISO-8859-1"?>
<mzML xmlns="http://psi.hupo.org/ms/mzml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://psi.hupo.org/ms/mzml http://psidev.info/files/ms/mzML/xsd/mzML1.1.0.xsd" accession="" version="1.1.0">
<cvList count="2">
<cv id="MS" fullName="Proteo... | {
"pile_set_name": "Github"
} |
// Copyright Joyent, Inc. and other Node contributors.
//
// 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, modi... | {
"pile_set_name": "Github"
} |
package de.fhg.iais.roberta.util.test.expedition;
import org.junit.Assert;
import de.fhg.iais.roberta.components.expedition.ExpeditionConfiguration;
import de.fhg.iais.roberta.factory.ExpeditionFactory;
import de.fhg.iais.roberta.mode.action.Language;
import de.fhg.iais.roberta.transformer.Jaxb2ProgramAst;
import de.... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<title>XMLHttpRequest: open() in document that is not fully active (but may be active) should throw</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://xhr.spec.whatwg.org/#the-op... | {
"pile_set_name": "Github"
} |
**`BODY`**가 출력됩니다.
```html run
<script>
let body = document.body;
body.innerHTML = "<!--" + body.tagName + "-->";
alert( body.firstChild.data ); // BODY
</script>
```
차근차근 설명해보겠습니다.
1. `<body>`의 콘텐츠가 `<!--BODY-->`로 대체됩니다. `body.tagName`은 `"BODY"`이기 때문입니다. `tagName`은 항상 대문자라는 점을 잊지 마세요.
2. `<body>`의 콘텐츠가 교체... | {
"pile_set_name": "Github"
} |
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
Gives you a module suite with
two modules, one providing a
pluggable view and the o... | {
"pile_set_name": "Github"
} |
//---------------------------------------------------------------------
// <copyright file="SpatialClientModelGenerator.cs" company="Microsoft">
// Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
// </copyright>
//-------------------------... | {
"pile_set_name": "Github"
} |
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="13.5"
android:viewportHeight="13.5">
<path
android:fillColor="@color/map_marker_own_background"
android:pathData="M6.75,6.751m-6.75,0a6.75,6.75 0,1 1,1... | {
"pile_set_name": "Github"
} |
import { connect } from 'react-redux';
import { doRemoveUnreadSubscription } from 'redux/actions/subscriptions';
import { doSetContentHistoryItem } from 'redux/actions/content';
import {
doFetchFileInfo,
makeSelectFileInfoForUri,
makeSelectMetadataForUri,
makeSelectChannelForClaimUri,
makeSelectClaimIsNsfw,
}... | {
"pile_set_name": "Github"
} |
// Copyright 2005-2009 Daniel James.
// 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)
#if !defined(BOOST_FUNCTIONAL_HASH_DETAIL_FLOAT_FUNCTIONS_HPP)
#define BOOST_FUNCTIONAL_HASH_DETAIL_FLOAT_FUNCTIONS_HPP
#includ... | {
"pile_set_name": "Github"
} |
// WARNING: DO NOT EDIT THIS FILE. THIS FILE IS MANAGED BY SPRING ROO.
// You may push code into the target .java compilation unit if you wish to edit any member(s).
package nl.bzk.brp.model.data.kern;
import nl.bzk.brp.model.data.kern.HisPersids;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
imp... | {
"pile_set_name": "Github"
} |
declare var a: any;
export function consoleTestResultHandler(testResult: any): boolean {
// needed to get colors to show up when passing through Grunt
void a;
for (const q of a) {
void a;
/* eslint-disable no-console */
if (a) {
} else {
}
/* e... | {
"pile_set_name": "Github"
} |
// -*- C++ -*-
// Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library 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 ve... | {
"pile_set_name": "Github"
} |
{
"name": "Time",
"description": "Time keeping library",
"keywords": "Time, date, hour, minute, second, day, week, month, year, RTC",
"authors": [
{
"name": "Michael Margolis"
},
{
"name": "Paul Stoffregen",
"email": "paul@pjrc.com",
... | {
"pile_set_name": "Github"
} |
using System.Collections.Generic;
using System.Linq;
using LightBDD.Core.Notification;
namespace LightBDD.Framework.Notification.Implementation
{
internal class ScenarioProgressNotifierComposer
{
private readonly List<IScenarioProgressNotifierProvider> _providers;
public ScenarioProgressNotif... | {
"pile_set_name": "Github"
} |
import ballerina/io;
import wso2/utils;
function testAcceptNothingButReturnString() returns handle {
return utils:getString();
}
public function main() {
io:println(testAcceptNothingButReturnString());
}
| {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.chiclaim.sample"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"... | {
"pile_set_name": "Github"
} |
// Copyright 2016 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 "components/download/quarantine/quarantine.h"
#include "build/build_config.h"
#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX)... | {
"pile_set_name": "Github"
} |
define(function(require, exports, module) {
"use strict";
var assert = require("./assert");
var hasOwnProp = Object.hasOwnProperty;
// extend
// Borrowed from Underscore.js
function extend(object) {
var argsIndex, argsLength, iteratee, key;
if (!object) {
return object;
}
argsLength = arguments.length... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>订单列表</title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="..... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectOpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_optx.xsd">
<SchemaVersion>1.0</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Extensions>
<cExt>*.c</cExt>
<aExt>*.s*... | {
"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-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Z... | {
"pile_set_name": "Github"
} |
from __future__ import print_function
#!/usr/bin/env python
"""
Illustrating how to use optimization algorithms in a reinforcement learning framework.
"""
__author__ = 'Tom Schaul, tom@idsia.ch'
from pybrain.utilities import fListToString
from pybrain.rl.environments.cartpole.balancetask import BalanceTask
from pybra... | {
"pile_set_name": "Github"
} |
---
title: redcup
github: 'https://github.com/nadjetey/redcup'
demo: 'http://nadjetey.github.io/redcup/'
author: Nii Adjetey Sowah
ssg:
- Jekyll
cms:
- No Cms
date: 2014-01-26T21:40:33.000Z
github_branch: master
description: This is a Jekyll Theme
stale: true
--- | {
"pile_set_name": "Github"
} |
#ifndef GUARD_AGB_FLASH_H
#define GUARD_AGB_FLASH_H
// Exported type declarations
// Exported RAM declarations
// Exported ROM declarations
u16 SetFlashTimerIntr(u8 timerNum, void (**intrFunc)(void));
u16 IdentifyFlash(void);
u32 ProgramFlashSectorAndVerify(u16 sectorNum, u8 *src);
#endif //GUARD_AGB_FLASH_H
| {
"pile_set_name": "Github"
} |
package com.cundong.recyclerview;
import android.support.v7.widget.GridLayoutManager;
/**
* Created by cundong on 2015/10/23.
* <p/>
* RecyclerView为GridLayoutManager时,设置了HeaderView,就会用到这个SpanSizeLookup
*/
public class HeaderSpanSizeLookup extends GridLayoutManager.SpanSizeLookup {
private HeaderAndFooterRecy... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
* Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
* Copyright (C) 2009 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... | {
"pile_set_name": "Github"
} |
#
# Copyright (c) 2010, 2013, Oracle and/or its affiliates. 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; version 2 of the License.
#
# This program is distributed in th... | {
"pile_set_name": "Github"
} |
/**
* THIS PLUGIN IS TIGHTLY COUPLED TO THE padHierarchy PLUGIN
* AND WILL PROBABLY END UP BEING MERGED WITH THAT OTHER PLUGIN.
*
* This plugin hooks into the pad-writing process adding an array
* related images to the JSON metadata. These images are then
* used to create some horizontal navigation for traversin... | {
"pile_set_name": "Github"
} |
/* No comment provided by engineer. */
"%1$@ %2$@ has been downloaded and is ready to use! Would you like to install it and relaunch %1$@ now?" = "%1$@ %2$@ foi transferido e está pronto a instalar! Gostaria de o fazer agora e reiniciar %1$@ posteriormente?";
/* No comment provided by engineer. */
"%1$@ can't be updat... | {
"pile_set_name": "Github"
} |
{
"images" : [
{
"idiom" : "universal",
"filename" : "imag2@2x.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
} | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<style>
span { color: red }
:default + span { color: green }
span.reverse { color: green }
:default + span.reverse { color: red }
input { display: none }
</style>
</head>
<body onload="document.getElementById('foo').type = 'image';
document.getElementBy... | {
"pile_set_name": "Github"
} |
# Spring starter
## Dependencies
@@dependency[sbt,Maven,Gradle] {
group=fr.maif
artifact=izanami-spring
version=$version$
}
## Configuration
### Settings
|Key | Description ... | {
"pile_set_name": "Github"
} |
# ECS instance policy
For an EC2 instance to connect itself to ECS it needs rights to do so.
* [Why do we need ECS instance policies?](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/instance_IAM_role.html)
* [ECS roles explained](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_managed_poli... | {
"pile_set_name": "Github"
} |
// libjingle
// Copyright 2004 Google Inc.
//
// 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,
// this list of conditions and the follo... | {
"pile_set_name": "Github"
} |
# What is ci_edit
ci_edit is a text editor. It can help you view or edit text files.
ci_edit runs in the command line (also called the terminal). To start using
ci_edit, download ci_edit and open (execute) `ci.py`.
## What ci_edit can do for you
Many other command line text editors require learning a different set... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.