text stringlengths 2 99k | meta dict |
|---|---|
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="ProxyField" module="Products.ERP5Form.ProxyField"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>delegated_list</string> </key>
<value>
<list>
... | {
"pile_set_name": "Github"
} |
--TEST--
Bug #37046 (foreach breaks static scope)
--FILE--
<?php
function s() {
static $storage = array(array('x', 'y'));
return $storage[0];
}
foreach (s() as $k => $function) {
echo "op1 $k\n";
if ($k == 0) {
foreach (s() as $k => $function) {
echo "op2 $k\n";
}
}
}
?>
--EXPECT--
op1 0
op2 0
... | {
"pile_set_name": "Github"
} |
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution Licens... | {
"pile_set_name": "Github"
} |
#
# Automatically generated file; DO NOT EDIT.
# Espressif IoT Development Framework Configuration
#
CONFIG_GATTC_ENABLE=
CONFIG_ESP32_PHY_MAX_TX_POWER=20
CONFIG_FATFS_CODEPAGE_852=
CONFIG_FREERTOS_LEGACY_TICK_HOOK=
CONFIG_TRACEMEM_RESERVE_DRAM=0x0
CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16
CONFIG_MBEDTLS_XTEA_C=
CONFIG_SECU... | {
"pile_set_name": "Github"
} |
static char help[] = "Tests MatIncreaseOverlap() and MatCreateSubmatrices() for the parallel case.\n\
This example is similar to ex40.c; here the index sets used are random.\n\
Input arguments are:\n\
-f <input_file> : file to load. For example see $PETSC_DIR/share/petsc/datafiles/matrices\n\
-nd <size> : > ... | {
"pile_set_name": "Github"
} |
@echo off
CD /D "%~dp0"
set nscexe="%CD%\nsudoc.exe"
if NOT exist %nscexe% echo Error! nsudoc.exe not found. & echo. & echo Press any key to exit . . . & pause >nul & exit
goto checkadmin
:checkadmin
echo Elevating to Administrator permissions . . .
echo.
NET FILE>nul 2>&1||goto elevate
goto elevated
:elevate
echo.C... | {
"pile_set_name": "Github"
} |
// Copyright 2018 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 agreed to in writi... | {
"pile_set_name": "Github"
} |
<?php
/*
* This file is part of the phpunit-mock-objects package.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Framework\MockObject;
use PHPUnit\Framework\Expe... | {
"pile_set_name": "Github"
} |
^D:\TRIAGE\TITLES\PDOANE-API-TEST\GIT\APITEST\THIRDPARTY\SDL2-2.0.1\TEST\TESTJOYSTICK.C
D:\TRIAGE\TITLES\PDOANE-API-TEST\GIT\APITEST\THIRDPARTY\SDL2-2.0.1\VISUALC\TESTS\TESTJOYSTICK\WIN32\DEBUG\TESTJOYSTICK.OBJ
D:\TRIAGE\TITLES\PDOANE-API-TEST\GIT\APITEST\THIRDPARTY\SDL2-2.0.1\VISUALC\TESTS\TESTJOYSTICK\WIN32\DEBUG\V... | {
"pile_set_name": "Github"
} |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{49A62C40-8E8C-43D3-9D15-61383E21EED3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F... | {
"pile_set_name": "Github"
} |
package org.geogebra.desktop.gui.view.spreadsheet;
import java.awt.Component;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import javax.swing.DefaultCellEditor;
import javax.swing.JTable;
import javax.swing.event.DocumentEven... | {
"pile_set_name": "Github"
} |
# RUN: llvm-mc -show-encoding -triple mips-unknown-unknown %s \
# RUN: | FileCheck %s -check-prefix=CHECK-ENC
# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s \
# RUN: | llvm-objdump -disassemble - | FileCheck %s -check-prefix=CHECK-INSTR
# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s \
# ... | {
"pile_set_name": "Github"
} |
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Snap.Test.Common
( coverEqInstance
, coverOrdInstance
, coverReadInstance
, coverShowInstance
, coverTypeab... | {
"pile_set_name": "Github"
} |
import tensorflow as tf
from zh.model.mnist.mlp import MLP
from zh.model.utils import MNISTLoader
num_epochs = 5
batch_size = 50
learning_rate_1 = 0.001
learning_rate_2 = 0.01
model = MLP()
data_loader = MNISTLoader()
# 宣告兩個優化器,設定不同的學習率,分別用於更新MLP模型的第一層和第二層
optimizer_1 = tf.keras.optimizers.Adam(learning_rate=learning... | {
"pile_set_name": "Github"
} |
"""Search using HMMER's online REST interface.
http://hmmer.janelia.org/search
From Nick Loman's EntrezAjax:
https://github.com/nickloman/entrezajax
"""
from __future__ import print_function
from six.moves import urllib
import logging
class SmartRedirectHandler(urllib.request.HTTPRedirectHandler):
def http_erro... | {
"pile_set_name": "Github"
} |
#ifndef XT_HMARK_H_
#define XT_HMARK_H_
#include <linux/types.h>
enum {
XT_HMARK_SADDR_MASK,
XT_HMARK_DADDR_MASK,
XT_HMARK_SPI,
XT_HMARK_SPI_MASK,
XT_HMARK_SPORT,
XT_HMARK_DPORT,
XT_HMARK_SPORT_MASK,
XT_HMARK_DPORT_MASK,
XT_HMARK_PROTO_MASK,
XT_HMARK_RND,
XT_HMARK_MODULUS,
XT_HMARK_OFFSET,
XT_HMARK_CT,
... | {
"pile_set_name": "Github"
} |
/*
Atom One Light by Daniel Gamage
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
base: #fafafa
mono-1: #383a42
mono-2: #686b77
mono-3: #a0a1a7
hue-1: #0184bb
hue-2: #4078f2
hue-3: #a626a4
hue-4: #50a14f
hue-5: #e45649
hue-5-2: #c91243
hue-6: #986801
hue-6-2: #c18401
... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <MediaPlayerUI/NSObject-Protocol.h>
@class NSArray, NSIndexPath, NSString, UITableView, UITableViewCell;
@protocol UITableViewDataSource <NSObject>
- (UITableViewCell *)ta... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 %s -verify -fsyntax-only
// rdar: // 6734520
typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' has been explicitly marked deprecated here}}
typedef INT1 INT2 __attribute__ ((__deprecated__("Please avoid INT2")));
typedef INT1 INT1a; // expected-warning ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed 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 http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | {
"pile_set_name": "Github"
} |
import Ember from 'ember';
const Config = require('electron-config');
const config = new Config();
export default Ember.Route.extend({
model() {
var token = config.get('token');
return new Promise(function(resolve, reject){
Ember.$.getJSON(`https://api.github.com/issues?access_token=${token}&filter=sub... | {
"pile_set_name": "Github"
} |
<div class="mat-elevation-z8">
<table mat-table class="full-width-table" [dataSource]="dataSource" matSort aria-label="Elements">
<!-- Id Column -->
<ng-container matColumnDef="id">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Id</th>
<td mat-cell *matCellDef="let row">{{row.id}}</td>
... | {
"pile_set_name": "Github"
} |
<?php
declare(strict_types = 1);
return [
'authorName' => 'Scadrei5',
'authorUrl' => 'https://www.youtube.com/user/Scadrei5',
'cms' => null,
'code' => [
'html' => '<iframe width="480" height="270" src="https://www.youtube.com/embed/videoseries?list=PL4qTakKkQATKOyZPJG_cAMnRtF7fAIdST" frameborde... | {
"pile_set_name": "Github"
} |
<link rel="import" href="test-behavior.html">
<script>
Polymer({
is: 'test-element',
behaviors: [TestBehavior],
});
</script>
| {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML>
<html>
<head>
<title>CSS 2.1 Test Suite: generated content</title>
<link rel="author" title="Robert O'Callahan" href="mailto:robert@ocallahan.org" />
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.ht... | {
"pile_set_name": "Github"
} |
--TEST--
Test get_html_translation_table() function : error conditions
--FILE--
<?php
/* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charset_hint]]] )
* Description: Returns the internal translation table used by htmlspecialchars and htmlentities
* Source code: ext/stand... | {
"pile_set_name": "Github"
} |
<?php
namespace oasis\names\specification\ubl\schema\xsd\CommonBasicComponents_2;
/**
* @xmlNamespace urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2
* @xmlType PrintQualifierType
* @xmlName PrintQualifier
* @var oasis\names\specification\ubl\schema\xsd\CommonBasicComponents_2\PrintQualifier
... | {
"pile_set_name": "Github"
} |
/**
* @file IdealMolalSoln.cpp
* ThermoPhase object for the ideal molal equation of
* state (see \ref thermoprops
* and class \link Cantera::IdealMolalSoln IdealMolalSoln\endlink).
*
* Definition file for a derived class of ThermoPhase that handles variable
* pressure standard state methods for calculating th... | {
"pile_set_name": "Github"
} |
foo ->
| {
"pile_set_name": "Github"
} |
*** Settings ***
Variables numbers_to_convert.py
*** Test Cases ***
Convert To Integer
[Documentation] FAIL STARTS: 'MyObject' cannot be converted to an integer: ZeroDivisionError:
[Template] Test Convert To Integer
1 1
-42 -42
10000000000000000000000... | {
"pile_set_name": "Github"
} |
heat_template_version: 2016-10-14
description: >
A template which doesn't create any resources supposing that an external
loadbalancer is used.
parameters:
# What version of OpenShift Container Platform to install
# This value is used to select the RPM repo for the OCP release to install
ocp_version:
t... | {
"pile_set_name": "Github"
} |
## -*- Autoconf -*-
# Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2008
# Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without mod... | {
"pile_set_name": "Github"
} |
/**
* Question Link: https://leetcode.com/problems/word-ladder/
* Primary idea: BFS to go over all possible word paths until the word is exactly
* the same as end word, then the path should be the shortest one.
*
* Time Complexity: O(nm), Space Complexity: O(nm)
* n stands for # o... | {
"pile_set_name": "Github"
} |
// Variables
// --------------------------
$fa-font-path: "../fonts" !default;
$fa-font-size-base: 14px !default;
$fa-line-height-base: 1 !default;
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
$fa-css-prefix: ... | {
"pile_set_name": "Github"
} |
-- setup uart at 9600bps by default with echo
uart.setup(0, 9600, 8, uart.PARITY_NONE, uart.STOPBITS_1, 1);
rawcode, reason = node.bootreason();
-- to get to this mode hold the RESET button, then turn power off,
-- then release RESET and lastly turn power on
if rawcode == 2 and reason == 6 then
print("\nWaiting 2.5 s... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google Inc.
*
* 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 t... | {
"pile_set_name": "Github"
} |
<div>
<div metal:define-macro="test1">
t1.v1:<span metal:define-slot="val1">test1: val1 should go here</span>
</div>
<div metal:define-macro="test2">
t2.v1:<span metal:define-slot="val1">test2: val1 should go here</span>
t2.v2:<span metal:define-slot="val2">test2 OK: unfilled val2</span>
</div>
... | {
"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 openpgp implements high level operations on OpenPGP messages.
package openpgp // import "golang.org/x/crypto/openpgp"
import (
"crypto"
_ "crypto/... | {
"pile_set_name": "Github"
} |
// Copyright 2017 DAIMTO ([Linda Lawton](https://twitter.com/LindaLawtonDK)) : [www.daimto.com](http://www.daimto.com/)
//
// 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.apa... | {
"pile_set_name": "Github"
} |
# custom_paint_example
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://flutter.io/docs/get-started/codelab)
- [Cookbook: Useful Flutter sampl... | {
"pile_set_name": "Github"
} |
CSS.AllowTricky
TYPE: bool
DEFAULT: false
VERSION: 3.1.0
--DESCRIPTION--
This parameter determines whether or not to allow "tricky" CSS properties and
values. Tricky CSS properties/values can drastically modify page layout or
be used for deceptive practices but do not directly constitute a security risk.
For example, <... | {
"pile_set_name": "Github"
} |
{
"language": "x86-64-assembly",
"slug": "x86-64-assembly",
"active": true,
"blurb": "x86-64 assembly is a low-level programming language, typically used in boot loaders, device drivers, and operating system kernels.",
"version": 3,
"online_editor": { "indent_style": "space", "indent_size": 4 },
"exercise... | {
"pile_set_name": "Github"
} |
#include "io.h"
int main(void)
{
long long rs, rt, ach, acl;
long long result, resulth, resultl;
rs = 0x00FFBBAA;
rt = 0x4B231000;
resulth = 0x4b0f01;
resultl = 0x71f8a000;
__asm
("mult $ac1, %2, %3\n\t"
"mfhi %0, $ac1\n\t"
"mflo %1, $ac1\n\t"
: "=r"(ac... | {
"pile_set_name": "Github"
} |
<?xml version="1.0"?>
<!--
The file is converted from allegro_hand_description_left.xacro from the
unofficial ROS package of Allegro Hand (https://github.com/felixduvallet/
allegro-hand-ros/tree/master/allegro_hand_description). The conversion is
applied using the ROS package xacro to convert into urdf files. T... | {
"pile_set_name": "Github"
} |
/*
Copyright The containerd 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... | {
"pile_set_name": "Github"
} |
package com.windmt;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @author yibo
*/
@SpringBootApplication
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientAppl... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
# This code is part of Amoco
# Copyright (C) 2012-2013 Axel Tillequin (bdcht3@gmail.com)
# published under GPLv2 license
# import expressions:
from amoco.cas.expressions import *
# reference documentation:
# The SPARC Architecture Manual Version 8, Revision SAV080SI9308.
# registers :
# ----... | {
"pile_set_name": "Github"
} |
/**
* Default theme for reveal.js.
*
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
// Default mixins and settings -----------------
@import "../template/mixins";
@import "../template/settings";
// ---------------------------------------------
// Include theme-specific fonts
@font-face {
font-f... | {
"pile_set_name": "Github"
} |
package fr.adrienbrault.idea.symfony2plugin.twig.utils;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.PsiFile;
import com.intellij.psi.PsiManager;
import com.intellij.psi.search.GlobalSearchScope;
import com.intellij.util.indexing.FileBasedIndex;
import com.jetbrains.twig.TwigFile;
import fr.adr... | {
"pile_set_name": "Github"
} |
TEMPLATE = app
QT += gui-private
SOURCES = \
cubemap.cpp
RESOURCES = cubemap.qrc
| {
"pile_set_name": "Github"
} |
Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
660 York Street, Suite 102,
San Francisco, CA 94110 USA
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Or... | {
"pile_set_name": "Github"
} |
{%load static%}
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Alize</title>
<link rel="stylesheet" href="{%static 'css/search.css'%}">
<link rel="stylesheet" href="{%static 'css/app.css'%}">
</head>
<body>
<form action="/yasintoy">
<div class="search">
<svg class="searc... | {
"pile_set_name": "Github"
} |
/* SPX - A simple profiler for PHP
* Copyright (C) 2017-2020 Sylvain Lassaut <NoiseByNorthwest@gmail.com>
*
* 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 3 of the License, ... | {
"pile_set_name": "Github"
} |
1 1 1
2 2 1
5 5 1
7 7 1
8 8 1
9 9 1
13 13 1
15 15 1
18 18 1
19 19 1
21 1 2
22 2 2
25 5 2
27 7 2
28 8 2
29 9 2
33 13 2
35 15 2
38 18 2
39 19 2
41 1 3
42 2 3
45 5 3
47 7 3
48 8 3
49 9 3
53 13 3
55 15 3
58 18 3
59 19 3
61 1 4
65 5 4
67 7 4
68 8 4
69 9 4
70 10 4
73 13 4
74 14 4
75 15 4
78 18 4
79 19 4
| {
"pile_set_name": "Github"
} |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_181) on Tue Jul 07 00:34:31 BST 2020 -->
<title>LayoutInfoUtils</title>
<meta name="date" content="2020-07-07">
<link rel="stylesheet" type="te... | {
"pile_set_name": "Github"
} |
/*
* © Copyright 2018 Alyssa Rosenzweig
* Copyright (C) 2019 Collabora, Ltd.
*
* 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 r... | {
"pile_set_name": "Github"
} |
presig: 0 postsig:1648 c: 0.9994 lenerr:1648
| {
"pile_set_name": "Github"
} |
"""Module for handling problem feedback."""
from datetime import datetime
from voluptuous import Length, Required, Schema
import api
from api import check, log_action, PicoException, validate
feedback_schema = Schema(
{
Required("liked"): check(
("liked must be a boolean", [lambda x: type(x)... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2009 Realtek Semiconductor Corp.
* All Rights Reserved.
*
* This program is the proprietary software of Realtek Semiconductor
* Corporation and/or its licensors, and only be used, duplicated,
* modified or distributed under the authorized license from Realtek.
*
* ANY USE OF THE SOFTWARE O... | {
"pile_set_name": "Github"
} |
---
layout: "default"
title: "create"
description: "Swift documentation for 'create': A class whose instances contain a property of type Header and raw."
keywords: "create,func,swift,documentation"
root: "/v3.0"
---
<div class="declaration" id="func-create_-int-makingheaderwith_-managedbuffer-header-element-throws-hea... | {
"pile_set_name": "Github"
} |
//===--- fwd_decl_of_nested_class_defined_later.cc - test input file ------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available... | {
"pile_set_name": "Github"
} |
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | {
"pile_set_name": "Github"
} |
<?php
namespace yii\easyii\modules\guestbook\api;
use Yii;
use yii\data\ActiveDataProvider;
use yii\helpers\Url;
use yii\widgets\LinkPager;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use yii\easyii\modules\guestbook\models\Guestbook as GuestbookModel;
use yii\easyii\widgets\ReCaptcha;
/**
* Guestbook module A... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: b2e335125ba714f65bdbc46186251274
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Chest
100002: Head
100004: Hips
100006: Jaw
100008: JawEnd
100010: LeftEye
100012: LeftFoot
100014: LeftHand
100016: LeftIndexDistal
100018: LeftIndex... | {
"pile_set_name": "Github"
} |
#################################################################
# Adds a build target called "coverage" for code coverage.
#
# This compiles the code using special GCC flags, run the tests,
# and then generates a nice HTML output. This new "coverage" make
# target will only be available if you build using GCC in Debu... | {
"pile_set_name": "Github"
} |
{
"accountLinkingWhitelistedDomains": null,
"asin": "B01M0J61HH",
"averageRating": 0,
"canDisable": true,
"capabilities": null,
"category": null,
"description": "Random Facts gives out a random fact when the user prompts the skill for one. Each time, it will give a new random fact.",
"enablement": null... | {
"pile_set_name": "Github"
} |
{
"id": "shipstation",
"title": "ShipStation Developer Portal",
"description": "# Integrating with ShipStation\n\nShipStation strives to streamline shipping for online sellers, no matter where they sell their products online. We are continuously adding new marketplaces, shopping carts, and integration tools, beca... | {
"pile_set_name": "Github"
} |
<div class="mb-3 bg-white fb-card rounded">
<div class="card-body">
<span class="card_social_ribbon">
<i class="fab fa-facebook-f"></i>
</span>
<div class="text-center">
<img class="rounded-circle" src="https://graph.facebook.com/{{$userProfile... | {
"pile_set_name": "Github"
} |
# sent_id = weblog-juancole.com_juancole_20030911085700_ENG_20030911_085700-0022
# text = It should continue to be defanged.
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 nsubj 3:nsubj|6:nsubj:xsubj _
2 should should AUX MD VerbForm=Fin 3 aux 3:aux _
3 continue continue VERB VB VerbForm=Inf ... | {
"pile_set_name": "Github"
} |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/base/clipboard/clipboard_format_type.h"
#import <Cocoa/Cocoa.h>
#include "base/strings/sys_string_conversions.h"
#include "ui/base/clipboar... | {
"pile_set_name": "Github"
} |
#-- encoding: UTF-8
#-- copyright
# ChiliProject is a project management system.
#
# Copyright (C) 2010-2013 the ChiliProject Team
#
# 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 versio... | {
"pile_set_name": "Github"
} |
/**
* Copyright (C) 2014 MongoDB Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be usef... | {
"pile_set_name": "Github"
} |
-----BEGIN PRIVATE KEY-----
MIGUAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHoweAIBAQQhALoiXMjOXuPkNVT6
g/8PnBmXj8wEvWXCyrpO+fh9EMTdoAoGCCqGSM49AwEHoUQDQgAEMzBNZ4wx6os0
rWIqn8QuOTHH3arXAxQrMopO4OycMBgcwyN1kz+bLW/ICx8BgEapGkyA6/8Grvjd
dmyMaU4+gg==
-----END PRIVATE KEY-----
| {
"pile_set_name": "Github"
} |
<?php
namespace mindplay\test\lib;
/**
* The xTest::fail() method throws and catches this exception, in order to
* interrupt the execution of a failed test.
*/
class xTestException extends \Exception
{
const FAIL = 0;
const PHP_ERROR = 1;
}
| {
"pile_set_name": "Github"
} |
{
"symbol": "SXAG",
"name": "sXAG",
"type": "ERC20",
"address": "0x6A22e5e94388464181578Aa7A6B869e00fE27846",
"ens_address": "",
"decimals": 18,
"website": "https://www.synthetix.io/tokens/",
"logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" },
"support": { "email": "", "url": "" },
"s... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) by Jaroslav Kysela <perex@perex.cz>
* Creative Labs, Inc.
* Routines for IRQ control of EMU10K1 chips
*
* BUGS:
* --
*
* TODO:
* --
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licen... | {
"pile_set_name": "Github"
} |
package gorush
import (
"context"
"errors"
"sync"
)
// InitWorkers for initialize all workers.
func InitWorkers(ctx context.Context, wg *sync.WaitGroup, workerNum int64, queueNum int64) {
LogAccess.Info("worker number is ", workerNum, ", queue number is ", queueNum)
QueueNotification = make(chan PushNotification... | {
"pile_set_name": "Github"
} |
SUBROUTINE CSYR2KF( UPLO, TRANS, N, K, ALPHA, A, LDA, B, LDB,
$ BETA, C, LDC )
* .. Scalar Arguments ..
CHARACTER*1 UPLO, TRANS
INTEGER N, K, LDA, LDB, LDC
COMPLEX ALPHA, BETA
* .. Array Arguments ..
COMPLEX A( LDA, * )... | {
"pile_set_name": "Github"
} |
#ifndef CAFFE_UTIL_MATH_FUNCTIONS_H_
#define CAFFE_UTIL_MATH_FUNCTIONS_H_
#include <stdint.h>
#include <cmath> // for std::fabs and std::signbit
#include "glog/logging.h"
#include "caffe/common.hpp"
#include "caffe/util/device_alternate.hpp"
#include "caffe/util/mkl_alternate.hpp"
namespace caffe {
// Caffe gemm ... | {
"pile_set_name": "Github"
} |
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* ... | {
"pile_set_name": "Github"
} |
package billing_test
import (
"context"
"testing"
"time"
"github.com/getfider/fider/app"
"github.com/getfider/fider/app/pkg/bus"
"github.com/getfider/fider/app/pkg/env"
"github.com/getfider/fider/app/models"
"github.com/getfider/fider/app/models/cmd"
"github.com/getfider/fider/app/models/dto"
"github.com/... | {
"pile_set_name": "Github"
} |
@import "~antd/lib/style/themes/default.less";
.exception {
display: flex;
align-items: center;
padding-top: 180px;
height: 100%;
.imgBlock {
flex: 0 0 55.5%;
width: 55.5%;
padding-right: 152px;
zoom: 1;
&:before,
&:after {
content: " ";
display: table;
}
&:after ... | {
"pile_set_name": "Github"
} |
<Type Name="ResponseMessageTypesAttribute" FullName="Beagrep.ResponseMessageTypesAttribute">
<TypeSignature Language="C#" Value="public class ResponseMessageTypesAttribute : Beagrep.Util.TypeCacheAttribute" />
<AssemblyInfo>
<AssemblyName>Beagrep</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: GPL-2.0
/*
* USB Serial Converter Bus specific functions
*
* Copyright (C) 2002 Greg Kroah-Hartman (greg@kroah.com)
*/
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/tty.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/usb/s... | {
"pile_set_name": "Github"
} |
---
author: kapnobatai136
type: normal
category: how to
links:
- '[Imported Spreadsheet](https://docs.google.com/spreadsheets/d/1l8zWrzpvPwYNtqvYUxWO2y3KJtFmKVidrAFmpPmaPyo/edit?usp=sharing){website}'
---
# Import Options
---
## Content
After your file has been uploaded a new pop-up window wi... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NBitcoin;
using Nethereum.RLP;
using Stratis.SmartContracts.Core.Hashing;
namespace Stratis.SmartContracts.Core.Receipts
{
/// <summary>
/// Holds information about the result of smart contract transaction executions. ... | {
"pile_set_name": "Github"
} |
// go run mksyscall.go -tags linux,arm64 syscall_linux.go syscall_linux_arm64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build linux,arm64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func Fanotify... | {
"pile_set_name": "Github"
} |
import {ClientType} from "./clientType";
import {Constants} from "./constants";
import {UrlUtils} from "./urlUtils";
import {ClipperState} from "./clipperUI/clipperState";
export module ClipperUrls {
export function generateFeedbackUrl(clipperState: ClipperState, usid: string, logCategory: string): string {
let ge... | {
"pile_set_name": "Github"
} |
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* 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.o... | {
"pile_set_name": "Github"
} |
{
"gender": "male",
"species": "lion",
"birthday": "7-29",
"games": {
"nl": {
"personality": "smug",
"clothes": "military-uniform",
"song": "K.K. Moody",
"phrase": "precisely",
"skill": "Drawing circles",
"goal": "Professor",
"fear": "Monster Mask",
"quote": "... | {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
require_relative "../setting"
module Byebug
#
# Setting to customize the number of byebug commands to be saved in history.
#
class HistsizeSetting < Setting
DEFAULT = 256
def banner
"Maximum number of commands that can be stored in byebug history"
end
def ... | {
"pile_set_name": "Github"
} |
FROM {{ namespace }}/{{ infra_image_prefix }}base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block storm %}{% endblock %}
{% import "macros.j2" as macros with context %}
{{ macros.configure_user(name='storm', homedir='/opt/... | {
"pile_set_name": "Github"
} |
#
# Copyright (C) 2015 Red Hat, Inc.
#
# 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 ... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>canvas</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="gitgraph.js"></script>
<script type="text/javascript" src="draw.js"></script>
</head>
<body>... | {
"pile_set_name": "Github"
} |
/*
* Axelor Business Solutions
*
* Copyright (C) 2020 Axelor (<http://axelor.com>).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google Inc.
*
* 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 t... | {
"pile_set_name": "Github"
} |
The head of America's most popular cable television service said on Tuesday that Latin American television will continue booming into the 21st century and that pan-regional advertising would shoot up to $1 billion within a decade.
Kay Koplovitz, chief executive of U.S.A. Networks, told an industry conference that cross... | {
"pile_set_name": "Github"
} |
using ExtendedXmlSerializer.ContentModel.Content;
using ExtendedXmlSerializer.ContentModel.Format;
namespace ExtendedXmlSerializer.ExtensionModel.Xml
{
sealed class DefaultXmlContentsActivator : IXmlContentsActivator
{
public static IXmlContentsActivator Default { get; } = new DefaultXmlContentsActivator();
Def... | {
"pile_set_name": "Github"
} |
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright (c) 2018-2020 Andre Richter <andre.o.richter@gmail.com>
//! Top-level BSP file for the Raspberry Pi 3 and 4.
pub mod console;
pub mod cpu;
pub mod driver;
pub mod exception;
pub mod memory;
//---------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.