text stringlengths 2 99.9k | meta dict |
|---|---|
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * l10n_ma
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-11-24 02:53+0000\n"
"PO-Revision-Date: 2015-07-17 07:31+0000\n"
"Last-Translator: Martin T... | {
"pile_set_name": "Github"
} |
// Boost.Geometry
// Copyright (c) 2017-2018, Oracle and/or its affiliates.
// Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
// Use, modification and distribution is subject to the Boost Software License,
// Version 1.... | {
"pile_set_name": "Github"
} |
#include "z_bg_ikana_dharma.h"
#define FLAGS 0x00000010
#define THIS ((BgIkanaDharma*)thisx)
void BgIkanaDharma_Init(Actor* thisx, GlobalContext* globalCtx);
void BgIkanaDharma_Destroy(Actor* thisx, GlobalContext* globalCtx);
void BgIkanaDharma_Update(Actor* thisx, GlobalContext* globalCtx);
void BgIkanaDharma_Draw(... | {
"pile_set_name": "Github"
} |
<!ENTITY window.title "Vložit nebo upravit textovou oblast">
<!ENTITY name.label "Název:">
<!ENTITY state.label "Stav:">
<!ENTITY disabled.label "Zakázaný">
<!ENTITY placeholder.label "Rezervované místo:">
<!ENTITY form.label "Forma:">
<!ENTITY mutability.label "Nestálost:">
<!ENTITY readonly.label "Pouze ke čtení">
<... | {
"pile_set_name": "Github"
} |
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
items:
- apiVersion: v1
data:
baz: qux
foo: changed-value
new-data: new-value
n... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" ?>
<annotation>
<folder>widerface</folder>
<filename>43--Row_Boat_43_Row_Boat_Canoe_43_522.jpg</filename>
<source>
<database>wider face Database</database>
<annotation>PASCAL VOC2007</annotation>
<image>flickr</image>
<flickrid>-1</flickrid>
</source>
<owner>
<flickrid>yanyu</flickrid>
<name>yanyu</... | {
"pile_set_name": "Github"
} |
/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2008-present Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public... | {
"pile_set_name": "Github"
} |
## CoreOS Community Code of Conduct
### Contributor Code of Conduct
As contributors and maintainers of this project, and in the interest of
fostering an open and welcoming community, we pledge to respect all people who
contribute through reporting issues, posting feature requests, updating
documentation, submitting p... | {
"pile_set_name": "Github"
} |
@startuml
sprite $superscript [48x48/16] {
000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000
00000000000000000000000000000000... | {
"pile_set_name": "Github"
} |
// 解法一:O(n)
const lengthOfLongestSubstring = (str) => {
let maxLength = 0;
const queue = []; // 使用队列存储无重复子串
for (const element of str) {
// 从头部开始检测是否有重复 O(n)
const eleIdx = queue.indexOf(element);
if (eleIdx != -1) {
// 移除重复元素前的元素
queue.splice(0, eleIdx + 1);
}
queue.push(element);... | {
"pile_set_name": "Github"
} |
"Space" = "Пробел";
"Use old shortcut" = "Использовать старое сокращение";
"Type shortcut" = "Введите сокращение";
"Click to record shortcut" = "Нажмите для записи сокращения";
"Pad %@" = "Отступ %@";
"The key combination %@ can't be used!" = "Комбинация %@ не может быть использована!";
"The key combination \"%@\" can'... | {
"pile_set_name": "Github"
} |
var v1 = require('./v1');
var v4 = require('./v4');
var uuid = v4;
uuid.v1 = v1;
uuid.v4 = v4;
module.exports = uuid;
| {
"pile_set_name": "Github"
} |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Adminhtml catalog product action attribute update helper
*/
namespace Magento\Catalog\Helper\Product\Edit\Action;
/**
* Class Attribute
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class Attribut... | {
"pile_set_name": "Github"
} |
# /* **************************************************************************
# * *
# * (C) Copyright Paul Mensonides 2002.
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0... | {
"pile_set_name": "Github"
} |
not-rigid-1: This transformation enlarges the ellipse, so it is not rigid.
not-rigid-2: This transformation stretches the middle bar, so it is not rigid.
letter-not-symmetric: This letter doesn’t have reflectional symmetry…
not-commutative: This actually means that, unlike numbers, adding symmetries
is _not commuta... | {
"pile_set_name": "Github"
} |
E + F { p : v }
| {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for posthtml-parser/index.js</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../prettify.css" />
<link rel="stylesheet" href="../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<st... | {
"pile_set_name": "Github"
} |
import { DOCUMENT } from '@angular/common';
import { Inject, Injectable } from '@angular/core';
import { NavigationEnd, NavigationStart, Router } from '@angular/router';
import { BehaviorSubject, NEVER, Observable, of } from 'rxjs';
import { catchError, filter, first, map, pluck, shareReplay, switchMap, take, takeWhile... | {
"pile_set_name": "Github"
} |
id: dsq-747520853
date: 2007-06-04T18:06:03.0000000-07:00
name: Derek
avatar: https://disqus.com/api/users/avatars/Derek.jpg
message: <p>I went through the whole vi key remapping thing when I switched to Dvorak last year. It works, but I recommend staying with the non-remapped version. I've since switched back, and i... | {
"pile_set_name": "Github"
} |
GET := libs/get/src
CHESTO := libs/chesto/src
RAPIDJSON := libs/get/src/libs/rapidjson/include
MINIZIP := libs/get/src/libs/minizip
TINYXML := libs/get/src/libs/tinyxml
MINIZIP_O := zip.o ioapi.o unzip.o
TINYXML_O := tinystr.o tinyxml.o tinyxmlerror.o tinyxmlparser.o
# Compiler options
CXX = g++
# Source files
SRC ... | {
"pile_set_name": "Github"
} |
---
title: 'El Contexto'
description: El `contexto` proporciona objetos / parámetros adicionales de Nuxt que tradicionalmente no están disponibles para los componentes de Vue. `Context` está disponible en áreas especiales del ciclo de vida de nuxt como` asyncData`, `plugins`,` middlewares`, `modules` y` store / nuxtSer... | {
"pile_set_name": "Github"
} |
#ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
#define BOOST_CURRENT_FUNCTION_HPP_INCLUDED
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
//
// boost/current_function.hpp - BOOST_CURRENT_FUNCTION
//
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd... | {
"pile_set_name": "Github"
} |
#include "stdafx.h"
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
//
// BEGIN SampleDrawBrepConduit display conduit
//
class CSampleDrawBrepConduit : public CRhinoDisplayConduit
{
public:
CSampleDrawBrepConduit(const CRhinoDoc& doc)... | {
"pile_set_name": "Github"
} |
/**
* Tencent is pleased to support the open source community by making TubeMQ available.
* <p>
* Copyright (C) 2012-2019 Tencent. All Rights Reserved.
* <p>
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work fo... | {
"pile_set_name": "Github"
} |
// Copyright 2009 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"
} |
package org.ops.ui.schemabrowser.model;
import java.util.HashMap;
import org.ops.ui.filemanager.model.AstNode;
import org.ops.ui.filemanager.model.AstNodeTypes;
import org.ops.ui.filemanager.model.FileModel;
import org.ops.ui.solver.model.SolverModel;
import psengine.PSObjectType;
/**
* Accessor class for EUROPA s... | {
"pile_set_name": "Github"
} |
<?php
namespace bizley\podium\log;
use bizley\podium\models\User;
use bizley\podium\Podium;
use Yii;
use yii\web\Application;
/**
* Log helper
*
* @author Paweł Bizley Brzozowski <pawel@positive.codes>
* @since 0.1
*/
class Log
{
/**
* Returns ID of user responsible for logged action.... | {
"pile_set_name": "Github"
} |
"use strict";
module.exports = function (t, a) {
a(t.call(""), null, "Null");
a(t.call("abcdef"), "f", "String");
};
| {
"pile_set_name": "Github"
} |
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# 4609X-101-103LF-ND
#
DEF 4609X-101-103LF-ND RN 0 40 Y Y 1 F N
F0 "RN" -270 810 60 H V L CNN
F1 "4609X-101-103LF-ND" 0 -820 60 H V C CNN
F2 "digikey-footprints:SIP-9_P2.54mm" 410 740 60 H I L CNN
F3 "" 40 300 60 V I L CNN
DRAW
S -260 -775 240 775 0 1 0 f
P 2 0 1 0 -260 0 ... | {
"pile_set_name": "Github"
} |
from rpython.translator.translator import TranslationContext
from rpython.rtyper.test import snippet
from rpython.rtyper.test.tool import BaseRtypingTest
class TestSnippet(object):
def _test(self, func, types):
t = TranslationContext()
t.buildannotator().build_types(func, types)
t.buildrty... | {
"pile_set_name": "Github"
} |
// Protocol Buffers for Go with Gadgets
//
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
// http://github.com/gogo/protobuf
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributio... | {
"pile_set_name": "Github"
} |
# net.example
flower: 'rose'
| {
"pile_set_name": "Github"
} |
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title></title>
<meta name="description" content="" />
<meta name... | {
"pile_set_name": "Github"
} |
<!-- HTML header for doxygen 1.8.4-->
<!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" conte... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'gu', {
options: 'સમ્ય્લી વિકલ્પો',
title: 'સ્માઇલી પસંદ કરો',
toolbar: 'સ્માઇલી'
} );
| {
"pile_set_name": "Github"
} |
# created by tools/tclZIC.tcl - do not edit
set TZData(:America/Glace_Bay) {
{-9223372036854775808 -14388 0 LMT}
{-2131646412 -14400 0 AST}
{-1632074400 -10800 1 ADT}
{-1615143600 -14400 0 AST}
{-880221600 -10800 1 AWT}
{-769395600 -10800 1 APT}
{-765399600 -14400 0 AST}
{-536443200 -14... | {
"pile_set_name": "Github"
} |
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
// Copyright (C) 2015 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. ... | {
"pile_set_name": "Github"
} |
---
external help file: WssCmdlets.dll-Help.xml
online version:
schema: 2.0.0
title: Repair-WssAlert
description:
keywords: powershell, cmdlet
author: andreabarr
manager: jasgro
ms.date: 2017-12-05
ms.topic: reference
ms.prod: powershell
ms.technology: powershell
ms.assetid: EB85F576-0780-4BA6-A1C8-E738BC032732
ms.au... | {
"pile_set_name": "Github"
} |
#!/bin/bash
## Copyright (C) 2019 - 2020 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
## See the file COPYING for copying conditions.
set -x
set -e
true "$0: start"
MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
## travis.debian.net does not pass the CI environment variable to docker.
## build script re... | {
"pile_set_name": "Github"
} |
import resolve from 'rollup-plugin-node-resolve';
import babel from 'rollup-plugin-babel';
import { terser } from 'rollup-plugin-terser';
import { uglify } from 'rollup-plugin-uglify';
import banner from 'rollup-plugin-banner';
const hybanner = banner('hyperform.js.org');
export default [{
input: 'src/hyperform.js'... | {
"pile_set_name": "Github"
} |
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2003-2008 Matthias Christian Schabel
// Copyright (C) 2008 Steven Watanabe
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.tx... | {
"pile_set_name": "Github"
} |
-- tkt3922.test
--
-- execsql {
-- DELETE FROM t1;
-- INSERT INTO t1 VALUES('1');
-- SELECT a, typeof(a) FROM t1;
-- }
DELETE FROM t1;
INSERT INTO t1 VALUES('1');
SELECT a, typeof(a) FROM t1; | {
"pile_set_name": "Github"
} |
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
... | {
"pile_set_name": "Github"
} |
using System.Collections.Generic;
namespace Slack.Webhooks.Elements
{
/// <summary>
/// Works with <see cref="Blocks.Section"/>, <see cref="Blocks.Actions"/> and <see cref="Blocks.Input"/> blocks.
///
/// A radio button group that allows a user to choose one item from a list of possible options.
/... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2011-2017 Blender Foundation
*
* 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"
} |
Step: 1
a((1,2,3)) b(1) b(2) b(3) c(1) c(2) c(3)
SAT
| {
"pile_set_name": "Github"
} |
//
// EXTScope.m
// extobjc
//
// Created by Justin Spahr-Summers on 2011-05-04.
// Copyright (C) 2012 Justin Spahr-Summers.
// Released under the MIT license.
//
#import "EXTScope.h"
void mtl_executeCleanupBlock (__strong mtl_cleanupBlock_t *block) {
(*block)();
}
| {
"pile_set_name": "Github"
} |
INCLUDE enemies/base/beacon.txt
sfx_attack=swing,soundfx/enemies/zombie_phys.ogg
sfx_attack=shoot,soundfx/enemies/zombie_phys.ogg
sfx_attack=cast,soundfx/enemies/zombie_ment.ogg
sfx_hit=soundfx/enemies/zombie_hit.ogg
sfx_die=soundfx/enemies/zombie_die.ogg
sfx_critdie=soundfx/enemies/zombie_critdie.ogg
animations=anim... | {
"pile_set_name": "Github"
} |
#include <stdlib.h>
#include <DebugStream.h>
#include <AMRreaderLowRes.h>
void AMRreaderLowRes::
init()
{
AMRreader::init();
nlows_=0;
lowbid_=NULL;
lmesh_=ldata_=0;
}
int AMRreaderLowRes::
freedata()
{
AMRreader::freedata();
if( lowbid_!=NULL ) free( lowbid_ );
nlows_=0;
lowbid_=NU... | {
"pile_set_name": "Github"
} |
# Comment only.
| {
"pile_set_name": "Github"
} |
fileFormatVersion: 2
guid: 81ab0898860e24becb49b55989a4d43e
folderAsset: yes
timeCreated: 1487116421
licenseType: Pro
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
| {
"pile_set_name": "Github"
} |
---
group: configuration-guide
title: Dependency reports
functional_areas:
- Configuration
- System
- Setup
---
{% include config/cli-intro.md %}
## Overview of dependency reports
You can run the following types of reports:
- [**Module**](https://glossary.magento.com/module) dependencies: Shows the total num... | {
"pile_set_name": "Github"
} |
# $NetBSD: Makefile.inc,v 1.4 2019/11/28 23:01:22 joerg Exp $
.if !defined(LLVM_TOPLEVEL_MK)
LLVM_TOPLEVEL_MK=
.include <bsd.own.mk>
COMMON_REVISION= 01f3a59fb3e2542fce74c768718f594d0debd0da
CLANG_REVISION= ${COMMON_REVISION}
LLVM_REVISION= ${COMMON_REVISION}
LLVM_VERSION= 9.0.0
CLANG_VERSION= 9.0.0
CLANG_SRCD... | {
"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"
} |
service_id,monday,tuesday,wednesday,thursday,friday,saturday,sunday,start_date,end_date
FULLW,1,1,1,1,1,1,1,20070101,20251231
WE,0,0,0,0,0,1,1,20070101,20251231
| {
"pile_set_name": "Github"
} |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Cascade: simple example</title>
<link rel="stylesheet" href="../styles.css">
<style>
</style>
<style class="editable">
h1 {
color: red;
}
h1 {
color: blue;
... | {
"pile_set_name": "Github"
} |
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
struct S { int a; };
extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
extern int charFunc(char); // expected-note{{passing argument to parameter here}}
@interface Test
+alloc;
-(int)charStarMeth:(char *)s; // expected-note{{... | {
"pile_set_name": "Github"
} |
/* empty to trick Wordpress Theme detection */
| {
"pile_set_name": "Github"
} |
package io.rong.models.response;
import io.rong.models.Result;
import io.rong.models.User;
import io.rong.models.user.UserModel;
import io.rong.util.GsonUtil;
/**
* @author RongCloud
*/
public class BlackListResult extends Result {
/**
* 黑名单用户列表
*/
UserModel[] users;
public BlackListResult(In... | {
"pile_set_name": "Github"
} |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
*/
@interface SAGKLinkedAnswerGroup : AceObject <SAAceSerializable>
@property (readonly, copy) NSString *debugDescription;
@property (readonly, copy) NSString *description;
@property (readonly) unsigned long long... | {
"pile_set_name": "Github"
} |
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... | {
"pile_set_name": "Github"
} |
// 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 ipv6
import "golang.org/x/net/internal/socket"
// Sticky socket options
const (
ssoTrafficClass = iota // header field for unicast packet, RFC... | {
"pile_set_name": "Github"
} |
#!/bin/bash
python ./src/train_new.py \
--debug \
--datapath data// \
--seed 42 \
--dataset citeseer \
--type mutigcn \
--nhiddenlayer 1 \
--nbaseblocklayer 2 \
--hidden 128 \
--epoch 400 \
--lr 0.009 \
--weight_decay 0.001 \
--early_stopping 400 \
--sampling_percent... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2006-2012 Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
case... | {
"pile_set_name": "Github"
} |
////////////////////////////////////////////////////////////////////////////
//
// Copyright 2019 Realm 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/li... | {
"pile_set_name": "Github"
} |
//
// __
// /\ \ _
// ____ ____ ___\ \ \_/ \ _____ ___ ___
// / _ \ / __ \ / __ \ \ < __ /\__ \ / __ \ / __ \
// /\ \_\ \/\ __//\ __/\ \ \\ \ /\_\ \/_/ / /\ \_\ \/\ \_\ \
// \ \____ \ \____\ \____\\ \_\\_\ \/_/ /\____\\ \__... | {
"pile_set_name": "Github"
} |
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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://w... | {
"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.autaut;
import nl.bzk.brp.model.data.autaut.Bijhautorisatie;
import org.springframework.beans.factory.annotation.Configura... | {
"pile_set_name": "Github"
} |
//Add MCHC
DefinitionBlock ("", "SSDT", 2, "hack", "MCHC", 0)
{
External (_SB_.PCI0, DeviceObj)
Scope (_SB.PCI0)
{
Device (MCHC)
{
Name (_ADR, Zero)
Method (_STA, 0, NotSerialized)
{
If (_OSI ("Darwin"))
{
... | {
"pile_set_name": "Github"
} |
# -*- coding: utf-8 -*-
"""
This module contains provisional support for SOCKS proxies from within
urllib3. This module supports SOCKS4 (specifically the SOCKS4A variant) and
SOCKS5. To enable its functionality, either install PySocks or install this
module with the ``socks`` extra.
The SOCKS implementation supports t... | {
"pile_set_name": "Github"
} |
Template.follower.helpers({
users: () => {
return Meteor.users.find({ _id: { $ne: Meteor.userId() } }, { sort: { username: 1 } });
}
});
Template.follower.onCreated(function() {
this.autorun(() => {
this.subscribe('users.follower');
});
});
| {
"pile_set_name": "Github"
} |
# $FreeBSD$
PORTNAME= kollision
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
CATEGORIES= games kde kde-applications
MAINTAINER= kde@FreeBSD.org
COMMENT= ${${PORTNAME:tu}_DESC}
USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz
USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \
ecm i18n kio... | {
"pile_set_name": "Github"
} |
{% set version = "0.7.17.dev1" %}
package:
name: bwakit
version: {{ version }}
source:
- url: http://downloads.sourceforge.net/project/bio-bwa/bwakit/bwakit-0.7.15_x64-linux.tar.bz2
folder: bwakit-0.7.15
sha256: 0a7b11971bc7916b68e9df35a364afe77cb3000df02ffb3a6fbd1aff9be5878c
- url: https://github.com/... | {
"pile_set_name": "Github"
} |
// AForge Math Library
// AForge.NET framework
// http://www.aforgenet.com/framework/
//
// Copyright © AForge.NET, 2007-2014
// aforge.net@gmail.com
//
namespace AForge.Math
{
using System;
// Just a copy-paste of SVD algorithm from Numerical Recipes but updated for C#
// (as authors state, the code is ... | {
"pile_set_name": "Github"
} |
/*
Copyright (c) 2015 Stefan Kurtz <kurtz@zbh.uni-hamburg.de>
Copyright (c) 2015 Center for Bioinformatics, University of Hamburg
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission n... | {
"pile_set_name": "Github"
} |
/*
* This is a reverse-engineered driver for mobile WiMAX (802.16e) devices
* based on Samsung CMC-730 chip.
* Copyright (C) 2008-2009 Alexander Gordeev <lasaine@lvk.cs.msu.su>
*
* 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"
} |
#!/usr/bin/env python
"""
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import string
from lib.core.enums import PRIORITY
__priority__ = PRIORITY.LOWEST
def dependencies():
pass
def tamper(payload, **kwargs):
"""
Url-encodes all ch... | {
"pile_set_name": "Github"
} |
.search-box .algolia-autocomplete {
width: 100%;
.ds-dropdown-menu {
min-width: 100%;
max-width: 100%;
}
&.algolia-autocomplete-right .ds-dropdown-menu::before {
left: 48px;
}
}
label[for="inputSearch"].input-focused {
padding-bottom: 0;
background: #ffffff;
font-size: 12px;
padding-top... | {
"pile_set_name": "Github"
} |
# Contributing
We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project.
## Development workflow
To get started with the project, run `yarn bootstrap` in the root directory to install the required dependencies for each package:
```sh
yarn bootstr... | {
"pile_set_name": "Github"
} |
// Copyright 2012 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,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly
package unix
import (
"unsafe"
)
const raceenabled = false
func raceAcqu... | {
"pile_set_name": "Github"
} |
path: "tensorflow.keras.datasets.reuters"
tf_module {
member_method {
name: "get_word_index"
argspec: "args=[\'path\'], varargs=None, keywords=None, defaults=[\'reuters_word_index.json\'], "
}
member_method {
name: "load_data"
argspec: "args=[\'path\', \'num_words\', \'skip_top\', \'maxlen\', \'te... | {
"pile_set_name": "Github"
} |
/*
* Copyright (c) 2015 David Boissier
*
* 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"
} |
{
"error": {
"title": "Error page!",
"403": "You are not authorized to access the page."
}
}
| {
"pile_set_name": "Github"
} |
'use strict'
var chain = require('slide').chain
var build = require('../../build.js')
var npm = require('../../npm.js')
var packageId = require('../../utils/package-id.js')
module.exports = function (top, buildpath, pkg, log, next) {
log.silly('build', packageId(pkg))
chain([
[build.linkStuff, pkg.package, pkg... | {
"pile_set_name": "Github"
} |
/*
* /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js
*
* Copyright (c) 2012 Design Science, Inc.
*
* Part of the MathJax library.
* See http://www.mathjax.org for details.
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance wit... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../libc/fn.fsync.html">
</head>
<body>
<p>Redirecting to <a href="../../libc/fn.fsync.html">../../libc/fn.fsync.html</a>...</p>
<script>location.replace("../../libc/fn.fsync.html" + location.search + location.hash);</script... | {
"pile_set_name": "Github"
} |
/**
* A dashboard mode.
* @typedef {string} DashboardMode
*/
/**
* Dashboard view modes.
* @type {{EDIT: DashboardViewMode, VIEW: DashboardViewMode}}
*/
export const DashboardViewMode = {
EDIT: 'edit',
VIEW: 'view'
};
| {
"pile_set_name": "Github"
} |
package network
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// 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
//
// Unl... | {
"pile_set_name": "Github"
} |
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/kms/v1/service.proto
namespace Google\Cloud\Kms\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Request message for [KeyManagementService.Decrypt]... | {
"pile_set_name": "Github"
} |
/*
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
Matthias Butz <matze@odinms.de>
Jan Christian Meyer <vimes@odinms.de>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero Genera... | {
"pile_set_name": "Github"
} |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bfs</title>
<script src="libraries/p5.js"></script>
<script src="libraries/p5.dom.js"></script>
<script src="libraries/p5.sound.... | {
"pile_set_name": "Github"
} |
version: 2
jobs:
build:
working_directory: ~/cornac
docker:
- image: circleci/python:3.6.9
environment:
PIPENV_VENV_IN_PROJECT: true
steps:
- checkout
- run: sudo chown -R circleci:circleci /usr/local/bin
- run: sudo chown -R circleci:circleci /usr/lo... | {
"pile_set_name": "Github"
} |
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/tips.css">
</head>
<body>
<p><span class="shortcut">&shortcut:EditorSelectWord;</span> (extend selection) in the editor selects the word at the caret
and then selects expanding areas of the source code. For example, it may select a method na... | {
"pile_set_name": "Github"
} |
head 1.1;
access;
symbols;
locks; strict;
comment @# @;
1.1
date 95.12.04.19.15.13; author jkc; state Exp;
branches;
next ;
desc
@@
1.1
log
@Initial revision
@
text
@#! /bin/sh
# shell for raytracing travektime
set -v
<kd.data \
sustrip |
sukdsyn2d par=kdsyn.par>kdsyn.data
exit
@
| {
"pile_set_name": "Github"
} |
--TEST--
Test + operator : 64bit long tests
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
?>
--FILE--
<?php
define("MAX_64Bit", 9223372036854775807);
define("MAX_32Bit", 2147483647);
define("MIN_64Bit", -9223372036854775807 - 1);
define("MIN_32Bit", -2147483647 ... | {
"pile_set_name": "Github"
} |
#if !(defined(LTM1) && defined(LTM2) && defined(LTM3))
#if defined(LTM2)
#define LTM3
#endif
#if defined(LTM1)
#define LTM2
#endif
#define LTM1
#if defined(LTM_ALL)
#define BN_ERROR_C
#define BN_FAST_MP_INVMOD_C
#define BN_FAST_MP_MONTGOMERY_REDUCE_C
#define BN_FAST_S_MP_MUL_DIGS_C
#define BN_FAST_S_MP_MUL_HIGH_DIGS_C... | {
"pile_set_name": "Github"
} |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
@class NSPageController, NSString, NSViewController;
@protocol NSPageControllerDelegate <NSObject>
@optional
- (void)pageControllerDidEndLiveTransition:(NSPa... | {
"pile_set_name": "Github"
} |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Qt 4.6: menus.h Example File (activeqt/menus/menus.h)</title>
<link href="classic.css" rel="stylesheet" ... | {
"pile_set_name": "Github"
} |
/*
* Copyright 2012-2019 MarkLogic Corporation
*
* 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 applicabl... | {
"pile_set_name": "Github"
} |
#########################################
##### Defaults & Paths #####
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4/generated -I m4
CFLAGS += @DEFS@
EXTRA_SUBDIRS =
# pkg-config support
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = pd.pc
#########################################
##### Files, Binaries, ... | {
"pile_set_name": "Github"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.