text stringlengths 2 99.9k | meta dict |
|---|---|
<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">{
"Info": [
{
"IsSuccess": "True",
"InAddress": "苗栗縣卓蘭鎮老庄里中正路142號",
"InSRS": "EPSG:4326",
"InFuzzyType": "[單雙號機制]+[最近門牌號機制]",
"InFuzzyBuffer": "0",
"InIsOnlyFullMatch": "False",
"InIsLock... | {
"pile_set_name": "Github"
} |
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 1997 - 2018 Raja Vallée-Rai and others
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.... | {
"pile_set_name": "Github"
} |
package com.sksamuel.hoplite.arrow
import arrow.core.None
import arrow.core.Option
import arrow.core.Some
import com.sksamuel.hoplite.ConfigLoader
import io.kotest.core.spec.style.FunSpec
import io.kotest.matchers.shouldBe
import java.util.*
class OptionTest : FunSpec({
test("support Options") {
data class Foo... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2010-2017, sikuli.org, sikulix.com - MIT license
*/
package org.jdesktop.swingx.plaf;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.JComponent;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.UIDefaults;
import... | {
"pile_set_name": "Github"
} |
GLFW_ICON ICON "glfw.ico"
| {
"pile_set_name": "Github"
} |
#############################################################
#
# SAWMAN
#
#############################################################
SAWMAN_VERSION = 1.4.16
SAWMAN_SOURCE = SaWMan-$(SAWMAN_VERSION).tar.gz
SAWMAN_SITE = http://www.directfb.org/downloads/Extras
SAWMAN_INSTALL_STAGING = YES
SAWMAN_DEPENDENCIES = direc... | {
"pile_set_name": "Github"
} |
.lcontainer {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background: #fff;
}
.section {
width: 750rpx;
height: 225px;
display: flex;
flex-direction: column;
align-items: center
}
.section video {
... | {
"pile_set_name": "Github"
} |
/* roadmap_zlib.h
*
* LICENSE:
*
* Copyright 2009 Avi R.
*
* RoadMap is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License V2 as published by
* the Free Software Foundation.
*
* RoadMap is distributed in the hope that it will be useful,
* b... | {
"pile_set_name": "Github"
} |
/////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2006-2013
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://w... | {
"pile_set_name": "Github"
} |
package org.jetbrains.plugins.clojure.parser;
import com.intellij.psi.stubs.EmptyStub;
import com.intellij.psi.tree.IElementType;
import com.intellij.psi.tree.IStubFileElementType;
import com.intellij.psi.tree.TokenSet;
import org.jetbrains.plugins.clojure.lexer.ClojureTokenTypes;
import org.jetbrains.plugins.clojure.... | {
"pile_set_name": "Github"
} |
//* This file is part of the MOOSE framework
//* https://www.mooseframework.org
//*
//* All rights reserved, see COPYRIGHT for full restrictions
//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
//*
//* Licensed under LGPL 2.1, please see LICENSE for details
//* https://www.gnu.org/licenses/lgpl-2.1.html
#inc... | {
"pile_set_name": "Github"
} |
// Copyright The OpenTelemetry 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"
} |
// 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.
#ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_
#define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_EXPANDED_STATE_TRACKER_H_
#include ... | {
"pile_set_name": "Github"
} |
import Foundation
/// A `TargetType` used to enable `MoyaProvider` to process multiple `TargetType`s.
public enum MultiTarget: TargetType {
/// The embedded `TargetType`.
case target(TargetType)
/// Initializes a `MultiTarget`.
public init(_ target: TargetType) {
self = MultiTarget.target(targ... | {
"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/. */
/**
* Select which tests to run on circleci.
*
* If CIRCLE_NODE_TOTAL and CIRCLE_NODE_INDEX environment vars ar... | {
"pile_set_name": "Github"
} |
'use strict';
var path = require('path');
var osHomedir = require('os-homedir');
var home = osHomedir();
var env = process.env;
exports.data = env.XDG_DATA_HOME ||
(home ? path.join(home, '.local', 'share') : null);
exports.config = env.XDG_CONFIG_HOME ||
(home ? path.join(home, '.config') : null);
exports.cache =... | {
"pile_set_name": "Github"
} |
# Streams 流
stream 是一个抽象接口,node 中有很多对象实现了这个接口。例如,对http 服务器发起请求的request 对象就是
一个stream,还有stdout(标准输出)。Stream 可以是只读、可写,也可以同时可读可写。所有的Stream 对象
都是EventEmitter 的实例。
##Readable Stream 只读流
一个只读流有如下方法、成员、和事件。
Event: 'data'
```
function (data) { }```
'data'事件的参数是Buffer(默认情况下),如果调用过setEncoding()方法,则参数为一个字符串。
**Event: 'e... | {
"pile_set_name": "Github"
} |
# Aventuras de um Nômade Digital
[Slides](https://speakerdeck.com/jonatasbaldin/aventuras-de-um-nomade-digital).
Oi, eu sou o Jojo, e desde Outubro de 2017 eu só tenho um trampo remoto, uma mochila nas contas e vontade conhecer o mundo. Nessa palestra – que mais parece uma conversa de bar – vou contar pra vocês como ... | {
"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"/>
<title>sgdk: config.h Source File</title>
<link href="tabs.css" rel="styleshee... | {
"pile_set_name": "Github"
} |
/*!
* Translated default messages for bootstrap-select.
* Locale: AR (Arabic)
* Author: Yasser Lotfy <y_l@alive.com>
*/
(function ($) {
$.fn.selectpicker.defaults = {
noneSelectedText: 'لم يتم إختيار شئ',
noneResultsText: 'لا توجد نتائج مطابقة لـ {0}',
countSelectedText: function (numSelected, numTota... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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... | {
"pile_set_name": "Github"
} |
const transformCommit = require('../transforms/commit');
const { getCommits: getCommitsQuery, getDefaultRef } = require('./queries');
/**
* @param {import('probot').GitHubAPI} github - The GitHub client.
* @param {any} repository - TBD
* @param {any} cursor - TBD
* @param {number} perPage - How many results per Gr... | {
"pile_set_name": "Github"
} |
#include "CollisionResolver.h"
#include "cocos/2d/CCDrawNode.h"
#include "Engine/Events/ObjectEvents.h"
#include "Engine/SmartNode.h"
#include "Engine/Utils/AlgoUtils.h"
#include "Engine/Utils/GameUtils.h"
#include "Engine/Utils/MathUtils.h"
using namespace cocos2d;
void CollisionResolver::resolveCollision(Collisio... | {
"pile_set_name": "Github"
} |
/***************************************************************************
* Button.cs
*
* 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
* ... | {
"pile_set_name": "Github"
} |
/***********************************************************************
Copyright (c) 2006-2011, Skype Limited. 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 retai... | {
"pile_set_name": "Github"
} |
#include <sys/types.h>
#include <linux/kernel.h>
#include <stdio.h>
int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
{
int i = vsnprintf(buf, size, fmt, args);
ssize_t ssize = size;
return (i >= ssize) ? (ssize - 1) : i;
}
int scnprintf(char * buf, size_t size, const char * ... | {
"pile_set_name": "Github"
} |
package sign
import (
"bytes"
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/sha1"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"net/url"
"strings"
"time"
"unicode"
)
// An AWSEpochTime wraps a time value providing JSON serialization needed for
// AWS Policy epoch time fields.
type AWSEpochTime struct {
ti... | {
"pile_set_name": "Github"
} |
namespace Zinnia.Extension
{
using UnityEngine;
using Zinnia.Data.Type;
/// <summary>
/// Extended methods for the <see cref="TransformData"/> Type.
/// </summary>
public static class TransformDataExtensions
{
/// <summary>
/// Attempts to retrieve the <see cref=... | {
"pile_set_name": "Github"
} |
# Class Components
## Learning Goals
- Examine the syntax of creating a class component.
- Compare that syntax of a functional component with a class component.
## Functional Components
There are two main types of components in React. _Class Components_ and _Functional Components_. Until now all the components yo... | {
"pile_set_name": "Github"
} |
/**
* Copyright 2012 JogAmp Community. 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
* co... | {
"pile_set_name": "Github"
} |
// Code generated by go generate gen.go; DO NOT EDIT.
//go:generate go run gen.go
package atom
const (
A Atom = 0x1
Abbr Atom = 0x4
Accept Atom = 0x1a06
AcceptCharset Atom = 0x1a0e
Accesskey Atom = 0x2c09
Acronym ... | {
"pile_set_name": "Github"
} |
#!/usr/bin/python
# 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
# "Licens... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "GPUImageTwoInputFilter.h"
@class GPUImageFramebuffer;
@interface GPUImageThreeInputFilter : GPUImageTwoInputFilter
{
GPU... | {
"pile_set_name": "Github"
} |
# [Stockholm](http://en.wikipedia.org/wiki/Stockholm)
## Transport
## Accommodation
* [Nordic Light Hotel](http://www.nordiclighthotel.se/en/)
* [Yasuragi](http://www.yasuragi.se)
## Dining
### Budget
### Good
* [B.A.R.](http://restaurangbar.se/en/)
* [Vigårda](http://vigarda.se)
### Fine
* [Frantzén/Lindeberg... | {
"pile_set_name": "Github"
} |
/**
* @file
*
* @brief Header for logchange plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#ifndef ELEKTRA_PLUGIN_LOGCHANGE_H
#define ELEKTRA_PLUGIN_LOGCHANGE_H
#include <kdbplugin.h>
int elektraLogchangeGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraLo... | {
"pile_set_name": "Github"
} |
/**
* @file MetaParametersRBFN.hpp
* @brief MetaParametersRBFN class header file.
* @author Freek Stulp
*
* This file is part of DmpBbo, a set of libraries and programs for the
* black-box optimization of dynamical movement primitives.
* Copyright (C) 2014 Freek Stulp, ENSTA-ParisTech
*
* DmpBbo is free s... | {
"pile_set_name": "Github"
} |
version https://git-lfs.github.com/spec/v1
oid sha256:0c5ca8b316b194b89ce146c1cd69a23083fd459935e32a521e9a4c6504de927e
size 8303
| {
"pile_set_name": "Github"
} |
package net.osmand.plus.base.bottomsheetmenu;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import androidx.annotation.ColorRes;
import androidx.annotation.LayoutRes;
import static android.view.V... | {
"pile_set_name": "Github"
} |
/* General filesystem local caching manager
*
* Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
* Written by David Howells (dhowells@redhat.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 So... | {
"pile_set_name": "Github"
} |
package gorgonia
import (
"math"
"reflect"
"time"
rng "github.com/leesper/go_rng"
"github.com/pkg/errors"
"gorgonia.org/tensor"
)
// This file provides several weight initialization utility functions.
// It uses the rng package by leesper
// InitWFn is a type of helper function to help initialize weights vect... | {
"pile_set_name": "Github"
} |
Empty p5 sketch.
Please replace contents of this file with appropriate readme information after finishing your p5 sketch.
| {
"pile_set_name": "Github"
} |
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#define SIG_REGS(ctxt) (((Ucontext*)(ctxt))->uc_mcontext)
#define SIG_RAX(info, ctxt) (SIG_REGS(ctxt).mc_rax)
#define SIG_RBX(info, ctxt) (SIG_REGS(ctxt).mc_r... | {
"pile_set_name": "Github"
} |
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "220",
"green" : "220",
"red" : "220"
}
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance"... | {
"pile_set_name": "Github"
} |
########################################################################################################################
### MSRPC NDR TYPES
########################################################################################################################
import struct
from sulley import blocks, primitives, sex
... | {
"pile_set_name": "Github"
} |
<?php
/**
* XUrlManager handles language parameter in url.
*
* XUrlManager can be used together with XLangMenu.
*
* The following example shows how to set up XUrlManager
* in your application configuration (config/main.php):
* <pre>
* 'urlManager'=>array(
* 'class' => 'ext.components.language.XUrlManager',... | {
"pile_set_name": "Github"
} |
深入理解 Neutron -- OpenStack 网络实现
============
[Neutron](https://wiki.openstack.org/wiki/Neutron) 是 OpenStack 项目中负责提供网络服务的组件,它基于软件定义网络的思想,实现了网络虚拟化下的资源管理。
本书将剖析 Neutron 组件的原理和实现。
在线阅读:[GitBook](https://www.gitbook.io/book/yeasy/openstack_understand_Neutron) 或 [Github](https://github.com/yeasy/openstack_understand_Neutron... | {
"pile_set_name": "Github"
} |
# coding: utf-8
# Modified Work: Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0,
* as published by the Free Software Foundation.
*
* This program is also distributed with... | {
"pile_set_name": "Github"
} |
/*
Copyright Sparebanken Vest
Based on the Kubernetes controller example at
https://github.com/kubernetes/sample-controller
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.or... | {
"pile_set_name": "Github"
} |
/* eslint-disable @typescript-eslint/no-var-requires */
const archetypeConfig = require("@xarc/app-dev/config/archetype");
import * as LoadablePlugin from "@loadable/webpack-plugin";
module.exports = function() {
const archetype = archetypeConfig();
return {
plugins: archetype.babel.enableDynamicImport
... | {
"pile_set_name": "Github"
} |
<?php
namespace Freshbitsweb\Laratables;
use Illuminate\Support\Str;
class RecordsTransformer
{
/**
* @var string Class with laratables methods
*/
protected $class;
/**
* @var ColumnManager object
*/
protected $columnManager;
/**
* Initialize properties.
*
* @... | {
"pile_set_name": "Github"
} |
// Copyright 2015 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 ignore
package main
import (
"bytes"
"flag"
"fmt"
"io"
"log"
"reflect"
"strings"
"unicode"
"golang.org/x/text/collate"
"golang.org/x/text... | {
"pile_set_name": "Github"
} |
package client // import "github.com/docker/docker/client"
import (
"context"
"encoding/json"
"net/url"
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/events"
"github.com/docker/docker/api/types/filters"
timetypes "github.com/docker/docker/api/types/time"
)
// Events returns ... | {
"pile_set_name": "Github"
} |
using System;
namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations
{
[Serializable]
public class CurrentUserDto
{
public bool IsAuthenticated { get; set; }
public Guid? Id { get; set; }
public Guid? TenantId { get; set; }
public string UserName { get; set; }
... | {
"pile_set_name": "Github"
} |
import * as reducerType from '../../unit/reducerType';
const initState = false;
const reducer = (state = initState, action) => {
switch (action.type) {
case reducerType.KEY_DROP:
return action.data;
default:
return state;
}
};
export default reducer;
| {
"pile_set_name": "Github"
} |
This file was derived from
http://www.gutenberg.org/cache/epub/1982/pg1982.txt
--------
羅生門
芥川龍之介
或日の暮方の事である。一人の下人が、羅生門の下で雨やみを待っていた。 広い門
の下には、この男の外に誰もいない。ただ、所々丹塗の剥げた、大きな円柱に、きりぎ
りすが一匹とまっている。羅生門が、朱雀大路にある以上は、この男の外にも、雨やみ
をする市女笠や揉烏帽子が、もう二三人はありそうなものである。それが、この男の外
に誰もいない。
何故かと云うと、この二三年、京都には、地震とか辻風とか火事とか饑饉とか云う災
いがつづいて起こった。そ... | {
"pile_set_name": "Github"
} |
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2010,2012,2013 Free Software Foundation, Inc.
*
* GRUB 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
* ... | {
"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.
#include "base/bind.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
#i... | {
"pile_set_name": "Github"
} |
#ifndef _VIDEO_ATAFB_H
#define _VIDEO_ATAFB_H
void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy,
int dx, int height, int width);
void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color,
int sy, int sx, int height, int width);
void atafb_mfb_linefill(struct f... | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.v2019_02_01.implementation;
import retro... | {
"pile_set_name": "Github"
} |
/*! jQuery UI - v1.9.0 - 2012-10-12
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui... | {
"pile_set_name": "Github"
} |
//
// Copyright(c) Multimedia Signal Processing Group (MMSPG),
// Ecole Polytechnique Fédérale de Lausanne (EPFL)
// http://mmspg.epfl.ch
// All rights reserved.
// Author: Philippe Hanhart (philippe.hanhart@epfl.ch)
//
// Permission is hereby granted, without written agreement and without
// ... | {
"pile_set_name": "Github"
} |
Module
name: client_modulemanager
description: Manage other modules
author: edubart
website: https://github.com/edubart/otclient
sandboxed: true
scripts: [ modulemanager ]
dependencies: [ client_topmenu ]
@onLoad: init()
@onUnload: terminate()
| {
"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.
// +build darwin linux
// +build arm arm64
package gl
/*
#include <stdlib.h>
#ifdef os_darwin_arm
#include <OpenGLES/ES2/glext.h>
#endif
#ifdef os_linux_arm... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2011 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 "base/process/process_handle.h"
#include "base/stl_util.h"
#include <stddef.h>
#include <sys/sysctl.h>
#include <sys/types.h>
#include <unis... | {
"pile_set_name": "Github"
} |
#pragma once
#include "LLVMCompatibility.h"
#include <llvm/ExecutionEngine/Orc/ExecutionUtils.h>
namespace mull {
class Trampolines;
class CXXRuntimeOverrides;
class MutationResolver : public llvm_compat::SymbolResolver {
public:
MutationResolver(CXXRuntimeOverrides &overrides, Trampolines &trampolines);
llvm_co... | {
"pile_set_name": "Github"
} |
package com.cniao5.utils;
/**
* 当前类注释:当前类用户SharedPreferences进行save的时候 配置key常量
* 项目名:FastDev4Android
* 包名:com.chinaztt.fda.spreference
* 作者:江清清 on 15/10/22 09:26
* 邮箱:jiangqqlmj@163.com
* QQ: 781931404
* 公司:江苏中天科技软件技术有限公司
*/
public class SharedPreferencesTag {
public static final String DEMO_KEY="demo_key";... | {
"pile_set_name": "Github"
} |
// CANAPE Core Network Testing Library
// Copyright (C) 2017 James Forshaw
// Based in part on CANAPE Network Testing Tool
// Copyright (C) 2014 Context Information Security
//
// 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"
} |
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="html/html; charset=utf-8" />
<title>TSNavigationStripComponent Class Reference</title>
<meta id="xcode-display" name="xcode-display" content="render"/>
<link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" />
<link r... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2018 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 to ... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<style name="MediaController_SeekBar" parent="android:Widget.SeekBar">
<item name="android:progressDrawable">@drawable/scrubber_progress_horizontal_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/scrubber_progress_horizon... | {
"pile_set_name": "Github"
} |
version: '2'
services:
simple_vote_db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
POSTGRES_DB: simplevote
simple_vote:
build: .
command: "bash -c 'sleep 7s; java -jar /opt/simplevote.jar -liquibase'"
depends_on:
- simple_vote_db
ports:
... | {
"pile_set_name": "Github"
} |
/*
* libwebsockets - small server side websockets and web server implementation
*
* Copyright (C) 2010-2014 Andy Green <andy@warmcat.com>
*
* This library 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 F... | {
"pile_set_name": "Github"
} |
.size 8000
.text@48
jp ff80
.text@100
jp lbegin
.data@143
80
.data@7f98
10
21
32
43
54
65
76
87
.data@7fff
12
.text@200
ld sp, 8001
ld a, 34
ld(8000), a
ld a, 7f
ldff(46), a
ld c, 26
lwaitdma:
dec c
jrnz lwaitdma
ld hl, 55aa
push hl
ld a, (fe9d)
ld c, a
ld a, (fe9e)
ld b, a
pop de
ld s... | {
"pile_set_name": "Github"
} |
{
"created_at": "2015-02-27T22:28:00.103290",
"description": "The website for Tent \u2014 the protocol for evented data storage and decentralized communication",
"fork": false,
"full_name": "tent/tent.io",
"language": "Ruby",
"updated_at": "2015-02-27T23:42:02.580024"
} | {
"pile_set_name": "Github"
} |
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.v2019_08_01;
import java.util.Collection... | {
"pile_set_name": "Github"
} |
; PR23538
; RUN: opt < %s -indvars -loop-deletion -S | FileCheck %s
; Check IndVarSimplify should not replace exit value because or else
; udiv will be introduced by expand and the cost will be high.
declare void @_Z3mixRjj(i32* dereferenceable(4), i32)
declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture)
decla... | {
"pile_set_name": "Github"
} |
#File generated by Hitachi Vantara Translator for package 'org.pentaho.di.trans.steps.delay' in locale 'it_IT'
#
#
#Wed Nov 26 10:07:22 CET 2008
Delay.Name=Delay row
Delay.Description=Output each input row after a delay
Delay.Log.TimeOut=Attesa per {0} {1} ...
Delay.Log.LineNumber=linea n. {0}
DelayMeta.CheckResult.Ste... | {
"pile_set_name": "Github"
} |
#Evan Jensen (wont)
#07072013
import sctp
from time import sleep
from isis import *
chal=('localhost',2323)
listener='server.com 3535'
def send_msg(msg,chan):
sk=sctp.sctpsocket_tcp(socket.AF_INET)
sk.settimeout(2)
sk.connect(chal)
sk.sctp_send(msg,stream=chan)
print sk.recv(0x10000)
return sk
def pad(s,l):
r... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
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, Ver... | {
"pile_set_name": "Github"
} |
#
# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in th... | {
"pile_set_name": "Github"
} |
using System;
using System.Net;
using System.Threading;
using AutoCSer.Extension;
namespace AutoCSer.Example.RawSocketListener
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(@"http://www.AutoCSer.com/Index.html
");
try
{
... | {
"pile_set_name": "Github"
} |
// RUN: %target-swift-frontend -parse-as-library -emit-silgen %s | %FileCheck %s
// Only derived classes with non-trivial ivars need an ivar destroyer.
struct TrivialStruct {}
class RootClassWithoutProperties {}
class RootClassWithTrivialProperties {
var x: Int = 0
var y: TrivialStruct = TrivialStruct()
}
clas... | {
"pile_set_name": "Github"
} |
<html>
<head>
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="app... | {
"pile_set_name": "Github"
} |
/*
* Driver for the Conexant CX23885/7/8 PCIe bridge
*
* CX23888 Integrated Consumer Infrared Controller
*
* Copyright (C) 2009 Andy Walls <awalls@md.metrocast.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as publis... | {
"pile_set_name": "Github"
} |
// Copyright ©2016 The Gonum 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 !noasm,!appengine
#include "textflag.h"
// MOVSHDUP X3, X2
#define MOVSHDUP_X3_X2 BYTE $0xF3; BYTE $0x0F; BYTE $0x16; BYTE $0xD3
// MOVSLDUP X3, ... | {
"pile_set_name": "Github"
} |
#!/usr/bin/perl
#
# Copyright (c) 1998
# Sergey A. Babkin. 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
# notic... | {
"pile_set_name": "Github"
} |
class Morris.Line extends Morris.Grid
# Initialise the graph.
#
constructor: (options) ->
return new Morris.Line(options) unless (@ instanceof Morris.Line)
super(options)
init: ->
# Some instance variables for later
if @options.hideHover isnt 'always'
@hover = new Morris.Hover(parent: @el... | {
"pile_set_name": "Github"
} |
const { Method } = require('java-mti');
const { indexAt } = require('./document');
const { formatDoc } = require('./doc-formatter');
const { trace } = require('./logging');
const { event } = require('./analytics');
let methodsigRequestCount = 0;
/**
* Retrieve method signature information
*
* Each parsed token th... | {
"pile_set_name": "Github"
} |
/**
* @name Reverb
* @description El reverb le da profundidad y sensación de espacio a un sonido. Aquí,
* estamos procesando ruido con reverb.
*
* <br><br><em><span class="small"> Para correr localmente este ejemplo, necesitarás la
* <a href="http://p5js.org/reference/#/libraries/p5.sound">biblioteca p5.sound... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2015 OrientDB LTD (info--at--orientdb.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.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | {
"pile_set_name": "Github"
} |
/**
* @file main.c
* @brief Example main file for Vault HKDF-SHA256
*/
#include "ockam/error.h"
#include "ockam/memory.h"
#include "ockam/memory/stdlib.h"
#include "ockam/random.h"
#include "ockam/random/urandom.h"
#include "ockam/vault.h"
#include "ockam/vault/default.h"
#include <stdio.h>
#include <strin... | {
"pile_set_name": "Github"
} |
/*
* $Id: ll.c 1484 2007-01-17 01:06:16Z rpedde $
* Rock stupid char* indexed linked lists
*
* Copyright (C) 2006 Ron Pedde (rpedde@users.sourceforge.net)
*
* 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 So... | {
"pile_set_name": "Github"
} |
{
"version": 2,
"name": "Right Extruder",
"inherits": "fdmextruder",
"metadata": {
"machine": "felixpro2dual",
"position": "1"
},
"overrides": {
"extruder_nr": {
"default_value": 1,
"maximum_value": "2"
},
"machine_nozzle_offset_x"... | {
"pile_set_name": "Github"
} |
/***************************************************************************
* Copyright (c) 2019 WandererFan <wandererfan@gmail.com> *
* *
* This file is part of the FreeCAD CAx development system. *
* ... | {
"pile_set_name": "Github"
} |
package jetbrains.mps.lang.editor.menus.substitute.testLanguage.editor;
/*Generated by MPS */
import jetbrains.mps.nodeEditor.menus.transformation.TransformationMenuBase;
import java.util.Set;
import jetbrains.mps.internal.collections.runtime.SetSequence;
import java.util.HashSet;
import jetbrains.mps.lang.editor.men... | {
"pile_set_name": "Github"
} |
//
// LoopMath.swift
// Naterade
//
// Created by Nathan Racklyeft on 1/24/16.
// Copyright © 2016 Nathan Racklyeft. All rights reserved.
//
import Foundation
import HealthKit
public enum LoopMath {
static func simulationDateRangeForSamples<T: Collection>(
_ samples: T,
from start: Date? = ni... | {
"pile_set_name": "Github"
} |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elasticloadbalancing/ElasticLoadBalancing_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/... | {
"pile_set_name": "Github"
} |
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General... | {
"pile_set_name": "Github"
} |
<?php
class ConfigurationTest extends PHPUnit_Framework_TestCase {
/**
* @expectedException Whip_InvalidType
*/
public function testItThrowsAnErrorIfAFaultyConfigurationIsPassed() {
$configuration = new Whip_Configuration( 'Invalid configuration' );
}
public function testItReturnsANegativeNumberIfRequiremen... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.