text stringlengths 2 99.9k | meta dict |
|---|---|
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="Web Script" module="erp5.portal_type"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_Access_contents_information_Permission</string> </key>
<value>
... | {
"pile_set_name": "Github"
} |
open Core_kernel
open Libcommon
open Libexecution
open Types.RuntimeT
open Types.RuntimeT.HandlerT
module Log = Libcommon.Log
module Span = Telemetry.Span
(** sum_pairs folds over the list [l] with function [f], summing the
* values of the returned (int * int) tuple from each call *)
let sum_pairs (l : 'a list) ~(f ... | {
"pile_set_name": "Github"
} |
import cv2
import matplotlib.pyplot as plt
# 灰度图读入
img = cv2.imread('gradient.jpg', 0)
# 阈值分割,ret:return value缩写,代表当前的阈值,暂时不用理会
ret, th = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)
cv2.imshow('thresh', th)
cv2.waitKey(0)
# 应用5种不同的阈值方法
ret, th1 = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)
ret, th2 = cv2.thre... | {
"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/.
# LOCALIZATION NOTE (stateStarting):
# Indicates that the download is starting.
stateStarting=Aloitetaan…
# LOCALIZATION... | {
"pile_set_name": "Github"
} |
/* listhash/libtar_listhash.h. Generated from listhash.h.in by configure. */
/*
** Copyright 1998-2002 University of Illinois Board of Trustees
** Copyright 1998-2002 Mark D. Roth
** All rights reserved.
**
** libtar_listhash.h - header file for listhash module
**
** Mark D. Roth <roth@uiuc.edu>
** Campus Infor... | {
"pile_set_name": "Github"
} |
#ifndef _3DEJ_FILEIO_H_
#define _3DEJ_FILEIO_H_
#include <cISO646>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
#include "define.h"
#define FILEIO_SEEK_SET 0
#define FILEIO_SEEK_CUR 1
#define FILEIO_SEEK_END 2
class CFileIO
{
//----------------------------------... | {
"pile_set_name": "Github"
} |
/***********************************************************************
* Copyright (c) 2004 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* ... | {
"pile_set_name": "Github"
} |
syntax = "proto3";
option java_package = "io.confluent.kafka.serializers.protobuf.test";
// Wrapper message for `uint32`.
message RefByAnother {
uint32 value = 1;
}
| {
"pile_set_name": "Github"
} |
// Copyright 2005-2009 The RE2 Authors. All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Modified from Google perftools's tcmalloc_unittest.cc.
#include "util/random.h"
namespace re2 {
int32 ACMRandom::Next() {
const int32 M = 2147483... | {
"pile_set_name": "Github"
} |
import unittest
from pywin32_testutil import str2bytes, TestSkipped, testmain
import win32api, win32file, win32pipe, pywintypes, winerror, win32event
import win32con, ntsecuritycon
import sys
import os
import tempfile
import threading
import time
import shutil
import socket
import datetime
import random
try:
impor... | {
"pile_set_name": "Github"
} |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
namespace NuGet.Services.Entities
{
public class Role
: IEntity
{
public int K... | {
"pile_set_name": "Github"
} |
/*=============================================================================
Copyright (c) 2001-2011 Joel de Guzman
Copyright (c) 2006 Dan Marsden
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)
... | {
"pile_set_name": "Github"
} |
show databases;
Database
information_schema
mtr
mysql
performance_schema
sys
test
select count(*) from performance_schema.performance_timers;
count(*)
5
select count(*) from performance_schema.setup_consumers;
count(*)
15
select count(*) > 4 from performance_schema.setup_instruments;
count(*) > 4
1
select count(*) from... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -verify %s -triple i686-apple-darwin
// Insist upon warnings for inappropriate weak attributes.
// O.K.
extern int ext_weak_import __attribute__ ((__weak_import__));
// These are inappropriate, and should generate warnings:
int decl_weak_import __attribute__ ((__weak_import__)); // expected-warning... | {
"pile_set_name": "Github"
} |
setup.thievesMission = function (town, mission) {
mission.type = ['alchemy', 'assassination', 'blackmail', 'burglary', 'swindle', 'fence', 'fraud', 'gambling', 'kidnapping', 'narcotics', 'prostitution', 'protection', 'slavery', 'smuggling', 'street'].random()
const details = missionDetails(mission)
if (details... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 applic... | {
"pile_set_name": "Github"
} |
# Created by: Greg Larkin <glarkin@FreeBSD.org>
# $FreeBSD$
PORTNAME= Data-HashArray
PORTVERSION= 1.03
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= bofh@FreeBSD.org
COMMENT= Array class of hashes with properties via overloading and AUTOLOAD
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
USES=... | {
"pile_set_name": "Github"
} |
#ifndef BOOST_DETAIL_LIGHTWEIGHT_THREAD_HPP_INCLUDED
#define BOOST_DETAIL_LIGHTWEIGHT_THREAD_HPP_INCLUDED
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
// boost/detail/lightweight_thread.hpp
//
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.... | {
"pile_set_name": "Github"
} |
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
# NScD Oak Ridge National Laboratory, European Spallation Source,
# Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
# SPDX - License - Identifier: GPL - 3.0 +
impo... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Media list</Title>
<Author>Eric Lebetsamer</Author>
<Description>Abstract object styles for building various types of components (like blog c... | {
"pile_set_name": "Github"
} |
/*
* Open Source Software published under the Apache Licence, Version 2.0.
*/
package io.github.santulator.reader;
import io.github.santulator.core.ExcelTool;
import io.github.santulator.core.SantaException;
import io.github.santulator.model.DrawRequirements;
import io.github.santulator.model.ParticipantRole;
impor... | {
"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.
// Functions to access/create device major and minor numbers matching the
// encoding used in Darwin's sys/types.h header.
package unix
// Major returns the m... | {
"pile_set_name": "Github"
} |
query_log_flags_set --flags COMMAND|RESULT_CODE
query_log_flags_add --flags SIZE|SCORE
| {
"pile_set_name": "Github"
} |
{
"copyright": "Matheus Fernandes",
"url": "https://github.com/matheuss",
"email": "me@mysite.com",
"format": "txt"
}
| {
"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 <EventKitUI/NSObject-Protocol.h>
@protocol CUIKSingleDayTimelineGeometryDelegate <NSObject>
@property(readonly, nonatomic) _Bool originIsUpperLeft;
@property(readonly, nona... | {
"pile_set_name": "Github"
} |
-----BEGIN RSA PRIVATE KEY-----
MIIEpgIBAAKCAQEAtVlo3lxJ9MGxBW0pMrttM6WNbFQAaB3l31FiwJx97HhXYWIf
x0I9sZuDF35cfRgPgP6XFIesSBPxYs6lmvED8YtHzc5QuleNX6IWy6x+9gVjFbb4
JKUJOrQniM/lM3471eu1qUFlOkmi5fRzEvMjf+xl3VKyL0IoQ9z35RLt62O3nvoH
pU8YNkXTTELoFQsItf0nq/jF7aEt+bqsRsjUrlMclKXrUxUfvPp0cjXD5AQhkVAS
4GnW30XbS7Mo4yUND1sHVGMywj2+... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2011-2020 GatlingCorp (https://gatling.io)
*
* 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 appli... | {
"pile_set_name": "Github"
} |
/*-
* BSD LICENSE
*
* Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
* 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 cod... | {
"pile_set_name": "Github"
} |
{
"name": "cropper",
"description": "A simple jQuery image cropping plugin.",
"main": [
"dist/cropper.js",
"dist/cropper.css"
],
"keywords": [
"image",
"crop",
"cropper",
"cropping",
"move",
"zoom",
"rotate",
"scale",
"jquery",
"plugin",
"html",
"css",
... | {
"pile_set_name": "Github"
} |
<div class="h-entry">
<time class="dt-published" datetime="2015-11-07 12:00:00"></time>
<a href="http://target.example.com/entry" class="u-in-reply-to">in reply to</a>
<p class="p-content">
Thanks for the information, it was super <a href="http://another.example.com/entry">helpful</a>.
I am looking forwar... | {
"pile_set_name": "Github"
} |
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[
-70.05,
12.595833309901533
],
[
-70.04,
12.61
],
[
-7... | {
"pile_set_name": "Github"
} |
/* crypto/cast/cast.h */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-c... | {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 4a7755d6b5b67874f89c85f56f95fe97
ShaderImporter:
defaultTextures: []
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
/**
* Copyright 2005-2020 Talend
*
* The contents of this file are subject to the terms of one of the following
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
* select the license that you prefer but you may not use this file except in
* compliance with one of these Licenses.
*
* Y... | {
"pile_set_name": "Github"
} |
require "../lucky/allowed_in_tags"
struct Int32
include ::Lucky::AllowedInTags
def to_param : String
self.to_s
end
end
| {
"pile_set_name": "Github"
} |
# Copyright (c) 2015 aggftw@gmail.com
# Distributed under the terms of the Modified BSD License.
from .linearretrypolicy import LinearRetryPolicy
from sparkmagic.livyclientlib.exceptions import BadUserConfigurationException
class ConfigurableRetryPolicy(LinearRetryPolicy):
"""Retry policy that returns a configu... | {
"pile_set_name": "Github"
} |
package runtime
import (
"io"
)
// Marshaler defines a conversion between byte sequence and gRPC payloads / fields.
type Marshaler interface {
// Marshal marshals "v" into byte sequence.
Marshal(v interface{}) ([]byte, error)
// Unmarshal unmarshals "data" into "v".
// "v" must be a pointer value.
Unmarshal(dat... | {
"pile_set_name": "Github"
} |
<html>
<head>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
#mynetwork {
border: 1px solid ... | {
"pile_set_name": "Github"
} |
/* -*- Mode: js; js-indent-level: 2; -*- */
/*
* Copyright 2011 Mozilla Foundation and contributors
* Licensed under the New BSD license. See LICENSE or:
* http://opensource.org/licenses/BSD-3-Clause
*/
if (typeof define !== 'function') {
var define = require('amdefine')(module, require);
}
define(function (req... | {
"pile_set_name": "Github"
} |
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>测试</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% stat... | {
"pile_set_name": "Github"
} |
{-# LANGUAGE MagicHash #-}
module InInstanceHead where
class C# a where {-* MagicHash *-}
f :: a -> a
instance (C#) Int where {-* MagicHash *-}
f = id
| {
"pile_set_name": "Github"
} |
// Module included in the following assemblies:
//
// * cli_reference/openshift_cli/administrator-cli-commands.adoc
[id="cli-other-administrator-commands_{context}"]
= Other Administrator CLI commands
== build-chain
Output the inputs and dependencies of any builds.
.Example: Output dependencies for the `perl` image... | {
"pile_set_name": "Github"
} |
// Suspense with a custom hook
// 💯 use the usePokemonResource pre-built hook
// http://localhost:3000/isolated/final/06.extra-1.js
import React from 'react'
import {
usePokemonResource,
PokemonInfoFallback,
PokemonForm,
PokemonDataView,
PokemonErrorBoundary,
} from '../pokemon'
function PokemonInfo({pokem... | {
"pile_set_name": "Github"
} |
if (typeof(TopUp) == "undefined") {
var scriptElement = (function deriveScriptElement() {
var id = "tu_dummy_script";
document.write('<script id="' + id + '"></script>');
var dummyScript = document.getElementById(id);
var element = dummyScript.previousSibling;
dummyScript.parentNode.removeChild(dummyScript);
r... | {
"pile_set_name": "Github"
} |
// WARNING: DO NOT EDIT THIS FILE. THIS FILE IS MANAGED BY SPRING ROO.
// You may push code into the target .java compilation unit if you wish to edit any member(s).
package nl.bzk.brp.model.data.kern;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import ja... | {
"pile_set_name": "Github"
} |
{
"name": "findup-sync",
"description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.",
"version": "0.1.3",
"homepage": "https://github.com/cowboy/node-findup-sync",
"author": {
"name": "\"Cowboy\" Ben Alman",
"url": "http://benalman.com/"
... | {
"pile_set_name": "Github"
} |
// Boost.TypeErasure library
//
// Copyright 2011 Steven Watanabe
//
// 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)
//
// $Id$
#if !defined(BOOST_PP_IS_ITERATING)
#ifndef BOOST_TYPE_ERASURE_DETAIL_R... | {
"pile_set_name": "Github"
} |
Razi University
| {
"pile_set_name": "Github"
} |
/*
* Copyright 1998-2018 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/lice... | {
"pile_set_name": "Github"
} |
.data
.p2align 5
mask_0_1:
.byte 0
.byte 15
.byte 9
.byte 255
.byte 255
.byte 255
.byte 255
.byte 255
.byte 0
.byte 8
.byte 9
.byte 255
.byte 255
.byte 255
.byte 255
.byte 255
.byte 255
.byte 255
.byte 0
.byte 15
.byte 9
.byte 255
.byte 255
.byte 255
.byte 255
.byte 255
.byte 0
.byte 8
.byte 9
.byte 255
.byte 255
.byte... | {
"pile_set_name": "Github"
} |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | {
"pile_set_name": "Github"
} |
/home/ksw/develop/ijkplayer-android/android/ijkplayer/ijkplayer-x86/src/main/obj/local/x86/objs/ijkj4a/j4a/class/android/media/MediaCodec.o: \
/home/ksw/develop/ijkplayer-android/android/ijkplayer/ijkplayer-x86/src/main/jni/ijkmedia/ijkj4a/j4a/class/android/media/MediaCodec.c \
/home/ksw/develop/ijkplayer-android/and... | {
"pile_set_name": "Github"
} |
import os
from django.test import TestCase
from opds_catalog import zipf as zipfile
class zipTestCase(TestCase):
test_module_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
test_ROOTLIB = os.path.join(test_module_path, 'tests/data')
test_zip = "books.zip"
test_bad_zip = "... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2011-2012 Stephen A. Pratt
*
* 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, me... | {
"pile_set_name": "Github"
} |
# 本文件必须用【UTF-8】编码。
# 在 YAML 格式中,井号 # 之后的内容表示注释。
# name 必填。填写公司简称。
name: 保利集团
# full_name 可为空。填写公司全称。
full_name: 中国保利集团公司
# birth 必填。填写开张时间,用【4位数年份】表示。未知年份用 N/A 表示。
birth: N/A
# death 可为空。填写关闭时间,用【4位数年份】表示,未知年份用 N/A 表示。尚未关闭则留空。
death:
# desc 必填。填写概述。用 YAML 的【多行】文本语法表示,内容采用【纯文本】。
# 考虑到生成“关系图”的展示效果,desc 的内容不宜太长。
des... | {
"pile_set_name": "Github"
} |
/**
* Mandelbulber v2, a 3D fractal generator _%}}i*<. ______
* Copyright (C) 2020 Mandelbulber Team _>]|=||i=i<, / ____/ __ __
* \><||i|=>>%) / / __/ /___/ /_
* This file is part of Mandelbulber. )<=i=]=|=i<> / /__ /_ __/_ __/
* The project ... | {
"pile_set_name": "Github"
} |
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, ... | {
"pile_set_name": "Github"
} |
<?php
/**
* Ultima PHP - OpenSource Ultima Online Server written in PHP
* Version: 0.1 - Pre Alpha
*/
class CounselorRobe extends TypeNormal {
public function build() {
$this->name = "counselor robe";
$this->graphic = 0x3;
$this->type = "";
$this->flags = 0x00;
$this->value = 0;
$this->amount = 1;
$thi... | {
"pile_set_name": "Github"
} |
import { ItemHashTag } from '@destinyitemmanager/dim-api-types';
import { destinyVersionSelector } from 'app/accounts/selectors';
import { currentProfileSelector } from 'app/dim-api/selectors';
import { RootState } from 'app/store/types';
import { emptyObject } from 'app/utils/empty';
import { createSelector } from 're... | {
"pile_set_name": "Github"
} |
module test;
//Callback driver/Facade class implementing empty virtual method.
//These methods are extended by specific drivers to implement
//scenarios on available hooks.
class Driver_cbs;
virtual task pre_run(); endtask
virtual task post_run(); endtask
endclass //Driver_cbs
... | {
"pile_set_name": "Github"
} |
/*
* rcu_rcpl.h: simple user-level implementation of RCU based on per-thread
* pairs of global reference counters.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the... | {
"pile_set_name": "Github"
} |
<pre><code class="lang-js">var foo = 1
</code></pre>
<pre><code class="lang-bash">echo hello
</code></pre> | {
"pile_set_name": "Github"
} |
import React from "react";
import { render, wait } from "@testing-library/react";
import { MockedProvider } from "@apollo/react-testing";
import { MemoryRouter } from "react-router-dom";
import { Subscriber } from "containers";
import { AuthContext } from "util/context";
import Conversation, {
GET_CONVERSATION,
MES... | {
"pile_set_name": "Github"
} |
#******************************************************************************
#
# Copyright (C) 1999-2010, International Business Machines
# Corporation and others. All Rights Reserved.
#
#******************************************************************************
## Makefile.in for ICU - test/cintltst
## So... | {
"pile_set_name": "Github"
} |
/* Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as publ... | {
"pile_set_name": "Github"
} |
#include <all_lib.h>
#pragma hdrstop
#if defined(__MYPACKAGE__)
#pragma package(smart_init)
#endif
#define PRTHREAD_MAGIC MK_ID('T','h','R','d')
//- WIN32 -
#if defined( __HWIN__ )
STRUCTBASE( PRThread,public HSafeObject )
HANDLE Handle;
DWORD ... | {
"pile_set_name": "Github"
} |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = GreatRanking
# XXX: Needs custom body check HttpFingerprint = { :uri => '/csp/sys/mgr/UtilConfigHome.csp', :body => [ /Cach... | {
"pile_set_name": "Github"
} |
[
{
"time": "02:10",
"quote_first": "“",
"quote_time_case": "Ten minutes past two",
"quote_last": ", sir,\" answered the man, looking at the clock and blinking. \"Ten minutes past two? How horribly late! ..”",
"title": "The Picture of Dorian Gray",
"author": "Oscar Wilde"
},
{
"time": ... | {
"pile_set_name": "Github"
} |
{
"_args": [
[
{
"raw": "escope@^3.6.0",
"scope": null,
"escapedName": "escope",
"name": "escope",
"rawSpec": "^3.6.0",
"spec": ">=3.6.0 <4.0.0",
"type": "range"
},
"/Users/trott/io.js/tools/node_modules/eslint"
]
],
"_from": "escop... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2017-2019, Björn Ståhl
* Description: CLI image file viewer
* License: 3-Clause BSD, see COPYING file in arcan source repository
* Reference: http://arcan-fe.com, README.MD
*/
#include <arcan_shmif.h>
#include <arcan_tuisym.h>
#include <unistd.h>
#include <inttypes.h>
#include <poll.h>
#include <get... | {
"pile_set_name": "Github"
} |
#!/bin/sh
# ----------------------------------------------------------------------------
# Copyright 2005-2009 WSO2, Inc. (http://wso2.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
#... | {
"pile_set_name": "Github"
} |
foo.adb:10:09: info: data dependencies proved
foo.adb:17:09: info: data dependencies proved
foo.adb:19:07: info: initialization of "Tmp" proved
| {
"pile_set_name": "Github"
} |
{
"DESCRIPTION": "Bulunan kanala duyuru mesajı gönder!",
"USAGE": "{{prefix}}announcement [text]",
"EXAMPLES": "{{prefix}}announcement Yeni destek yetkili!",
"MISSING_TEXT": "Duyuru mesajı girmen gerek!",
"TOO_LONG": "Duyuru mesajı 1030 karakterden düşük olmalı!",
"MENTION_PROMPT": "Duyuru mesaj... | {
"pile_set_name": "Github"
} |
# Glob
Match files using the patterns the shell uses, like stars and stuff.
[](https://travis-ci.org/isaacs/node-glob/) [](https://ci.appveyor.com/project/isaa... | {
"pile_set_name": "Github"
} |
// most Object methods by ES6 should accept primitives
var $export = require('./_export');
var core = require('./_core');
var fails = require('./_fails');
module.exports = function (KEY, exec) {
var fn = (core.Object || {})[KEY] || Object[KEY];
var exp = {};
exp[KEY] = exec(fn);
$export($export.S + $export.F * ... | {
"pile_set_name": "Github"
} |
2626.3.3 = {
holder = 1836022
}
2688.7.9 = {
holder = 1836025
} | {
"pile_set_name": "Github"
} |
package random
import (
"context"
"crypto/rand"
"encoding/json"
"fmt"
"io"
"math"
MRAND "math/rand"
"reflect"
"sort"
"testing"
"time"
)
func TestStringGenerator_Generate_successful(t *testing.T) {
type testCase struct {
timeout time.Duration
generator *StringGenerator
}
tests := map[string]testCa... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration> | {
"pile_set_name": "Github"
} |
\documentclass[10pt]{book}
% \usepackage{epsfig}
% \usepackage{psfig}
% \usepackage{pdftex}
% \usepackage{graphicx}
% \usepackage{amsmath}
%\usepackage{html,color,makeidx}
%\usepackage{amsmath}
\usepackage{verbatim}
%\usepackage{moreverb}
%\usepackage{graphics}
% \usepackage{epsfig}
%\usepackage{multicol}
%\us... | {
"pile_set_name": "Github"
} |
using System;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
namespace Kudu.Web.Infrastructure
{
public static class SlugGenerator
{
public static string GenerateSlug(this string value)
{
if (String.IsNullOrEmpty(value))
{
... | {
"pile_set_name": "Github"
} |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2007 Emmanuelle Laprise
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program i... | {
"pile_set_name": "Github"
} |
import Interstellar
import SwiftyJSON
// swiftlint:disable force_unwrapping
/// Used to stub data from a JSON file stored in the app bundle, in lieu of fetching data from the server.
/// Userful for offline development, debugging, and testing.
class Stubbed_StaticDataFetcher: LiveAuctionStaticDataFetcherType {
v... | {
"pile_set_name": "Github"
} |
-----BEGIN RSA PRIVATE KEY-----
MIICWwIBAAKBgQCeStPaKQQ7L41rZBUJJpli5x6qEGnQuOM44kjtNdis9EsD2Q3u
sprkj5NOaehM6dpJAtdfLQL1x4mJnP1BCINfQGjPIRKPZiHVEI6H0eQ0YhAj9ucK
SYz7+M4btPTHTJkzXo0gaXSEXZKU1eE3USmnRuSufoXAVPMX1kNlb0q4fQIDAQAB
AoGAd2TJVowJfPrpGE9s7nIGz+qz3mJy7dQGzykfCIzM2eeJjWVydNCStEL3QPXx
GdJpqxhRiqBQ00GmI/4dp6fcLhRm... | {
"pile_set_name": "Github"
} |
new (A, B)
new (A || B)
new (X ? A : B) | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<meta charset=utf-8>
<title>CSS test: text-combine-upright has no effect in sideways writing mode</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"/>
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-combine-upright"/>
<link rel="match" href="referenc... | {
"pile_set_name": "Github"
} |
{
"format_version": "1.12.0",
"minecraft:entity": {
"description": {
"identifier": "minecraft:xp_bottle",
"is_spawnable": false,
"is_summonable": true,
"is_experimental": false
},
"components": {
"minecraft:collision_box": {
"width": 0.25,
"height": 0.25
... | {
"pile_set_name": "Github"
} |
// +build !ignore_autogenerated
/*
Copyright The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable l... | {
"pile_set_name": "Github"
} |
msgid ""
msgstr ""
"Project-Id-Version: ajenti\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-27 12:11+0200\n"
"PO-Revision-Date: 2020-09-06 11:22\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Language: lv_LV\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encodi... | {
"pile_set_name": "Github"
} |
---
images:
- src: https://res.cloudinary.com/orchid/image/upload/c_fit,h_320,w_480/v1524969542/themes/futureimperfect/1.jpg
title: Homepage
- src: https://res.cloudinary.com/orchid/image/upload/c_fit,h_320,w_480/v1524969542/themes/futureimperfect/2.jpg
title: Post Layout
- src: https://res.cloudinary.com... | {
"pile_set_name": "Github"
} |
// Mixins
// --------------------------
.fa-icon() {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
}
.fa-icon-rotate(@degrees, @rotation) {
-ms-filter: "progid:DXImageTransf... | {
"pile_set_name": "Github"
} |
/**
* stratum-proxy is a proxy supporting the crypto-currency stratum pool mining
* protocol.
* Copyright (C) 2014-2015 Stratehm (stratehm@hotmail.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 Softw... | {
"pile_set_name": "Github"
} |
// Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package com.daml.ledger.validator
import java.util.UUID
import java.util.concurrent.atomic.AtomicBoolean
import com.codahale.metrics.Timer
import com.daml.caching.Cache
import com... | {
"pile_set_name": "Github"
} |
import * as React from 'react';
import { IRefObject, IRenderFunction, KeyCodes, IStyleFunctionOrObject } from '../../../Utilities';
import { IPersonaProps } from '../../Persona/Persona.types';
import { IStyle, ITheme } from '../../../Styling';
import { ISpinnerStyleProps } from '../../Spinner/Spinner.types';
import { ... | {
"pile_set_name": "Github"
} |
all: server
server:
@CGO_ENABLED=0 GOOS=linux go build -a --ldflags '-extldflags "-static"' \
-tags "netgo" -installsuffix netgo \
-o server
clean:
@rm -fr server
| {
"pile_set_name": "Github"
} |
# frozen_string_literal: true
# A SassScript object representing a boolean (true or false) value.
class SassC::Script::Value::Bool < SassC::Script::Value
# The true value in SassScript.
# This is assigned before new is overridden below so that we use the default implementation.
TRUE = new(true)
# The false ... | {
"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.
*/
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\MockObject\I... | {
"pile_set_name": "Github"
} |
#!/usr/bin/env python3
import argparse
import hashlib
import json
import sys
def main():
parser = argparse.ArgumentParser(description="Set is_prefixed=false for all asset owners")
parser.add_argument("-o", "--output", metavar="OUT", default="-", help="output filename (default: stdout)")
parser.add_argumen... | {
"pile_set_name": "Github"
} |
import { AbstractControl, Validators, ValidatorFn } from '@angular/forms';
import { isPresent } from '../util/lang';
export const lt = (lt: number): ValidatorFn => {
return (control: AbstractControl): {[key: string]: boolean} => {
if (!isPresent(lt)) return null;
if (isPresent(Validators.required(control)))... | {
"pile_set_name": "Github"
} |
<?php
namespace Faker\Provider\zh_TW;
class DateTime extends \Faker\Provider\DateTime
{
public static function amPm($max = 'now')
{
return static::dateTime($max)->format('a') === 'am' ? '上午' : '下午';
}
public static function dayOfWeek($max = 'now')
{
$map = array(
'Sund... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="UTF-8"?>
<!--
-
- $Id$
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2020 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.