text stringlengths 2 99.9k | meta dict |
|---|---|
package org.rewedigital.katana.android.example.main
import org.rewedigital.katana.android.example.remote.ApiModule
import org.rewedigital.katana.android.example.remote.MoshiModule
import org.rewedigital.katana.android.example.remote.RepositoryModule
import org.rewedigital.katana.android.example.remote.RetrofitModule
... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2018 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, d... | {
"pile_set_name": "Github"
} |
CONFIG_ZTEST=y
| {
"pile_set_name": "Github"
} |
/*============================================================================
This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
Package, Release 3e, by John R. Hauser.
Copyright 2011, 2012, 2013, 2014 The Regents of the University of California.
All rights reserved.
Redistribution... | {
"pile_set_name": "Github"
} |
---
id: navigation-plugin
title: Navigation Plugin Setup
sidebar_label: Navigation
---
## Android
First, add the plugin to your Flipper client instance:
```java
import com.facebook.flipper.android.AndroidFlipperClient;
import com.facebook.flipper.plugins.navigation.NavigationFlipperPlugin;
final FlipperClient client... | {
"pile_set_name": "Github"
} |
CFLAGS = -c
LDFLAGS =
ODIR = baddir
EXEBASE = bspinfo3
EXE = $(ODIR)/bspinfo3
all: $(EXE)
_next:
make "CFLAGS = -c -g -I../../common -DDOUBLEVEC_T" "ODIR = next"
_irix:
make "CFLAGS = -c -Ofast=ip32_10k -I../../common -Xcpluscomm -DDOUBLEVEC_T" "LDFLAGS = -Ofast=ip32_10k" "ODIR = irix"
_irixdebug:
make "CFLAG... | {
"pile_set_name": "Github"
} |
/*
* Creates a window station and starts a process under it. The new process
* also gets a new console.
*/
#include <windows.h>
#include <string.h>
#include <stdio.h>
int main()
{
BOOL success;
SECURITY_ATTRIBUTES sa;
memset(&sa, 0, sizeof(sa));
sa.bInheritHandle = TRUE;
HWINSTA originalStat... | {
"pile_set_name": "Github"
} |
export * from './layers.component';
| {
"pile_set_name": "Github"
} |
'use strict';
const fs = require('fs');
const path = require('path');
const assert = require('assert');
const yaml = require('yaml');
const swagger2openapi = require('../packages/swagger2openapi/index.js');
const doPrivate = (!process.env.SKIP_PRIVATE);
const tests = fs.readdirSync(path.join(__dirname,'s2o-test')).... | {
"pile_set_name": "Github"
} |
/**
* A simple theme for reveal.js presentations, similar
* to the default theme. The accent color is darkblue.
*
* This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
* reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
*/
@import url(https... | {
"pile_set_name": "Github"
} |
# mall功能结构说明
## 后台管理系统
### 商品管理

### 订单管理

### 促销管理

{
lowp vec4 textureColor;
lowp vec4 textureColorRes;
lowp vec4 textureColorOri;
vec4 grey1Color;
vec4 layerColor;
mediump float satVal = 115.0 / 100.0;
float xCoor... | {
"pile_set_name": "Github"
} |
# Copyright 2014 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.
import collections
import page_sets
import re
from core import perf_benchmark
from telemetry.core import util
from telemetry.page import legacy_page_test
f... | {
"pile_set_name": "Github"
} |
{include file="overall_header.tpl"}
<form action="" method="post">
<input type="hidden" name="opt_save" value="1">
<table width="70%" cellpadding="2" cellspacing="2">
<tr>
<th colspan="2">{$se_server_parameters}</th>
<th>(?)</th>
</tr><tr>
<td>{$ch_channelname}</td>
<td><input name="chat_channelname" value... | {
"pile_set_name": "Github"
} |
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed ... | {
"pile_set_name": "Github"
} |
// +build !darwin
package dbus
import (
"bytes"
"errors"
"os/exec"
)
func sessionBusPlatform() (*Conn, error) {
cmd := exec.Command("dbus-launch")
b, err := cmd.CombinedOutput()
if err != nil {
return nil, err
}
i := bytes.IndexByte(b, '=')
j := bytes.IndexByte(b, '\n')
if i == -1 || j == -1 {
retur... | {
"pile_set_name": "Github"
} |
// ------------------------------------------------------------------------------
// Copyright (c) 2015 Microsoft Corporation
//
// 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 re... | {
"pile_set_name": "Github"
} |
html {
font-size: 64px;
}
li:nth-child(even) {
color: red;
} | {
"pile_set_name": "Github"
} |
<snippet>
<content><![CDATA[getMinimumValue()]]></content>
<tabTrigger>getMinimumValue()</tabTrigger>
<scope>source.lua</scope>
<description>ControlPotentiometer</description>
</snippet>
| {
"pile_set_name": "Github"
} |
/*
* /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js
*
* Copyright (c) 2009-2018 The MathJax Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ... | {
"pile_set_name": "Github"
} |
<?php
namespace React\Promise;
class FunctionReduceTest extends TestCase
{
protected function plus()
{
return function ($sum, $val) {
return $sum + $val;
};
}
protected function append()
{
return function ($sum, $val) {
return $sum . $val;
}... | {
"pile_set_name": "Github"
} |
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"
declare void @llvm.wasm.throw(i32, i8*)
define void @bar(i8* %p) {
call void @llvm.wasm.throw(i32 0, i8* %p)
ret void
}
| {
"pile_set_name": "Github"
} |
// Copyright 2017 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 go1.7
package unix_test
import (
"fmt"
"testing"
"golang.org/x/sys/unix"
)
func TestDevices(t *testing.T) {
testCases := []struct {
path st... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2013-2020 Cinchapi 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 agr... | {
"pile_set_name": "Github"
} |
/*
de-DE.h - localization for German - Germany for Tasmota
Copyright (C) 2020 VinceMasuka
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, or
(at your op... | {
"pile_set_name": "Github"
} |
import Vue from "vue";
import Vuex from "vuex";
Vue.use(Vuex);
const store = new Vuex.Store({
state: {
logoText: "EasyDarwin",
logoMiniText: "ED",
serverInfo: {},
userInfo: null,
menus: [
{
path: '/',
title: "首页",
... | {
"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">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... | {
"pile_set_name": "Github"
} |
package org.mamute.auth.rules;
public enum PermissionRules {
/**
* to vote up anything
*/
VOTE_UP("vote_up"),
/**
* to vote down anything
*/
VOTE_DOWN("vote_down"),
/**
* to answer own question
*/
ANSWER_OWN_QUESTION("answer_own_question"),
/**
* to flag anything
*/
CREATE_FLAG("create_fla... | {
"pile_set_name": "Github"
} |
// RUN: mlir-cuda-runner %s --shared-libs=%cuda_wrapper_library_dir/libcuda-runtime-wrappers%shlibext,%linalg_test_lib_dir/libmlir_runner_utils%shlibext --entry-point-result=void | FileCheck %s
// CHECK-COUNT-8: [{{(5356, ){12}5356}}]
func @main() {
%arg = alloc() : memref<2x4x13xf32>
%dst = memref_cast %arg : mem... | {
"pile_set_name": "Github"
} |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using System.Runtime.Serialization.Json;
using Microsoft.DotNet.XHarness.iOS.Shared.Execution;
using Microsoft.DotNet.XHarness.iOS.Shared... | {
"pile_set_name": "Github"
} |
// Released under MIT license
// Copyright (c) 2009-2010 Dominic Baggott
// Copyright (c) 2009-2010 Ash Berlin
// Copyright (c) 2011 Christoph Dorn <christoph@christophdorn.com> (http://www.christophdorn.com)
/*jshint browser:true, devel:true */
(function( expose ) {
/**
* class Markdown
*
* Markdown processing... | {
"pile_set_name": "Github"
} |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/NewsCore.framework/NewsCore
*/
@interface FCBundleLookupClass : NSObject
@end
| {
"pile_set_name": "Github"
} |
use v6;
use Test;
use Alma::Test;
my $files = find(".", /[".pm6" | ".t"] $/)\
.grep({ $_ !~~ / "do-not-create-val-none.t" / })\
.join(" ");
my @lines-with-val-none-new =
qqx[grep -Fwrin 'Val::None.new' $files].lines\
# exception: we store Val::None.new once as a constant
.grep({ $_ !~~ / ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2014-2015 Broadcom Corporation
*
* 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 version 2.
*
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
* kind, ... | {
"pile_set_name": "Github"
} |
// Copyright (c) 1997-2001 ETH Zurich (Switzerland).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL$
// $Id$
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Kaspar Fischer <fischerk@inf.ethz.ch>
// Note: whenever a comment refers to "K... | {
"pile_set_name": "Github"
} |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="./../../helpwin.css">
<title>MATLAB File Help: prtClassBagging/plot</title>
</head>
<body>
<!--Single-page help-->
<table border="0" cellspacing="0" width="100%">
... | {
"pile_set_name": "Github"
} |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Denoising Autoencoder 代码实现"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Denoising Autoencoder(降噪自动编码器)就是在Autoencoder的基础之上,为了防止过拟合问题而对输入的数据(网络的输入层)加入噪音,使学习得到的编码器W\n",
"具有较强的鲁棒性,从而增强模型的泛化能力。Den... | {
"pile_set_name": "Github"
} |
#ifndef __LAYOUT_H__
#define __LAYOUT_H__
#include <ZUI.h>
#include <core/carray.h>
//------Js
#define Js_Id_Layout_Add 100
#define Js_Id_Layout_AddAt 101
#define Js_Id_Layout_GetItemIndex 102
#define Js_Id_Layout_GetItemAt 103
#define Js_Id_Layout_GetItemName 104
#d... | {
"pile_set_name": "Github"
} |
# 1176. Diet Plan Performance
https://leetcode.com/problems/diet-plan-performance/
## Difficulty:
Easy
## Description
A dieter consumes calories[i] calories on the i-th day.
Given an integer k, for every consecutive sequence of k days (calories[i],
calories[i+1], ..., calories[i+k-1] for all 0 <= i <= n-k), the... | {
"pile_set_name": "Github"
} |
import * as React from "react";
React.createElement('div', {});
createElement('someFunction');
<div>Hi</div>;
| {
"pile_set_name": "Github"
} |
---
- name: "auditConfig.enabled"
yedit:
src: /etc/origin/master/master-config.yaml
key: auditConfig.enabled
value: "{{ omac_auditConfig_enabled }}"
notify: restart openshift master services
- name: "deploy master audit config options"
yedit:
src: /etc/origin/master/master-config.yaml
key: "{... | {
"pile_set_name": "Github"
} |
// Copyright 2017, OpenCensus 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"
} |
## func (s *Scanner) Scan() rune
参数列表:
- 无
返回值:
- 下一个字符或token
功能说明:
Scan方法读取源中下一个token或字符,并返回。如果读到源的结尾,返回EOF。
代码实例:
package main
import(
"fmt"
"strings"
"text/scanner"
)
func main(){
src := strings.NewReader("int num = 1;")
var s scanner.Scanner
s.Init(src)
s.Scan()
//this will print t... | {
"pile_set_name": "Github"
} |
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // A... | {
"pile_set_name": "Github"
} |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import "NSArray.h"
@interface NSArray (PBXArchiveSelectors)
- (SEL)selectorForArchiveMask:(int)arg1;
@end
| {
"pile_set_name": "Github"
} |
// Copyright 2010 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions a... | {
"pile_set_name": "Github"
} |
import { Rule } from '../types'
export default {
id: 'attr-value-single-quotes',
description: 'Attribute values must be in single quotes.',
init(parser, reporter) {
parser.addListener('tagstart', (event) => {
const attrs = event.attrs
let attr
const col = event.col + event.tagName.length + ... | {
"pile_set_name": "Github"
} |
# OpenLDAP Core schema
# $OpenLDAP: pkg/ldap/servers/slapd/schema/core.ldif,v 1.1.2.5 2007/01/02 21:44:09 kurt Exp $
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2007 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, w... | {
"pile_set_name": "Github"
} |
/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Softwa... | {
"pile_set_name": "Github"
} |
@model Nethereum.Web.Sample.ViewModels.ProposalViewModel
@{
ViewBag.Title = "Proposal Detail";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Dao Proposal Detail</h2>
<div>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Index)
</dt>
<... | {
"pile_set_name": "Github"
} |
/*
* #%L
* %%
* Copyright (C) 2011 - 2017 BMW Car IT GmbH
* %%
* 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 requir... | {
"pile_set_name": "Github"
} |
#import "DDXMLElementAdditions.h"
@implementation DDXMLElement (DDAdditions)
/**
* Quick method to create an element
**/
+ (DDXMLElement *)elementWithName:(NSString *)name xmlns:(NSString *)ns
{
DDXMLElement *element = [DDXMLElement elementWithName:name];
[element setXmlns:ns];
return element;
}
/**
* This meth... | {
"pile_set_name": "Github"
} |
require 'test/unit'
class TestFunctional < Test::Unit::TestCase
tests = {:simple_annotation => [], :unit_test => ["-u"], :rspec => ["-s"],
:no_warnings => ["--no-warnings"], :bindings => ["--poetry", "-u"],
:add_markers => ["-m"]
}
tests.each_pair do |test, opts|
define_method("test_#{t... | {
"pile_set_name": "Github"
} |
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cases
import "golang.org/x/text/transform"
// A context is used for iterating over source bytes, fetching case info and
// writing to a destination bu... | {
"pile_set_name": "Github"
} |
<html>
<head>
<title>AT&T Digital Subscriber Line</title>
<!--Last Revised February 2017 by John Costa-->
<meta name="Revision" content="Revision: 2.01">
<meta name="keywords" content="AT&T, dsl, digital, subscriber, line, internet, service">
<meta http-equiv="Pragma" content="no-cache">
<meta name="description... | {
"pile_set_name": "Github"
} |
{
"name": "AccessiBe",
"website": "https://accessibe.com/",
"matches": [
{
"search": "script",
"regexp": "acsbap\\.com/.*/acsb\\.js"
}
]
} | {
"pile_set_name": "Github"
} |
# Copyright 2017 Rene Rivera
# 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_0.txt)
# The addressing model to generate code for. Currently a limited set only
# specifying the bit size of pointers.
import feature ;
featu... | {
"pile_set_name": "Github"
} |
import FWCore.ParameterSet.Config as cms
from Configuration.Generator.HerwigppDefaults_cfi import *
from Configuration.Generator.HerwigppUE_EE_5C_cfi import *
from Configuration.Generator.HerwigppPDF_CTEQ6_LO_cfi import *
from Configuration.Generator.HerwigppEnergy_13TeV_cfi import *
from Configuration.Generator.Herwi... | {
"pile_set_name": "Github"
} |
{
"throws": "Unexpected token (1:23)"
} | {
"pile_set_name": "Github"
} |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Shuffling Method"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Inspired by [Statistics for Hackers](https://speakerdeck.com/jakevdp/statistics-for-hackers) by Jake VanderPlas"
]
},
{
"cel... | {
"pile_set_name": "Github"
} |
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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 "components/cryptauth/cryptauth_enrollment_manager.h"
#include <utility>
#include "base/base64url.h"
#include "base/macros.h"
#include "base/me... | {
"pile_set_name": "Github"
} |
class A {
static int foo(String s) {
s = s.toLowerCase();
if (s.indexOf("hello") != -1) {
return 1;
}
return 0;
}
}
| {
"pile_set_name": "Github"
} |
/*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: org.apache.http.auth.NTCredentials
================================================================================*/
#ifndef J2CPP_INCLU... | {
"pile_set_name": "Github"
} |
import { module } from 'angular';
export const HEALTH_PERCENT_SELECTOR =
'spinnaker.core.serverGroup.configure.wizard.capacity.targetHealthyPercentageSelector';
module(HEALTH_PERCENT_SELECTOR, []).component('targetHealthyPercentageSelector', {
bindings: {
command: '=',
},
templateUrl: require('./targetHeal... | {
"pile_set_name": "Github"
} |
import withMapControl from './withMapControl';
import previewComponent from './MapPreview';
import schema from './schema';
const controlComponent = withMapControl();
const Widget = (opts = {}) => ({
name: 'map',
controlComponent,
previewComponent,
schema,
...opts,
});
export const NetlifyCmsWidgetMap = { Wi... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <fbjni/fbjni.h>
#include "JNativeModulePerfLogger.h"
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *) {
return fa... | {
"pile_set_name": "Github"
} |
/*
* MIT License
*
* Copyright (c) 2017-2019 nuls.io
*
* 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, mod... | {
"pile_set_name": "Github"
} |
// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschränkt)
// All rights reserved. Licensed under the MIT license.
// ============================... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<site>
<description url="https://spotbugs.github.io/eclipse-latest">
Eclipse update site for SpotBugs.
</description>
<feature url="features/@FEATURE_ID@_@FEATURE_VERSION@.jar"
id="@FEATURE_ID@"
version="@FEATURE_VERSION@">
<category ... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2006-2010 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 retain the above copyright notice,
this list of conditions and ... | {
"pile_set_name": "Github"
} |
--TEST--
Bug #48754 (mysql_close() crash php when no handle specified)
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require_once('connect.inc');
function my_mysql_pconnect($host, $user, $passwd, $db, $port, $socket) {
if ($socket)
$host = sprintf("%s:%s", ... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2010-2013 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
*/
package com.evolveum.midpoint.model.impl.sync;
import com.evolveum.midpoint.audit.api.AuditService;
import com.evolveum.midpoint... | {
"pile_set_name": "Github"
} |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | {
"pile_set_name": "Github"
} |
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import static com.yahoo.language.LinguisticsCase.toLowerCase;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.Inpu... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 1999-2003 Jaakko Jarvi
Copyright (c) 2001-2011 Joel de Guzman
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_0... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: f93cbb97b0a9c2242b41249ff19e2c5f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 0
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/* $Id: utils.h $ */
/** @file
* ComHostUtils.cpp
*/
/*
* Copyright (C) 2013-2017 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* ... | {
"pile_set_name": "Github"
} |
from __future__ import absolute_import
from . import ssl_match_hostname
| {
"pile_set_name": "Github"
} |
<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Api\V2010\Account\Usage\Record;
use Twilio\Page;
class DailyPage extends Page
{
public function __construct($version, $response, $solution)
{
parent::__construct($... | {
"pile_set_name": "Github"
} |
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions a... | {
"pile_set_name": "Github"
} |
import { mount, Wrapper } from '@vue/test-utils';
import Vue from 'vue';
import Vuetify from 'vuetify';
import AccountDisplay from '@/components/display/AccountDisplay.vue';
import store from '@/store/store';
import { GeneralAccount } from '@/typing/types';
Vue.use(Vuetify);
describe('AccountDisplay.vue', () => {
l... | {
"pile_set_name": "Github"
} |
/* 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://mozilla.org/MPL/2.0/. */
exports.type = 'cat';
| {
"pile_set_name": "Github"
} |
module github.com/NYTimes/gziphandler
go 1.11
require github.com/stretchr/testify v1.3.0
| {
"pile_set_name": "Github"
} |
// Copyright (c) 2015 Princeton University
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list o... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2012-2020 Snowflake Computing Inc. All right reserved.
#
# Feature flags
feature_use_pyopenssl = True # use pyopenssl API or openssl command
| {
"pile_set_name": "Github"
} |
// +build amd64,darwin
// Created by cgo -godefs - DO NOT EDIT
// cgo -godefs types_darwin.go
package unix
const (
sizeofPtr = 0x8
sizeofShort = 0x2
sizeofInt = 0x4
sizeofLong = 0x8
sizeofLongLong = 0x8
)
type (
_C_short int16
_C_int int32
_C_long int64
_C_long_long int64
)
... | {
"pile_set_name": "Github"
} |
package com.minecolonies.api.crafting;
import com.minecolonies.api.colony.requestsystem.token.IToken;
import net.minecraft.block.Block;
import net.minecraft.item.ItemStack;
import net.minecraftforge.items.IItemHandler;
import org.jetbrains.annotations.NotNull;
import java.util.Arrays;
import java.util.List;
/**
* I... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env bash
set -e
# This file is used to auto-generate Dockerfiles for making debs via 'make deb'
#
# usage: ./generate.sh [versions]
# ie: ./generate.sh
# to update all Dockerfiles in this directory
# or: ./generate.sh ubuntu-xenial
# to only update ubuntu-xenial/Dockerfile
# or: ./gen... | {
"pile_set_name": "Github"
} |
#@data/values
---
nothing: "something"
string: ""
bool: false
int: 0
float: 0.0
| {
"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>${PRODUCT_NAME}</string>
<key>CFBundleExecutable... | {
"pile_set_name": "Github"
} |
#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors.
# All rights reserved.
#
# The full license is in the file LICENSE.txt, distributed with this software.
#-------------------------------------------------------------------... | {
"pile_set_name": "Github"
} |
r1bq1r1k/6bp/p1nP1pp1/1p4B1/2Np4/1Q3N2/PP4PP/R3R1K1 w - - 0 1|Pin: UdSSR (1977)<br>Sarkisen-Veremejcik<br>Difficulty **<br>Promising attack.|1. Nce5 Nxe5 2. Nxe5 fxg5 3. Nf7+ Rxf7 4. Qxf7 Bf5 5. d7 Qxd7 (5... Bxd7 6. Re7 ) 6. Re7 Qxe7 7. Qxe7 1-0
5rk1/ppp4p/3p4/3P1b2/2P5/4B3/PP1K3P/R7 w - - 0 1|Pin: Lugano (1987)<br>Se... | {
"pile_set_name": "Github"
} |
<HTML>
<HEAD>
<meta charset="UTF-8">
<title>GAPaymentMethodDisplayInfo.<init> - tock</title>
<link rel="stylesheet" href="../../../style.css">
</HEAD>
<BODY>
<a href="../../index.html">tock</a> / <a href="../index.html">ai.tock.bot.connector.ga.model.response.transaction.v3</a> / <a href="index.html... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/themes/FlamingParrot/images/favicon/FlamingParrot_BlueGrey/mstile-70x70.png"/>
<square150x150logo src="/themes/FlamingParrot/images/favicon/FlamingParrot_BlueGrey/mstile-150x150.png"/... | {
"pile_set_name": "Github"
} |
File: reservedExpressionSyntax.kt - c054123555504f10adc3ee34ee2b365a (WITH_ERRORS)
NL("\n")
packageHeader
PACKAGE("package")
identifier
simpleIdentifier
Identifier("test")
semi
NL("\n")
NL("\n")
importList
topLevelObject
declaration
objectDeclaration
OBJEC... | {
"pile_set_name": "Github"
} |
/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
charset = shift_jis
+++ Base64 Encode / Decode +++
LastModified : 2006-11/08
Powered by kerry
http://202.248.69.143/~goma/
動作ブラウザ :: IE4+ , NN4.06+ , Gecko , Opera6+
* [RFC 2045] M... | {
"pile_set_name": "Github"
} |
from binary_tree_prototype import BinaryTreeNode
# @include
def pair_includes_ancestor_and_descendant_of_m(possible_anc_or_desc_0,
possible_anc_or_desc_1, middle):
search_0, search_1 = possible_anc_or_desc_0, possible_anc_or_desc_1
# Perform interleaved searchin... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.