text
stringlengths
2
99.9k
meta
dict
/** * Select2 Georgian (Kartuli) translation. * * Author: Dimitri Kurashvili dimakura@gmail.com */ (function ($) { "use strict"; $.fn.select2.locales['ka'] = { formatNoMatches: function () { return "แƒ•แƒ”แƒ  แƒ›แƒแƒ˜แƒซแƒ”แƒ‘แƒœแƒ"; }, formatInputTooShort: function (input, min) { var n = min - input.length; ...
{ "pile_set_name": "Github" }
/* * (C) Copyright 2003 * Thomas.Lange@corelatus.se * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <command.h> #include <mach/au1x00.h> #include <asm/mipsregs.h> #include <asm/io.h> DECLARE_GLOBAL_DATA_PTR; int dram_init(void) { /* Sdram is setup by assembler code */ /* If memory could ...
{ "pile_set_name": "Github" }
/****************************************************************************** * * Module Name: exoparg6 - AML execution - opcodes with 6 arguments * *****************************************************************************/ /* * Copyright (C) 2000 - 2007, R. Byron Moore * All rights reserved. * * Redist...
{ "pile_set_name": "Github" }
# Licensed under a 3-clause BSD style license - see LICENSE.rst #cython: language_level=3 """ The functions defined here allow one to determine the exact area of overlap of a rectangle and a circle (written by Thomas Robitaille). """ import numpy as np cimport numpy as np __all__ = ['circular_overlap_grid'] cdef ex...
{ "pile_set_name": "Github" }
{ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", "metadata": { "machine": "Mark2_for_Ultimaker2", "position": "0" }, "overrides": { "extruder_nr": { "default_value": 0, "maximum_value": "1" }, "machine_nozzle_offset...
{ "pile_set_name": "Github" }
; RUN: llc -mtriple=thumb-eabi -mcpu=cortex-a8 %s -o - | FileCheck %s -check-prefix=ARMv7A ; RUN: llc -mtriple=thumb-eabi -mcpu=cortex-m3 %s -o - | FileCheck %s -check-prefix=ARMv7M define i32 @test1(i32 %x) { ; ARMv7A: test1 ; ARMv7A: uxtb16 r0, r0 ; ARMv7M: test1 ; ARMv7M: bic r0, r0, #-16711936 %tmp1 = and i32 %x...
{ "pile_set_name": "Github" }
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ // // 1. Set default font family to sans-serif. // 2. Prevent iOS and IE text size adjust after device orientation change, // without disabling user zoom. // html { font-family: sans-serif; // 1 -ms-text-size-adjust: 100%; // 2 -web...
{ "pile_set_name": "Github" }
(** First step of a splitter refinement; indexed representation, and handle all rules with at most one nonterminal; leave a reflective goal *) Require Import Coq.Strings.String. Require Import Fiat.Common.List.ListFacts. Require Import Fiat.ADTNotation.BuildADT Fiat.ADTNotation.BuildADTSig. Require Import Fiat.ADT.Comp...
{ "pile_set_name": "Github" }
// SuperTux // Copyright (C) 2015 Ingo Ruhnke <grumbel@gmail.com> // // 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 ve...
{ "pile_set_name": "Github" }
#include "float_math.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include "planetri.h" /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution an...
{ "pile_set_name": "Github" }
-- in.test -- -- execsql {SELECT a+ 100*(a BETWEEN 1 and 3) FROM t1 ORDER BY b} SELECT a+ 100*(a BETWEEN 1 and 3) FROM t1 ORDER BY b
{ "pile_set_name": "Github" }
@include describe("The json-decode--null function") { @include it("should properly decode null to null") { @include should(expect(nth(_json-decode--null('null', 2), 2)), to(equal(null))); } @include it("should decode to null type") { @include should(expect(type-of(nth(_json-decode--null('null', 2), 2))),...
{ "pile_set_name": "Github" }
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { AngularComponent } from './angular.component'; @NgModule({ imports: [CommonModule], declarations: [AngularComponent], providers: [], }) export class AngularModule {}
{ "pile_set_name": "Github" }
{ "package": "com.android.gpstest.osmdroid", "verified": true, "authors": [ "AndyBernie" ], "last_update": { "timestamp": 1573909761 }, "recommendation": "@unnecessary", "behaviors": [ "@standard" ] }
{ "pile_set_name": "Github" }
// (C) Copyright 2009-2011 Frederic Bron. // Use, modification and distribution are 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_0.txt) #include "test.hpp" #include "check_integral_constant.hpp" #ifdef TEST_STD ...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2000, 2018, 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" }
<?xml version="1.0" encoding="utf-8"?> <browserconfig> <msapplication> <tile> <square150x150logo src="images/favicons/mstile-150x150.png"/> <square310x310logo src="images/favicons/mstile-310x310.png"/> <TileColor>#2d89ef</TileColor> </tile> </msapplication> </...
{ "pile_set_name": "Github" }
package easik.ui.datamanip; //~--- JDK imports ------------------------------------------------------------ import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.JButton; import j...
{ "pile_set_name": "Github" }
from typing import Tuple import bs4 from werkzeug.test import Client def get_error_title(resp_data: str) -> Tuple[str, str]: soup = bs4.BeautifulSoup(resp_data, "html.parser") return soup.find("h1").string, soup.find("h2").string def test_handle_404(web_client: Client) -> None: resp = web_client.get("/...
{ "pile_set_name": "Github" }
--- title: BuildingBlockEntries.Parent Property (Word) keywords: vbawd10.chm36242410 f1_keywords: - vbawd10.chm36242410 ms.prod: word api_name: - Word.BuildingBlockEntries.Parent ms.assetid: b24e4da5-1cc5-9359-1dbf-d28a24d6db22 ms.date: 06/08/2017 --- # BuildingBlockEntries.Parent Property (Word) Returns an **Objec...
{ "pile_set_name": "Github" }
<?php /** * Smarty Internal Plugin Compile Append * Compiles the {append} tag * * @package Smarty * @subpackage Compiler * @author Uwe Tews */ /** * Smarty Internal Plugin Compile Append Class * * @package Smarty * @subpackage Compiler */ class Smarty_Internal_Compile_Append extends Smarty_Intern...
{ "pile_set_name": "Github" }
<?php /* * $Id$ * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CO...
{ "pile_set_name": "Github" }
Topologies: Sub-topology: 0 Source: KSTREAM-SOURCE-0000000000 (topics: [LEFT]) --> KSTREAM-TRANSFORMVALUES-0000000001 Processor: KSTREAM-TRANSFORMVALUES-0000000001 (stores: []) --> LeftSourceKeyed-SelectKey <-- KSTREAM-SOURCE-0000000000 Processor: LeftSourceKeyed-SelectKey (stores: []) ...
{ "pile_set_name": "Github" }
// // DemoViewController.m // TwProfile // // Created by Edgar on 5/1/13. // Copyright (c) 2013 mx.com.hunk. All rights reserved. // #import "DemoViewController.h" #import "ProfileViewController.h" #import "ProfileScrollViewController.h" #import "ProfileImagesViewController.h" #import "ProfileImagesScrollViewContr...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2002 - 2003 * NetGroup, Politecnico di Torino (Italy) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain t...
{ "pile_set_name": "Github" }
// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Comparing different copy schemes against spread initial literals. // Benchmarks for large holey double arrays. const largeHoleyArray = new Array(1e5...
{ "pile_set_name": "Github" }
package p1.p2; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; public class ToolbarTestActivity extends AppCompatActivity { @Override protected void onCreate(@Nullable Bundle savedInstanceState) { ...
{ "pile_set_name": "Github" }
package plugin import ( "encoding/json" "io" "io/ioutil" "os" "path/filepath" "reflect" "regexp" "sort" "strings" "sync" "github.com/Sirupsen/logrus" "github.com/docker/distribution/reference" "github.com/docker/docker/api/types" "github.com/docker/docker/image" "github.com/docker/docker/layer" "githu...
{ "pile_set_name": "Github" }
{ "ver": "2.3.5", "uuid": "3b564f95-7eed-4b13-aa43-f5db43dc1e86", "type": "sprite", "wrapMode": "clamp", "filterMode": "bilinear", "premultiplyAlpha": false, "genMipmaps": false, "packable": true, "width": 58, "height": 78, "platformSettings": {}, "subMetas": { "LEGO_txfd_spark2_2": { ...
{ "pile_set_name": "Github" }
glabel func_809A1A08 /* 003F8 809A1A08 AFA40000 */ sw $a0, 0x0000($sp) /* 003FC 809A1A0C AFA50004 */ sw $a1, 0x0004($sp) /* 00400 809A1A10 84CF0056 */ lh $t7, 0x0056($a2) ## 00000056 /* 00404 809A1A14 84CE005C */ lh $t6, 0x005C($a2) ## 0000005C /* 00408 ...
{ "pile_set_name": "Github" }
{ "name" : "SketchUp", "version" : "2016", "os" : "mac", "mods_used" : ["COMMAND", "SHIFT"], "default_context" : "Global Context", "contexts" : { "Global Context" : { "A" : [ {"name":"2 Point Arc", "mods":[]}, {"name":"Select All", "mods":["COM...
{ "pile_set_name": "Github" }
# Python Security Project (PySec) and its related class files. # # PySec is a set of tools for secure application development under Linux # # Copyright 2014 PySec development team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You...
{ "pile_set_name": "Github" }
/* * Copyright 2017 JBoss 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 to i...
{ "pile_set_name": "Github" }
๏ปฟ#pragma warning disable 1591 //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is re...
{ "pile_set_name": "Github" }
t db 0,1,2 mov al,t[1]
{ "pile_set_name": "Github" }
SET citus.next_shard_id TO 1200000; SET citus.next_placement_id TO 1200000; -- =================================================================== -- test end-to-end modification functionality -- =================================================================== CREATE TABLE researchers ( id bigint NOT NULL, lab_...
{ "pile_set_name": "Github" }
// !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 2C505DC5205E759500A96390 /* libpyWolf.system.macOS.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C505DC6205E759500A96390 /* libpyWolf.system.macOS.dylib */; }; 2CB6D9B8205EFB1D00F8B4E...
{ "pile_set_name": "Github" }
/* * Copyright (c) 1997, 2019, 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" }
enum {OS_UNKNOWN, OS_WIN95, OS_WIN98, OS_WINME, OS_WINNT, OS_WIN2K, OS_WINXP, OS_WIN2K3}; char *Uptime(int startup=0); int OSVersionCheck(void); #ifndef NO_SYSINFO inline unsigned __int64 GetCycleCount(void); unsigned __int64 GetCPUSpeed(void); char *sysinfo(char *sinfo, SOCKET sock); #endif #ifndef NO_NE...
{ "pile_set_name": "Github" }
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved #include "DisplayMan...
{ "pile_set_name": "Github" }
--- http_interactions: - request: method: get uri: http://ps.pndsn.com/v2/auth/grant/sub-key/sub-a-mock-key?channel=demo&pnsdk=PubNub-Ruby/4.1.0&r=0&signature=zIGN36bzCJDw8DgovQpIeNzB2L9koD9y7Sep7COTtR4=&timestamp=1464192841&ttl=300&uuid=ruby-test-uuid-client-one&w=0 body: encoding: UTF-8 string...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2009, Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * n...
{ "pile_set_name": "Github" }
mat3 xll_constructMat3( mat4 m) { return mat3( vec3( m[0]), vec3( m[1]), vec3( m[2])); } struct v2f_vertex_lit { vec2 uv; vec4 diff; vec4 spec; }; struct v2f_img { vec4 pos; vec2 uv; }; struct appdata_img { vec4 vertex; vec2 texcoord; }; struct v2f { vec4 pos; vec2 uv; vec4 nz;...
{ "pile_set_name": "Github" }
// // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_LOCALE_DATE_TIME_HPP_INCLUDED #define BOOST_LOCALE_DATE_TIME_HPP_INCLUDED #...
{ "pile_set_name": "Github" }
// underlying_type.hpp ---------------------------------------------------------// // Copyright Beman Dawes, 2009 // Copyright (C) 2011-2012 Vicente J. Botet Escriba // Copyright (C) 2012 Anthony Williams // Copyright (C) 2014 Andrey Semashev // Distributed under the Boost Software License, Version 1.0. // Se...
{ "pile_set_name": "Github" }
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. require 'new_relic/coerce' module NewRelic class MetricData # a NewRelic::MetricSpec object attr_reader :metric_spec # the actual st...
{ "pile_set_name": "Github" }
๏ปฟ// Octopus MFS is an integrated suite for managing a Micro Finance Institution: // clients, contracts, accounting, reporting and risk // Copyright ยฉ 2006,2007 OCTO Technology & OXUS Development Network // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser G...
{ "pile_set_name": "Github" }
#pragma once #include "coding/reader.hpp" #include "base/base.hpp" #include <cstddef> #include <cstdint> #include <memory> #include <string> // FileReader, cheap to copy, not thread safe. // It is assumed that file is not modified during FireReader lifetime, // because of caching and assumption that Size() is const...
{ "pile_set_name": "Github" }
--TEST-- Function snmp_set_oid_output_format --CREDITS-- Olivier Doucet --SKIPIF-- <?php require_once(__DIR__.'/skipif.inc'); if (!function_exists('snmp_set_oid_output_format')) die('skip This function is only available if using NET_SNMP'); ?> --FILE-- <?php require_once(__DIR__.'/snmp_include.inc'); echo "Checking er...
{ "pile_set_name": "Github" }
package com.fasterxml.jackson.databind.introspect; import java.io.IOException; import java.io.StringWriter; import java.util.*; import javax.xml.namespace.QName; import com.fasterxml.jackson.annotation.*; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.core.JsonParser; import com.faste...
{ "pile_set_name": "Github" }
// Range v3 library // // Copyright Eric Niebler 2014-present // // 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_0.txt) // // Project home: https://github.com/ericniebler/range-v3 ...
{ "pile_set_name": "Github" }
#!/usr/bin/python -tt import eucalyptus_admin.commands.bootstrap.deregisterservice if __name__ == '__main__': eucalyptus_admin.commands.bootstrap.deregisterservice.DeregisterService.run()
{ "pile_set_name": "Github" }
--- title: Core.PrintfFormat<'Printer,'State,'Residue,'Result,'Tuple> Constructor (F#) description: Core.PrintfFormat<'Printer,'State,'Residue,'Result,'Tuple> Constructor (F#) keywords: visual f#, f#, functional programming author: dend manager: danielfe ms.date: 05/16/2016 ms.topic: language-reference ms.prod: visual-...
{ "pile_set_name": "Github" }
from stream_framework.tests.feeds.aggregated_feed.base import TestAggregatedFeed from stream_framework.feeds.aggregated_feed.notification_feed import RedisNotificationFeed class TestNotificationFeed(TestAggregatedFeed): feed_cls = RedisNotificationFeed def test_mark_all(self): # start by adding one ...
{ "pile_set_name": "Github" }
class CFMessagePort { } var kCFMessagePortSuccess: Int32 { get } var kCFMessagePortSendTimeout: Int32 { get } var kCFMessagePortReceiveTimeout: Int32 { get } var kCFMessagePortIsInvalid: Int32 { get } var kCFMessagePortTransportError: Int32 { get } var kCFMessagePortBecameInvalidError: Int32 { get } struct CFMessagePo...
{ "pile_set_name": "Github" }
[ { "kind": "ObjectTypeDefinition", "interfaces": [ { "kind": "ImplementedInterface", "interface": { "kind": "NamedType", "name": { "kind": "Identifier", "value": "IDat...
{ "pile_set_name": "Github" }
๏ปฟ/************************************************************************************* Extended WPF Toolkit Copyright (C) 2007-2013 Xceed Software Inc. This program is provided to you under the terms of the Microsoft Public License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license ...
{ "pile_set_name": "Github" }
temple = { name = "Temple" conditions = { unit_class = lumber_mill } }
{ "pile_set_name": "Github" }
///////////////////////////////////////////////////////////////////////////// // Name: wx/xrc/xh_listbk.h // Purpose: XML resource handler for wxListbook // Author: Vaclav Slavik // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ////////////////////////////////////////////////////...
{ "pile_set_name": "Github" }
'use strict'; // This file contains then/promise specific extensions that are only useful // for node.js interop var Promise = require('./core.js'); var asap = require('asap'); module.exports = Promise; /* Static Functions */ Promise.denodeify = function (fn, argumentCount) { if ( typeof argumentCount === 'n...
{ "pile_set_name": "Github" }
# Authors * Ascensio System SIA: <integration@onlyoffice.com>
{ "pile_set_name": "Github" }
from __future__ import print_function, unicode_literals import win32com.client import codecs FILE = 1 DRAFT = 4 def login(user, password): app = win32com.client.Dispatch('NovellGroupWareSession') account = app.MultiLogin(user, None, password, 1) # 0 - promptIfNeeded # 1 - noverPrompt ...
{ "pile_set_name": "Github" }
/** * @file * CSS File for Views Slideshow: ImageFlow */ .imageflow { /* overflow: visible; */ }
{ "pile_set_name": "Github" }
4 3 0 0 1 1 1 0 4 0 0 0 1 1 0 1 1 5 0 0 0 1 0 2 2 2 2 0 4 0 1 2 2 3 0 1 -1
{ "pile_set_name": "Github" }
<?php namespace oasis\names\specification\ubl\schema\xsd\CommonBasicComponents_2; /** * @xmlNamespace urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2 * @xmlType OrderableIndicatorType * @xmlName OrderableIndicator * @var oasis\names\specification\ubl\schema\xsd\CommonBasicComponents_2\Orderabl...
{ "pile_set_name": "Github" }
package com.mashibing.service.impl; import com.mashibing.bean.TblSendLog; import com.mashibing.mapper.TblSendLogMapper; import com.mashibing.service.base.TblSendLogService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; /** * <p> * ๅ‘้€ๆ—ฅๅฟ—่กจ ๆœๅŠกๅฎž็Žฐ็ฑป * <...
{ "pile_set_name": "Github" }
{ "@metadata": { "authors": [ "Cgtdk", "Christian List", "EileenSanda", "Laketown", "Palnatoke", "Simeondahl", "Tehnix", "Macofe", "Peter Alberti" ] }, "ooui-outline-control-move-down": "Flyt ned", "ooui-outline-control-move-up": "Flyt op", "ooui-toolbar-more": "Mere", "ooui-toolgro...
{ "pile_set_name": "Github" }
var config = { type: Phaser.WEBGL, width: 800, height: 600, parent: 'phaser-example', pixelArt: true, physics: { default: 'arcade', arcade: { gravity: { y: 100 }, debug: false } }, scene: { preload: preload, create: create, ...
{ "pile_set_name": "Github" }
๏ปฟ// // CSharpDocumentOptionsProvider.cs // // Author: // Mike Krรผger <mikkrg@microsoft.com> // // Copyright (c) 2017 Microsoft Corporation // // 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 S...
{ "pile_set_name": "Github" }
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at https://g...
{ "pile_set_name": "Github" }
//------------------------------------------------------------------------------ /* This file is part of Beast: https://github.com/vinniefalco/Beast Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com> Permission to use, copy, modify, and/or distribute this software for any purpose with or without f...
{ "pile_set_name": "Github" }
// Copyright (c) 1997-2001 ETH Zurich (Switzerland). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // 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 opt...
{ "pile_set_name": "Github" }
<?php /* * Copyright (c) 2011-2015 Lp digital system * * This file is part of BackBee. * * BackBee 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...
{ "pile_set_name": "Github" }
import numpy as np import chainer from chainer import cuda import chainer.functions as F from chainercv.links.model.faster_rcnn.utils.anchor_target_creator import AnchorTargetCreator from utils.proposal_target_creator import ProposalTargetCreator from chainer import computational_graph as c from chainercv.li...
{ "pile_set_name": "Github" }
# Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'target_defaults': { 'default_configuration': 'Baz', 'configurations': { 'Baz': { 'msvs_configuration_attributes': { 'OutputDir...
{ "pile_set_name": "Github" }
<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <DocumentationFile>bin\Debug\netcoreapp2.1\SecurityDemo.Authentication.JWT.xml</DocumentationFile> ...
{ "pile_set_name": "Github" }
--- title: Reference documentation notoc: true --- This section includes the reference documentation for the Docker platform's various APIs, CLIs, and file formats. ## File formats | File format | Description ...
{ "pile_set_name": "Github" }
<!doctype html> <html lang="en"> <head> <title>Code coverage report for socket.io-client/lib/url.js</title> <meta charset="utf-8"> <link rel="stylesheet" href="../../prettify.css"> <style> body, html { margin:0; padding: 0; } body { font-family: Helvetic...
{ "pile_set_name": "Github" }
#ifndef __StaticBoundarySimulator_h__ #define __StaticBoundarySimulator_h__ #include "BoundarySimulator.h" namespace SPH { class SimulatorBase; class TriangleMesh; class StaticBoundarySimulator : public BoundarySimulator { protected: SimulatorBase *m_base; void loadObj(const std::string &filename, Triangle...
{ "pile_set_name": "Github" }
@page lsg-adding Adding to Existing JS Docs @parent lsg.guides 1 @group lsg-adding-group-intro 0 Intro @group lsg-adding-group-setup 1 Setup @group lsg-adding-group-next-steps 2 Next Steps This guide will: * Give a designer-friendly explanation of what DocumentJS does * Make sure you have everything you need installe...
{ "pile_set_name": "Github" }
module("luci.controller.verysync", package.seeall) function index() if not nixio.fs.access("/etc/config/verysync") then return end entry({"admin", "nas", "verysync"}, cbi("verysync"), _("Verysync"), 10).dependent = true entry({"admin","nas","verysync","status"},call("act_status")).leaf=true end function act_st...
{ "pile_set_name": "Github" }
๏ปฟ//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by AsyncGenerator. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //---------------------------------...
{ "pile_set_name": "Github" }
/* * arch/arm/mach-sa1100/include/mach/assabet.h * * Created 2000/06/05 by Nicolas Pitre <nico@fluxnic.net> * * This file contains the hardware specific definitions for Assabet * Only include this file from SA1100-specific files. * * 2000/05/23 John Dorsey <john+@cs.cmu.edu> * Definitions for Neponset add...
{ "pile_set_name": "Github" }
<RCC> <qresource prefix="/"> <file>right_arrow_disable.png</file> <file>right_arrow.png</file> <file>left_arrow_disable.png</file> <file>left_arrow.png</file> <file>popupCalendar.qml</file> </qresource> </RCC>
{ "pile_set_name": "Github" }
### YamlMime:Landing title: Mobile Development with C++ | Windows UWP, Android and iOS # < 60 chars summary: Create native C++ apps for iOS, Android, and Windows devices with Visual Studio. # < 160 chars metadata: title: Mobile development with C++ documentation # Required; page title displayed in search results. In...
{ "pile_set_name": "Github" }
# Stubs for networkx.algorithms.assortativity (Python 3.5) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from networkx.algorithms.assortativity.connectivity import * from networkx.algorithms.assortativity.correlation import * from networkx.algorithms.assortativity.mixing import * from n...
{ "pile_set_name": "Github" }
# Make sure that connection_control plugin can be loaded --source ../inc/have_connection_control_plugin.inc # Save the initial number of concurrent sessions --source include/count_sessions.inc --echo #----------------------------------------------------------------------- --echo # Setup --echo # Install connection_co...
{ "pile_set_name": "Github" }
/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1989-2011 AT&T Intellectual Property * * and i...
{ "pile_set_name": "Github" }
package meli import ( "archive/tar" "bufio" "bytes" "context" "encoding/json" "fmt" "io" "io/ioutil" "os" "path/filepath" "strings" "sync" "github.com/docker/docker/api/types" "github.com/pkg/errors" ) // PullDockerImage pulls a docker from a registry via docker daemon func PullDockerImage(ctx context....
{ "pile_set_name": "Github" }
// Type definitions for Angular JS 1.4+ // Project: http://angularjs.org // Definitions by: Diego Vilar <http://github.com/diegovilar> // Definitions: https://github.com/borisyankov/DefinitelyTyped /// <reference path="../jquery/jquery.d.ts" /> declare var angular: angular.IAngularStatic; // Support for painless de...
{ "pile_set_name": "Github" }
sheet.fx.getRemoteCell = function(sheet, address){ var identifier = $(sheet).attr('data-calx-identifier'); if(!identifier || typeof(calx.sheetRegistry[identifier]) == 'undefined'){ return false; } return calx.sheetRegistry[identifier].getCell(address); };
{ "pile_set_name": "Github" }
import { IBounding } from '../interfaces'; const normalizeCssColor = require('normalize-css-color'); export interface IRGBA { r: number; g: number; b: number; a: number; } export function safeToLower(input: string | any): string | any { if (typeof input === 'string') { return input.toLowerCase(); } return ...
{ "pile_set_name": "Github" }
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com> // // 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 ...
{ "pile_set_name": "Github" }
// // NSTimer+YYAdd.h // YYCategories <https://github.com/ibireme/YYCategories> // // Created by ibireme on 14/15/11. // Copyright (c) 2015 ibireme. // // This source code is licensed under the MIT-style license found in the // LICENSE file in the root directory of this source tree. // #import <Foundation/Founda...
{ "pile_set_name": "Github" }
GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _LINUX_KDEV_T_H #define _LINUX_KDEV_T_H /* Some programs want their definitions of MAJOR and MINOR and MKDEV from the kernel sources. These must be the externally visible ones. */ #define MAJOR(dev) ((dev)>>8) #define MINOR(dev) ((dev) & 0xff) #def...
{ "pile_set_name": "Github" }
// Copyright (C) 2016 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 applicable ...
{ "pile_set_name": "Github" }
"""A file that wraps c++ functions used in kernels submodule of grakel""" # Author: Ioannis Siglidis <y.siglidis@gmail.com> # License: BSD 3 clause" import numpy as np import cython from functools import reduce as freduce from itertools import combinations from collections import defaultdict from numpy import floor, ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>planner.el whoops</title> <!-- 2015-10-19 Mon 13:59 --> <meta http-equiv="Content-Type" ...
{ "pile_set_name": "Github" }
# Change Log All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ## [2.2.0] - 2019-04-22 - Make signals configurable by event callback (PR [#85...
{ "pile_set_name": "Github" }