text
stringlengths
2
99k
meta
dict
// 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. // This code was translated into a form compatible with 6a from the public // domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html // +build amd64,!...
{ "pile_set_name": "Github" }
/* * Copyright 2017 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" }
Shader "Hidden/Holo/Glass Fallback (Two-sided Diffuse)" { Properties { [KeywordEnum(Off, Diffuse, GlassTint, GlassBlend)] _ColorMode ("Color Modifier Mode", Float) = 0 _Color (" Color", Color) = (1,1,1,1) [KeywordEnum(Off, Diffuse)] _VertexMode ("Vertex Color Mode", Float) = 1 _MainTex ("Base (RGBA)", 2D) = "whi...
{ "pile_set_name": "Github" }
/** * @flow * @relayHash 7997e8956784138f048c25f7bb894552 */ /* eslint-disable */ 'use strict'; /*:: import type { ConcreteRequest } from 'relay-runtime'; export type ReactionContent = "CONFUSED" | "EYES" | "HEART" | "HOORAY" | "LAUGH" | "ROCKET" | "THUMBS_DOWN" | "THUMBS_UP" | "%future added value"; export type ...
{ "pile_set_name": "Github" }
import {Product} from "./product" import {ProductService} from "./product.service"; export class RealProductService extends ProductService{ getProduct(): Product { // Code making an HTTP request to get actual product details could go here return new Product('iPhone 7'); } }
{ "pile_set_name": "Github" }
/** * @param {number} m * @param {number} n * @return {number} */ var uniquePaths = function(m, n) { if(m === 0 || n === 0){ return 0; } var dp = [[1]]; for(var i = 1; i < n; i++){ dp[0][i] = 1; } for(var j = 1; j < m; j++){ dp.push([]); dp...
{ "pile_set_name": "Github" }
/***************************************************************************** Copyright (c) 2014, Intel Corp. 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" }
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a co...
{ "pile_set_name": "Github" }
; RUN: opt -loop-idiom < %s -S | FileCheck %s ; RUN: opt -aa-pipeline=basic-aa -passes='require<aa>,require<targetir>,require<scalar-evolution>,require<opt-remark-emit>,loop(loop-idiom)' < %s -S | FileCheck %s target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" %struc...
{ "pile_set_name": "Github" }
import Vue from 'vue' import { createApp } from './app' import pageComponents from '@internal/page-components' import layoutComponents from '@internal/layout-components' export default context => new Promise((resolve, reject) => { const { app, router } = createApp(true /* isServer */) const { url } = context con...
{ "pile_set_name": "Github" }
/* NPC Name: Kinu Description: Quest - Cygnus tutorial helper */ var status = -1; function start(mode, type, selection) { if(mode == -1 || mode == 0 && type > 0) { qm.dispose(); return; } if (mode == 1) { status++; } else { if (status == 2) { qm.sendNext("Regular ...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="UTF-8"?> <project name="libPluginSocialTwitter" default="plugin-publish"> <!-- The local.properties file is created and updated by the 'android' tool. It contains the path to the SDK. It should *NOT* be checked into Version Control Systems. --> <property file="lo...
{ "pile_set_name": "Github" }
/* * Copyright 2012-2019 the original author or 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
{ "pile_set_name": "Github" }
GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is no...
{ "pile_set_name": "Github" }
/* * APNG muxer * Copyright (c) 2015 Donny Yang * * first version by Donny Yang <work@kota.moe> * * This file is part of FFmpeg. * * FFmpeg 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; eith...
{ "pile_set_name": "Github" }
# frozen_string_literal: true require 'spec_helper' RSpec.describe 'Math rendering', :js do let!(:project) { create(:project, :public) } it 'renders inline and display math correctly' do description = <<~MATH This math is inline $`a^2+b^2=c^2`$. This is on a separate line ```math a^2...
{ "pile_set_name": "Github" }
package com.tencent.mm.plugin.emojicapture.model.c; import a.f.b.j; import a.l; import com.tencent.matrix.trace.core.AppMethodBeat; import com.tencent.mm.sdk.platformtools.ab; import java.util.LinkedList; import org.xmlpull.v1.XmlPullParser; @l(dWo = {1, 1, 13}, dWp = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0018\u0002...
{ "pile_set_name": "Github" }
import {Spyglass} from "io_k8s_test_infra/prow/cmd/deck/static/spyglass/lens"; declare global { // The `spyglass` global is injected into the environment the lens runs in by spyglass. const spyglass: Spyglass; }
{ "pile_set_name": "Github" }
<?php namespace Faker\Provider\he_IL; class Address extends \Faker\Provider\Address { protected static $buildingNumber = array('#', '##', '###'); protected static $streetSuffix = array( 'רחוב', 'שדרות', 'סמטאת', ); protected static $postcode = array('#####', '#######'); /** * {@link}...
{ "pile_set_name": "Github" }
from mymodule import stats_word import traceback import logging logger = logging.getLogger(__name__) def test_traceback(): try: stats_word.stats_text(1) except Exception as e: print('test_traceback =>' , e) print(traceback.format_exc()) def test_logger(): try: stats_word...
{ "pile_set_name": "Github" }
body { padding: 50px; font: 15px/1.6 Helvetica, Arial, sans-serif; } img { max-height: 50vh; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; background: #ffffff; font-size: 18px; line-heigh...
{ "pile_set_name": "Github" }
# Copyright 2016 Matt Wrock <matt@mattwrock.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 applicable la...
{ "pile_set_name": "Github" }
/////////////////////////////////////////////////////////////////////////////////// /// OpenGL Mathematics (glm.g-truc.net) /// /// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net) /// Permission is hereby granted, free of charge, to any person obtaining a copy /// of this software and associated documentatio...
{ "pile_set_name": "Github" }
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.ComponentModel.DataAnnotations; using osu.Game.Database; using osu.Game.IO; namespace osu.Game.Beatmaps { public class BeatmapSetFileInfo : IN...
{ "pile_set_name": "Github" }
# AUTOGENERATED FILE FROM balenalib/raspberry-pi2-fedora:26-run # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtualenv"...
{ "pile_set_name": "Github" }
/** * * Copyright 2015 Florian Schmaus * * 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" }
include(EigenTesting) include(CheckCXXSourceCompiles) # configure the "site" and "buildname" ei_set_sitename() # retrieve and store the build string ei_set_build_string() add_custom_target(buildtests) add_custom_target(check COMMAND "ctest") add_dependencies(check buildtests) # check whether /bin/bash exists find_f...
{ "pile_set_name": "Github" }
/* Ppmd.h -- PPMD codec common code 2010-03-12 : Igor Pavlov : Public domain This code is based on PPMd var.H (2001): Dmitry Shkarin : Public domain */ #ifndef __PPMD_H #define __PPMD_H #include "Types.h" #include "CpuArch.h" EXTERN_C_BEGIN #ifdef MY_CPU_32BIT #define PPMD_32BIT #endif #define PPMD_INT_BITS 7 #d...
{ "pile_set_name": "Github" }
/* Copyright 2015 The TensorFlow Authors. 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 Unless required by applicable law or a...
{ "pile_set_name": "Github" }
// // Expression.swift // ExpressionEngine // // Created by Laszlo Korte on 07.08.15. // Copyright © 2015 Laszlo Korte. All rights reserved. // public enum EvaluationError : Error { case unresolvedReference(message: String) case arithmeticError(message: String) case typeMismatch(message: String) ca...
{ "pile_set_name": "Github" }
# Defaults for rtmpd initscript # sourced by /etc/init.d/rtmpd # Additional options that are passed to the Daemon. ENABLED=yes DAEMON_CONF=" /etc/crtmpserver/crtmpserver.lua " DAEMON_OPTS=" --daemon " DAEMON_USER=crtmpserver
{ "pile_set_name": "Github" }
import Foundation import Combine import Harvest import Quick import Nimble import Thresher /// Tests for `World` injection. class WorldSpec: QuickSpec { override func spec() { typealias Harvester = Harvest.Harvester<Input, State> typealias EffectMapping = Harvester.EffectMapping<World, BasicEff...
{ "pile_set_name": "Github" }
cdist-type__cron(7) =================== NAME ---- cdist-type__cron - Installs and manages cron jobs DESCRIPTION ----------- This cdist type allows you to manage entries in a users crontab. REQUIRED PARAMETERS ------------------- user The user who's crontab is edited command The command to run. OPTIONAL PAR...
{ "pile_set_name": "Github" }
<template> <div class="mint-spinner-double-bounce" :style="{ width: spinnerSize, height: spinnerSize }"> <div class="mint-spinner-double-bounce-bounce1" :style="{ backgroundColor: spinnerColor }"></div> <div class="mint-spinner-double-bounce-bounce2" :style="{ backgroundColor: spinnerColor }">...
{ "pile_set_name": "Github" }
var Rar = (function (exports) { 'use strict'; function __awaiter(thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(genera...
{ "pile_set_name": "Github" }
// Copyright (c) 2003,2004 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at y...
{ "pile_set_name": "Github" }
import * as React from 'react'; import BoxNotes16 from './BoxNotes16'; export const boxNotes16 = () => <BoxNotes16 />; export default { title: 'Icon|Fill|BoxNotes16', component: BoxNotes16, parameters: { notes: "`import BoxNotes16 from 'box-ui-elements/es/icon/fill/BoxNotes16';`", }, };
{ "pile_set_name": "Github" }
// CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // ...
{ "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. // @class NSData, NSError, NSURLResponse, WAKView; @protocol WebPluginManualLoader - (void)pluginViewFinishedLoading:(WAKView *)arg1; - (void)pluginView:(WAKView *)arg1 receivedError:...
{ "pile_set_name": "Github" }
version https://git-lfs.github.com/spec/v1 oid sha256:343528382fd120f42c3274e95963659198f37650aac4324bc3d311348ad6615b size 2712
{ "pile_set_name": "Github" }
# -*- coding: utf-8 -*- """ requests.cookies ~~~~~~~~~~~~~~~~ Compatibility code to be able to use `cookielib.CookieJar` with requests. requests.utils imports from here, so be careful with imports. """ import copy import time import calendar import collections from .compat import cookielib, urlparse, urlunparse, Mo...
{ "pile_set_name": "Github" }
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Linq.Expressions; using System.Reflection; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Query.Internal; using Microsoft.EntityFrameworkCore.Query.SqlExpressions; using Microsoft.En...
{ "pile_set_name": "Github" }
{ "edges": [ { "node1": { "hostname": "n1", "interfaceName": "swp5" }, "node2": { "hostname": "n2", "interfaceName": "swp5" } }, { "node1": { "hostname": "n2", "interfaceName": "swp6" }, "node2": { "hostname"...
{ "pile_set_name": "Github" }
/* * Copyright 2017 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing ...
{ "pile_set_name": "Github" }
#ifndef LAMMPS_INTERFACE_H #define LAMMPS_INTERFACE_H #include <iostream> #include <cstdlib> #include <map> #include <iostream> #include <string> #include <sstream> #include <fstream> #include <utility> #include "mpi.h" #include "../../src/lmptype.h" #include "../../src/lammps.h" #include "../../src/comm.h" #include "...
{ "pile_set_name": "Github" }
Shader "Hidden/Noise Shader YUV" { Properties { _MainTex ("Base (RGB)", 2D) = "white" {} _GrainTex ("Base (RGB)", 2D) = "gray" {} _ScratchTex ("Base (RGB)", 2D) = "gray" {} } SubShader { Pass { ZTest Always Cull Off ZWrite Off CGPROGRAM #pragma vertex vert #pragma fragment frag #include "UnityCG.cginc" str...
{ "pile_set_name": "Github" }
{ "images" : [ { "idiom" : "universal", "scale" : "1x" }, { "idiom" : "universal", "filename" : "input_emoji_delete_44x44_@2x.png", "scale" : "2x" }, { "idiom" : "universal", "filename" : "input_emoji_delete_44x44_@3x.png", "scale" : "3x" } ], ...
{ "pile_set_name": "Github" }
// // WMZPageConfig.h // WMZPageController // // Created by wmz on 2019/9/17. // Copyright © 2019 wmz. All rights reserved. // #ifndef WMZPageConfig_h #define WMZPageConfig_h #import <UIKit/UIKit.h> #import <objc/runtime.h> #import "WMZPageProtocol.h" #import "NSObject+SafeKVO.h" #import "UIView+PageRect.h" @clas...
{ "pile_set_name": "Github" }
<!doctype html> <html lang="{{ site.lang | default: "en-US" }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <title>{{ page.title }}</title> <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> <...
{ "pile_set_name": "Github" }
`timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Company: Xilinx // Engineer: Parimal Patel // Module Name: pulse_gen // Project Name: // Target Devices: // Tool Versions: // Description: This module takes multi-cycle pulse (generated by GPIO writes) and // ...
{ "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. #ifndef UI_VIEWS_CONTROLS_TABLE_TABLE_GROUPER_H_ #define UI_VIEWS_CONTROLS_TABLE_TABLE_GROUPER_H_ #include "ui/views/views_export.h" namespace views...
{ "pile_set_name": "Github" }
import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, css } from 'aphrodite'; import pluralize from '../../utils/pluralize'; const getTitle = (logItem, initial) => { if (initial) { return 'Initial'; } if (logItem.patches) { return `${logItem.patches.length} ${pluralize(logIt...
{ "pile_set_name": "Github" }
<snippet> <prefix>animation-scaleX</prefix> <description><![CDATA[x 轴缩放]]></description> <body><![CDATA[ animation.scaleX(${1}); ]]></body> </snippet>
{ "pile_set_name": "Github" }
// Copyright 2008 Isis Innovation Limited #include "ptam/MiniPatch.h" using namespace CVD; using namespace std; // Scoring function inline int MiniPatch::SSDAtPoint(CVD::BasicImage<CVD::byte> &im, const CVD::ImageRef &ir) { if(!im.in_image_with_border(ir, mnHalfPatchSize)) return mnMaxSSD + 1; ImageRef irImgBa...
{ "pile_set_name": "Github" }
#include "../hppa/event-modules"
{ "pile_set_name": "Github" }
// ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: [{ "name": "mmcgrana/textmate-clojure", "version": "0.0.0", "license": "MIT", "repositoryURL": "https://github.com/mmcgrana/textmate-clojure" }]
{ "pile_set_name": "Github" }
# Copyright 2016 The Prometheus 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 writ...
{ "pile_set_name": "Github" }
using JetBrains.Annotations; using JetBrains.UI.Icons; using JetBrains.UI.RichText; using JetBrains.Util; namespace GammaJul.ReSharper.EnhancedTooltip.Presentation { public class ArgumentRoleTooltipContent : TooltipContent { [CanBeNull] public IconId Icon { get; set; } [CanBeNull] public RichText Descri...
{ "pile_set_name": "Github" }
using System; namespace Stylet.Samples.TabNavigation { class Bootstrapper : Bootstrapper<ShellViewModel> { } }
{ "pile_set_name": "Github" }
// Copyright (c) 2016 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge...
{ "pile_set_name": "Github" }
Installation ============ You have multiple ways to install Twig. Installing the Twig PHP package ------------------------------- Install `Composer`_ and run the following command: .. code-block:: bash composer require "twig/twig:^1.0" Installing the C extension -------------------------- .. versionadded:: 1...
{ "pile_set_name": "Github" }
using System; namespace ServiceStack.DataAnnotations { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class | AttributeTargets.Struct)] public class IndexAttribute : AttributeBase { public IndexAttribute() { } public IndexAttribute(bool uniqu...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="..\common.init.vcxproj" /> <PropertyGroup Label="Globals"> <ProjectGuid>{18430FEF-6B61-4C53-B396-718E02850F1B}</ProjectGuid> </PropertyGroup> <PropertyGroup La...
{ "pile_set_name": "Github" }
#ifndef CAFFE_MEMORY_DATA_LAYER_HPP_ #define CAFFE_MEMORY_DATA_LAYER_HPP_ #include <vector> #include "caffe/blob.hpp" #include "caffe/layer.hpp" #include "caffe/proto/caffe.pb.h" #include "caffe/layers/base_data_layer.hpp" namespace caffe { /** * @brief Provides data to the Net from memory. * * TODO(dox): thoro...
{ "pile_set_name": "Github" }
open Tyxml; let markup = <Layout title="login"> <div className="max-w-sm w-full lg:max-w-full lg:flex"> <div className="h-48 lg:h-auto lg:w-48 flex-none bg-cover rounded-t lg:rounded-t-none lg:rounded-l text-center overflow-hidden" style="background-image: url('https://placekitten.com/400/2...
{ "pile_set_name": "Github" }
// Version 2 import QtQuick 2.0 import QtQuick.Controls 1.0 import QtQuick.Layouts 1.0 import org.kde.kirigami 2.0 as Kirigami GridLayout { id: configDimension columnSpacing: 0 rowSpacing: 0 property int orientation: Qt.Horizontal property color lineColor: "#000" property int lineThickness: 2 * Kirigami.Units....
{ "pile_set_name": "Github" }
#ifndef _melder_str32_h_ #define _melder_str32_h_ /* melder_str32.h * * Copyright (C) 1992-2018 Paul Boersma * * This code 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 License,...
{ "pile_set_name": "Github" }
/* Copyright 2016-present Samsung Electronics Co., Ltd. and other contributors * * 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 * * U...
{ "pile_set_name": "Github" }
#!/bin/sh # ---------------------------------------------------------------------------- # 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 ...
{ "pile_set_name": "Github" }
--- layout: default title: mudlib / export_uid --- ### NAME export_uid() - set the uid of another object ### SYNOPSIS int export_uid( object ob ); ### DESCRIPTION Set the uid of <ob> to the effective uid of this_object(). It is only possible when <ob> has an effective uid of 0. ### SEE ALSO ...
{ "pile_set_name": "Github" }
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * 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/. */ ...
{ "pile_set_name": "Github" }
// Boost.Range library // // Copyright Thorsten Ottosen 2003-2004. Use, modification and // distribution is subject to 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) // // For more information, see http://www.boost.org/libs/rang...
{ "pile_set_name": "Github" }
msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: \n" "POT-Creation-Date: \n" "PO-Revision-Date: \n" "Last-Translator: Maxim Ganetsky <maxkill@mail.ru>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" "X-Generator: Poedit 1.7.7\n" #: ta...
{ "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. // IMPLEMENTATION NOTE: To avoid a package loop, this file is in three places: // ssh/, ssh/agent, and ssh/test/. It should be kept in sync across all three // ...
{ "pile_set_name": "Github" }
train_ratio = 0.9 use_dict = True use_scaler = False init_emb = False split_contins = True samp_size = 100000 # samp_size = 0 import math, keras, datetime, pandas as pd, numpy as np, keras.backend as K import matplotlib.pyplot as plt, xgboost, operator, random, pickle, os from sklearn_pandas import DataFrameMapper fro...
{ "pile_set_name": "Github" }
[ 0, -120.0, 40.0, -110.0, 50.0, 300, -125.0, 40.0, -110.0, 50.0, 600, -125.0, 30.0, -110.0, 45.0 ]
{ "pile_set_name": "Github" }
#include "f2c.h" #include "fio.h" #ifdef __cplusplus extern "C" { #endif uiolen f__reclen; int #ifdef KR_headers do_us(number,ptr,len) ftnint *number; char *ptr; ftnlen len; #else do_us(ftnint *number, char *ptr, ftnlen len) #endif { if(f__reading) { f__recpos += (int)(*number * len); if(f__recpos>f__reclen) ...
{ "pile_set_name": "Github" }
# parlai.core.metrics ```{eval-rst} .. automodule:: parlai.core.metrics :members: ```
{ "pile_set_name": "Github" }
%% Chapter 11 - Practical Session %% Try the following two programming exercises: %% 1. Sets can be thought of as lists that don’t contain any repeated %% elements. For example, [a,4,6] is a set, but [a,4,6,a] is not (as it contains %% two occurrences of a). Write a Prolog program subset/2 that is satisfied %% when t...
{ "pile_set_name": "Github" }
import { Component } from 'react'; import { arrayOf, func, number, object, shape, string } from 'prop-types'; import LinePart from '../LinePart'; import { lineContent } from './index.module.css'; /* eslint-disable react/no-array-index-key */ /** * The container of all the individual pieces of content that * is on a...
{ "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" @interface VoicePrintQueueItem : NSObject { unsigned int voiceId; unsigned int offset; unsigned int length; unsigned int endflag; unsigned ...
{ "pile_set_name": "Github" }
<?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - Punjab */ return [ '...
{ "pile_set_name": "Github" }
package matchers_test import ( "errors" "fmt" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/onsi/gomega/matchers" ) type CustomError struct { } func (c CustomError) Error() string { return "an error" } var _ = Describe("MatchErrorMatcher", func() { Context("When asserting against an er...
{ "pile_set_name": "Github" }
Chris Double
{ "pile_set_name": "Github" }
// @flow import { CompositeDisposable } from 'atom' import { isValidEditor, wordAndOffset } from '../utils' import { buildGuruArchive } from '../guru-utils' import { TagsDialog } from './tags-dialog' import type { GoConfig } from './../config/service' type Mode = 'Add' | 'Remove' export type Tag = { tag: string, ...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 5da648a54632ec64e9d42516f95a7fc4 timeCreated: 1547238593 licenseType: Store TextureImporter: fileIDToRecycleName: {} serializedVersion: 4 mipmaps: mipMapMode: 0 enableMipMap: 1 sRGBTexture: 1 linearTexture: 0 fadeOut: 0 borderMipMap: 0 mipMapsPreserveCoverage...
{ "pile_set_name": "Github" }
SETUP_TYPE=armv7l.linux-dev BUILD_DIST=yes BUILD_EXAMPLES=yes KEEP_DIST=yes BUILD_DBT=no BUILD_RBT=no RUN_DBT=no RUN_RBT_SP=no RUN_RBT_SHM=no RUN_EXAMPLES_SHM=no RUN_EXAMPLES_SP=yes . configs/`hostname`/common
{ "pile_set_name": "Github" }
var LZMA = LZMA || {}; // browserify support if ( typeof module === 'object' ) { module.exports = LZMA; } LZMA.OutWindow = function() { this._windowSize = 0; }; LZMA.OutWindow.prototype.create = function(windowSize) { if ( (!this._buffer) || (this._windowSize !== windowSize) ) { this._buffer = []; } this._...
{ "pile_set_name": "Github" }
var mkdirp = require('../'); var path = require('path'); var fs = require('fs'); var test = require('tap').test; test('rel', function (t) { t.plan(2); var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); var z = Math.floor(Mat...
{ "pile_set_name": "Github" }
# multibox.tcl - Multi-column listbox. # Copyright (C) 1997 Cygnus Solutions. # Written by Tom Tromey <tromey@cygnus.com>. # FIXME: # * Should support sashes so user can repartition widget sizes. # * Should support itemcget, itemconfigure. itcl_class Multibox { # The selection mode. public selectmode browse { ...
{ "pile_set_name": "Github" }
/* * Copyright 2016 the original author or 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 applica...
{ "pile_set_name": "Github" }
アシュリーホープ最新番号 【KPBB-001】本場金髪ワイルドフェラ デカマラを根元まで咥えこむ本場のブロンド美女たちの尺八映像集</a>2016-03-23映天$$$BEBEYピンク(映天)119分钟
{ "pile_set_name": "Github" }
#include <linux/types.h> #include <linux/errno.h> #include <asm/uaccess.h> #include <asm/sfp-machine.h> #include <math-emu/soft-fp.h> int mtfsf(unsigned int FM, u32 *frB) { u32 mask; u32 fpscr; if (FM == 0) return 0; if (FM == 0xff) mask = 0x9fffffff; else { mask = 0; if (FM & (1 << 0)) mask |= 0x90...
{ "pile_set_name": "Github" }
/* Special Initializers for certain USB Mass Storage devices * * Current development and maintenance by: * (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net) * * This driver is based on the 'USB Mass Storage Class' document. This * describes in detail the protocol used to communicate with such * devi...
{ "pile_set_name": "Github" }
#region License // // Copyright (c) 2013, Kooboo team // // Licensed under the BSD License // See the file LICENSE.txt for details. // #endregion using Kooboo.CMS.Common; using Kooboo.CMS.Sites.Extension; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Mvc; na...
{ "pile_set_name": "Github" }
# frozen_string_literal: true # WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::StorageGateway class Resource # @param options ({}) # @op...
{ "pile_set_name": "Github" }
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S7.5.2_A1.15; * @section: 7.5.2; * @assertion: The "new" token can not be used as identifier; * @description: Checking if execution of "new=1" fails; * @negative */ n...
{ "pile_set_name": "Github" }
platform_is :windows do require 'win32ole' describe "WIN32OLE_METHOD#return_type_detail" do before :each do ole_type = WIN32OLE_TYPE.new("Microsoft Shell Controls And Automation", "Shell") @m_browse_for_folder = WIN32OLE_METHOD.new(ole_type, "BrowseForFolder") end it "raises ArgumentError ...
{ "pile_set_name": "Github" }
var R = require('../source'); var eq = require('./shared/eq'); describe('xor', function() { it('compares two values with exclusive or', function() { eq(R.xor(true, true), false); eq(R.xor(true, false), true); eq(R.xor(false, true), true); eq(R.xor(false, false), false); }); it('when both values ...
{ "pile_set_name": "Github" }
subroutine da_radzicevar_adj(qvp0,qra0,qsn0,qgr0,qnr0,qns0,qng0,tmk0,prs,dbz, & in0r,in0s,in0g,rn0_r,rn0_s,rn0_g, & rhos,rhog,dtmk,dqvp,dqra,dqsn,dqgr,dqnr,dqns,dqng,zmm,tlopt, & gropt,z...
{ "pile_set_name": "Github" }