text
stringlengths
2
99.9k
meta
dict
import json import unittest from conans.test.utils.tools import TestClient, GenConanfile class GraphLockDynamicTest(unittest.TestCase): def partial_lock_test(self): client = TestClient() client.save({"conanfile.py": GenConanfile()}) client.run("create . LibA/1.0@") client.save({"...
{ "pile_set_name": "Github" }
## What is MarkdownView? It's an Android WebView that is capable of loading Markdown file or text and display it as HTML. The library uses MarkdownJ and extends Android WebView. *** For more information, please visit the project page on [Github](https://github.com/falnatsheh/MarkdownView)
{ "pile_set_name": "Github" }
#!/bin/sh # $FreeBSD: src/tools/regression/fstest/tests/rmdir/04.t,v 1.1 2007/01/17 01:42:11 pjd Exp $ desc="rmdir returns ENOENT if the named directory does not exist" dir=`dirname $0` . ${dir}/../misc.sh echo "1..4" n0=`namegen` n1=`namegen` expect 0 mkdir ${n0} 0755 expect 0 rmdir ${n0} expect ENOENT rmdir ${n0...
{ "pile_set_name": "Github" }
2016-08-21-2 # dce75ad554bf8bcec63da1d92f5a6a00 gfwlist 2016-08-21 # 5e91c37d2a2dd2d9f88555413af6faa0 chnroute 2016-02-26 # 7c8569e96bc6893a146d5e093a3b0434 adblock 2016-04-27 # 2bdbabfedb7cd8bdee596525079c8b0b cdn
{ "pile_set_name": "Github" }
package client import ( "bytes" "encoding/json" "fmt" "strings" "github.com/docker/docker-credential-helpers/credentials" ) // isValidCredsMessage checks if 'msg' contains invalid credentials error message. // It returns whether the logs are free of invalid credentials errors and the error if it isn't. // error...
{ "pile_set_name": "Github" }
#!/usr/bin/env ruby # # This file was generated by Bundler. # # The application 'coveralls' is installed as part of a gem, and # this file is here to facilitate running it. # require 'pathname' ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath) require 'rubygems' require 'b...
{ "pile_set_name": "Github" }
--- title: Results.Count Property (Outlook) keywords: vbaol11.chm502 f1_keywords: - vbaol11.chm502 ms.prod: outlook api_name: - Outlook.Results.Count ms.assetid: 7122cb5b-e2bc-5c59-a3ba-61056d22c146 ms.date: 06/08/2017 --- # Results.Count Property (Outlook) Returns a **Long** indicating the count of objects in the ...
{ "pile_set_name": "Github" }
package main import ( "encoding/json" "fmt" "io" "io/ioutil" "log" "net/http" "os" "path" "path/filepath" "strings" "sync" "sync/atomic" "time" "github.com/google/renameio" "github.com/rogpeppe/go-internal/modfile" "golang.org/x/mod/module" ) /* Q: which versions of our module are being used A: find ...
{ "pile_set_name": "Github" }
/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of ...
{ "pile_set_name": "Github" }
#ifndef __PERF_THREAD_H #define __PERF_THREAD_H #include <linux/rbtree.h> #include <unistd.h> #include <sys/types.h> #include "symbol.h" struct thread { union { struct rb_node rb_node; struct list_head node; }; struct map_groups mg; pid_t pid; char shortname[3]; bool comm_set; char *comm; int c...
{ "pile_set_name": "Github" }
<?php namespace Doctrine\Tests\Common\Cache; use Doctrine\Common\Cache\Cache; abstract class CacheTest extends \Doctrine\Tests\DoctrineTestCase { public function testBasics() { $cache = $this->_getCacheDriver(); // Test save $cache->save('test_key', 'testing this out'); // T...
{ "pile_set_name": "Github" }
actions: - name: Wait 60s to let Prometheus collect metrics bashTest: script: |- sleep 60 expect: exitCode: equals: 0 - name: Prometheus UI is available bashTest: script: |- curl -s -f "${PROMETHEUS_URL}/graph" expect: stdout: contains: <title>Prometheus Tim...
{ "pile_set_name": "Github" }
[ { "description": "maxLength validation", "schema": {"maxLength": 2}, "tests": [ { "description": "shorter is valid", "data": "f", "valid": true }, { "description": "exact length is valid", ...
{ "pile_set_name": "Github" }
GL_NV_sample_locations https://www.khronos.org/registry/OpenGL/extensions/NV/NV_sample_locations.txt GL_NV_sample_locations GL_SAMPLE_LOCATION_NV 0x8E50 GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F GL_PROGRAMMABLE_SAMPLE_LO...
{ "pile_set_name": "Github" }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_31) on Sun Jan 06 11:49:14 CST 2013 --> <TITLE> com.intel.cosbench.driver.web Class Hierarchy </TITLE> <META NAME="date" CONTENT="2013-01-06"> <LIN...
{ "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" }
> 本文是一起学习造轮子系列的第一篇,本篇我们将从零开始写一个符合Promises/A+规范的promise,本系列文章将会选取一些前端比较经典的轮子进行源码分析,并且从零开始逐步实现,本系列将会学习Promises/A+,Redux,react-redux,vue,dom-diff,webpack,babel,kao,express,async/await,jquery,Lodash,requirejs,lib-flexible等前端经典轮子的实现方式,每一章源码都托管在github上,欢迎关注~ <br> 相关系列文章:<br> [一起学习造轮子(一):从零开始写一个符合Promises/A+规范的promise](https:...
{ "pile_set_name": "Github" }
PutMessagesResultEntry ====================== .. currentmodule:: oci.streaming.models .. autoclass:: PutMessagesResultEntry :show-inheritance: :special-members: __init__ :members: :undoc-members: :inherited-members:
{ "pile_set_name": "Github" }
data/org.gnome.FeedReader-autostart.desktop.in data/org.gnome.FeedReader.appdata.xml.in data/org.gnome.FeedReader.desktop.in plugins/backend/bazqux/bazquxInterface.vala plugins/backend/feedbin/feedbinInterface.vala plugins/backend/feedhq/feedhqInterface.vala plugins/backend/fresh/freshInterface.vala plugins/backend/loc...
{ "pile_set_name": "Github" }
#!/usr/bin/env python from __future__ import print_function, unicode_literals import inspect import os import re import sys scripts_dir = os.path.abspath(os.path.dirname(__file__)) rb_dir = os.path.abspath(os.path.join(scripts_dir, '..', '..')) sys.path.insert(0, rb_dir) sys.path.insert(0, os.path.join(scripts_dir,...
{ "pile_set_name": "Github" }
from .Exporter import Exporter from ..parametertree import Parameter from ..Qt import QtGui, QtCore, QtSvg, QT_LIB from .. import functions as fn import numpy as np __all__ = ['ImageExporter'] class ImageExporter(Exporter): Name = "Image File (PNG, TIF, JPG, ...)" allowCopy = True def __init__(self, ...
{ "pile_set_name": "Github" }
# https://help.github.com/en/github/administering-a-repository/displaying-a-sponsor-button-in-your-repository patreon: DietPi custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6DVBECXRW3TAA
{ "pile_set_name": "Github" }
/* * arch/ubicom32/kernel/traps.c * Ubicom32 architecture trap handling support. * * (C) Copyright 2009, Ubicom, Inc. * * This file is part of the Ubicom32 Linux Kernel Port. * * The Ubicom32 Linux Kernel Port is free software: you can redistribute * it and/or modify it under the terms of the GNU General Pub...
{ "pile_set_name": "Github" }
/* This is a compiled file, to make changes persist, consider editing under the templates directory */ .pace { -webkit-pointer-events: none; pointer-events: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; } .pace-inactive { display: none; } .pace .pace-progress { background:...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en" class="js csstransforms3d"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="Hugo 0.69.2" /> <meta name="description" content="Sparta - AWS Lambda Microservices"> <meta name="author" con...
{ "pile_set_name": "Github" }
/* eslint-env mocha */ 'use strict' const { expect } = require('aegir/utils/chai') const testHttpMethod = require('../../utils/test-http-method') const http = require('../../utils/http') const sinon = require('sinon') const { AbortSignal } = require('abort-controller') const defaultOptions = { signal: sinon.match.i...
{ "pile_set_name": "Github" }
#include "lua_cocos2dx_experimental_manual.hpp" #include "UIVideoPlayer.h" #include "tolua_fix.h" #include "LuaBasicConversions.h" #include "CCLuaValue.h" #include "CCLuaEngine.h" static int lua_cocos2dx_experimental_TMXLayer_getTileGIDAt(lua_State* tolua_S) { int argc = 0; cocos2d::experimental::TMXLayer* cob...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <title>DataTables example - Server-side processing</title> <link rel="stylesheet" type="text/css" href...
{ "pile_set_name": "Github" }
2007/02/02 RD VMMXX Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 test bal --master-account=Master $-0.35 0.350 VMMXX Master 0.350 VMMXX Assets:Investments:Vanguard:VMMXX $-0.35 Income:Dividends:Vanguard...
{ "pile_set_name": "Github" }
{{ pagerfanta(pagerfanta, {'routeParams' : { 'test': 'im-a-short' } }) }}
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleDisplayName</key> <string>StickyHeader</string> <key>CFBundleExecutable</k...
{ "pile_set_name": "Github" }
{{/* vim: set filetype=mustache: */}} {{/* Expand the name of the chart. */}} {{- define "shopping-app.name" -}} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{/* Create a default fully qualified app name. We truncate at 63 chars because some Kubernetes name fields are limit...
{ "pile_set_name": "Github" }
/* Audio File Library Copyright 1998-1999, Michael Pruett <michael@68k.org> 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 versi...
{ "pile_set_name": "Github" }
'use strict'; var Type = require('../type'); module.exports = new Type('tag:yaml.org,2002:seq', { kind: 'sequence', construct: function (data) { return null !== data ? data : []; } });
{ "pile_set_name": "Github" }
// Copyright 2012 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 windows // func servicemain(argc uint32, argv **uint16) TEXT ·servicemain(SB),7,$0 MOVL CX, ·sArgc(SB) MOVL DX, ·sArgv(SB) SUBQ $32, SP // stack...
{ "pile_set_name": "Github" }
<!doctype html> <html> <head> <meta charset="utf-8"> <script src="/components/web-component-tester/browser.js"></script> </head> <body> <script> test('passing test', function () { }); test('failing test', function () { assert.isTrue(false); }); </script> </body> </html>
{ "pile_set_name": "Github" }
/* Based on the theme at http://bonsaiden.github.com/JavaScript-Garden */ /*<!--match-->*/ .cm-s-midnight span.CodeMirror-matchhighlight { background: #494949; } .cm-s-midnight.CodeMirror-focused span.CodeMirror-matchhighlight { background: #314D67 !important; } /*<!--activeline-->*/ .cm-s-midnight .CodeMirror-active...
{ "pile_set_name": "Github" }
Warning(132) errchk.c(11): Suspicious pointer conversion in function suspicious_assign_to_func_f Warning(191) errchk.c(29): Expression has no effect in function expression_no_effect_f Warning(191) errchk.c(30): Expression has no effect in function expression_no_effect_f Warning errchk.c(40): umacro macro redef...
{ "pile_set_name": "Github" }
package org.reveno.atp.core.repository; import org.reveno.atp.api.domain.RepositoryData; import org.reveno.atp.api.domain.WriteableRepository; import org.reveno.atp.core.api.TxRepository; import org.reveno.atp.utils.MapUtils; import java.util.Map; import java.util.Set; import java.util.stream.Collectors; /** * Immu...
{ "pile_set_name": "Github" }
/*========================================================================= Program: Visualization Toolkit Module: vtkPartitionedDataSet.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This softw...
{ "pile_set_name": "Github" }
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2009 University of Washington * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This pro...
{ "pile_set_name": "Github" }
// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributio...
{ "pile_set_name": "Github" }
from ops.data import OpsClass, OpsField, DszObject, DszCommandObject, cmd_definitions import dsz if ('systempaths' not in cmd_definitions): dszsystemdir = OpsClass('systemdir', {'location': OpsField('location', dsz.TYPE_STRING)}, DszObject, single=True) dszwindowsdir = OpsClass('windowsdir', {'location': ...
{ "pile_set_name": "Github" }
{ "created_at": "2015-02-27T22:28:33.549348", "description": "A toolbelt of useful classes and functions to be used with python-requests", "fork": false, "full_name": "sigmavirus24/requests-toolbelt", "language": "Python", "updated_at": "2015-02-27T23:43:01.587967" }
{ "pile_set_name": "Github" }
# # Autogenerated by Thrift Compiler (0.9.0) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # module Apache module Hadoop module Hbase module Thrift # TCell - Used to transport a cell value (byte[]) and the timestamp it was # stored with together as a result for get and getRow...
{ "pile_set_name": "Github" }
**Это старая версия документа!** ----
{ "pile_set_name": "Github" }
define( [ "../../var/pnum" ], function( pnum ) { return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); } );
{ "pile_set_name": "Github" }
// // WATemplate.m // WebAppKit // // Created by Tomas Franzén on 2011-04-12. // Copyright 2011 Lighthead Software. All rights reserved. // #import "WATemplate.h" #import "TFStringScanner.h" #import "TL.h" #import "WASession.h" @interface WATemplate() - (TLStatement*)scanKeyword:(TFStringScanner*)scanner endToken...
{ "pile_set_name": "Github" }
# Translation of Odoo Server. # This file contains the translation of the following modules: # * product_price_history # # Translators: msgid "" msgstr "" "Project-Id-Version: odoomrp-wip (8.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-11-20 18:10+0000\n" "PO-Revision-Date: 2015-09-10 16:41+0000\n" "Last-...
{ "pile_set_name": "Github" }
// RUN: c-index-test -write-pch %t.ast -arch x86_64 -mmacosx-version-min=10.6 -fblocks -x objective-c %s // RUN: c-index-test -test-load-tu %t.ast all > %t 2>&1 && FileCheck --input-file=%t %s // REQUIRES: x86-registered-target @interface Foo { __attribute__((iboutlet)) id myoutlet; } - (void) __attribute__((ibactio...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>${EXECUTABLE_NAME}</string> <key>CFBundleIco...
{ "pile_set_name": "Github" }
{ "resolution": "main", "tree": { "src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/9807d9b701f58be068cb07833d2b24235351d052/es6-shim/es6-shim.d.ts", "raw": "registry:dt/es6-shim#0.31.2+20160602141504", "typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __SOUND_HOONTECH_H #define __SOUND_HOONTECH_H /* * ALSA driver for ICEnsemble ICE1712 (Envy24) * * Lowlevel functions for Hoontech STDSP24 * * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz> */ #define HOONTECH_DEVICE_DESC \ "{Hoontech,Soun...
{ "pile_set_name": "Github" }
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using NuGet.Versioning; using Xunit; namespace NuGet.Protocol.Plugins.Tests { publ...
{ "pile_set_name": "Github" }
#include <iostream> #include <cmath> #include "SimTracker/SiPhase2Digitizer/plugins/PSPDigitizerAlgorithm.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CondFormats/DataRecord/interfac...
{ "pile_set_name": "Github" }
package org.jabref.model.search; import org.jabref.model.entry.BibEntry; @FunctionalInterface public interface SearchMatcher { boolean isMatch(BibEntry entry); }
{ "pile_set_name": "Github" }
/* * Asterisk -- An open source telephony toolkit. * * Copyright (C) 2019, Sangoma, Inc. * * Ben Ford <bford@sangoma.com> * * See http://www.asterisk.org for more information about * the Asterisk project. Please do not directly contact * any of the maintainers of this project for assistance; * the project pro...
{ "pile_set_name": "Github" }
// // AppDelegate.swift // SmartDeviceLink-ExampleSwift // // Created by Bretty White on 5/12/17. // Copyright © 2017 smartdevicelink. All rights reserved. // import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ application: UIA...
{ "pile_set_name": "Github" }
$(function () { //BEGIN LINE CHART var d1_1 = [ ["Jan", 200], ["Feb", 201], ["Mar", 199], ["Apr", 187], ["May", 193], ["Jun", 192], ["Jul", 206], ["Aug", 186], ["Sep", 206] ]; var d1_2 = [ ["Jan", 122], ["Feb", 170]...
{ "pile_set_name": "Github" }
# Tenko parser test case - Path: tests/testcases/unicode/unicode_escape_canon_checks/middle_of_ident/vary_letter_with_2_digits.md > :: unicode : unicode escape canon checks : middle of ident > > ::> vary letter with 2 digits ## Input `````js PASS\u{62}PASS ````` ## Output _Note: the whole output block is auto-gen...
{ "pile_set_name": "Github" }
__x86.get_pc_thunk.ax __x86.get_pc_thunk.bx __x86.get_pc_thunk.cx __x86.get_pc_thunk.di __x86.get_pc_thunk.dx __x86.get_pc_thunk.si __i686.get_pc_thunk.bx __i686.get_pc_thunk.cx cvmcache_hash_cmp cvmcache_hash_print cvmcache_init_global cvmcache_cleanup_global cvmcache_is_supervised cvmcache_init cvmcache_listen cvmcac...
{ "pile_set_name": "Github" }
package com.tencent.mm.plugin.webview.ui.tools.jsapi; import com.tencent.mm.sdk.platformtools.u; import com.tencent.mm.ui.widget.MMWebView; public final class f$21 implements Runnable { public f$21(f paramf, String paramString) {} public final void run() { try { f.c(irg).evaluateJavascript("j...
{ "pile_set_name": "Github" }
multiple=org.apache.dubbo.registry.multiple.MultipleRegistryFactory
{ "pile_set_name": "Github" }
// // NSString+YYAdd.m // YYKit <https://github.com/ibireme/YYKit> // // Created by ibireme on 13/4/3. // Copyright (c) 2015 ibireme. // // This source code is licensed under the MIT-style license found in the // LICENSE file in the root directory of this source tree. // #import "NSString+YYAdd.h" #import "NSDat...
{ "pile_set_name": "Github" }
/* * aes.h * AES encrypt/decrypt wrapper functions used around Rijndael reference * implementation * * Copyright (C) 2014, Broadcom Corporation. All Rights Reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the a...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010-2020 William Bittle http://www.dyn4j.org/ * 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 ...
{ "pile_set_name": "Github" }
// // ExampleViewControllerImageView.h // MHVideoPhotoGallery // // Created by Mario Hahn on 14.01.14. // Copyright (c) 2014 Mario Hahn. All rights reserved. // #import <UIKit/UIKit.h> #import "MHGallery.h" #import "MHPresenterImageView.h" @interface ExampleViewControllerImageView : UIViewController @property(non...
{ "pile_set_name": "Github" }
package ru.alexbykov.nopaginate.paginate; /** * Date: 12.08.2017 * Time: 17:44 * Project: NoPagination * * @author Alex Bykov * You can contact me at me@alexbykov.ru */ enum PaginateStatus { NO_MORE_ITEMS, LOADING, ERROR; public static PaginateStatus getStatus(boolean loadedAllItems, boolean ...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html lang="en"> <head> <title>ChildrenAnimations Struct Reference</title> <link rel="stylesheet" type="text/css" href="../css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="../css/highlight.css" /> <meta charset='utf-8'> <script src="../js/jquery.min.js" defer></script...
{ "pile_set_name": "Github" }
{ "name": "ImpressPages", "website": "http://impresspages.org", "matches": [ { "search": "meta[generator]", "regexp": "ImpressPages(?: CMS)?( [\\d.]*)?", "offset": 1 } ], "implies": "PHP" }
{ "pile_set_name": "Github" }
# -*- coding: binary -*- module Rex module Proto module Rmi module Model # This class provides a representation of an RMI call message class Call < Element # @!attribute message_id # @return [Integer] the message id attr_accessor :message_id # @!at...
{ "pile_set_name": "Github" }
StartChar: u1D6FA Encoding: 120570 120570 3281 Width: 770 Flags: MW AnchorPoint: "grk_uc_top" 611 710 basechar 0 AnchorPoint: "grk_uc_top_left" 126 665 basechar 0 AnchorPoint: "grk_bottom" 359 -100 basechar 0 LayerCount: 3 Fore SplineSet 282 81 m 0 200 128 160 227 198 347 c 8 254 523 430 664 594 664 c 16 745 664 842...
{ "pile_set_name": "Github" }
#ifndef BOOST_METAPARSE_ERROR_DIGIT_EXPECTED_HPP #define BOOST_METAPARSE_ERROR_DIGIT_EXPECTED_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. // 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...
{ "pile_set_name": "Github" }
using System.Linq; using NUnit.Framework; using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Redis.Generic; using ServiceStack.Redis.Tests.Support; using ServiceStack.Text; namespace ServiceStack.Redis.Tests.Generic { [TestFixture] public class RedisClientListTestExtra {...
{ "pile_set_name": "Github" }
<?xml version="1.0" standalone="no" ?> <!DOCTYPE pov SYSTEM "/usr/share/cgc-docs/replay.dtd"><pov> <cbid>CROMU_00011</cbid> <replay> <read echo="ascii"><delim> </delim><match><data>\x3E </data></match></read> <write echo="ascii"><data>R0lB1 = |"JG","r","rcmx"|-|"sBdTkB7","JG","LXSF8","xi","X8sP","hBt1","tnZg65N"|...
{ "pile_set_name": "Github" }
/* cheali-charger - open source firmware for a variety of LiPo chargers Copyright (C) 2013 Paweł Stawicki. All right reserved. 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, eit...
{ "pile_set_name": "Github" }
'use strict'; var typeOf = require('kind-of'); var utils = module.exports; /** * Returns true if the given value is a node. * * ```js * var Node = require('snapdragon-node'); * var node = new Node({type: 'foo'}); * console.log(utils.isNode(node)); //=> true * console.log(utils.isNode({})); //=> false * ``` *...
{ "pile_set_name": "Github" }
class RemoveTopicIdFromParticipants < ActiveRecord::Migration def self.up remove_column :participants, :topic_id end def self.down add_column :participants, :topic_id end end
{ "pile_set_name": "Github" }
/* * UAE - The Un*x Amiga Emulator * * Prototypes for main.c * * Copyright 1996 Bernd Schmidt */ #ifndef UAE_UAE_H #define UAE_UAE_H #include "uae/types.h" extern void do_start_program (void); extern void start_program (void); extern void leave_program (void); extern void real_main (int, TCHAR **); exte...
{ "pile_set_name": "Github" }
{# Copyright (C) 2016-2017 Robin Schneider <ypid@riseup.net> # Copyright (C) 2016-2017 DebOps <https://debops.org/> # SPDX-License-Identifier: GPL-3.0-only #} # {{ ansible_managed }} {{ apt_cacher_ng__upstream_mirror_ubuntu }}
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="false" android:drawable="@color/more_btn_bg_normal" /> <item android:state_pressed="true" android:drawable="@color/more_btn_bg_pressed" /> <item android:drawable="@colo...
{ "pile_set_name": "Github" }
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozil...
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -std=c++1z -verify %s // expected-no-diagnostics namespace std_example { template<typename T, typename U = int> struct S { T data; }; template<typename U> S(U) -> S<typename U::type>; struct A { using type = short; operator type(); }; S x{A()}; }
{ "pile_set_name": "Github" }
<textarea id="editor"></textarea> <script> CKEDITOR.replace( 'editor', { skin: 'moono' } ); </script>
{ "pile_set_name": "Github" }
-----BEGIN CERTIFICATE REQUEST----- MIIBFzCBvwIBADA0MQswCQYDVQQGEwJOTDERMA8GA1UEChMIUG9sYXJTU0wxEjAQ BgNVBAMTCWxvY2FsaG9zdDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDfMVtl2 CR5acj7HWS3/IG7ufPkGkXTQrRS192giWWKSTuUA2CMR/+ov0jRdXRa9iojCa3cN Vc2KKg76Aci07f+gKTAnBgkqhkiG9w0BCQ4xGjAYMAkGA1UdEwQCMAAwCwYDVR0P BAQDAgXgMAoGCCqGSM49BAMC...
{ "pile_set_name": "Github" }
<?php namespace Emtudo\Units\Teacher\Courses\Routes; use Emtudo\Support\Http\Routing\RouteFile; /** * Api Routes. * * This file is where you may define all of the routes that are handled * by your application. Just tell Laravel the URIs it should respond * to using a Closure or controller method. Build somethin...
{ "pile_set_name": "Github" }
import cmark /** A code block. From the [CommonMark Spec](https://spec.commonmark.org/0.29): > ## [4.4 Indented code blocks](https://spec.commonmark.org/0.29/#indented-code-blocks) > > An indented code block is composed of > one or more indented chunks separated by blank lines. > An indented chunk is a sequen...
{ "pile_set_name": "Github" }
/* Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'colordialog', 'sl', { clear: 'Počisti', highlight: 'Poudarjeno', options: 'Možnosti barve', selected: 'Izbrana barva'...
{ "pile_set_name": "Github" }
# /* ************************************************************************** # * * # * (C) Copyright Paul Mensonides 2002. # * Distributed under the Boost Software License, Version 1.0. (See # * accompanying file LICENSE_1_0.txt...
{ "pile_set_name": "Github" }
namespace Higher type Const<'A, 'B> = C of 'A type Const private () = static let token = Const () static member Inj (value : Const<'A, 'B>) : App2<Const, 'A, 'B> = App2<Const, 'A, 'B>.Create(AppToken<Const, 'A>.Token(token), value) static member Prj (app : App2<Const, 'A, 'B>) : Const<'A, 'B> = app.App...
{ "pile_set_name": "Github" }
package io.eblock.eos4j.ecc; import java.math.BigInteger; /** * Curve * * @author espritblock http://eblock.io * */ public class Curve { private FieldElement a; private FieldElement b; private BigInteger q; private Point infinity; private BigInteger pOverFour; public Curve(BigInteger q, BigInteger a...
{ "pile_set_name": "Github" }
/// /// Copyright (c) 2016 Dropbox, Inc. All rights reserved. /// /// Auto-generated by Stone, do not modify. /// #import <Foundation/Foundation.h> #import "DBSerializableProtocol.h" @class DBTEAMLOGLegalHoldsExportAHoldDetails; NS_ASSUME_NONNULL_BEGIN #pragma mark - API Object /// /// The `LegalHoldsExportAHoldD...
{ "pile_set_name": "Github" }
/* =========================================================================== Copyright (C) 2010-2013 Ninja and TheKelm This file is part of CoD4X Plugin Handler source code. CoD4X Plugin Handler source code is free software: you can redistribute it and/or modify it under the terms of the GNU Affero...
{ "pile_set_name": "Github" }
--- lib/warmux/action/action.cpp.orig 2012-02-13 22:38:00.000000000 +0100 +++ lib/warmux/action/action.cpp 2012-02-13 22:37:45.000000000 +0100 @@ -85,7 +85,7 @@ { m_creator = _creator; - m_header.len = SDLNet_Read32(buffer); + m_header.len = SDLNet_Read32((Uint32*)buffer); ASSERT(m_header.len >= sizeof(Heade...
{ "pile_set_name": "Github" }
package de.fhpotsdam.unfolding.examples.data.temporal; import java.util.List; import org.joda.time.DateTime; import org.joda.time.Hours; import org.joda.time.Minutes; import processing.core.PApplet; import processing.core.PVector; import de.fhpotsdam.unfolding.UnfoldingMap; import de.fhpotsdam.unfolding.d...
{ "pile_set_name": "Github" }
// Highlight the word under the cursor. var scimoz = ko.views.manager.currentView.scimoz; var start = scimoz.wordStartPosition(scimoz.currentPos, true); var end = scimoz.wordEndPosition(scimoz.currentPos, true); scimoz.anchor = start; scimoz.currentPos = end;
{ "pile_set_name": "Github" }
/** * @license * Copyright 2019 Google LLC * * 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 ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <module type="WEB_MODULE" version="4"> <component name="NewModuleRootManager"> <content url="file://$MODULE_DIR$" /> <orderEntry type="inheritedJdk" /> <orderEntry type="sourceFolder" forTests="false" /> </component> </module>
{ "pile_set_name": "Github" }
<view class="{{ classes }}" style="{{ style }}" > <slot /> </view>
{ "pile_set_name": "Github" }
-------- EventFlow: Npc_UMiiVillage031 -------- Actor: EventSystemActor entrypoint: None() actions: ['Demo_FlagON', 'Demo_IncreasePorchItem', 'Demo_CallDemo', 'Demo_ExitEventPlayer'] queries: ['RandomChoice4', 'GeneralChoice2', 'HasPorchItem', 'CheckFlag', 'CheckAddPorchItem', 'CheckTime', 'CheckPlayerState'] params: ...
{ "pile_set_name": "Github" }