text
stringlengths
2
99.9k
meta
dict
Title: This Week in Rust 266 Number: 266 Date: 2018-12-25 Category: This Week in Rust Hello and welcome to another issue of *This Week in Rust*! [Rust](http://rust-lang.org) is a systems language pursuing the trifecta: safety, concurrency, and speed. This is a weekly summary of its progress and community. Want somethi...
{ "pile_set_name": "Github" }
<hkobject name="#tudm$301" class="hkbBlenderGeneratorChild" signature="0xe2b384b0"> <hkparam name="variableBindingSet">null</hkparam> <hkparam name="generator">#tudm$300</hkparam> <hkparam name="boneWeights">null</hkparam> <hkparam name="weight">104.724998</hkparam> <hkparam name="worldFromModelWeight"...
{ "pile_set_name": "Github" }
package schema import ( "testing" "gotest.tools/assert" ) type dict map[string]interface{} func TestValidate(t *testing.T) { config := dict{ "version": "3.0", "services": dict{ "foo": dict{ "image": "busybox", }, }, } assert.NilError(t, Validate(config, "3.0")) } func TestValidateUndefinedTop...
{ "pile_set_name": "Github" }
array=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] array.reverse() #将数组翻转 print(array) s = '' for i in range(0,10): array[i]=str(array[i]) string=s.join(array) #翻转后的数组拼接成字符串 print(string) r1=string[2:8] #取出第三到第八个字符(包含第三和第八个字符) print(r1) number=int(r1[::-1])#将字符串进行反转,将结果转换为int类型 print(number) print(bin(number))#转换成二进制并输出 print(...
{ "pile_set_name": "Github" }
" Vim filetype plugin file " Language: SystemVerilog " Maintainer: kocha <kocha.lsifrontend@gmail.com> " Last Change: 12-Aug-2013. if exists("b:did_ftplugin") finish endif " Behaves just like Verilog runtime! ftplugin/verilog.vim
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_margin...
{ "pile_set_name": "Github" }
ColorScale.prototype.vectorLength = function (vector) { var result = 0; for (var i = 0; i < vector.length; i++) { result += vector[i] * vector[i]; } return Math.sqrt(result); };
{ "pile_set_name": "Github" }
/** * \file md5.h * * Copyright (C) 2006-2009, Paul Bakker <polarssl_maintainer at polarssl.org> * All rights reserved. * * Joined copyright on original XySSL code with: Christophe Devine * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Publi...
{ "pile_set_name": "Github" }
langcode: en status: true dependencies: module: - node id: test_node_revision_vid label: null module: views description: '' tag: '' base_table: node_field_revision base_field: nid display: default: display_options: relationships: vid: id: vid table: node_field_revision ...
{ "pile_set_name": "Github" }
{ "versionNumber" : "2.0.0", "releasePackageData" : [ { "tableName" : "METL_RELEASE_PACKAGE", "tableData" : { } }, { "tableName" : "METL_RPPV", "tableData" : { } } ], "projectVersionData" : [ { "projectVersionId" : "ae4ae3cd-165a-4134-9b5e-797ca72ffcb7", "projectData" : [ { "table...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:color="@color/carbon_red_400" app:guide_state_invalid="true" /> <item android:color="?attr/colorAccent" /> </selector>
{ "pile_set_name": "Github" }
<?php function hello() { /** @var \Symfony\Component\Console\Descriptor\JsonDescriptor $extension */ }
{ "pile_set_name": "Github" }
require('../modules/core.string.escape-html'); require('../modules/core.string.unescape-html'); module.exports = require('../modules/_core').String;
{ "pile_set_name": "Github" }
--- modsecurity-2.9.0.orig/apache2/msc_lua.c 2015-03-06 01:35:06.458699865 +0800 +++ modsecurity-2.9.0/apache2/msc_lua.c 2015-03-06 01:34:48.719647454 +0800 @@ -111,7 +111,7 @@ dump.pool = pool; dump.parts = apr_array_make(pool, 128, sizeof(msc_script_part *)); - lua_dump(L, dump_writer, &dump); + lua...
{ "pile_set_name": "Github" }
from abc import ABCMeta, abstractmethod from ..hook import Hook class LoggerHook(Hook): """Base class for logger hooks Args: interval (int) ignore_last (bool) reset_flag (bool) """ __metaclass__ = ABCMeta def __init__(self, interval=10, ignore_last=True, reset_flag=Fals...
{ "pile_set_name": "Github" }
/* Copyright 2018 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" }
# Test generation of a WPS request from input arguments. # The specific request involves a "helloworld" process submitted to the Emu WPS service # (https://github.com/bird-house/emu). from tests.utils import resource_file, compare_xml from owslib.wps import WebProcessingService, WPSExecution, ComplexDataInput from ows...
{ "pile_set_name": "Github" }
# frozen_string_literal: true require_relative "../lib/tty-markdown" markdown =<<-TEXT ## Image ![Code highlight](assets/headers.png) ## Image Source Location ![](assets/headers.png) TEXT print TTY::Markdown.parse(markdown)
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="person"> <email>alexxy@gentoo.org</email> <name>Alexey Shvetsov</name> </maintainer> <maintainer type="project"> <email>cluster@gentoo.org</email> <name>Gentoo Cluster P...
{ "pile_set_name": "Github" }
# $Id: nl.po,v 1.1.2.1 2009/06/06 15:42:46 libeco Exp $ # # Dutch translation of Drupal (general) # Copyright YEAR NAME <EMAIL@ADDRESS> # Generated from files: # votingapi.admin.inc,v 1.1.2.2 2008/10/01 15:47:46 eaton # votingapi.module,v 1.46.2.15 2008/10/09 21:12:35 eaton # votingapi.info,v 1.4 2007/07/06 03:02:34...
{ "pile_set_name": "Github" }
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_HTTP_HTTP_STREAM_FACTORY_H_ #define NET_HTTP_HTTP_STREAM_FACTORY_H_ #include <list> #include <string> #include "base/macros.h" #include ...
{ "pile_set_name": "Github" }
#include "toolhelper_version.h" #include "branding.h" ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO FILEVERSION 0,0,0,0 PRODUCTVERSION 0,0,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x4L F...
{ "pile_set_name": "Github" }
;;;; local-projects.lisp ;;; ;;; Local project support. ;;; ;;; Local projects can be placed in <quicklisp>/local-projects/. New ;;; entries in that directory are automatically scanned for system ;;; files for use with QL:QUICKLOAD. ;;; ;;; This works by keeping a cache of system file pathnames in ;;; <quicklisp>/loca...
{ "pile_set_name": "Github" }
#!/usr/bin/env python3 # # Copyright 2011-2015 Jeff Bush # # 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 l...
{ "pile_set_name": "Github" }
.settings-modal { .modal-container .modal { margin: 100px auto; } ng-include.flex { display: flex; flex-direction: column; } .theme-metadata { padding-left: 20px; font-size: 15px; .theme-description { margin-top: 4px; max-width: 400px; } } .syntax-theme-preview ...
{ "pile_set_name": "Github" }
<html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>View/Status Bar</title> <link rel="stylesheet" ...
{ "pile_set_name": "Github" }
module.exports = (f) => (...args) => f(...args)
{ "pile_set_name": "Github" }
/*================================================================================ code generated by: java2cpp author: Zoran Angelov, mailto://baldzar@gmail.com class: android.os.PatternMatcher ================================================================================*/ #ifndef J2CPP_INCLUDE_IMPLEM...
{ "pile_set_name": "Github" }
<?php namespace GuzzleHttp\Tests\Stream; use GuzzleHttp\Stream\LimitStream; use GuzzleHttp\Stream\PumpStream; use GuzzleHttp\Stream\Stream; class PumpStreamTest extends \PHPUnit_Framework_TestCase { public function testHasMetadataAndSize() { $p = new PumpStream(function () {}, [ 'metadata'...
{ "pile_set_name": "Github" }
/* * Sonar Objective-C Plugin * Copyright (C) 2012 OCTO Technology * dev@sonar.codehaus.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or...
{ "pile_set_name": "Github" }
{ "extends": "./tsconfig.json", "files": ["src/main/webapp/app/app.main.ts"] }
{ "pile_set_name": "Github" }
&GLOBAL PRINT_LEVEL LOW PROJECT Li2 RUN_TYPE ENERGY &END GLOBAL &FORCE_EVAL METHOD Quickstep &DFT BASIS_SET_FILE_NAME BASIS_SET POTENTIAL_FILE_NAME POTENTIAL &MGRID CUTOFF 240 &END MGRID &PRINT &DFT_CONTROL_PARAMETERS &END DFT_CONTROL_PARAMETERS &MO &EACH ...
{ "pile_set_name": "Github" }
# set of questions for Materials Engineering (Dr. Gabrielle Lam) ##DESCRIPTION ## ## Created by the UBC Department of Mechanical Engineering. Project led by Agnes d'Entremont. ## ## Contact: agnes.dentremont@mech.ubc.ca ## ## This work is licensed under the Creative Commons ## Attribution-ShareAlike 4.0 International ...
{ "pile_set_name": "Github" }
static unsigned char neoVehicle_VS_cso[] = { 0x00, 0x02, 0xfe, 0xff, 0xfe, 0xff, 0xab, 0x00, 0x43, 0x54, 0x41, 0x42, 0x1c, 0x00, 0x00, 0x00, 0x76, 0x02, 0x00, 0x00, 0x00, 0x02, 0xfe, 0xff, 0x0d, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x6f, 0x02, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x0...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <!-- /* ** ** Copyright 2014, The Android Open Source Project ** ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** ** http://www.apache.org/licens...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 697dbf8a770840d439b6014f4afc1f82 ShaderImporter: externalObjects: {} defaultTextures: [] nonModifiableTextures: [] userData: assetBundleName: assetBundleVariant:
{ "pile_set_name": "Github" }
/* * Copyright (C) 2019 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" }
// (C) Copyright Edward Diener 2011-2015 // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt). #if !defined(BOOST_VMD_ASSERT_IS_IDENTIFIER_HPP) #define BOOST_VMD_ASSERT_IS_...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <!-- If runtime tag is absent --> <runtime xdt:Transform="InsertIfMissing"> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> </assemblyBinding> </runtime> <!-- If runtime tag is present, bu...
{ "pile_set_name": "Github" }
/* frame: Central data structures and opmitization hooks. copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1 see COPYING and AUTHORS files in distribution or http://mpg123.org initially written by Thomas Orgis */ #ifndef MPG123_FRAME_H #define MPG123_FRAME_H #include <stdio.h> #...
{ "pile_set_name": "Github" }
// // Basic print styles // -------------------------------------------------- // Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css @media print { * { text-shadow: none !important; color: #000 !important; // Black prints faster: h5bp.com/s background: transparent !important; ...
{ "pile_set_name": "Github" }
<?php /** * [PUBLISH] ブログ最近の投稿 * * baserCMS : Based Website Development Project <http://basercms.net> * Copyright (c) baserCMS Users Community <http://basercms.net/community/> * * @copyright Copyright (c) baserCMS Users Community * @link http://basercms.net baserCMS Project * @package Blog.View * @since ...
{ "pile_set_name": "Github" }
{% extends "base.html" %} {% block title %}{{ username }}: {{ artist }}{% endblock %} {% block tagline %}This is {{ username }}'s history for <em>{{ artist }}</em>.{% endblock %} {% block content %} <img class="resizeable_graph" src="/graph/{{ username }}/artist/{{ artist }}/" /> <div class="export"> Export:...
{ "pile_set_name": "Github" }
/* * GStreamer * Copyright (C) 2005 Thomas Vander Stichele <thomas@apestaart.org> * Copyright (C) 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net> * Copyright (C) 2010 Luis de Bethencourt <luis@debethencourt.com> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this softw...
{ "pile_set_name": "Github" }
config { name: "envoy.filters.network.local_ratelimit" typed_config { type_url: "type.googleapis.com/envoy.extensions.filters.network.local_ratelimit.v3.LocalRateLimit" value: "\nVtype.googleapis.com/envoy.extensions.filters.network.local_ratelimit.v3.LocalRateLimit\022\013\010\001\032\007\010\200^\020\200\...
{ "pile_set_name": "Github" }
/* * This file is part of the SDWebImage package. * (c) Olivier Poitrey <rs@dailymotion.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ #import "SDWebImageCompat.h" #import "SDWebImageOperation.h" #import "SDWebImageDownloader...
{ "pile_set_name": "Github" }
<?xml version="1.0"?> <doc> <assembly> <name>OpenTK.GLControl</name> </assembly> <members> <member name="T:OpenTK.GLControl"> <summary> Defines a UserControl with OpenGL rendering capabilities. </summary> </member> <member name="F:OpenTK.GL...
{ "pile_set_name": "Github" }
<div class="thumb discoverLogo flexNoShrink"></div> <div class="providersHeader flexNoShrink"> <div class="flexVCent"> <div> <div class="tx4 rowTn">OpenBazaar</div> <div class="tx6"><%= ob.polyT('search.title') %></div> </div> </div> </div> <div class="providersBar flexExpand"> <div class="pro...
{ "pile_set_name": "Github" }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
{ "pile_set_name": "Github" }
package com.vladmihalcea.flexypool.metric; import com.vladmihalcea.flexypool.common.ConfigurationProperties; import org.mockito.Mockito; import static org.mockito.Matchers.any; import static org.mockito.Mockito.when; /** * MockMetricsFactoryService - Mock MetricsFactoryService * * @author Vlad Mihalcea */ public...
{ "pile_set_name": "Github" }
'use strict'; const Stream = require('stream'); const internals = {}; exports.NotConstructor = {}; exports.NotStream = function () { }; exports.Incrementer = class extends Stream.Transform { constructor(starting) { super({ objectMode: true }); this.starting = starting; this.once('...
{ "pile_set_name": "Github" }
// Check frontend and linker invocations on the MTI MIPS toolchain. // -EB -mhard-float -mabi=32 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ // RUN: --target=mips-mti-linux-gnu \ // RUN: --gcc-toolchain=%S/Inputs/mips_mti_tree \ // RUN: --sysroot="" \ // RUN: -stdlib=libstd...
{ "pile_set_name": "Github" }
1113 1002 1335 1224
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- """ requests.structures ~~~~~~~~~~~~~~~~~~~ Data structures that power Requests. """ from .compat import OrderedDict, Mapping, MutableMapping class CaseInsensitiveDict(MutableMapping): """A case-insensitive ``dict``-like object. Implements all methods and operations of ``Mutabl...
{ "pile_set_name": "Github" }
<iframe id="i"></iframe> <video id="v"></video> <script> var doc = i.contentDocument; i.remove(); doc.importNode(v); </script>
{ "pile_set_name": "Github" }
<html> <head> <link rel="stylesheet" type="text/css" href="css/tips.css"> </head> <body> <h1>CreateTestIntentionAction(创建测试意图动作) <a href='https://www.pingfangx.com/xx/translation/feedback?from=tips'>[汉化反馈]</a></h1> <p><span class="product">&productName;</span> 可以直接从类声明创建测试用例。将插入符号放到编辑器中的类名处,按下 <span class...
{ "pile_set_name": "Github" }
<html><head> <meta http-equiv="refresh" content="0;url=http://packetstormsecurity.org/1102-exploits/"></head> <body>This page has moved here: <a href="http://packetstormsecurity.org/1102-exploits/">http://packetstormsecurity.org/1102-exploits/</a></body></html>
{ "pile_set_name": "Github" }
import { NetworkProtocol } from '../../network-rule.model'; import { NetworkRuleType } from '../../sg.model'; export interface FirewallRule { type: NetworkRuleType; protocol: NetworkProtocol; cidr: string; icmpType?: number; icmpCode?: number; startPort?: number; endPort?: number; }
{ "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_23) on Fri Nov 23 14:03:49 GMT 2012 --> <TITLE> GZIPUtils (apache-nutch 1.6 API) </TITLE> <META NAME="date" CONTENT="2012-11-23"> <LINK REL ="style...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2010-2020 Mark Allen, Norbert Bartels. * * 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, ...
{ "pile_set_name": "Github" }
/* * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
{ "pile_set_name": "Github" }
--- title: buttons element description: The required buttons element specifies one or more buttons that are displayed in the event notification message box on the client computer. ms.assetid: bf3718c0-37d9-4b73-a015-8a5a95535381 keywords: ["buttons element Print Devices"] topic_type: - apiref api_name: - buttons api_ty...
{ "pile_set_name": "Github" }
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the Lic...
{ "pile_set_name": "Github" }
// go-qrcode // Copyright 2014 Tom Harwood /* Package qrcode implements a QR Code encoder. A QR Code is a matrix (two-dimensional) barcode. Arbitrary content may be encoded. A QR Code contains error recovery information to aid reading damaged or obscured codes. There are four levels of error recovery: qrcode.{Low, M...
{ "pile_set_name": "Github" }
<template> <div class="uk-padding"> <vk-spinner></vk-spinner> <vk-spinner ratio="2"></vk-spinner> </div> </template>
{ "pile_set_name": "Github" }
/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ /* Copyright (c) 2012-2016 ymnk, JCraft,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 of source code must retai...
{ "pile_set_name": "Github" }
+ ld obj/kern/kernel + mk obj/kern/kernel.img Could not access KVM kernel module: Permission denied failed to initialize KVM: Permission denied Back to tcg accelerator. 6828 decimal is 15254 octal! Physical memory: 66556K available, base = 640K, extended = 65532K boot_alloc memory at f0268000 Next memory at f0269000 bo...
{ "pile_set_name": "Github" }
{% set version = "1.4.0" %} {% set name = "BSgenome.Dmelanogaster.UCSC.dm2" %} {% set bioc = "3.11" %} package: name: 'bioconductor-{{ name|lower }}' version: '{{ version }}' source: url: - 'https://bioconductor.org/packages/{{ bioc }}/data/annotation/src/contrib/{{ name }}_{{ version }}.tar.gz' - 'https...
{ "pile_set_name": "Github" }
// Copyright 2019 The Cockroach 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 ag...
{ "pile_set_name": "Github" }
import "hash" rule n3ed_51996b64dbd31932 { meta: copyright="Copyright (c) 2014-2017 Support Intelligence Inc, All Rights Reserved." engine="saphire/1.2.2 divinorum/0.99 icewater/0.3.01" viz_url="http://icewater.io/en/cluster/query?h64=n3ed.51996b64dbd31932" cluster="n3ed.51996b64dbd31932" ...
{ "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" /> <link type="text/css" rel="stylesheet" h...
{ "pile_set_name": "Github" }
<?php /*! * Hybridauth * https://hybridauth.github.io | https://github.com/hybridauth/hybridauth * (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html */ namespace Hybridauth\Provider; use Hybridauth\Adapter\OAuth2; use Hybridauth\Data; use Hybridauth\Exception\UnexpectedApiResponseException;...
{ "pile_set_name": "Github" }
<?php return array ( 'ALK' => 'Albanian Lek (1946–1965)', 'ARM' => 'Argentine Peso (1881–1970)', 'ARL' => 'Argentine Peso Ley (1970–1983)', 'BOL' => 'Bolivian Boliviano (1863–1963)', 'BAN' => 'Bosnia-Herzegovina New Dinar (1994–1997)', 'BRZ' => 'Brazilian Cruzeiro (1942–1967)', 'BGO' => 'Bulgarian Lev (18...
{ "pile_set_name": "Github" }
#include "perf_precomp.hpp" namespace opencv_test { using namespace perf; PERF_TEST_P(Size_MatType, sum, TYPICAL_MATS) { Size sz = get<0>(GetParam()); int type = get<1>(GetParam()); Mat arr(sz, type); Scalar s; declare.in(arr, WARMUP_RNG).out(s); TEST_CYCLE() s = sum(arr); SANITY_CHECK...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- 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 th...
{ "pile_set_name": "Github" }
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of the License "Eclipse Public License v1.0" // which accompanies this distribution, and is available // at the URL "http://www.eclipse.org/...
{ "pile_set_name": "Github" }
<?php /** * This file is part of the OpenPNE package. * (c) OpenPNE Project (http://www.openpne.jp/) * * For the full copyright and license information, please view the LICENSE * file and the NOTICE file that were distributed with this source code. */ /** * opStandardRouteCollection * * @package OpenPNE ...
{ "pile_set_name": "Github" }
'use strict'; angular.module("ngLocale", [], ["$provide", function($provide) { var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; $provide.value("$locale", { "DATETIME_FORMATS": { "AMPMS": [ "AM", "PM" ], "DAY": [ "Sunday", "Mond...
{ "pile_set_name": "Github" }
/* * * Copyright 2014 gRPC 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 agree...
{ "pile_set_name": "Github" }
<?php /** * Database tools in PHP */ // 1. Create a new variable $query which holds the "SELECT * FROM person" query. // Make sure to manually type the query and note the autocompletion support (use Ctrl+Space right after FROM). $query = ""; // 2. Make the query a bit more complicated. Remember the JOIN smart c...
{ "pile_set_name": "Github" }
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using System.Xml; using Microsoft.VisualStudio.TestTools.UnitTesting; using Waher.Persistence; using Waher.Persistence.Files; using Waher.Persistence.Serialization; using Waher.Runtime.Inventory; using Waher.Script.Objects...
{ "pile_set_name": "Github" }
# This test is broken for cygwin. There is a future for it CHPL_HOST_PLATFORM <= cygwin
{ "pile_set_name": "Github" }
### Speaking proposal for Nordic Ruby 2016 *by Reginald Braithwaite* # Optimism I live with depression. In this talk I will share Dr. Martin Seligman's three techniques for reprogramming our brains to think optimistically, and explain how they have helped me feel better, accomplish more, and be a better member of th...
{ "pile_set_name": "Github" }
// Binary Tree Postorder Traversal // Morris后序遍历,时间复杂度O(n),空间复杂度O(1) class Solution { public: vector<int> postorderTraversal(TreeNode *root) { vector<int> result; TreeNode dummy(-1); TreeNode *cur, *prev = nullptr; std::function < void(const TreeNode*)> visit = [&result]...
{ "pile_set_name": "Github" }
/************************************************************************ * * * XVI Olimpiada Informatyczna * * * * Zadanie: Kodowa...
{ "pile_set_name": "Github" }
<?jelly escape-by-default='true'?> <j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:st="jelly:stapler"> <st:include page="/hudson/plugins/selenium/configuration/browser/AbstractSeleniumBrowser/config.jelly" it="${it ?: d}"/> <f:advanced> <f:entry title="${%Firefox browser path}" f...
{ "pile_set_name": "Github" }
<?php /********************************************************************************* * This file is part of Sentrifugo. * Copyright (C) 2014 Sapplica * * Sentrifugo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Fre...
{ "pile_set_name": "Github" }
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="description" content="Javadoc API documentation for Fresco." /> <link rel="shortcut icon" type="image/x-icon" href="../../../../../../favicon.ico" /> <title>...
{ "pile_set_name": "Github" }
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; names...
{ "pile_set_name": "Github" }
<?php /* * Xibo - Digital Signage - http://www.xibo.org.uk * Copyright (C) 2018 Spring Signage Ltd * * This file is part of Xibo. * * Xibo is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either ...
{ "pile_set_name": "Github" }
/* $OpenBSD: rsa.h,v 1.51 2019/11/04 12:30:56 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This libra...
{ "pile_set_name": "Github" }
package orderedmerge_test import ( "bytes" "context" "strconv" "strings" "testing" "github.com/brimsec/zq/pkg/test" "github.com/brimsec/zq/proc" "github.com/brimsec/zq/proc/orderedmerge" "github.com/brimsec/zq/proc/proctest" "github.com/brimsec/zq/zbuf" "github.com/brimsec/zq/zio" "github.com/brimsec/zq/z...
{ "pile_set_name": "Github" }
package org.stagemonitor; import org.junit.Test; import org.mockito.Mockito; import org.stagemonitor.configuration.ConfigurationOption; import org.stagemonitor.web.servlet.filter.AbstractExclusionFilter; import java.io.IOException; import java.util.Arrays; import java.util.Collection; import java.util.Collections; i...
{ "pile_set_name": "Github" }
# core-util-is The `util.is*` functions introduced in Node v0.12.
{ "pile_set_name": "Github" }
--TEST-- DOMDocument::relaxNGValidate() should fail on invalid RelaxNG file source --CREDITS-- Knut Urdalen <knut@php.net> --SKIPIF-- <?php require_once('skipif.inc'); ?> --FILE-- <?php $rng = __DIR__.'/foo.rng'; $xml = <<< XML <?xml version="1.0"?> <apple> <pear>Pear</pear> <pear>Pear</pear> </apple> XML; $doc = n...
{ "pile_set_name": "Github" }
module github.com/microcosm-cc/bluemonday go 1.9 require ( github.com/aymerick/douceur v0.2.0 // indirect github.com/chris-ramon/douceur v0.2.0 github.com/gorilla/css v1.0.0 // indirect golang.org/x/net v0.0.0-20181220203305-927f97764cc3 )
{ "pile_set_name": "Github" }
# Current working directory should be that of WorkerProcess -- which is the # same directory as the currently executing playbook, i.e. integration/local/ # # https://github.com/ansible/ansible/issues/14489 - name: integration/local/cwd_preserved.yml any_errors_fatal: true hosts: test-targets tasks: - connecti...
{ "pile_set_name": "Github" }
package org.opentripplanner.ext.transmodelapi.mapping; import org.opentripplanner.model.FeedScopedId; import org.opentripplanner.model.TransitEntity; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Map; import ja...
{ "pile_set_name": "Github" }
// Navigation // Mobile menu toggles .menu-button-container { display: none; justify-content: space-between; left: 0; position: absolute; top: 0; width: 100%; #primary-open-menu { margin-left: auto; padding: calc(var(--button--padding-vertical) - (0.25 * var(--global--spacing-unit))) calc(var(--button--padd...
{ "pile_set_name": "Github" }
#!/usr/bin/env python3 # Copyright (c) 2014-2018 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Linux network utilities. Roughly based on http://voorloopnul.com/blog/a-python-netstat-in-less-than-10...
{ "pile_set_name": "Github" }