text
stringlengths
2
99.9k
meta
dict
using System; namespace GoodAI.BasicNodes.DyBM { public class MyRandom { static Random rand = new Random(); public double NextDouble(float mean, float stdDev) { //these are uniform(0,1) random doubles double u1 = (float)rand.NextDouble(); double u2 ...
{ "pile_set_name": "Github" }
package gen import ( "fmt" "github.com/Aptomi/aptomi/pkg/config" "github.com/Aptomi/aptomi/pkg/lang" "github.com/Aptomi/aptomi/pkg/plugin/k8s" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" "gopkg.in/yaml.v2" "k8s.io/client-go/tools/clientcmd" "k8s.io/client-go/tools/clientcmd/api" ) func newClus...
{ "pile_set_name": "Github" }
package healthcheck import ( "bytes" "testing" "github.com/mitchellh/cli" "github.com/spiffe/go-spiffe/v2/proto/spiffe/workload" common_cli "github.com/spiffe/spire/pkg/common/cli" "github.com/spiffe/spire/test/fakes/fakeworkloadapi" "github.com/stretchr/testify/suite" "google.golang.org/grpc/codes" "google....
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> </startup> </configuration>
{ "pile_set_name": "Github" }
//======== (C) Copyright 2002 Charles G. Cleveland All rights reserved. ========= // // The copyright to the contents herein is the property of Charles G. Cleveland. // The contents may be used and/or copied only with the written permission of // Charles G. Cleveland, or in accordance with the terms and conditions ...
{ "pile_set_name": "Github" }
--- title: StorSimple 8000 シリーズ デバイスへの Update 5.1 のインストール | Microsoft Docs description: StorSimple 8000 シリーズ デバイスに StorSimple 8000 シリーズの Update 5.1 をインストールする方法について説明します。 services: storsimple documentationcenter: NA author: twooley ms.assetid: '' ms.service: storsimple ms.devlang: NA ms.topic: how-to ms.tgt_pltfrm: NA m...
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 %s -fcxx-exceptions -fexceptions -fsyntax-only -verify -fblocks -std=c++11 -Wunreachable-code-aggressive -Wno-unused-value -Wno-tautological-compare int &halt() __attribute__((noreturn)); int &live(); int dead(); int liveti() throw(int); int (*livetip)() throw(int); int test1() { try { live()...
{ "pile_set_name": "Github" }
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ #pragma warning disable 1634, 1691 namespace System.Workflow.Activities { using System; using System.Collections; using...
{ "pile_set_name": "Github" }
using System; using System.Diagnostics; using System.IO; using System.Linq; using System.Windows.Forms; using Microsoft.Win32; using Nexus.Client.Settings; using Nexus.Client.UI; using Nexus.Client.Util; using Nexus.Client.Games.Steam; using System.Xml; namespace Nexus.Client.Games.NoMansSky { /// <summary> /// The ...
{ "pile_set_name": "Github" }
&FORCE_EVAL METHOD Quickstep &DFT &QS METHOD PM6 &SE &END &END QS &SCF MAX_SCF 0 &END SCF &END DFT &SUBSYS &CELL #Mn_2 O_3 & Ia(-3)-T_h^7 #206 (bde) & D5_3 & cI80 & Dachs, Zf Kristall. 107, 37 A -4.70000000 4.70000000 4.70000000 B 4.70000000 -4.7000000...
{ "pile_set_name": "Github" }
import * as ts from "typescript"; import * as Lint from "tslint"; import * as utils from "tsutils/typeguard/2.8"; import * as Ignore from "./shared/ignore"; import { createInvalidNode, CheckNodeResult, createCheckNodeRule } from "./shared/check-node"; type Options = Ignore.IgnoreLocalOption & Ignore.IgnoreOption...
{ "pile_set_name": "Github" }
require(['GlobalShortcutsHelp'], function (gs) { 'use strict'; function init() { $('.global-shortcuts-help-entry-point').on('click', gs.open); } $(init); });
{ "pile_set_name": "Github" }
using System; using System.Reflection; using FluentAssertions; using Newtonsoft.Json.Linq; using Xunit; namespace Serilog.Sinks.Elasticsearch.Tests.Templating { public class SendsTemplateTests : ElasticsearchSinkTestsBase { private readonly Tuple<Uri, string> _templatePut; public SendsTemplat...
{ "pile_set_name": "Github" }
// Sandstorm - Personal Cloud Sandbox // Copyright (c) 2016 Sandstorm Development Group, Inc. and contributors // 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 // /...
{ "pile_set_name": "Github" }
// Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved. // Use of this source code is governed by a MIT license found in the LICENSE file. /* MSGPACK Msgpack-c implementation powers the c, c++, python, ruby, etc libraries. We need to maintain compatibility with it and how it encodes integer values without carin...
{ "pile_set_name": "Github" }
define( [ "./core", "./core/toType", "./var/rcheckableType", "./var/isFunction", "./core/init", "./traversing", // filter "./attributes/prop" ], function( jQuery, toType, rcheckableType, isFunction ) { "use strict"; var rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|f...
{ "pile_set_name": "Github" }
#pragma once #include <util/generic/vector.h> #include <util/generic/stroka.h> #include "synchain.h" #include "factfields.h" #include "factgroup.h" #include "tomitaitemsholder.h" #include "normalization.h" typedef ymap< Stroka, yvector<CFactFields> > CFactSubsets; class CCommonGrammarInterpretation: public CTomita...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!-- Foundation --> <window type="window" id="1119"> <defaultcontrol always="true">9501</defaultcontrol> <controls> <include content="DefHubWindow"> <param name="list" value="skinshortcuts-group-x1119" /> </include> </controls> </window>
{ "pile_set_name": "Github" }
<?php class CoverageNamespacedFunctionTest extends PHPUnit_Framework_TestCase { /** * @covers foo\func() */ public function testFunc() { foo\func(); } }
{ "pile_set_name": "Github" }
#第二次课总结: ##编程中为什么会有丰富化的数据格式? + 编程操作的对象是多种多样的,如名字、数值、属性、关系等。 + 数据格式有数值、字符串、布尔、null和undefined、对象、数组、函数等。 + 我们编程的目的是处理数据,得到结果。这个过程需要时间,而多样的数据格式可供选择与使用,可以缩短时间,节省大量内存,提高运算的效率。 + 丰富的数据格式因为拆分的细,所以使用很灵活。即使碰到复杂的数据格式,也可以用基础类型通过搭积木的方式组合出来。 + 多样的数据格式方便理解应用。多人协同工作的时候有标准可依、互相之间底层共识相同,大大提高协同工作效率。 ###个人静态网页 https://sam-tiao.gith...
{ "pile_set_name": "Github" }
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp3.0</TargetFramework> <RuntimeFrameworkVersion>3.0.3</RuntimeFrameworkVersion> <LangVersion>8.0</LangVersion> <AssemblyName>AgileObjects.AgileMapper.UnitTests.NetCore3</AssemblyName> <RootNamespace>AgileObjects.AgileMap...
{ "pile_set_name": "Github" }
function UnityProgress (dom, args) { this.progress = 0.0; this.message = ""; this.dom = dom; var parent = dom.parentNode; var background = document.createElement("div"); if (args.backgroundcolor) background.style.background = "#"+args.backgroundcolor; else background.style.background = "#ffffff"; backgrou...
{ "pile_set_name": "Github" }
#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' cd "$(dirname "$0")/.." source scripts/utils.sh if [[ -x "$(command -v clang-format-9)" ]]; then CF=clang-format-9 else CF=clang-format clang-format --version | grep " 9." > /dev/null || ( print_warning "WARNING: MediaElch requires clang-format version 9") fi pri...
{ "pile_set_name": "Github" }
/// <reference path="modernizr-2.6.2.js" /> /// <reference path="jquery-1.9.1.js" /> /// <reference path="knockout-2.1.0.debug.js" /> /// <reference path="q.js" /> /// <reference path="toastr.js" /> /// <reference path="require.js" /> /// <reference path="breeze.debug.js" />
{ "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" }
[Icon Data] DisplayName=New DisplayName[af]=Nuut DisplayName[am]=አዲስ DisplayName[ar]=جديد DisplayName[az]=Yeni DisplayName[be]=Новы DisplayName[be@latin]=Novy DisplayName[bg]=Ново DisplayName[bn]=নতুন DisplayName[bn_IN]=নতুন DisplayName[bs]=Novo DisplayName[ca]=Nou DisplayName[cs]=Nové DisplayName[cy]=Newydd DisplayN...
{ "pile_set_name": "Github" }
.\" Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim ...
{ "pile_set_name": "Github" }
## \file ## \ingroup tutorial_pyroot_legacy ## \notebook ## This macro displays the Tree data structures ## ## \macro_image ## \macro_code ## ## \author Wim Lavrijsen from ROOT import TCanvas, TPaveLabel, TPaveText, TPavesText, TText from ROOT import TArrow, TLine from ROOT import gROOT, gBenchmark #gROOT.Reset() c1...
{ "pile_set_name": "Github" }
// Copyright 2013-2015 Bowery, Inc. package prompt import ( "os" "syscall" "unsafe" ) // Flags to control the terminals mode. const ( echoInputFlag = 0x0004 insertModeFlag = 0x0020 lineInputFlag = 0x0002 mouseInputFlag = 0x0010 processedInputFlag = 0x0001 windowInputFlag = 0x0008 ) // ...
{ "pile_set_name": "Github" }
Android Accordion View ====================== Example ------- * git pull * import to eclipse * properties->android uncheck is library * run as android application See [main.xml](https://github.com/hamsterready/android-accordion-view/blob/master/res/layout/main.xml). Screenshot ---------- ![Screenshot](https://ra...
{ "pile_set_name": "Github" }
# coding=utf-8 """ The Batch Webhooks API Endpoint Documentation: https://developer.mailchimp.com/documentation/mailchimp/reference/batch-webhooks/ """ from __future__ import unicode_literals from mailchimp3.baseapi import BaseApi class BatchWebhooks(BaseApi): """ Manage webhooks for batch operations. "...
{ "pile_set_name": "Github" }
package com.itcast.ay05 /** * ClassName:`19.排序` * Description: */ fun main(args: Array<String>) { val list = listOf("z","b","d") // 正序排序 b d z println(list.sorted()) // 倒序排序 println(list.sortedDescending()) // 按字段排序 val list1 = listOf(Person("林青霞",50),Person("张曼玉",30),Person("柳岩",70)) //...
{ "pile_set_name": "Github" }
#include <iostream> #include <sophus/test_macros.hpp> #include <sophus/formatstring.hpp> namespace Sophus { namespace { bool testFormatString() { bool passed = true; SOPHUS_TEST_EQUAL(passed, details::FormatString(), std::string()); std::string test_str = "Hello World!"; SOPHUS_TEST_EQUAL(passed, details::F...
{ "pile_set_name": "Github" }
/** ****************************************************************************** * @file stm32f10x_tim.h * @author MCD Application Team * @version V3.5.0 * @date 11-March-2011 * @brief This file contains all the functions prototypes for the TIM firmware * library. **********...
{ "pile_set_name": "Github" }
// Copyright 2006-2008 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 lis...
{ "pile_set_name": "Github" }
// go run linux/mksysnum.go -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" }
# Since we rely on paths relative to the makefile location, abort if make isn't being run from there. $(if $(findstring /,$(MAKEFILE_LIST)),$(error Please only invoke this makefile from the directory it resides in)) # The files that need updating when incrementing the version number. VERSIONED_FILES := *.js *.json RE...
{ "pile_set_name": "Github" }
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved. // Code generated. DO NOT EDIT. // Key Management Service API // // API for managing and performing operations with keys and vaults. // package keymanagement import ( "github.com/oracle/oci-go-sdk/common" ) // EncryptDataDetails ...
{ "pile_set_name": "Github" }
/** @file EFI Shell protocol as defined in the UEFI Shell 2.0 specification including errata. (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made availab...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using NLog; using YiSha.Util.Extension; namespace YiSha.Util { public class LogHelper { private static readonly Logger log = LogManager.GetLogger(string.Empty); ...
{ "pile_set_name": "Github" }
{ "$schema": "../../../../testbot.schema", "$kind": "Microsoft.AdaptiveDialog", "recognizer": { "$kind": "Microsoft.RegexRecognizer", "intents": [ { "intent": "CreateMeetingIntent", "pattern": "(?i)create meeting" }, { ...
{ "pile_set_name": "Github" }
# OE has been triggered. # there should be no %pass shunts on either side and an active tunnel ipsec trafficstatus ipsec shuntstatus ../../pluto/bin/ipsec-look.sh
{ "pile_set_name": "Github" }
// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // Copyright (C) 2013 James Haley et al. // // 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 F...
{ "pile_set_name": "Github" }
{ "title": "Predefined Symbols (Marker)", "callback": "initMap", "libraries": [], "version": "weekly", "tag": "marker_symbol_predefined", "name": "marker-symbol-predefined" }
{ "pile_set_name": "Github" }
/* drbd_req.c This file is part of DRBD by Philipp Reisner and Lars Ellenberg. Copyright (C) 2001-2008, LINBIT Information Technologies GmbH. Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>. Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>. drbd is free soft...
{ "pile_set_name": "Github" }
<test-metadata> <benchmark-version>1.2</benchmark-version> <category>sqli</category> <test-number>01877</test-number> <vulnerability>false</vulnerability> <cwe>89</cwe> </test-metadata>
{ "pile_set_name": "Github" }
/* Copyright 2015 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, ...
{ "pile_set_name": "Github" }
# # Author:: Daniel DeLeo (<dan@chef.io>) # Copyright:: Copyright (c) Chef Software Inc. # License:: Apache License, Version 2.0 # # 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:/...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <!-- d3 is used by histogram.js <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> --> <script src="https://raw.githubusercontent.com/nnnick/Chart.js/master/Chart.js"></script> <sc...
{ "pile_set_name": "Github" }
#include <QtScript/QScriptEngine> #include <QtScript/QScriptContext> #include <QtScript/QScriptValue> #include <QtCore/QStringList> #include <QtCore/QDebug> #include <qmetaobject.h> #include <qhttp.h> #include <QVariant> #include <qauthenticator.h> #include <qbytearray.h> #include <qcoreevent.h> #include <qhttp.h> #in...
{ "pile_set_name": "Github" }
// hat_yaw00_lev2_p43.mh: #ifndef stasm_hat_yaw00_lev2_p43_mh #define stasm_hat_yaw00_lev2_p43_mh namespace stasm { // tasm -V1 /b/stasm/train/conf/tasm_muct77.conf // static const int EYEMOUTH_DIST = 100; // static const int FACESCALE = 1 // static const int PYRSCALE = 1 // static const double SIGMOIDSCALE...
{ "pile_set_name": "Github" }
### WinUI 3 To build Fluent experiences on Windows using WinUI controls, please see our [WinUI controls documentation](https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/). ### Fluent UI React Native To build Fluent experiences on Windows using Fluent UI React Native, please see our [Cross-pla...
{ "pile_set_name": "Github" }
/** * Copyright 2013-2020 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see http://www.jhipster.tech/ * for more information. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Li...
{ "pile_set_name": "Github" }
DROP TABLE IF EXISTS DECIMAL_6_1; DROP TABLE IF EXISTS DECIMAL_6_2; DROP TABLE IF EXISTS DECIMAL_6_3; CREATE TABLE DECIMAL_6_1(key decimal(10,5), value int) ROW FORMAT DELIMITED FIELDS TERMINATED BY ' ' STORED AS TEXTFILE; CREATE TABLE DECIMAL_6_2(key decimal(17,4), value int) ROW FORMAT DELIMITED FIELDS TERMIN...
{ "pile_set_name": "Github" }
package com.xiaolyuh.service.impl; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import com.xiaolyuh.domain.mapper.PersonMapper; import com.xiaolyuh.domain.model.Person; import com.xiaolyuh.service.PersonService; import org.springframework.beans.factory.annotation.Autowired; import org.sp...
{ "pile_set_name": "Github" }
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:src="http://nwalsh.com/xmlns/litprog/fragment" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="5.0" xml:id="ulink.footno...
{ "pile_set_name": "Github" }
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !darwin,!freebsd,!linux,!solaris package ipv4 import ( "net" "golang.org/x/net/internal/socket" ) func (so *sockOpt) setGroupReq(c *socket.Conn,...
{ "pile_set_name": "Github" }
#define _GNU_SOURCE #include <errno.h> #include <sched.h> #include "syscall.h" #include "atomic.h" #ifdef VDSO_GETCPU_SYM static void *volatile vdso_func; typedef long (*getcpu_f)(unsigned *, unsigned *, void *); static long getcpu_init(unsigned *cpu, unsigned *node, void *unused) { void *p = __vdsosym(VDSO_GETCPU...
{ "pile_set_name": "Github" }
//Copyright (c) ServiceStack, Inc. All Rights Reserved. //License: https://raw.github.com/ServiceStack/ServiceStack/master/license.txt using System; using System.Collections; using System.Collections.Generic; namespace ServiceStack.Data { public interface IEntityStore : IDisposable { T GetB...
{ "pile_set_name": "Github" }
test_noargs Example program is called without arguments so that default range [0..9] is used. test_2_to_2000 Example program is called with "2" and "2000" as arguments. test_overflow Example program is called with "0" and "100000" as arguments. The resulting sum is too large to be stored as an int variable.
{ "pile_set_name": "Github" }
--- layout : blocks/working-session title : Top 10 2017 - Call for Data and Weightings Discussion type : workshop track : Owasp Top 10 2017 technology : related-to : status : done when-day : Mon when-time : PM-1 location : Room-2 organizers : Dave Wichers, Andrew Van D...
{ "pile_set_name": "Github" }
# Copyright 2018/2019 The RLgraph authors. 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 appli...
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -fsyntax-only -verify %s #include "Inputs/cuda.h" // expected-no-diagnostics // Check that we can handle gnu_inline functions when compiling in CUDA mode. void foo(); inline __attribute__((gnu_inline)) void bar() { foo(); }
{ "pile_set_name": "Github" }
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 package software.aws.toolkits.jetbrains.services.lambda.nodejs import com.intellij.openapi.roots.ProjectFileIndex import com.intellij.openapi.vfs.VfsUtilCore import com.intellij.testFramework.runInEdtAndW...
{ "pile_set_name": "Github" }
/* * This file is part of mpv. * * mpv 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 2.1 of the License, or (at your option) any later version. * * mpv is distributed in the h...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/net_cellular" android:layout_width="match_parent" android:layout_heigh...
{ "pile_set_name": "Github" }
(:name howm :website "http://howm.sourceforge.jp/" :description "Write fragmentarily and read collectively." :type http-tar :options ("xzf") :url "http://howm.sourceforge.jp/a/howm-1.4.4.tar.gz" :build `(("./configure" ,(concat "--with-emacs=" el-get-emacs)) ("make")))
{ "pile_set_name": "Github" }
0.7.1 / 2015-04-20 ================== * prevent extraordinary long inputs (@evilpacket) * Fixed broken readme link 0.7.0 / 2014-11-24 ================== * add time abbreviations, updated tests and readme for the new units * fix example in the readme. * add LICENSE file 0.6.2 / 2013-12-05 ================== ...
{ "pile_set_name": "Github" }
/** * SyntaxHighlighter * http://alexgorbatchev.com/ * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate * * @version * 2.0.320 (May 03 2009) * * @copyright * Copyright (C) 2004-2009 Alex Gorbatchev. * * @license...
{ "pile_set_name": "Github" }
module com.networknt.monadresult { exports com.networknt.monad; requires com.networknt.status; requires com.networknt.config; requires com.networknt.utility; requires java.management; requires org.slf4j; requires jdk.unsupported; }
{ "pile_set_name": "Github" }
# Use public servers from the pool.ntp.org project. server {{ groups['chrony'][0] }} iburst # Ignor source level stratumweight 0 # Record the rate at which the system clock gains/losses time. driftfile /var/lib/chrony/drift # Allow the system clock to be stepped in the first three updates # if its offset is larger t...
{ "pile_set_name": "Github" }
import { Convert } from "../ExtensionMethods"; import { DateTime } from "../DateTime"; import { EwsServiceJsonReader } from "../Core/EwsServiceJsonReader"; import { ExchangeService } from "../Core/ExchangeService"; import { ExtendedPropertyCollection } from "../ComplexProperties/ExtendedPropertyCollection"; import { F...
{ "pile_set_name": "Github" }
/* Copyright (C) 2012 Sebastian Herbord. All rights reserved. This file is part of Mod Organizer. Mod Organizer 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 you...
{ "pile_set_name": "Github" }
package org.robolectric.shadows; import static org.robolectric.shadow.api.Shadow.directlyOn; import android.os.Message; import android.os.Messenger; import android.os.RemoteException; import org.robolectric.annotation.Implementation; import org.robolectric.annotation.Implements; import org.robolectric.annotation.Real...
{ "pile_set_name": "Github" }
.. currentmodule:: PyQt5.QtWidgets QKeyEventTransition ------------------- .. class:: QKeyEventTransition `C++ documentation <https://doc.qt.io/qt-5/qkeyeventtransition.html>`_
{ "pile_set_name": "Github" }
encode_krb5_ldap_seqof_key_data: [Sequence/Sequence Of] . [0] [Integer] 1 . [1] [Integer] 1 . [2] [Integer] 42 . [3] [Integer] 14 . [4] [Sequence/Sequence Of] . . [Sequence/Sequence Of] . . . [0] [Sequence/Sequence Of] . . . . [0] [Integer] 0 . . . . [1] [Octet String] "salt0" . . . [1] [Seque...
{ "pile_set_name": "Github" }
package au.com.dius.pact.provider.junit import au.com.dius.pact.core.model.Pact import au.com.dius.pact.core.model.ProviderState import au.com.dius.pact.core.model.Request import au.com.dius.pact.core.model.RequestResponseInteraction import au.com.dius.pact.core.model.RequestResponsePact import au.com.dius.pact.core.m...
{ "pile_set_name": "Github" }
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
{ "pile_set_name": "Github" }
import { ChangeDetectionStrategy, Component, Input, OnDestroy, OnInit, Output, } from '@angular/core'; import { RxState } from '@rx-angular/state'; import { distinctUntilKeyChanged, map, startWith, switchMap, tap } from 'rxjs/operators'; import { ListServerItem, ListService, } from '../../../data-access...
{ "pile_set_name": "Github" }
#include <stdio.h> int main() { int map[256], i; for (i = 0; i < 256; i++) map[i] = i; for (i = 0; i < 26; i++) map['A'+i] = map['a'+i] = "22233344455566677778889999"[i]; while ((i = getchar()) != EOF) putchar(map[i]); return 0; }
{ "pile_set_name": "Github" }
Nevada is a state in the Western, Mountain West, and Southwestern regions of the United States .
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Telerik.Windows.Controls; namespace CustomizingScatterPoints { public class ViewModel : ViewModelBase { private List<ChartData> data; public ViewModel() { this.Data = this.GetData(); } public ...
{ "pile_set_name": "Github" }
function arrowFunctionBodyToCase( j, test, body ) { if ( body.type === 'BlockStatement' ) { return j.switchCase( test, [ body ] ); } return j.switchCase( test, [ j.returnStatement( body ) ] ); } function getCases( j, handlerMap ) { let hasPersistence = false; const cases = handlerMap.properties.map( ( actionNo...
{ "pile_set_name": "Github" }
/* * Copyright 2002-2018 the original author or 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...
{ "pile_set_name": "Github" }
package: name: conda-build-test-extra-metadata version: 1.0 test: requires: - pyyaml extra: custom: metadata however: {we: want}
{ "pile_set_name": "Github" }
// mksyscall_aix_ppc64.pl -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go // Code generated by the command above; see README.md. DO NOT EDIT. // +build aix,ppc64 // +build gccgo package unix /* #include <stdint.h> int utimes(uintptr_t, uintptr_t); int utimensat(int, uintptr_t, uintptr_t, int); int getcwd(ui...
{ "pile_set_name": "Github" }
#!{{pkgPathFor "core/bash"}}/bin/bash set -e exec 2>&1 # Call the script to block until user accepts the MLSA via the package's config {{pkgPathFor "chef/mlsa"}}/bin/accept {{cfg.mlsa.accept}} pg-helper ensure-service-database chef_license_control_service # Run the License Control gRPC server exec license-control-...
{ "pile_set_name": "Github" }
#include <linux/bio.h> void dummy(struct bio *bio) { bio->bi_status = BLK_STS_IOERR; bio_endio(bio); }
{ "pile_set_name": "Github" }
package io.buoyant.namer import com.twitter.finagle.Namer /** For better java compatibility */ abstract class JNamer extends Namer
{ "pile_set_name": "Github" }
#pragma once enum LocationServiceStatus { kLocationServiceStopped, kLocationServiceInitializing, kLocationServiceRunning, kLocationServiceFailed }; class LocationService { public: static void SetDesiredAccuracy(float val); static float GetDesiredAccuracy(); static void SetDistanceFilter(fl...
{ "pile_set_name": "Github" }
# Translation of Odoo Server. # This file contains the translation of the following modules: # * partner_identification # # Translators: # OCA Transbot <transbot@odoo-community.org>, 2017 # Giuliano Lotta <giuliano.lotta@gmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To:...
{ "pile_set_name": "Github" }
--- layout: base title: 'Statistics of obl in UD_Moksha-JR' udver: '2' --- ## Treebank Statistics: UD_Moksha-JR: Relations: `obl` This relation is universal. There are 3 language-specific subtypes of `obl`: <tt><a href="mdf_jr-dep-obl-agent.html">obl:agent</a></tt>, <tt><a href="mdf_jr-dep-obl-lmod.html">obl:lmod</a...
{ "pile_set_name": "Github" }
# Sourcegraph development documentation This documentation is for developers contributing to Sourcegraph itself. Sourcegraph development is open source at [github.com/sourcegraph/sourcegraph](https://github.com/sourcegraph/sourcegraph). ### Project links - [Repository](https://github.com/sourcegraph/sourcegraph) - ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <examples> <example> <code>Add-AWSLoggingListener -Name MyAWSLogs -LogFilePath c:\logs\aws.txt</code> <description>Attaches a listener for the source 'Amazon', matching responses from all services for the current script or shell. Log output will be written to the specif...
{ "pile_set_name": "Github" }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="generator" content="JsDoc To...
{ "pile_set_name": "Github" }
// #include <ogg/ogg.h> (FIXME) int main() { }
{ "pile_set_name": "Github" }
#!/usr/bin/env bash # --build: Build images before starting containers. # --abort-on-container-exit: Stops all containers if any container is stopped docker-compose -f 'docker-compose.test.yml' -p ci up --build --abort-on-container-exit exit $(docker wait ci_express-mongoose-es6-rest-api_1)
{ "pile_set_name": "Github" }
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!159 &1 EditorSettings: m_ObjectHideFlags: 0 serializedVersion: 7 m_ExternalVersionControlSupport: Visible Meta Files m_SerializationMode: 2 m_LineEndingsForNewScripts: 1 m_DefaultBehaviorMode: 0 m_SpritePackerMode: 0 m_SpritePackerPaddingPower: 1 m_EtcTe...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 5930d7d2e705ea74ca30ee6652eb4571 timeCreated: 1454362609 licenseType: Store AudioImporter: serializedVersion: 6 defaultSettings: loadType: 0 sampleRateSetting: 0 sampleRateOverride: 44100 compressionFormat: 0 quality: 1 conversionMode: 0 platformSett...
{ "pile_set_name": "Github" }
/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.workflow; import java.io.IOException; import java.sql.SQLException; import java.uti...
{ "pile_set_name": "Github" }