text
stringlengths
2
99.9k
meta
dict
codebattle_port: 4000 codebattle_github_id: "22fdd43a4b3766546204" codebattle_github_secret: "eaac6e0cb603e652a133bde58902507a13cb0901" codebattle_db_hostname: "db" codebattle_db_username: "postgres" codebattle_db_password: "" codebattle_db_name: "codebattle_dev" codebattle_db_port: 5432 codebattle_secret_key_base: "as...
{ "pile_set_name": "Github" }
{% load dojox.dtl.contrib.data %} {% bind_data items to store as google %} <ul> {% for item in google %} <li class="search-result"> <div> <a href="{{item.link}}">{{item.title}}</a> <div style="display:none" class="content"> <h2>{{item.title}}</h2> {{item.content}} </div> </div> <div class="summary"> {{item....
{ "pile_set_name": "Github" }
/******************************************************************************* * Copyright (c) 2015 Low Latency Trading Limited : Author Richard Rose * 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 L...
{ "pile_set_name": "Github" }
# embedding-examples This directory contains test pages / demos for different ways of embedding and configuring the Hypothesis client. The examples are designed to be used with a local instance of h at http://localhost:5000. If you want to use them with the public Hypothesis service, change the origin in [client.js][...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2015 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 app...
{ "pile_set_name": "Github" }
require 'spec_helper' require 'chewy/minitest' describe :minitest_helper do class << self alias_method :teardown, :after end def assert_includes(haystack, needle, _comment) expect(haystack).to include(needle) end include ::Chewy::Minitest::Helpers before do Chewy.massacre end before do ...
{ "pile_set_name": "Github" }
package com.cheng.mvpframestudy.themvp.model.impl; import android.os.Handler; import com.cheng.mvpframestudy.themvp.model.i.ILoginModel; import com.cheng.mvpframestudy.themvp.presenter.i.OnLoginListener; import de.greenrobot.event.EventBus; /** * Created by Administrator on 2015/11/24. */ public class LoginModelI...
{ "pile_set_name": "Github" }
// RegisterManager.cpp: implementation of the CRegisterManager class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "RegisterManager.h" #include "Common.h" #include <IOSTREAM> using namespace std; /////////////////////////////////////////////////////////////////...
{ "pile_set_name": "Github" }
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/apigateway/model/GetClientCertificateRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::APIGateway::Model; using namespace Aws::Utils::J...
{ "pile_set_name": "Github" }
/* See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * Esri Inc. licenses this file to You 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" }
[ { "elapsedTime": 8, "contents": { "params": { "processId": 31508, "trace": "verbose", "rootUri": "file://%CURRENT_DIR%/project1", "rootPath": "%CURRENT_DIR%/project1", "initializationOptions": {}, "capabilities": { "window": { "acti...
{ "pile_set_name": "Github" }
--- layout: post title: 'FEX 技术周刊 - 2017/07/10' author: hefangshi tag: weekly --- 微信搜索『FEX』关注我们的公众号,及时获得最新资讯。 ## 业界会议 **百度 AI 开发者大会** http://create.baidu.com/ 如你所知,1956年的夏天,AI出现在人们的视野。也如你所见,六十余年的时间,技术开发者们坚持探索、影响世界。2017 年,又是一个夏天,百度诚邀全球开发者,共享AI技术盛宴。希望一切,依然如你所愿......这次会议前端相关的可关注:[百度Web生态构建](https://mp.weixin.qq.c...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __EXTENTIO__ #define __EXTENTIO__ #include <linux/rbtree.h> #include <linux/refcount.h> #include "ulist.h" /* bits for the extent state */ #define EXTENT_DIRTY (1U << 0) #define EXTENT_WRITEBACK (1U << 1) #define EXTENT_UPTODATE (1U << 2) #define EXTENT_LOCKED (1U << ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <title>Documentación de la API</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <link type='text/css' rel='stylesheet' href='../../apidoc/stylesheets/bundled/bootstrap.min.css'/> <link ...
{ "pile_set_name": "Github" }
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "golang.org/x/crypto/openpgp/errors" "io" ) // Reader reads packets from an io.Reader and allows packets to be 'unread' so // that t...
{ "pile_set_name": "Github" }
(define (cube x) (cube-iter 1.0 x 0.0)) (define (good-enough? guess last) (< (/ (abs (- guess last)) guess) 0.00001)) (define (average x y) (/ (+ x y) 2)) (define (improve y x) (/ (+ (/ x (square y)) (* 2 y)) 3)) (define (cube-iter guess x last) (if (good-enough? guess last) guess (cube-iter (improve gu...
{ "pile_set_name": "Github" }
```html <template> <div> {{name}} : {{cpt}} <button @click="inc()">+1</button> </div> </template> <script lang="python"> class Component: def __init__(self, name): # name is a props ! self.cpt=0 def inc(self): self.cpt+=1 </script> <style scoped> :scope {background:yellow} </...
{ "pile_set_name": "Github" }
#!/usr/bin/env python3 #GI_TYPELIB_PATH=$PREFIX/lib/girepository-1.0/ ./period-type.py ############################################################################### # # Copyright (C) 2015 William Yu <williamyu@gnome.org> # # This library is free software; you can redistribute it and/or modify # it under the terms of...
{ "pile_set_name": "Github" }
# # (C) Copyright 2013-2015 # NVIDIA Corporation <www.nvidia.com> # # SPDX-License-Identifier: GPL-2.0+ # obj-y += p2571.o
{ "pile_set_name": "Github" }
namespace Acerola.Infrastructure.InMemoryDataAccess { using Autofac; public class Module : Autofac.Module { protected override void Load(ContainerBuilder builder) { builder.RegisterType<Context>() .As<Context>() .SingleInstance(); //...
{ "pile_set_name": "Github" }
/* * This file is part of FFmpeg. * * FFmpeg 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. * * FFmpeg is distributed...
{ "pile_set_name": "Github" }
// RUN: toyc-ch6 %s -emit=llvm -opt func @main() { %0 = toy.constant dense<[[1.000000e+00, 2.000000e+00, 3.000000e+00], [4.000000e+00, 5.000000e+00, 6.000000e+00]]> : tensor<2x3xf64> %2 = toy.transpose(%0 : tensor<2x3xf64>) to tensor<3x2xf64> %3 = toy.mul %2, %2 : tensor<3x2xf64> toy.print %3 : tensor<3x2xf64>...
{ "pile_set_name": "Github" }
body { font-size: 12px; font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, sans-serif; font-weight: normal; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; margin:0; padding:0; } .treegrid { margin: 0; color: #2e3436; background-c...
{ "pile_set_name": "Github" }
### FILE="Main.annotation" ## Copyright: Public domain. ## Filename: LUNAR_AND_SOLAR_EPHEMERIDES_SUBROUTINES.agc ## Purpose: A log section of Zerlina 56, the final revision of ## Don Eyles's offline development program for the variable ## guidance period servicer. It also includes a ...
{ "pile_set_name": "Github" }
/* * Generated by util/mkerr.pl DO NOT EDIT * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or...
{ "pile_set_name": "Github" }
%---------------------------------------------------------------------------% % vim: ts=4 sw=4 et ft=mercury %---------------------------------------------------------------------------% :- module intermod_typeclass_bug. :- interface. :- import_module io. :- pred main(io::di, io::uo) is det. :- implementation. :-...
{ "pile_set_name": "Github" }
# © 2016 and later: Unicode, Inc. and others. # License & terms of use: http://www.unicode.org/copyright.html#License # # File: Mlym_Gujr.txt # Generated from CLDR # ::[ം-ഃഅ-ഌഎ-ഐഒ-നപ-ഹാ-\u0D43െ-ൈൊ-\u0D4Dൗൠ-ൡ൦-൯]; ::NFD; ::Malayalam-InterIndic; ::InterIndic-Gujarati; ::NFC;
{ "pile_set_name": "Github" }
import datetime import logging import time from sqlalchemy import Column, Index from sqlalchemy.ext.hybrid import hybrid_property from sqlalchemy.orm import relationship from sqlalchemy.types import Date, SmallInteger, Integer, String from gtfsdb import config from gtfsdb.model.base import Base __all__ = ['Calendar...
{ "pile_set_name": "Github" }
/** * jQuery EasyUI 1.4.1 * * Copyright (c) 2009-2014 www.jeasyui.com. All rights reserved. * * Licensed under the GPL license: http://www.gnu.org/licenses/gpl.txt * To use it on other terms please contact us at info@jeasyui.com * */ (function($){ var _1=0; function _2(a,o){ for(var i=0,_3=a.length...
{ "pile_set_name": "Github" }
--- title: 別の StorSimple 8000 デバイスへのフェールオーバー、ディザスター リカバリー description: StorSimple 8000 シリーズ物理デバイスを別の物理デバイスにフェールオーバーする方法を説明します。 services: storsimple documentationcenter: '' author: alkohli manager: timlt editor: '' ms.assetid: '' ms.service: storsimple ms.devlang: na ms.topic: how-to ms.tgt_pltfrm: na ms.workload: na ms...
{ "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" }
/** * Copyright (C) 2007 Orbeon, Inc. * * 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 * 2.1 of the License, or (at your option) any later version. * * This prog...
{ "pile_set_name": "Github" }
- Please format your commit messages according to the ["Conventional Commits"](https://www.conventionalcommits.org/en/v1.0.0/) specification If you aren't familiar with Conventional Commits, here's a good [article on the topic](https://dev.to/maniflames/how-conventional-commits-improved-my-git-skills-1jfk) TL/DR: - ...
{ "pile_set_name": "Github" }
# REST APIs and Sessions Sessions in Pode are normally done using cookies, but you can also use them via headers as well. This way you can have two endpoints for authentication login/logout, and the rest of your routes depend on a valid SessionId. !!! info The full example can be seen on GitHub in `examples/web-a...
{ "pile_set_name": "Github" }
From c3c0a31ba35e49ac2f8fdc46eb04ad41d7460ad9 Mon Sep 17 00:00:00 2001 From: Michael Vines <mvines@silklabs.com> Date: Fri, 24 Jul 2015 23:43:43 -0700 Subject: [PATCH] Android.mk --- Android.mk | 2 ++ android/jni/libusb.mk | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 Andr...
{ "pile_set_name": "Github" }
rem %PIN_HOME%\ia32\bin\pin -t %1\ida-splode.dll -python demo.py -mw demo -en "main" -- %1\demo.exe && python demo.py rem %PIN_HOME%\ia32\bin\pin -t %1\ida-splode.dll -r "demo!main" -- %1\demo.exe && python demo.py rem %PIN_HOME%\ia32\bin\pin -t %1\ida-splode.dll -r "demo!main" -- %1\demo.exe %PIN_HOME%\ia32\bin...
{ "pile_set_name": "Github" }
<?php /* * * ____ _ _ __ __ _ __ __ ____ * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \ * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) | * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/ * |_| \___/ \___...
{ "pile_set_name": "Github" }
//===--- InstOptUtils.h - SILOptimizer instruction utilities ----*- C++ -*-===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/L...
{ "pile_set_name": "Github" }
/* * Copyright 2012, Samsung Telecommunications of America * 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.apac...
{ "pile_set_name": "Github" }
--- title: References dialog box keywords: vbui6.chm2016020 f1_keywords: - vbui6.chm2016020 ms.prod: office ms.assetid: 0fe6d98f-b047-a0c4-9451-e1821ad3a05a ms.date: 11/27/2018 localization_priority: Normal --- # References dialog box ![References dialog box](../../../images/referdia_ZA01201648.gif) Allows you to ...
{ "pile_set_name": "Github" }
""" pandas._config is considered explicitly upstream of everything else in pandas, should have no intra-pandas dependencies. importing `dates` and `display` ensures that keys needed by _libs are initialized. """ __all__ = [ "config", "detect_console_encoding", "get_option", "set_option", "reset_opt...
{ "pile_set_name": "Github" }
// Copyright 2009-2020 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #include "../common/isa.h" // to define EMBREE_TARGET_SIMD8 #if defined (EMBREE_TARGET_SIMD8) #include "bvh8_factory.h" #include "../bvh/bvh.h" #include "../geometry/curveNv.h" #include "../geometry/curveNi.h" #include "../geometry/curv...
{ "pile_set_name": "Github" }
""" formlayout ========== Module creating Qt form dialogs/layouts to edit various type of parameters formlayout License Agreement (MIT License) ------------------------------------------ Copyright (c) 2009 Pierre Raybaut Permission is hereby granted, free of charge, to any person obtaining a copy of this software ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:id="@+id/menu_audio_device" android:icon="@drawable/ic_phonelink_ring_white_24dp" android:title="@string/audio_d...
{ "pile_set_name": "Github" }
/* GIMP - The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * gimptoolpalette.h * Copyright (C) 2010 Michael Natterer <mitch@gimp.org> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as publis...
{ "pile_set_name": "Github" }
/* * Copyright 2016 Rackspace * * 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 ...
{ "pile_set_name": "Github" }
""" This module offers highlevel functions to get package metadata like the METADATA file, the name, or a list of dependencies. Usage examples: # Getting package name from pip reference: from pytonforandroid.pythonpackage import get_package_name print(get_package_name("pillow")) # ...
{ "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 https://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 License. You m...
{ "pile_set_name": "Github" }
--- Description: . ms.assetid: a812f2b2-fde8-432a-bd1b-1c13d7cbb573 title: System.Document.PageCount ms.topic: article ms.date: 05/31/2018 --- # System.Document.PageCount ## Windows 10, version 1703, Windows 10, version 1607, Windows 10, version 1511, Windows 10, version 1507, Windows 8.1, Windows 8, Windows 7, Windo...
{ "pile_set_name": "Github" }
imports: - { resource: ./../config/default.yml } security: encoders: Symfony\Component\Security\Core\User\User: plaintext providers: in_memory: memory: users: johannes: { password: test, roles: [ROLE_USER] } firewalls: default: ...
{ "pile_set_name": "Github" }
/***************************************************************************** * ijksdl_thread.c ***************************************************************************** * * Copyright (c) 2013 Bilibili * copyright (c) 2013 Zhang Rui <bbcallen@gmail.com> * * This file is part of ijkPlayer. * * ijkPlayer is...
{ "pile_set_name": "Github" }
/******************************************************************************* * Copyright (c) 2012, 2018 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * and Eclipse Distribution License v1.0 which accompany ...
{ "pile_set_name": "Github" }
#define DO_GUARD 1 //#define UNREAL1 1 #define UNREAL25 1 #define UNREAL3 1 // for compression functions only #define XBOX360 1 // XBox360 compression support #define LEAD 1
{ "pile_set_name": "Github" }
version https://git-lfs.github.com/spec/v1 oid sha256:64164f46955af9d0070de51d30b51eb1dc6bd2294cdc4d629342f2ebbd8a39a6 size 174928
{ "pile_set_name": "Github" }
'use strict' import wrap from '../wrap/kefir' import Tracer from '..' function main() { if (!window.Kefir) { console.warn('global Kefir not found!') return } let tracer = new Tracer({ filterFiles: ['kefir.js', 'kefirvision.js'], onValue: function (entry, id) { // console.log('rxvision', e...
{ "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...
{ "pile_set_name": "Github" }
// SPDX-License-Identifier: GPL-2.0 #include <test_progs.h> #include "cgroup_helpers.h" #define FOO "/foo" #define BAR "/foo/bar/" #define PING_CMD "ping -q -c1 -w1 127.0.0.1 > /dev/null" static char bpf_log_buf[BPF_LOG_BUF_SIZE]; static int prog_load(int verdict) { struct bpf_insn prog[] = { BPF_MOV64_IMM(BP...
{ "pile_set_name": "Github" }
/* **************************************************************************** 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 requ...
{ "pile_set_name": "Github" }
/** * Copyright 2014 Paul Querna * * 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 agr...
{ "pile_set_name": "Github" }
Other protocols =============== .. toctree:: :maxdepth: 2 thrift_filters/thrift_filters dubbo_filters/dubbo_filters
{ "pile_set_name": "Github" }
.ac_results { padding: 0px; border: 1px solid black; background-color: white; overflow: hidden; z-index: 99999; } .ac_results ul { width: 100%; list-style-position: outside; list-style: none; padding: 0; margin: 0; } .ac_results li { margin: 0px; padding: 2px 5px; cursor: default; display: block; /* ...
{ "pile_set_name": "Github" }
/* * _______ _ _ _____ ____ * |__ __| | | | |/ ____| _ \ * | | ___ ___ _ __ _ _| | | | (___ | |_) | * | |/ _ \/ _ \ '_ \| | | | | | |\___ \| _ < * | | __/ __/ | | | |_| | |__| |____) | |_) | * |_...
{ "pile_set_name": "Github" }
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. library services.src.refactoring.convert_method_to_getter; import 'dart:async'; import 'package:analy...
{ "pile_set_name": "Github" }
// Accord Machine Learning Library // The Accord.NET Framework // http://accord-framework.net // // Copyright © Darko Jurić, 2013 // https://code.google.com/p/accord/issues/detail?id=27 // // Copyright © César Souza, 2009-2017 // cesarsouza at gmail.com // // This library is free software; you can redistr...
{ "pile_set_name": "Github" }
using System; using Windows.UI.Xaml; using Windows.UI.Xaml.Data; namespace AppUIBasics.Common { class DoubleToThicknessConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { if (value is double?) { ...
{ "pile_set_name": "Github" }
module.exports = { colors: require("./colors"), unitConversions: require("./unit-conversions") };
{ "pile_set_name": "Github" }
#!/usr/bin/env bash # bin/compile <build-dir> <cache-dir> <env-dir> BUILD_DIR=${1:-} CACHE_DIR=${2:-} ENV_DIR=${3:-} if [ -f $ENV_DIR/PROJECT_PATH ]; then PROJECT_PATH=`cat $ENV_DIR/PROJECT_PATH` if [ -d $BUILD_DIR/$PROJECT_PATH ]; then echo "-----> Subdir buildpack in $PROJECT_PATH" echo " creating cache...
{ "pile_set_name": "Github" }
/* * Copyright 2012 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, d...
{ "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><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.4"> <link rel="stylesheet" type="text/css" href="search.c...
{ "pile_set_name": "Github" }
[ { "scope": "https://api.github.com:443", "method": "GET", "path": "/repos/sclorg/nodejs-ex/git/trees/master", "body": "", "status": 200, "response": [ "1f8b0800000000000003a595bb72db301045ff85b523e28d85baccc4659ab49914c06221c991440e41390f8ffe3dcb6812b3ca2016bb25095c1edebd8b97aeee63b7ed...
{ "pile_set_name": "Github" }
We recently issued a number of DMCA Requests for premium themes we bought all rights for. Since issuing these requests we were made aware of the fact that there was at least one very early version (>7years) of one theme released under MIT. At this time we retract all of those DMCA takedown requests to make sure we did ...
{ "pile_set_name": "Github" }
/* * NOTICE * * The blockchain-crypto-mpc software is licensed under a proprietary license or the GPL v.3. * If you choose to receive it under the GPL v.3 license, the following applies: * Blockchain-crypto-mpc is a Multiparty Computation (MPC)-based cryptographic library for securing blockchain w...
{ "pile_set_name": "Github" }
io.snappydata.hydra.cluster.SnappyPrms-waitTimeBeforeNextCycleVM = 120; //how long to wait before nodes will be cycled. io.snappydata.hydra.cluster.SnappyPrms-cycleVms = true; util.StopStartPrms-stopModes = NICE_KILL; util.StopStartPrms-numVMsToStop = RANGE 1 ${numVMsToStop} EGNAR; TASK taskClass = io.snappyd...
{ "pile_set_name": "Github" }
import {toBytesArrayU8, toBytesString, toBytesI32, toBytesU32, toBytesStringList, toBytesU64} from "./bytesrepr"; import {U512} from "./bignum"; import {URef} from "./uref"; import {Key} from "./key"; import {Option} from "./option"; /** * CasperLabs types, i.e. types which can be stored and manipulated by smart cont...
{ "pile_set_name": "Github" }
/* Copyright 2016 Sam Hewitt. * * This file is part of the Paper GTK theme. * * The Paper GTK theme 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 la...
{ "pile_set_name": "Github" }
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Jul 6 2018 12:02:43). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #import "MSBaseInsertAction.h" @interface MSInsertLineAction : MSBaseInsertAction { } - (id)label; - (id)tooltip; - (BOOL)isSelectabl...
{ "pile_set_name": "Github" }
/* NOTICE: This file has been changed by Plutext Pty Ltd for use in docx4j. * The package name has been changed; there may also be other changes. * * This notice is included to meet the condition in clause 4(b) of the License. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contri...
{ "pile_set_name": "Github" }
digraph "SchemaCrawler_Diagram" { graph [ fontname="Helvetica" labeljust="r" rankdir="RL" ]; node [ fontname="Helvetica" shape="none" ]; edge [ fontname="Helvetica" ]; /* PUBLIC.BOOKS.AUTHORS -=-=-=-=-=-=-=-=-=-=-=-=-=- */ "authors_f521e766" [ label=< <table...
{ "pile_set_name": "Github" }
0
{ "pile_set_name": "Github" }
CREDITS api.yaml NEWS PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES
{ "pile_set_name": "Github" }
/* * HCS API * * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * API version: 2.1 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ package hcsschema type EnhancedModeVideo struct { ConnectionOptions *RdpConnection...
{ "pile_set_name": "Github" }
/*========================================================================= Program: Visualization Toolkit Module: vtkPGenericIOReader.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is di...
{ "pile_set_name": "Github" }
/* Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file This file is part of libzmq, the ZeroMQ core engine in C++. libzmq is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Found...
{ "pile_set_name": "Github" }
package com.multi.rabbitmq.config; import com.multi.rabbitmq.mq.RabbitMqConsumer; import org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory; import org.springframework.amqp.rabbit.connection.CachingConnectionFactory; import org.springframework.amqp.rabbit.connection.ConnectionFactory; import o...
{ "pile_set_name": "Github" }
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &100000 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} serializedVersion: 4 m_Component: - 4: {fileID: 400000} - 33: {fileID: 3300000} - 23: {fileID: 2300000} - 65: {fileID: 6500000} m_Layer: ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes a...
{ "pile_set_name": "Github" }
/* * tegra20_i2s.h - Definitions for Tegra20 I2S driver * * Author: Stephen Warren <swarren@nvidia.com> * Copyright (C) 2010,2012 - NVIDIA, Inc. * * Based on code copyright/by: * * Copyright (c) 2009-2010, NVIDIA Corporation. * Scott Peterson <speterson@nvidia.com> * * Copyright (C) 2010 Google, Inc. * Iliy...
{ "pile_set_name": "Github" }
<Type Name="XmlObjectSerializer" FullName="System.Runtime.Serialization.XmlObjectSerializer"> <TypeSignature Language="C#" Value="public abstract class XmlObjectSerializer" /> <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit XmlObjectSerializer extends System.Object" /> <Typ...
{ "pile_set_name": "Github" }
# RUN: clangd -lit-test < %s | FileCheck -strict-whitespace %s {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"clangd","capabilities":{},"trace":"off"}} --- {"jsonrpc":"2.0","method":"textDocument/didOpen","params":{"textDocument":{"uri":"test:///foo.c","languageId":"c","text":"int m...
{ "pile_set_name": "Github" }
# `php:7.3.22-cli-alpine3.11` ## Docker Metadata - Image ID: `sha256:80de5bc32670f7e3e02f46c2cb361248603738fd2f5ff5b28c488cde99692db1` - Created: `2020-09-03T22:23:38.507050582Z` - Virtual Size: ~ 74.55 Mb (total size of all layers on-disk) - Arch: `linux`/`amd64` - Entrypoint: `["docker-php-entrypoint"]` - Comma...
{ "pile_set_name": "Github" }
test: @./node_modules/.bin/mocha $(T) --async-only $(TESTS) .PHONY: test
{ "pile_set_name": "Github" }
/* * Copyright 2011 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" }
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\InventoryInStorePickupSalesApi\Model; /** * Service which provides info if order is placed using In-Store Pickup delivery. * * @api */ interface IsStorePickupOrderInt...
{ "pile_set_name": "Github" }
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package language import ( "bytes" "errors" "fmt" "sort" "golang.org/x/text/internal/tag" ) // isAlpha returns true if the byte is not a digit. // b must...
{ "pile_set_name": "Github" }
package org.apache.maven.model.profile.activation; /* * 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 ...
{ "pile_set_name": "Github" }
[{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 [InternetShortcut] URL=http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/index.html IDList=
{ "pile_set_name": "Github" }
/* * Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/lice...
{ "pile_set_name": "Github" }
import React from "react"; import Link from "gatsby-link"; // Basic boilerplate code for content to display export default () => ( <div> <h1>Hi! I'm building a fake Gatsby site as part of a tutorial!</h1> <p> What do I like to do? Lots of course but definitely enjoy building ...
{ "pile_set_name": "Github" }
# [918. Maximum Sum Circular Subarray (Medium)](https://leetcode.com/problems/maximum-sum-circular-subarray/) <p>Given a <strong>circular&nbsp;array</strong>&nbsp;<strong>C</strong> of integers represented by&nbsp;<code>A</code>, find the maximum possible sum of a non-empty subarray of <strong>C</strong>.</p> <p>Here...
{ "pile_set_name": "Github" }
Pattern: Test integer /AAA line 1: O.K. ./test/schematron/zvon7_4.xml fails to validate
{ "pile_set_name": "Github" }