text
stringlengths
2
99.9k
meta
dict
/*************************************************************************/ /* string.h */ /*************************************************************************/ /* This file is part of: */ /* ...
{ "pile_set_name": "Github" }
var convert = require('./convert'), func = convert('dropRightWhile', require('../dropRightWhile')); func.placeholder = require('./placeholder'); module.exports = func;
{ "pile_set_name": "Github" }
class TrendingController < ApplicationController include CustomControllerHelpers before_action :authenticate_for_in_network before_action :validate_namespace def index serializer = JSONAPI::ResourceSerializer.new(resource_class) render_jsonapi serializer.serialize_to_hash(resources) end private ...
{ "pile_set_name": "Github" }
#ifndef _signer_h #define _signer_h #include "assert.h" #include <openssl/ripemd.h> // Local #include "scc.h" #include "ec.h" #include "encrypt.h" #include "tx.h" class Signer { protected: RSA* rsa; Bin* rsa_pub; // EC EC_KEY *key; Bin *public_key; // Flags bool signed_values; bool verified_fake...
{ "pile_set_name": "Github" }
#!/bin/sh # description: Kretprobe dynamic event with arguments [ -f kprobe_events ] || exit_unsupported # this is configurable echo 0 > events/enable echo > kprobe_events echo 'r:testprobe2 _do_fork $retval' > kprobe_events grep testprobe2 kprobe_events test -d events/kprobes/testprobe2 echo 1 > events/kprobes/testp...
{ "pile_set_name": "Github" }
.Version 9.0.0 of ABINIT .(MPI version, prepared for a x86_64_linux_gnu9.2 computer) .Copyright (C) 1998-2020 ABINIT group . ABINIT comes with ABSOLUTELY NO WARRANTY. It is free software, and you are welcome to redistribute it under certain conditions (GNU General Public License, see ~abinit/COPYING or http://...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `Utf16Item` enum in crate `rustc_unicode`."> <meta name="ke...
{ "pile_set_name": "Github" }
This folder contains private include files. These include files are part of the private implementation details of various framework components. Use at your peril.
{ "pile_set_name": "Github" }
/* * Transmit.c * *Copyright (C) 2010 Beceem Communications, Inc. * *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 is distributed in the hope that it will be ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">AndroidExample</string> <string name="title_messageview_list">MessagesViews</string> <string name="title_messageview_detail">MessageView Detail</string> </resources>
{ "pile_set_name": "Github" }
{ stdenv, lib, fetchFromGitHub, fetchpatch, ncurses , withGui ? false, qtbase }: stdenv.mkDerivation rec { pname = "i7z"; version = "0.27.3"; src = fetchFromGitHub { owner = "DimitryAndric"; repo = "i7z"; rev = "v${version}"; sha256 = "0l8wz0ffb27nkwchc606js652spk8masy3kjmzh7ygipwsary5ds"; }; ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <com.luck.picture.lib.widget.SquareRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/picture_color_light_grey" android:gravity="center_vertic...
{ "pile_set_name": "Github" }
name=0/1 black Serf creature token token=Serf image=https://magiccards.info/extras/token/eternal-masters/serf.jpg value=1 type=Creature subtype=Serf color=b pt=0/1
{ "pile_set_name": "Github" }
// Copyright 2017 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 math /* Inverse of the floating-point error function. */ // This implementation is based on the rational approximation // of percentage points of nor...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" ?> <!-- 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 Apa...
{ "pile_set_name": "Github" }
/* * Author: illuz <iilluzen[at]gmail.com> * File: AC_silulation_n.cpp * Create Date: 2014-12-19 08:34:19 * Descripton: simulation */ #include <bits/stdc++.h> using namespace std; const int N = 0; // Definition for binary tree struct TreeNode { int val; TreeNode *left; TreeNode *right; ...
{ "pile_set_name": "Github" }
/* ======================================== * AtmosphereBuss - AtmosphereBuss.h * Copyright (c) 2016 airwindows, All rights reserved * ======================================== */ #ifndef __AtmosphereBuss_H #include "AtmosphereBuss.h" #endif void AtmosphereBuss::processReplacing(float **inputs, float **outputs, V...
{ "pile_set_name": "Github" }
/* 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/. */ /* * Diffie-Hellman parameter generation, key generation, and secret derivation. * KEA secret generation and ver...
{ "pile_set_name": "Github" }
#define LOG_OFFERS using System; namespace Haggle { public enum TelepateType { Normal, Greed, Benevolent } public class TelepatePlayer : IPlayer { private readonly TelepateType m_greed = TelepateType.Normal; private readonly float AcceptT...
{ "pile_set_name": "Github" }
/* * C startup code for the Fujitsu SPARClite demo board * * Copyright (c) 1995, 1996 Cygnus Support * * The authors hereby grant permission to use, copy, modify, distribute, * and license this software and its documentation for any purpose, provided * that existing copyright notices are retained in all copies a...
{ "pile_set_name": "Github" }
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime; /** * Guesses the MIME type of a file. * * @...
{ "pile_set_name": "Github" }
#include <core.p4> header ethernet_t { bit<48> dst_addr; bit<48> src_addr; bit<16> eth_type; } struct Headers { ethernet_t eth_hdr; } parser p(packet_in pkt, out Headers hdr) { state start { transition parse_hdrs; } state parse_hdrs { pkt.extract(hdr.eth_hdr); trans...
{ "pile_set_name": "Github" }
# DescribeInstanceTypes {#doc_api_1161571 .reference} Queries the instance type list provided by ECS. ## Description {#description .section} **DescribeInstanceTypes** returns the same instance type list as the list of Pay-As-You-Go instances after an instance is created. For more information, see[Pay-As-You-Go](~~40...
{ "pile_set_name": "Github" }
import entity from "./entity.js"; class GridHash { constructor(cellSize) { this.entities = {}; this.cellSize = cellSize; } hash(pos) { const { cellSize } = this; return [Math.floor(pos.x / cellSize), Math.floor(pos.y / cellSize)]; } insert(ent) { const b = entity.bounds(ent); const ...
{ "pile_set_name": "Github" }
package org.dynmap.hdmap.renderer; import java.util.ArrayList; import java.util.Arrays; import java.util.BitSet; import java.util.Map; import org.dynmap.renderer.CustomRenderer; import org.dynmap.renderer.MapDataContext; import org.dynmap.renderer.RenderPatch; import org.dynmap.renderer.RenderPatchFactory; public cl...
{ "pile_set_name": "Github" }
# import libraries import matplotlib matplotlib.use('Agg') import pandas as pd import matplotlib.pyplot as plt import argparse from collections import defaultdict #%matplotlib inline # set font plt.rcParams['font.family'] = 'sans-serif' plt.rcParams['font.sans-serif'] = 'Helvetica' # set the style of the axes and the...
{ "pile_set_name": "Github" }
export default { moneySymbol: 'RM', tableForm: { search: 'Cari', reset: 'Menetapkan semula', submit: 'Hantar', collapsed: 'Kembang', expand: 'Kuncup', inputPlaceholder: 'Sila masuk', selectPlaceholder: 'Sila pilih', }, alert: { clear: 'Padam', selected: 'Dipilih', item: '...
{ "pile_set_name": "Github" }
/** * Copyright (c) 2013-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @provides...
{ "pile_set_name": "Github" }
// Copyright (C) University of Oxford 2010 /**************************************************************** * * * depparser.h - the definitions for the dependency parser. * * * * Author: Yu...
{ "pile_set_name": "Github" }
.propertygrid .datagrid-view1 .datagrid-body td { padding-bottom: 1px; border-width: 0 1px 0 0; } .propertygrid .datagrid-group { height: 21px; overflow: hidden; border-width: 0 0 1px 0; border-style: solid; } .propertygrid .datagrid-group span { font-weight: bold; } .propertygrid .datagrid-view1 .datagri...
{ "pile_set_name": "Github" }
<resources> <string name="app_name">TimeLineView_Nested</string> </resources>
{ "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" }
; RUN: opt -passes='loop(unswitch),verify<loops>' -S < %s | FileCheck %s declare void @some_func() noreturn ; This test contains two trivial unswitch condition in one loop. ; LoopUnswitch pass should be able to unswitch the second one ; after unswitching the first one. define i32 @test1(i32* %var, i1 %cond1, i1 %cond...
{ "pile_set_name": "Github" }
// SPDX-License-Identifier: GPL-2.0 #include <linux/compiler.h> #include <linux/string.h> #include <sys/types.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <err.h> #include <jvmti.h> #ifdef HAVE_JVMTI_CMLR #include <jvmticmlr.h> #endif #include <limits.h> #include "jvmti_agent.h" static int h...
{ "pile_set_name": "Github" }
#ifndef BOOST_CONTRACT_DETAIL_OPERATOR_SAFE_BOOL_HPP_ #define BOOST_CONTRACT_DETAIL_OPERATOR_SAFE_BOOL_HPP_ // Copyright (C) 2008-2018 Lorenzo Caminiti // Distributed under the Boost Software License, Version 1.0 (see accompanying // file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt). // See: htt...
{ "pile_set_name": "Github" }
cmake_minimum_required(VERSION 3.0) project(hwloc LANGUAGES C VERSION 1.11.7) configure_file(contrib/windows/hwloc_config.h include/hwloc/autogen/config.h COPYONLY) configure_file(contrib/windows/static-components.h include/static-components.h COPYONLY) configure_file(contrib/windows/private_config.h include/p...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html class="writer-html5" lang="en" > <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>entity_diagram(Format) &mdash; Logtalk APIs v3.42.0-b02 documentation</title> <link rel="stylesheet" href="_static/css/theme.css" ...
{ "pile_set_name": "Github" }
source: https://www.securityfocus.com/bid/7109/info Several implementations of the Java Virtual Machine have been reported to be prone to a denial of service condition. This vulnerability occurs in several methods in the java.util.zip class. The methods can be called with certain types of parameters however, the...
{ "pile_set_name": "Github" }
^[ይሁንyY].* ^[አይሁንnN].* ይሁን አይሁን
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="PublishConfigData"> <serverData> <paths name="test-55.52"> <serverdata> <mappings> <mapping deploy="/cmdb/" local="$PROJECT_DIR$" web="/root/" /> </mappings> </serverdata> </pa...
{ "pile_set_name": "Github" }
/* * openh323buildopts.h * * Build options generated by the configure script. * * Portable Windows Library * * Copyright (c) 2003 Equivalence Pty. Ltd. * * The contents of this file are subject to the Mozilla Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with ...
{ "pile_set_name": "Github" }
// Copyright (c) 2018-2020, Sylabs Inc. All rights reserved. // This software is licensed under a 3-clause BSD license. Please consult the // LICENSE.md file distributed with the sources of this project regarding your // rights to use or distribute this software. package singularity import "github.com/sylabs/singular...
{ "pile_set_name": "Github" }
# # Copyright 2000-2006 Sun Microsystems, Inc. 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 Software Foundation...
{ "pile_set_name": "Github" }
{{extend 'layout.html'}} <h2>{{=T( request.args(0).replace('_',' ').capitalize() )}}</h2> <div id="web2py_user_form"> {{ if request.args(0)=='login': if not 'register' in auth.settings.actions_disabled: form.add_button(T('Register'),URL(args='register', vars={'_next': request.vars._next} if request.vars._n...
{ "pile_set_name": "Github" }
DEAL:2d::Testing FE_DGQ<2>(1) DEAL:2d::Norm of difference: 0 DEAL:2d::Norm of difference parallel: 0 DEAL:2d:: DEAL:2d:float::Testing FE_DGQ<2>(1) DEAL:2d:float::Norm of difference: 0 DEAL:2d:float:: DEAL:2d::Testing FE_DGQ<2>(2) DEAL:2d::Norm of difference: 0 DEAL:2d::Norm of difference par...
{ "pile_set_name": "Github" }
--- id: 587d824d367417b2b2512c53 title: Test if a String Contains a Substring challengeType: 2 forumTopicId: 301597 localeTitle: Проверьте, содержит ли строка String подстроку --- ## Description <section id='description'> Напомним, что этот проект строится на следующем стартовом проекте <a href="https://glitch.com/#!/...
{ "pile_set_name": "Github" }
var searchData= [ ['window_20handling_20guide',['Window handling guide',['../window.html',1,'']]] ];
{ "pile_set_name": "Github" }
// // DTHTMLElement.h // DTCoreText // // Created by Oliver Drobnik on 4/14/11. // Copyright 2011 Drobnik.com. All rights reserved. // @class DTCoreTextParagraphStyle; @class DTCoreTextFontDescriptor; @class DTTextAttachment; @class DTCSSListStyle; #import "DTCompatibility.h" #import "DTCoreTextConstants.h" #impo...
{ "pile_set_name": "Github" }
/**************************************************************************** ** ** Copyright (C) 2017 Crimson AS <info@crimson.no> ** Contact: https://www.crimson.no ** ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser ** General Public License version 3 as published...
{ "pile_set_name": "Github" }
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/kinesisanalyticsv2/model/ListApplicationSnapshotsRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::KinesisAnalyticsV2::Model; using nam...
{ "pile_set_name": "Github" }
# JSPatch Convertor JSPatch Convertor is a tool that converts Objective-C code to JSPatch script automatically. ( [What's JSPatch?](https://github.com/bang590/JSPatch) ) ## Usage Check out [http://bang590.github.io/JSPatchConvertor](http://bang590.github.io/JSPatchConvertor) Please use Chrome or Safari. ##### A...
{ "pile_set_name": "Github" }
//------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. //------------------------------------------------------...
{ "pile_set_name": "Github" }
goog.module('grrUi.semantic.objectLabelDirective'); goog.module.declareLegacyNamespace(); /** * Controller for ObjectLabelDirective. * @unrestricted */ const ObjectLabelController = class { /** * @param {!angular.Scope} $scope * @ngInject */ constructor($scope) { /** @private {!angular.Scope} */ ...
{ "pile_set_name": "Github" }
#!/usr/bin/env bash cp localResults/* baseResults/
{ "pile_set_name": "Github" }
# Copyright Cartopy Contributors # # This file is part of Cartopy and is released under the LGPL license. # See COPYING and COPYING.LESSER in the root of the repository for full # licensing details. import itertools import time import numpy as np import pytest import shapely.geometry as sgeom import cartopy.crs as c...
{ "pile_set_name": "Github" }
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the Licen...
{ "pile_set_name": "Github" }
# Specification We use this document to detail the internal specification of Yamux. This is used both as a guide for implementing Yamux, but also for alternative interoperable libraries to be built. # Framing Yamux uses a streaming connection underneath, but imposes a message framing so that it can be shared between...
{ "pile_set_name": "Github" }
/* * Copyright 2016 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 applica...
{ "pile_set_name": "Github" }
width 70 height 70 col_rect 15 10 40 60 author Dteck
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 6e157a4064a054434a2b5628546771a3 TextureImporter: internalIDToNameTable: [] externalObjects: {} serializedVersion: 10 mipmaps: mipMapMode: 0 enableMipMap: 0 sRGBTexture: 1 linearTexture: 0 fadeOut: 0 borderMipMap: 0 mipMapsPreserveCoverage: 0 alphaTestR...
{ "pile_set_name": "Github" }
package org.jetbrains.haskell.run.haskell import com.intellij.openapi.module.Module import com.intellij.openapi.options.SettingsEditor import javax.swing.* class ConfigurationEditor(modules: Array<Module>) : SettingsEditor<CabalRunConfiguration>() { private val programParams: ProgramParamsPanel override fun...
{ "pile_set_name": "Github" }
/* * * mwavedd.c -- mwave device driver * * * Written By: Mike Sullivan IBM Corporation * * Copyright (C) 1999 IBM Corporation * * 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 ...
{ "pile_set_name": "Github" }
"""Generic interface to all dbm clones. Instead of import dbm d = dbm.open(file, 'w', 0666) use import anydbm d = anydbm.open(file, 'w') The returned object is a dbhash, gdbm, dbm or dumbdbm object, dependent on the type of database being opened (determined by whichdb module) in the...
{ "pile_set_name": "Github" }
### ### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED ### FROM openjdk:11.0.2-jdk-stretch # make Apt non-interactive RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ && echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci ENV DEBIAN_FRONTEND=noninteractiv...
{ "pile_set_name": "Github" }
#include <iostream> using namespace std; int main(){ int a, i = 0; cin >> a; int b[3] = {0}; while(a != 0){ b[i++] = a % 10; a = a / 10; } for(int k=0; k<b[2];k++) cout << "B"; for(int k=0;k<b[1];k++) cout << "S"; for(int k=0; k<b[0];k++) cout << k+1; return 0; }
{ "pile_set_name": "Github" }
/* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- Copyright (c) 2014-2015 Datalight, Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as publ...
{ "pile_set_name": "Github" }
package archive import ( "archive/tar" "errors" "io" "io/ioutil" "os" "path/filepath" "strings" "github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus" "github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system" ) // Errors used or returned by this file. var ( ErrNotDir...
{ "pile_set_name": "Github" }
<?php /* * This file is part of the symfony package. * (c) Fabien Potencier <fabien.potencier@symfony-project.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); $t = ...
{ "pile_set_name": "Github" }
using System.IO; using ACE.Entity.Enum; using ACE.Server.Entity; namespace ACE.Server.Network.Structure { public class TurnToParameters { public MovementParams MovementParams; public float Speed; // speed of the turn public float DesiredHeading; // the ang...
{ "pile_set_name": "Github" }
MODULE Emu030; (* SJ 19.10.94 *) VAR result-, result2- : LONGINT; PROCEDURE MulsL*(src, dest: LONGINT); BEGIN ASSEMBLER MOVEM.L D0-D2,-(SP) MOVE.L src(A6),D1 MOVE.L dest(A6),D0 TST.L D0 BPL l1 NEG.L D0 TST.L D1 BPL l2 ...
{ "pile_set_name": "Github" }
// Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- es5id: 7.6.1-4-16 description: > Allow global constant properties as property names by accessor function within an object. ---*/ var test; var tokenCodes = { set undefi...
{ "pile_set_name": "Github" }
package daemon import ( "fmt" "io/ioutil" "os" "github.com/docker/docker/container" "github.com/docker/docker/pkg/system" "github.com/docker/libnetwork" "github.com/pkg/errors" "github.com/sirupsen/logrus" ) func (daemon *Daemon) setupLinkedContainers(container *container.Container) ([]string, error) { retu...
{ "pile_set_name": "Github" }
package xmlutil import ( "bytes" "encoding/base64" "encoding/xml" "fmt" "io" "reflect" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/private/protocol" ) // UnmarshalXMLError unmarshals the XML error from the stream into the value // type specified. The value ...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <doc> <assembly> <name>Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions</name> </assembly> <members> <member name="T:Microsoft.VisualStudio.TestTools.UnitTesting.TestConfiguration"> <summary> Support for configuration settings for Tes...
{ "pile_set_name": "Github" }
;(function(){ NginxTests.access = function (r) { r.sendHttpHeader('text/plain; charset=utf-8') Tests.test('tests for body callback result codes', function (t) { t.test('granted', function (t) { function callback (sr, body, rc) { if (rc != Nginx.OK) return t.eq(sr.headersOut.status, 200...
{ "pile_set_name": "Github" }
var searchData= [ ['width',['width',['../structGLFWvidmode.html#a698dcb200562051a7249cb6ae154c71d',1,'GLFWvidmode::width()'],['../structGLFWimage.html#af6a71cc999fe6d3aea31dd7e9687d835',1,'GLFWimage::width()']]] ];
{ "pile_set_name": "Github" }
package Maasha::BWA; # Copyright (C) 2006-2009 Martin A. Hansen. # 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 the License, or (at your option) any later version. # Th...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes as...
{ "pile_set_name": "Github" }
Recently I visited a zoo in my hometown. It was an awesome experience to be part of the nature. I saw a lot of tigers, elephants, deer and a whole lot of other [animals](../animal/animal.md) I was pretty thirsty. There is a lemonade stand over there. I head over and buy some [lemonade](../drink/lemonade/lemonade.md) ...
{ "pile_set_name": "Github" }
//======================================================================== // GLFW 3.4 macOS - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2009-2019 Camilla Löwy <elmindreda@glfw.org> // // This software is provided 'as-is', without any express or implied // ...
{ "pile_set_name": "Github" }
DimStyle ======== .. module:: ezdxf.entities :noindex: .. image:: ../dxfinternals/tables/gfx/dimvars1.svg :align: center :width: 800px .. image:: ../dxfinternals/tables/gfx/dimvars2.svg :align: center :width: 800px DIMSTYLE (`DXF Reference`_) defines the appearance of :class:`Dimension` entities...
{ "pile_set_name": "Github" }
// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // Parity 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 lat...
{ "pile_set_name": "Github" }
import componentA from './common/componentA'; import componentB from './common/componentB'; import './css/common.css' import './css/pageB.css'; console.log(componentA); console.log(componentB); document.getElementById('xxxxx').addEventListener('click', () => { import( /* webpackChunkName: "async" */ './common/as...
{ "pile_set_name": "Github" }
--- title: colab keywords: sidebar: home_sidebar tags: summary: "Module support for Collaborative Filtering" --- <div class="container" id="notebook-container"> <div class="cell border-box-sizing text_cell rendered"><div class="inner_cell"> <div class="text_cell_render border-box-sizing rendered_html"> <h1 id="...
{ "pile_set_name": "Github" }
#!/bin/bash source activate spacy_condaenv_v1.10.0 python benchmark_small_docs.py -v python benchmark_small_docs.py -p -v python benchmark_small_docs.py tagger -v python benchmark_small_docs.py tagger -p -v python benchmark_small_docs.py tagger,ner -v python benchmark_small_docs.py tagger,ner -p -v
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <responses xmlns="http://dl.kr.org/dig/2003/02/lang" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://dl.kr.org/dig/2003/02/lang http://dl-web.man.ac.uk/dig/2003/02/dig.xsd"> <false id="q0" /> </responses>
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of Guanako. Copyright (C) 2012, 2013, Valama development team Guanako 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 L...
{ "pile_set_name": "Github" }
package com.hankkin.compustrading.slidingmenu; import java.util.ArrayList; import java.util.List; import android.content.Context; import android.graphics.Canvas; import android.graphics.Rect; import android.os.Build; import android.support.v4.view.KeyEventCompat; import android.support.v4.view.MotionEventCompat; impo...
{ "pile_set_name": "Github" }
/* * AXP20x regulators driver. * * Copyright (C) 2013 Carlo Caione <carlo@caione.org> * * This file is subject to the terms and conditions of the GNU General * Public License. See the file "COPYING" in the main directory of this * archive for more details. * * This program is distributed in the hope that it wi...
{ "pile_set_name": "Github" }
/************************************************************************** Filename: hal_board.h Copyright 2008 Texas Instruments, Inc. ***************************************************************************/ #ifndef HAL_BOARD_H #define HAL_BOARD_H // LED 1 = P1.0 #define LED1_DIR P1DIR #define...
{ "pile_set_name": "Github" }
// linux/mksysnum.pl -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h // Code generated by the command above; see README.md. DO NOT EDIT. // +build ppc64le,linux package unix const ( SYS_RESTART_SYSCALL = 0 SYS_EXIT = 1 SYS_FORK = 2 SYS_READ ...
{ "pile_set_name": "Github" }
# /* ************************************************************************** # * * # * (C) Copyright Edward Diener 2014. # * Distributed under the Boost Software License, Version 1.0. (See # * accompanying file LICENSE_1_0.txt o...
{ "pile_set_name": "Github" }
using Newtonsoft.Json.Linq; using Pathoschild.Http.Client; using StrongGrid.Utilities; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace StrongGrid.Resources.Legacy { /// <summary> /// Allows you to create an manage lists. /// </summary> /// <seeal...
{ "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" }
<select id="select"> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <select id="mult" multiple> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> </s...
{ "pile_set_name": "Github" }
# Distributed Tensorflow on Google Compute Engine The scripts in this directory automate the work to run distributed TensorFlow on a cluster of GCE instances. ## Pre-work Before getting started, while GPUs on GCE are in Alpha, you will need to get your project whitelisted in order to get access. These scripts will n...
{ "pile_set_name": "Github" }
# scrolling size to compute the delays scroll_size = 250 # cross correlation computation window size window_size = 500 #amount of maximum points for the xcorrelation taken into account nbest_amount = 4 #flag wether to apply an automatic noise thresholding do_noise_threshold = 1 #Percentage of frames with lower xc...
{ "pile_set_name": "Github" }
#pragma once #include <Register/Utility.hpp> namespace Kvasir { // peripheral DAC0 namespace Dac0Dacr{ ///< register DACR using Addr = Register::Address<0x40033000,0xffffffcc,0x00000000,unsigned char>; /// bitfield DDAS constexpr Register::FieldLocation<Addr,Register::maskFromRange(5,...
{ "pile_set_name": "Github" }
## Radio button A simple way of using radiobuttons ```html <label> <input type='radio' name="radiodemo"> <span class="checkable">Select me</span> </label><br><br> <input id="radiodemo" checked type='radio' name="radiodemo"> <label for="radiodemo" class="checkable">Or me</span> ```
{ "pile_set_name": "Github" }
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) PLANNING_COPTS = ["-DMODULE_NAME=\\\"planning\\\""] cc_library( name = "piecewise_jerk_speed_optimizer", srcs = ["piecewise_jerk_speed_optimizer.cc"], hdrs = ["piecewis...
{ "pile_set_name": "Github" }