text
stringlengths
2
99.9k
meta
dict
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. //------------------------------------------------------------------------------ // // // Description: // Co...
{ "pile_set_name": "Github" }
<?php namespace HHVMCraft\Core\World; use HHVMCraft\API\Coordinates2D; use HHVMCraft\Core\Helpers\Hex; class Chunk { const Width = 16; const Height = 128; const Depth = 16; const Size = 32768; public $isModified; public $lastAccessed; public $Blocks = []; public $Metadata = []; public $BlockLight = []; pu...
{ "pile_set_name": "Github" }
import 'dart:collection' as collection_lib; import 'package:angular/angular.dart'; @Directive( selector: 'directive', ) class TestDirective {} @Directive( selector: 'test-directive-with-inputs', ) class TestDirectiveWithInputs { @Input() String input1; @Input() set input2(String input2) {} @Input() ...
{ "pile_set_name": "Github" }
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sr_RS" version="2.0"> <context> <name>XdgMenuReader</name> <message> <source>Menu file not defined.</source> <translation>Фајл менија није дефинисан.</translation> </message> <message> <source>%1 not loading: %2</source> <t...
{ "pile_set_name": "Github" }
{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators ...
{ "pile_set_name": "Github" }
## 题目 输入两棵二叉树`A`,`B`,判断`B`是不是`A`的子结构。(ps:我们约定空树不是任意一个树的子结构) ## 思路 首先找到`A`树中和`B`树根节点相同的节点 从此节点开始,递归`AB`树比较是否有不同节点 ## 代码 ```js function HasSubtree(pRoot1, pRoot2) { let result = false; if (pRoot1 && pRoot2) { if (pRoot1.val === pRoot2.val) { result = compare(pRoot1, pRoot2); ...
{ "pile_set_name": "Github" }
using System.Collections.Generic; using MappingGenerator.RoslynHelpers; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Editing; namespace MappingGenerator.Mappings.MappingMatchers { public interface IMappingMatcher { IReadOnlyList<MappingMatch> MatchAll(IReadOnlyCollection<IObject...
{ "pile_set_name": "Github" }
public class NewStmt { public static void main(String [] args){ NewStmt ns; ns = new NewStmt(); new NewStmt(); } }
{ "pile_set_name": "Github" }
package slick.test.stream import org.testng.annotations.{AfterClass, BeforeClass} import scala.concurrent.ExecutionContext import slick.memory.MemoryProfile class HeapPublisherTest extends RelationalPublisherTest[MemoryProfile](MemoryProfile, 300L) { import profile.api._ def createDB = Database(ExecutionContext...
{ "pile_set_name": "Github" }
README.md
{ "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" }
// duration.hpp --------------------------------------------------------------// // Copyright 2008 Howard Hinnant // Copyright 2008 Beman Dawes // Copyright 2009-2011 Vicente J. Botet Escriba // Distributed under the Boost Software License, Version 1.0. // See http://www.boost.org/LICENSE_1_0.txt /* This cod...
{ "pile_set_name": "Github" }
// // detail/hash_map.hpp // ~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // 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 ASIO_DETAIL_HASH_MAP_...
{ "pile_set_name": "Github" }
// // Thumbnails // -------------------------------------------------- // Mixin and adjust the regular image class .thumbnail { display: block; padding: @thumbnail-padding; margin-bottom: @line-height-computed; line-height: @line-height-base; background-color: @thumbnail-bg; border: 1px solid @thumbnail-b...
{ "pile_set_name": "Github" }
Red/System [ Title: "Red/System null test script" Author: "Nenad Rakocevic & Peter W A Wood" File: %namespace-test.reds Tabs: 4 Rights: "Copyright (C) 2011-2015 Red Foundation. All rights reserved." License: "BSD-3 - https://github.com/red/red/blob/origin/BSD-3-License.txt" ] #include %../../../../quick-t...
{ "pile_set_name": "Github" }
#!/bin/sh # the IP:port our fteproxy client listens on CLIENT_IP=127.0.0.1 CLIENT_PORT=8079 # the IP:port our fteproxy server listens on SERVER_IP=127.0.0.1 SERVER_PORT=8080 # the IP:port where our fteproxy forwards all connections # in this test, it's the IP:port the server-side netcat will bind to PROXY_IP=127.0.0...
{ "pile_set_name": "Github" }
#!/usr/bin/env bash set -e set -o pipefail find=( find . -name .git -prune -o -name "*.elc" -o -type f -print ) readarray -t files < <("${find[@]}" | sort) code="$(cat <<"EOF" (length($0) >= 80 && $0 !~ /https?:\/\//) \ { printf "%s:%d: %s\n", FILENAME, NR, $0 } EOF )" for file in "${files[@]}"; ...
{ "pile_set_name": "Github" }
// Copyright (c) 2001-2011 Hartmut Kaiser // // 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_SPIRIT_KARMA_BOOL_POLICIES_SEP_28_2009_1203PM) #define BOOST_SPIRIT_KARMA_BOOL_POLICIES_SEP...
{ "pile_set_name": "Github" }
""" Test the nifti_masker module Functions in this file only test features added by the NiftiMasker class, not the underlying functions used (e.g. clean()). See test_masking.py and test_signal.py for this. """ # Author: Gael Varoquaux, Philippe Gervais # License: simplified BSD import os import shutil from tempfile im...
{ "pile_set_name": "Github" }
# -*- coding: UTF-8 -*- #/** # * Software Name : pycrate # * Version : 0.4 # * # * Copyright 2018. Benoit Michau. ANSSI. P1sec. # * # * This library is free software; you can redistribute it and/or # * modify it under the terms of the GNU Lesser General Public # * License as published by the Free Software Foundation; e...
{ "pile_set_name": "Github" }
// // SUStandardVersionComparator.h // Sparkle // // Created by Andy Matuschak on 12/21/07. // Copyright 2007 Andy Matuschak. All rights reserved. // #ifndef SUSTANDARDVERSIONCOMPARATOR_H #define SUSTANDARDVERSIONCOMPARATOR_H #if __has_feature(modules) @import Foundation; #else #import <Foundation/Foundation.h> #...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <title>Controlfrog - Meaningful Metrics</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="../../css/bootstrap.css" rel="stylesheet"> <link ...
{ "pile_set_name": "Github" }
<?xml version="1.0" standalone="no" ?> <!DOCTYPE project PUBLIC "-//audacityproject-1.3.0//DTD//EN" "http://audacity.sourceforge.net/xml/audacityproject-1.3.0.dtd" > <project xmlns="http://audacity.sourceforge.net/xml/" projname="winch_data" version="1.3.0" audacityversion="2.1.2" sel0="0.0000000000" sel1="0.0000000000...
{ "pile_set_name": "Github" }
# Waiatarua, Auckland NZ # # Channel allocation details for NZ can be found at # http://en.wikipedia.org/wiki/Freeview_(New_Zealand) # [CHANNEL] DELIVERY_SYSTEM = DVBT FREQUENCY = 538000000 BANDWIDTH_HZ = 8000000 CODE_RATE_HP = 3/4 CODE_RATE_LP = NONE MODULATION = QAM/64 TRANSMISSION_MODE = 8K GUARD_INTERVAL =...
{ "pile_set_name": "Github" }
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *---------------------------------------------------------------...
{ "pile_set_name": "Github" }
<div class="apiDetail"> <div> <h2><span>Function(node, disabled, inheritParent, inheritChildren)</span><span class="path">zTreeObj.</span>setChkDisabled</h2> <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.excheck</span> js ]</span></h3> <div class="desc"> <p></p> <div c...
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations import converter.validators class Migration(migrations.Migration): dependencies = [ ('converter', '0006_auto_20150708_0120'), ] operations = [ migrations.AlterField( mode...
{ "pile_set_name": "Github" }
module.exports = { plugins: [ require('autoprefixer')({ browsers: [ 'last 2 versions', '> 5%', 'Safari 7' // for PhantomJS support ] }) ] };
{ "pile_set_name": "Github" }
// Copyright 2013 the V8 project authors. All rights reserved. // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. 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" }
/* * SonarQube * Copyright (C) 2009-2020 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
{ "pile_set_name": "Github" }
/// @file /// Assembly procedures to get and set ESAL entry point. /// /// Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR> /// This program and the accompanying materials /// are licensed and made available under the terms and conditions of the BSD License /// which accompanies this distribution...
{ "pile_set_name": "Github" }
// // RHAddressBook_Private.h // RHAddressBook // // Created by Richard Heard on 11/11/11. // Copyright (c) 2011 Richard Heard. 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. Re...
{ "pile_set_name": "Github" }
// Copyright 2014 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/network_hints/common/network_hints_messages.h" #include "base/strings/string_number_conversions.h" #include "components/network_hint...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectModuleManager"> <modules> <module fileurl="file://$PROJECT_DIR$/StepCount_Demo.iml" filepath="$PROJECT_DIR$/StepCount_Demo.iml" /> <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml...
{ "pile_set_name": "Github" }
import { IconDefinition, IconPrefix, IconName } from "@fortawesome/fontawesome-common-types"; export const definition: IconDefinition; export const faArrowAltCircleRight: IconDefinition; export const prefix: IconPrefix; export const iconName: IconName; export const width: number; export const height: number; export con...
{ "pile_set_name": "Github" }
// Copyright 2010 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of ...
{ "pile_set_name": "Github" }
// run-pass pub fn main() { let x: isize = 3; println!("&x={:x}", (&x as *const isize as usize)); }
{ "pile_set_name": "Github" }
40 columns | >>> part of with uri that fits part of "uri.dart"; <<< part of "uri.dart"; >>> part of with uri does not split on long line part of "very_very_very_very_long_uri.dart"; <<< part of "very_very_very_very_long_uri.dart";
{ "pile_set_name": "Github" }
/* * Copyright (C) ST-Ericsson AB 2012 * * Main and Back-up battery management driver. * * Note: Backup battery management is required in case of Li-Ion battery and not * for capacitive battery. HREF boards have capacitive battery and hence backup * battery management is not used and the supported code is availa...
{ "pile_set_name": "Github" }
Why we don't support IE 8 ------------------------- We've been living in 2007 for a while now, pretending that new browser features don't exist because they aren't in IE8. You might not even know about some of these features, or think they are only enabled by jQuery or underscore, simply because it hasn't been an opt...
{ "pile_set_name": "Github" }
# This file is part of ElectricEye. # ElectricEye is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # ElectricEye is distributed in the...
{ "pile_set_name": "Github" }
import puppeteer, { LaunchOptions, Browser, Page } from 'puppeteer' import { ChromeVersion } from '../runtime/Settings' export type ConcreteLaunchOptions = LaunchOptions & { args: string[] chromeVersion: ChromeVersion | string sandbox: boolean debug: boolean } const defaultLaunchOptions: ConcreteLaunchOptions = ...
{ "pile_set_name": "Github" }
package com.swissborg.lithium package strategy import cats.effect.SyncIO class StaticQuorumSpec extends LithiumSpec { "StaticQuorum" must { simulate[SyncIO, StaticQuorum, CleanPartitionScenario]("handle clean partitions")(_.unsafeRunSync()) simulate[SyncIO, StaticQuorum, OldestRemovedDisseminationScenario...
{ "pile_set_name": "Github" }
module.exports = { args: { parameters: [ { in: 'path', name: 'path1', type: 'boolean', }, { in: 'path', name: 'path2', type: 'boolean', }, { in: 'query', name: 'query1', type: 'boolean', }, { ...
{ "pile_set_name": "Github" }
--- title: Shrine 1.0.0 --- # Backwards compatibility * The `delete_invalid` plugin was removed, because it was unstable since next form submission would cause errors of trying to delete the cached file which was already deleted. * The callback code has been changed, which means that any external ORM plugins s...
{ "pile_set_name": "Github" }
----------------------------------------------------------------------- Psi4: An Open-Source Ab Initio Electronic Structure Package Psi4 1.1rc3.dev5 Git: Rev {master} 3fbd859 R. M. Parrish, L. A. Burns, D. G. A. Smith, A. C. Simmonett, ...
{ "pile_set_name": "Github" }
class entity_enemy_t extends entity_t { _init(name) { this._model = model_init(model_data[10], .7, 10); this._speed = 28; this._hurt = 0; this._group = entities_enemies; this._has_strong_target = 0; this._update_target_wait = 0; this._can_hurt_wait = 0; super._init(); } _update() { this._update_t...
{ "pile_set_name": "Github" }
--- name: Fix/update alternative about: Fix or update an exsting alternative. title: "[FIX] Fix/update alternative" labels: '' assignees: '' --- [//]: # ( Fill out to the best of your ability. ) [//]: # ( If an item is not applicable, feel free to leave it blank. ) [//]: # ( Mark off checkbox items by putting an x i...
{ "pile_set_name": "Github" }
Internet Engineering Task Force (IETF) A. Popov Request for Comments: 7465 Microsoft Corp. Updates: 5246, 4346, 2246 February 2015 Category: Standards Track ISSN: 2070-1721 Prohibiting RC4 Cipher Suites ...
{ "pile_set_name": "Github" }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
{ "pile_set_name": "Github" }
/* * mainstone-wm97xx.c -- Mainstone Continuous Touch screen driver for * Wolfson WM97xx AC97 Codecs. * * Copyright 2004, 2007 Wolfson Microelectronics PLC. * Author: Liam Girdwood <lrg@slimlogic.co.uk> * Parts Copyright : Ian Molton <spyro@f2s.com> * Andrew Zabolotny ...
{ "pile_set_name": "Github" }
from django.shortcuts import get_object_or_404 from django.views.decorators.cache import cache_control from django.views.decorators.http import condition from oioioi.contestlogo.models import ContestIcon, ContestLogo from oioioi.filetracker.utils import stream_file def last_change(request, image_object): return ...
{ "pile_set_name": "Github" }
\begin{transitionframe}{Images/Transitions/NietzscheGod3}{black} \textbf{Part E:} Criticisms \end{transitionframe} \begin{frame}{Criticisms}{S5} \centering $$ \all P.[ \pos \nec P \imp \nec P ] $$ \medskip If something is possibly necessary, then it is necessary. \pause \bigskip $ \pos\only<8->{_c} \nec\only<8...
{ "pile_set_name": "Github" }
// Module included in the following assemblies: // // assembly-resource-limits-and-requests.adoc [id='proc-configuring-resource-limits-and-requests-{context}'] = Configuring resource requests and limits .Prerequisites * A Kubernetes cluster * A running Cluster Operator .Procedure . Edit the `resources` property in...
{ "pile_set_name": "Github" }
package pongo2 import ( "bytes" ) type NodeWrapper struct { Endtag string nodes []INode } func (wrapper *NodeWrapper) Execute(ctx *ExecutionContext, buffer *bytes.Buffer) *Error { for _, n := range wrapper.nodes { err := n.Execute(ctx, buffer) if err != nil { return err } } return nil }
{ "pile_set_name": "Github" }
/* * Helper routines for SuperH Clock Pulse Generator blocks (CPG). * * Copyright (C) 2010 Magnus Damm * Copyright (C) 2010 - 2012 Paul Mundt * * 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 det...
{ "pile_set_name": "Github" }
/* MONOTONE module for SoLoud audio engine Copyright (c) 2013-2020 Jari Komppa This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any pur...
{ "pile_set_name": "Github" }
#include "CastorUtils/Graphics/StbImageWriter.hpp" #include "CastorUtils/Data/LoaderException.hpp" #include "CastorUtils/Data/Path.hpp" #include "CastorUtils/Graphics/PixelBuffer.hpp" #include "CastorUtils/Graphics/Rectangle.hpp" #include "CastorUtils/Log/Logger.hpp" #define STB_IMAGE_WRITE_IMPLEMENTATION #if defined...
{ "pile_set_name": "Github" }
// +build !windows package chrootarchive // import "github.com/docker/docker/pkg/chrootarchive" import ( "fmt" "io" "io/ioutil" "os" "github.com/docker/docker/pkg/reexec" ) func init() { reexec.Register("docker-applyLayer", applyLayer) reexec.Register("docker-untar", untar) } func fatal(err error) { fmt.Fp...
{ "pile_set_name": "Github" }
/* * 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. * * This program is distributed in the hope that it will be use...
{ "pile_set_name": "Github" }
{ "LANG_NAME": "한국어", "BACKING_UP": "%ls 백업 중...\n", "DELETING": "%ls 삭제 중...\n", "DOWNGRADE": "%ls 다운그레이드", "DOWNGRADING": "%ls 다운그레이드 중...\n", "DOWNGRADING_NOT_NEEDED": "%ls 다운그레이드 불필요.\n", "DUMP": "%ls 덤프", "DUMPING": "%ls \n%ls에\n덤프 중...\n", "INJECT": "%ls 삽입", "INJECTING": "%ls \n%ls에\n삽입 중...\n", "DECR...
{ "pile_set_name": "Github" }
export type AnalyticsClientOptions = { /** * The application id. */ readonly appId: string; /** * The api key. */ readonly apiKey: string; /** * The prefered region. */ readonly region?: 'de' | 'us'; };
{ "pile_set_name": "Github" }
config SND_AOA_SOUNDBUS tristate "Apple Soundbus support" select SND_PCM ---help--- This option enables the generic driver for the soundbus support on Apple machines. It is required for the sound bus implementations. config SND_AOA_SOUNDBUS_I2S tristate "I2S bus support" depends on SND_AOA_SOUNDBUS && PCI -...
{ "pile_set_name": "Github" }
// Copyright 2009 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. // +build amd64,linux package unix //sys Dup2(oldfd int, newfd int) (err error) //sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) //...
{ "pile_set_name": "Github" }
var baseGetAllKeys = require('./_baseGetAllKeys'), getSymbolsIn = require('./_getSymbolsIn'), keysIn = require('./keysIn'); /** * Creates an array of own and inherited enumerable property names and * symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Return...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2019 Jeremy Jamet / Kunzisoft. This file is part of KeePassDX. KeePassDX 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...
{ "pile_set_name": "Github" }
import * as path from 'path'; import FileUtil from '../../Util/FileUtil'; import Util from '../../Util/Util'; import * as DBSchema from './DBSchema'; import DBTableBase from './DBTableBase'; interface EncodedDBInterface extends DBTableBase { create(): Promise<void>; drop(): Promise<void>; insert(recordedId...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <!-- 别名 --> <typeAliases> <package name="com.ssm.pojo"/> </typeAliases> </configuration>
{ "pile_set_name": "Github" }
config PPC_47x bool "Support for 47x variant" depends on 44x default n select MPIC help This option enables support for the 47x family of processors and is not currently compatible with other 44x or 46x varients config BAMBOO bool "Bamboo" depends on 44x default n select PPC44x_SIMPLE select 440EP sel...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2014 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/license...
{ "pile_set_name": "Github" }
sha256:d144a70c1cf300498f9b591d8017e5e275301f8d5f2e48feb9e3a2b38cdd79df
{ "pile_set_name": "Github" }
/* ** Copyright (c) 2012 The Khronos Group Inc. ** ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the ** "Materials"), to deal in the Materials without restriction, including ** without limitation the rights to use, copy, modify...
{ "pile_set_name": "Github" }
// Copyright 2009 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. // http://golang.org/src/os/stat_solaris.go package times import ( "os" "syscall" "time" ) // HasChangeTime and HasBirthTime are true if and only if // th...
{ "pile_set_name": "Github" }
<html> <head> <title>BOOST_PP_ENUM_TRAILING_PARAMS_Z</title> <link rel="stylesheet" type="text/css" href="../styles.css"> </head> <body> <div style="margin-left: 0px;"> The <b>BOOST_PP_ENUM_TRAILING_PARAMS_Z</b> macro generates a comma-separated list of parameters with a leading comma.&nbsp; It reenters...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <ZopeData> <record id="1" aka="AAAAAAAAAAE="> <pickle> <global name="FloatField" module="Products.Formulator.StandardFields"/> </pickle> <pickle> <dictionary> <item> <key> <string>id</string> </key> <value> <string>my_delivery_ratio</string...
{ "pile_set_name": "Github" }
/*! @file Forward declares `boost::hana::if_`. @copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_FWD_IF_HPP #define BOOST_HANA_FWD_IF_HPP #include <boost/hana/config.hpp> #...
{ "pile_set_name": "Github" }
"A pattern matching library. Utilities for manipulating deeply-nested data and lists in general, as well as binding multiple values. ## Literal patterns A literal pattern matches only if the scrutinee (what's being matched) compares [[eql?]] to the literal. One can use any Urn atom here: strings, numbers, keys ...
{ "pile_set_name": "Github" }
/* * Copyright 2013 Goldman Sachs. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
{ "pile_set_name": "Github" }
require('../../modules/es6.symbol'); module.exports = require('../../modules/_core').Symbol['for'];
{ "pile_set_name": "Github" }
using System.IO; using System.Text; namespace newtelligence.DasBlog.Runtime.Html.Formatting { internal class XmlWriter : HtmlWriter { private bool _containsText; private StringBuilder _unformatted; private string _tagName; private bool _isUnknownXml; public XmlWriter(int initialIndent, string tagName, s...
{ "pile_set_name": "Github" }
<?php /** * @package CRM * @copyright CiviCRM LLC https://civicrm.org/licensing * * Generated from xml/schema/CRM/Core/JobLog.xml * DO NOT EDIT. Generated by CRM_Core_CodeGen * (GenCodeChecksum:74e191eba977eb496bae109ca9720ab7) */ /** * Database access object for the JobLog entity. */ class CRM_Core_DAO_Job...
{ "pile_set_name": "Github" }
.. _`About Vortex OpenSplice`: ####################### About Vortex Opensplice ####################### ********************* Why Vortex OpenSplice ********************* What is Vortex OpenSplice? ========================== The purpose of Vortex OpenSplice is to provide an infrastructure and middlewa...
{ "pile_set_name": "Github" }
if ARCH_NOMADIK menu "Nomadik boards" config MACH_NOMADIK_8815NHK bool "ST 8815 Nomadik Hardware Kit (evaluation board)" select NOMADIK_8815 select HAS_MTU endmenu config NOMADIK_8815 bool config I2C_BITBANG_8815NHK tristate "Driver for bit-bang busses found on the 8815 NHK" depends on I2C && MACH_NOMADIK_88...
{ "pile_set_name": "Github" }
cvxpy\.reductions\.dcp2cone package =================================== Subpackages ----------- .. toctree:: cvxpy.reductions.dcp2cone.atom_canonicalizers Submodules ---------- cvxpy\.reductions\.dcp2cone\.cone\_matrix\_stuffing module ---------------------------------------------------------- .. automodule::...
{ "pile_set_name": "Github" }
""" Usage: python our_cleanup_script.py This script is used to intake the male survey data from UNICEF and save it to a simple database file after it has been checked for duplicates and missing data and after the headers have been properly matched with the data. It expects there to be a 'mn.csv' file with the data and...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010 Broadcom Corporation * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHO...
{ "pile_set_name": "Github" }
<?php /* * This file is part of Twig. * * (c) 2009 Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Stores the Twig configuration. * * @author Fabien Potencier <fabien@symfony.com> */ class Twig_Environm...
{ "pile_set_name": "Github" }
{ mkDerivation, extra-cmake-modules, shared-mime-info, bluez-qt, kcoreaddons, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications, kwidgetsaddons, kwindowsystem, plasma-framework, qtdeclarative }: mkDerivation { name = "bluedevil"; nativeBuildInputs = [ extra-cmake-modules shared-mime-info ]; buildI...
{ "pile_set_name": "Github" }
<# #How to Monitor an Amazon S3 Bucket for New Files with PowerShell Prerequisites: AWS Account Access Keys Powershell Module: AWSPowershell SNIPS INSTALLING A MODULE FROM THE POWERSHELL GALLERY #> #region # We need to create a user in IAM (Identity Access Management), so th...
{ "pile_set_name": "Github" }
import pyaf.Bench.TS_datasets as tsds import tests.artificial.process_artificial_dataset as art art.process_dataset(N = 1024 , FREQ = 'D', seed = 0, trendtype = "PolyTrend", cycle_length = 12, transform = "Integration", sigma = 0.0, exog_count = 0, ar_order = 12);
{ "pile_set_name": "Github" }
import { TestBed } from '@angular/core/testing'; import { ConfigurationProvider } from '../../config/config.provider'; import { LoggerService } from '../../logging/logger.service'; import { LoggerServiceMock } from '../../logging/logger.service-mock'; import { TokenHelperService } from './oidc-token-helper.service'; d...
{ "pile_set_name": "Github" }
Like `chown -R`. Takes the same arguments as `fs.chown()`
{ "pile_set_name": "Github" }
/* * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "lice...
{ "pile_set_name": "Github" }
// @flow import { type ProvisionalUserKeys } from '@tanker/identity'; import { tcrypto, utils } from '@tanker/crypto'; import { InternalError } from '@tanker/errors'; import { preferredNature, NATURE_KIND } from '../Blocks/Nature'; import { type VerificationFields, hashBlock } from '../Blocks/Block'; import { getStat...
{ "pile_set_name": "Github" }
# generated at Mon Jun 17 13:22:45 2019 using merge.py # format: flowerpot-1 (azalea) # specs: https://del.dog/flowerpot $1 # STATIC TEMPLATE &category|image ;android.intent.category.APP_GALLERY # PHOTOGRAPHY com.motorola.camera com.oneplus.gallery image.photoedit.photogallery com.adobe.psmobile com.google.android.apps...
{ "pile_set_name": "Github" }
#!/usr/bin/perl # # $Id: soa.pl 523 2008-10-23 14:19:24Z calle $ require 5.008; use warnings; use strict; use DNSCheck; ###################################################################### my $check = new DNSCheck({ interactive => 1, extras => { debug => 1 } }); # die "usage: $0 zone ns1-name ns1-ip ns2-name ns2...
{ "pile_set_name": "Github" }
// @flow import {Component} from 'react'; class MyComponent extends Component { static defaultProps: DefaultProps = {}; props: Props; state: State = {}; defaultProps: T; static props: T; static state: T; a: T; b = 5; c: T = 5; method() {} } const expression = () => class extends Component { ...
{ "pile_set_name": "Github" }
import 'package:flutter/material.dart'; class CustomGiftCardPage extends StatefulWidget { @override _CustomGiftCardPageState createState() => new _CustomGiftCardPageState(); } class _CustomGiftCardPageState extends State<CustomGiftCardPage> { @override Widget build(BuildContext context) { final _deviceHei...
{ "pile_set_name": "Github" }
/*================================================================================ code generated by: java2cpp author: Zoran Angelov, mailto://baldzar@gmail.com class: java.util.AbstractList ================================================================================*/ #ifndef J2CPP_INCLUDE_IMPLEMENT...
{ "pile_set_name": "Github" }
#ifndef __VWSTRUCT_HEADER__ #define __VWSTRUCT_HEADER__ #include <set> using namespace std; #include "VwStructBase.h" #include "VwStructCache.h" #include "ErrorLog.h" #include "ProcCfg.h" #include "VwSpiderMatchMemV.h" #include <windows.h> #include <stdio.h> //#include "VwSpiderMatch.h" /** * Http Header Info 信息存...
{ "pile_set_name": "Github" }