text
stringlengths
2
99k
meta
dict
/* * Copyright (C) 2014 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distribut...
{ "pile_set_name": "Github" }
-----BEGIN RSA PRIVATE KEY----- MIICWwIBAAKBgQDGYd5/O0mBobEVgRx6JSDSF0yVFVYGqhl6UnwF5dMOddy7/kXY e0z6X5APINoaMqXH40griuSPt3pZ3cAo+A5hLRVINl7drXF/2tFjM62FZO/u1iLj 8tOo9eo3mUoTvV2CsH/+A6a9X/VgPvvoUjFUYJIBPSEfCQULeyWaklLAPwIDAQAB AoGARIwKqmHc+0rYenq7UUVE+vMMBjNyHyllVkvsCMmpzMRS+i5ZCf1I0vZ0O5X5 ZrX7bH8PL+R1J2eZgjXKMR3NMZBu...
{ "pile_set_name": "Github" }
<?php namespace Neos\Flow\Persistence\Doctrine\Migrations; use Doctrine\DBAL\Migrations\AbstractMigration; use Doctrine\DBAL\Schema\Schema; /** * Adjust table names to the renaming of TYPO3.Media to Neos.Media. */ class Version20161125093811 extends AbstractMigration { /** * @param Schema $schema * @r...
{ "pile_set_name": "Github" }
<!doctype html> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="generator" content="Hugo 0.74.3" /> <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> <link rel="shortcut icon" href="/favicons/favicon...
{ "pile_set_name": "Github" }
/* eslint-disable node/no-deprecated-api */ var test = require('tape') var SafeBuffer = require('./').Buffer test('new SafeBuffer(value) works just like Buffer', function (t) { t.deepEqual(new SafeBuffer('hey'), new Buffer('hey')) t.deepEqual(new SafeBuffer('hey', 'utf8'), new Buffer('hey', 'utf8')) t.deepEqual...
{ "pile_set_name": "Github" }
# SOME DESCRIPTIVE TITLE. # Copyright (C) Kovid Goyal # This file is distributed under the same license as the calibre package. # # Translators: msgid "" msgstr "" "Project-Id-Version: calibre\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-09-02 05:23+0000\n" "PO-Revision-Date: 2020-08-23 08:29+0000\n" "Last-T...
{ "pile_set_name": "Github" }
Metadata-Version: 2.1 Name: gunicorn Version: 19.9.0 Summary: WSGI HTTP Server for UNIX Home-page: http://gunicorn.org Author: Benoit Chesneau Author-email: benoitc@e-engura.com License: MIT Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Other Environment Classifier: Intended Au...
{ "pile_set_name": "Github" }
/*! // Contents // ------------------------------------------------ 1. Mixins 2. Helper classes & resets 3. Loader 4. Colours 5. Typography 6. Spacing 7. Buttons 8. Navigation 9. Slider, Dividers 10. Speakers & Topics 11. Schedule 12. Galleries 13. Pricing & FAQ 14. Subscribe 15. Contact 16. Forms 17....
{ "pile_set_name": "Github" }
/////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include <boost/multiprecision/cpp_int.hpp> #include "test_arithme...
{ "pile_set_name": "Github" }
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. // // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, // copy, modify, and distribute this software in source code or binary form for use // in connection with the web services and APIs provided by Facebook. // // As with...
{ "pile_set_name": "Github" }
/* * (C) Copyright 2005-2008 * Matthias Fuchs, esd GmbH Germany, matthias.fuchs@esd-electronics.com * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <command.h> #if !defined(CONFIG_440) #include <asm/4xx_pci.h> #endif #if defined(CONFIG_CMD_BSP) extern int do_source (cmd_tbl_t *, int, int, ...
{ "pile_set_name": "Github" }
var rng = require('./lib/rng'); var bytesToUuid = require('./lib/bytesToUuid'); function v4(options, buf, offset) { var i = buf && offset || 0; if (typeof(options) == 'string') { buf = options === 'binary' ? new Array(16) : null; options = null; } options = options || {}; var rnds = options.random ...
{ "pile_set_name": "Github" }
/////////////////////////////////////////////////////////////////////////////// // $Id: host32.v 5550 2009-05-11 20:09:59Z grg $ // // Module: host32.v // Project: CPCI (PCI Control FPGA) // Description: Simulates a PCI host // // Change history: // //////////////////////////////////////////////////////////////////////...
{ "pile_set_name": "Github" }
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2020 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ module.exports = { "Type something": "무엇이든 입력하세요", "About Jodit": "Jodit에 대하여", "Jodit Editor":...
{ "pile_set_name": "Github" }
require 'spec_helper' RSpec.describe DropletKit::ImageResource do subject(:resource) { described_class.new(connection: connection) } include_context 'resources' describe '#all' do it 'returns all of the images' do images_json = api_fixture('images/all') stub_do_api('/v2/images', :get).to_return(...
{ "pile_set_name": "Github" }
translation initialize "self initialize" (Smalltalk classNamed: #CogStackPageSurrogate32) ifNotNil: [:csps32| self checkGenerateSurrogate: csps32 bytesPerWord: 4]. (Smalltalk classNamed: #CogStackPageSurrogate64) ifNotNil: [:csps64| self checkGenerateSurrogate: csps64 bytesPerWord: 8]
{ "pile_set_name": "Github" }
package credentials import ( "github.com/docker/cli/cli/config/types" ) // Store is the interface that any credentials store must implement. type Store interface { // Erase removes credentials from the store for a given server. Erase(serverAddress string) error // Get retrieves credentials from the store for a gi...
{ "pile_set_name": "Github" }
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s template<typename T=int> struct S {}; template<typename> void f(); void foo(void) { // In C++11 mode, all of these are expected to parse correctly, and the CUDA // language should not interfere with that. // expected-no-diagnostics S<S<S<int>>> s3; S...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2014 The Android Open Source Project * * 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 app...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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 ...
{ "pile_set_name": "Github" }
{ "version": "2.0", "service": "<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub. </p>", "operations": { "AssociateCreatedArtifact": "<p>Associates a created ar...
{ "pile_set_name": "Github" }
/* 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 law or agreed to in writing, softw...
{ "pile_set_name": "Github" }
/** * Copyright 2012-2016 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * *     http://aws.amazon.com/apache2.0/ * * or in the "LI...
{ "pile_set_name": "Github" }
/* * Copyright 2019 Advanced Micro Devices, 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, m...
{ "pile_set_name": "Github" }
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>katharsis-examples</artifactId> <groupId>io.katharsis</groupId> <v...
{ "pile_set_name": "Github" }
/* * MGSwipeTableCell is licensed under MIT license. See LICENSE.md file for more information. * Copyright (c) 2014 Imanol Fernandez @MortimerGoro */ #import "MGSwipeButton.h" @class MGSwipeTableCell; @implementation MGSwipeButton +(instancetype) buttonWithTitle:(NSString *) title backgroundColor:(UIColor *) col...
{ "pile_set_name": "Github" }
/* SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) */ #ifndef LIBFDT_INTERNAL_H #define LIBFDT_INTERNAL_H /* * libfdt - Flat Device Tree manipulation * Copyright (C) 2006 David Gibson, IBM Corporation. */ #include <fdt.h> #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) #define FDT_TAGALIGN(x) (...
{ "pile_set_name": "Github" }
<template lang="html"> <div class="demo-content horizontal"> <v-title>Horizontal</v-title> <div class="v-row"> <div v-for="(co, zone) in lists" class="v-col--auto"> <div class="panel"> <div class="panel__heading"> <h3>Dropzone {{co.id}}</h3> </div> <vddl...
{ "pile_set_name": "Github" }
'use strict' const ndjson = require('iterable-ndjson') const CID = require('cids') const configure = require('../lib/configure') const toIterable = require('stream-to-it/source') module.exports = configure(({ ky }) => { return async function * ls (path, options) { if (path && path.type) { options = path ...
{ "pile_set_name": "Github" }
<?php /** * amadeus-ws-client * * Copyright 2015 Amadeus Benelux NV * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
{ "pile_set_name": "Github" }
/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolar...
{ "pile_set_name": "Github" }
# Copyright 2006 Google, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. """Fixer that turns <> into !=.""" # Local imports from .. import pytree from ..pgen2 import token from .. import fixer_base class FixNe(fixer_base.BaseFix): # This is so simple that we don't need the pattern com...
{ "pile_set_name": "Github" }
// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000. // Use, modification and distribution are 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). // // See http://www.boost.org/libs/type_trai...
{ "pile_set_name": "Github" }
// Copyright (c) 2015, Cisco Systems // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, // this list of condi...
{ "pile_set_name": "Github" }
// Copyright 2014 The Cloud Input Tools 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 re...
{ "pile_set_name": "Github" }
pragma solidity ^0.7.0; contract C { uint256[] a; constructor(uint256 i) public { a.push(0); a[i]; } }
{ "pile_set_name": "Github" }
/** * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribut...
{ "pile_set_name": "Github" }
/********************************************************************** *These solidity codes have been obtained from Etherscan for extracting *the smartcontract related info. *The data will be used by MATRIX AI team as the reference basis for *MATRIX model analysis,extraction of contract semantics, *as well as AI base...
{ "pile_set_name": "Github" }
git-rename-branch(1) ==================== NAME ---- git-rename-branch - include::_git-rename-branch_desc.helper.txt[] SYNOPSIS -------- [verse] 'git rename-branch' <new_name> 'git rename-branch' <old_name> <new_name> DESCRIPTION ----------- Rename the current (or specified) branch, then update all dowstream branche...
{ "pile_set_name": "Github" }
(* * Top - An interpreted preambule for the toplevel * Copyright (C) 2009 David Rajchenbach-Teller, LIFO, Universite d'Orleans * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; eith...
{ "pile_set_name": "Github" }
/* * Copyright © 2014 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 or 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT A...
{ "pile_set_name": "Github" }
/* * Copyright (c) 1999-2000 Image Power, Inc. and the University of * British Columbia. * Copyright (c) 2001-2002 Michael David Adams. * All rights reserved. */ /* __START_OF_JASPER_LICENSE__ * * JasPer License Version 2.0 * * Copyright (c) 2001-2006 Michael David Adams * Copyright (c) 1999-2000 Image Pow...
{ "pile_set_name": "Github" }
// Copyright 2018 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 linux // +build ppc64le ppc64 // +build !gccgo package unix import "syscall" func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Er...
{ "pile_set_name": "Github" }
/* Copyright (c) 2020 the Octant contributors. All Rights Reserved. SPDX-License-Identifier: Apache-2.0 */ package octant import ( "context" "fmt" "github.com/pkg/errors" "github.com/vmware-tanzu/octant/pkg/action" "github.com/vmware-tanzu/octant/pkg/log" "github.com/vmware-tanzu/octant/pkg/store" ) // Apply...
{ "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" }
functor ByteTable(eqtype table eqtype elem val array_to_table : chararray -> table val sub_unsafe : table * int -> elem val fromList : elem list -> table val concat : table list -> table val length : table -> int ...
{ "pile_set_name": "Github" }
'use strict' var test = require('tap').test var common = require('../common-tap.js') var path = require('path') var rimraf = require('rimraf') var mkdirp = require('mkdirp') var basepath = path.resolve(__dirname, path.basename(__filename, '.js')) var fixturepath = path.resolve(basepath, 'npm-test-dir-bin') var modulepa...
{ "pile_set_name": "Github" }
fileFormatVersion: 2 guid: 9a46f842ac68e9f438ea5729c1f91906 ModelImporter: serializedVersion: 23 fileIDToRecycleName: 100000: FB208:ArmChair3 100002: FB208:ArmChair3Cushions 100004: FB208:Bag4 100006: FB208:Base 100008: FB208:Base1 100010: FB208:Base10 100012: FB208:Base14 100014: FB...
{ "pile_set_name": "Github" }
# Contributing We love contribution from everyone. Please open an issue if you encounter a bug, or have feature requests, or get a documentation issue, or anything. Issues tagged with [help-wanted](https://github.com/depcheck/depcheck/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22help+wanted%22+) are desired to get s...
{ "pile_set_name": "Github" }
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">$initHighlight</span>(<span class="hljs-params">block, cls</span>) </span>{ <span class="hljs-keyword">try</span> { <span class="hljs-keyword">if</span> (cls.search(<span class="hljs-regexp">/\bno\-highlight\b/</span>)...
{ "pile_set_name": "Github" }
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ // THIS CODE IS GENERATED - DO NOT MODIFY // See angular/tools/gulp-tasks/cldr/extract.js export default []; //# sour...
{ "pile_set_name": "Github" }
package org.wordpress.android.util; import android.database.Cursor; import android.database.DatabaseUtils; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDoneException; import android.database.sqlite.SQLiteException; import android.database.sqlite.SQLiteStatement; import org.wordp...
{ "pile_set_name": "Github" }
/* *************************************************************************** * Ralink Tech Inc. * 4F, No. 2 Technology 5th Rd. * Science-based Industrial Park * Hsin-chu, Taiwan, R.O.C. * * (c) Copyright 2002-2004, Ralink Technology, Inc. * * All rights reserved. Ralink's source code is an unpublished work a...
{ "pile_set_name": "Github" }
前列癃闭通片 22 27 治疗 非那雄胺片 38 42 治疗 前列腺增生 54 58 疾病和诊断 盐酸苯海索片 62 67 治疗 利培酮片 77 80 治疗 劳拉西泮片 90 94 治疗 精神分裂症 108 112 疾病和诊断
{ "pile_set_name": "Github" }
" Esperanto keymap for utf-8 " Maintainer: A.J.Mechelynck <antoine.mechelynck@skynet.be> " Last Changed: Sat 2003 Mar 15 05:23 " This keymap adds the special consonants of Esperanto to an existing Latin " keyboard. " " All keys same as usual, except: " ^ followed by any of CcGgHhJjSs adds a circumflex on top of the le...
{ "pile_set_name": "Github" }
" Vim syntax file " Language: MS Message Text files (*.mc) " Maintainer: Kevin Locke <kwl7@cornell.edu> " Last Change: 2008 April 09 " Location: http://kevinlocke.name/programs/vim/syntax/msmessages.vim " See format description at <http://msdn2.microsoft.com/en-us/library/aa385646.aspx> " This file is based on the rc....
{ "pile_set_name": "Github" }
// =============================================================================== // May be included multiple times - sets structure packing to 1 // for all supported compilers. #include <poppack1.h> reverts the changes. // // Currently this works on the following compilers: // MSVC 7,8,9 // GCC // BORLAND (complai...
{ "pile_set_name": "Github" }
FROM python:3.5 ADD requirements.txt / RUN pip install -r requirements.txt ADD demo /demo WORKDIR / CMD ["hug", "-f", "/demo/app.py"] EXPOSE 8000
{ "pile_set_name": "Github" }
""" Image grid saver, based on color_grid_vis from github.com/Newmu """ import numpy as np import scipy.misc from scipy.misc import imsave def save_images(X, save_path): # [0, 1] -> [0,255] if isinstance(X.flatten()[0], np.floating): X = (255.99*X).astype('uint8') n_samples = X.shape[0] rows ...
{ "pile_set_name": "Github" }
#!r6rs (library (tests r6rs records procedural) (export run-records-procedural-tests) (import (rnrs) (tests r6rs test)) ;; ---------------------------------------- (define rtd1 (make-record-type-descriptor 'rtd1 #f #f #f #f '#((immutable x1) (immutable x2)))) (define rtd2 (ma...
{ "pile_set_name": "Github" }
#!/bin/sh export PYTHONPATH=`pwd`:$PYTHONPATH
{ "pile_set_name": "Github" }
/*! * typeahead.js 1.2.0 * https://github.com/twitter/typeahead.js * Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT */ (function(root, factory) { if (typeof define === "function" && define.amd) { define([ "jquery" ], function(a0) { return factory(a0); }); ...
{ "pile_set_name": "Github" }
module Main where import Prelude import Effect import Effect.Console class Newtype t a | t -> a where wrap :: a -> t unwrap :: t -> a instance newtypeMultiplicative :: Newtype (Multiplicative a) a where wrap = Multiplicative unwrap (Multiplicative a) = a data Multiplicative a = Multiplicative a instance se...
{ "pile_set_name": "Github" }
/*! \page qtjambi-dombookmarks.html \title DOM Bookmarks Example \bold {Code}: \list \o \l{Code for DOM Bookmarks Example}{DomBookmarks.java} \endlist The DOM Bookmarks example provides a reader for XML Bookmark Exchange Language (XBEL) files that uses Qt's DOM-based XML API to rea...
{ "pile_set_name": "Github" }
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the Lic...
{ "pile_set_name": "Github" }
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!--<solid android:color="@color/white_bg" />--> <corners android:bottomLeftRadius="8dp" /> </shape>
{ "pile_set_name": "Github" }
# This file is automatically generated by Android Tools. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file must be checked in Version Control Systems. # # To customize properties used by the Ant build system edit # "ant.properties", and override values to adapt the script to your # project structu...
{ "pile_set_name": "Github" }
import FixedSizeLinkedList from "./Utils/FixedSizeLinkedList"; export { CandleData, CandleList } from "./StockData"; export { sma, SMA } from './moving_averages/SMA'; export { ema, EMA } from './moving_averages/EMA'; export { wma, WMA } from './moving_averages/WMA'; export { wema, WEMA } from './moving_averages/WEMA'; ...
{ "pile_set_name": "Github" }
require_relative '../../spec_helper' require_relative 'fixtures/classes' describe "StringIO#close_read" do before :each do @io = StringIO.new("example") end it "returns nil" do @io.close_read.should be_nil end it "prevents further reading" do @io.close_read -> { @io.read(1) }.should raise_e...
{ "pile_set_name": "Github" }
#!/bin/bash ESLINT="node_modules/.bin/eslint" cd `dirname $0`/.. $ESLINT "$@" app/assets/javascripts/ spec/javascripts/
{ "pile_set_name": "Github" }
// stdafx.h : include file for standard system include files, or project // specific include files that are used frequently, but are changed infrequently // ///////////////////////////////////////////////////////////////////////////// // // This file is part of ResizableLib // http://sourceforge.net/projects/resi...
{ "pile_set_name": "Github" }
// Copyright 2011 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 windows type WSAData struct { Version uint16 HighVersion uint16 Description [WSADESCRIPTION_LEN + 1]byte SystemStatus [WSASYS_STATUS_LEN + ...
{ "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 may ...
{ "pile_set_name": "Github" }
op { graph_op_name: "SymbolicGradient" in_arg { name: "input" description: <<END a list of input tensors of size N + M; END } out_arg { name: "output" description: <<END a list of output tensors of size N; END } attr { name: "Tin" description: <<END the type list for the input list. ...
{ "pile_set_name": "Github" }
"use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @typechecks */ var _hyphenPattern = /-(.)/g; /** * Camelcases a hyphenated string, for example: * * > camelize('...
{ "pile_set_name": "Github" }
<template> <div class="id_card_upload"> <div>身份证照片</div> <van-row class="upload_hint text-desc"> <van-icon name="hint"/> 温馨提示: 请上传原始比例的身份证正反面, 请勿剪裁涂改,保证身份证信息清晰显示, 否则无法通过审核 </van-row> <van-row gutter="20" class="id_card_row upload_box"> <van-col span=12> <div class="upload_wrap"> <di...
{ "pile_set_name": "Github" }
Australia's wealthy baby-boomers are disillusioned with service provided by banks and believe loyalty is not rewarded, a survey released on Monday found. Those approaching retirement were also unhappy with the performance of their superannuation funds and were looking to move elsewhere wherever possible, the survey by...
{ "pile_set_name": "Github" }
// Alamofire.swift // // Copyright (c) 2014–2015 Alamofire Software Foundation (http://alamofire.org/) // // 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 wit...
{ "pile_set_name": "Github" }
<template> <div> <table cellspacing="0" cellpadding="0" border="0" role="presentation" style="font-size: 0; line-height: 1.5" > <tbody> <!-- Avatar column --> <tr> <td style="vertical-align: top;"> <avatar :show-avatar="sh...
{ "pile_set_name": "Github" }
#include <aslam/backend/BSplineMotionError.hpp> #include <stdio.h> namespace aslam { namespace backend { template<class SPLINE_T> BSplineMotionError<SPLINE_T>::BSplineMotionError(spline_t * splineDV, Eigen::MatrixXd W) : _splineDV(splineDV), _W(W) { initiali...
{ "pile_set_name": "Github" }
import { storiesOf } from '@storybook/react' import { withInfo } from '@storybook/addon-info' import React from 'react' import styled from 'styled-components' import { Button, ButtonGroup, IconButton } from '../../src' import Layout from '../components/layout' const ButtonWrapper = styled.div` display: flex; flex...
{ "pile_set_name": "Github" }
// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved. namespace FlaxEditor.CustomEditors.Elements { /// <summary> /// The integer value editor element. /// </summary> public interface IIntegerValueEditor { /// <summary> /// Gets or sets the value. /// </summary> ...
{ "pile_set_name": "Github" }
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ namespace Microsoft.Azure.I...
{ "pile_set_name": "Github" }
'use strict'; module.exports = function () { var arr = [1, 'foo'], iterator, result; if (typeof arr.entries !== 'function') return false; iterator = arr.entries(); if (!iterator) return false; if (typeof iterator.next !== 'function') return false; result = iterator.next(); if (!result || !result.value) return f...
{ "pile_set_name": "Github" }
#!/usr/bin/env python """ twitter-repeater is a bot that automatically retweets any tweets in which its name is "mentioned" in. In order for a tweet to be retweeted, the bot account must be following the original user who tweeted it, that user must not be on the ignore list, and the tweet must pass some basic quality ...
{ "pile_set_name": "Github" }
#!/usr/bin/env bash # Copyright 2018 The Knative 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 ...
{ "pile_set_name": "Github" }
@echo off REM REM dex2jar - Tools to work with android .dex and java .class files REM Copyright (c) 2009-2013 Panxiaobo REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM ...
{ "pile_set_name": "Github" }
<cfcomponent extends="taffy.core.resource" taffy:uri="/artist/{id}" hint="some hint about this resource"> <cffunction name="get" access="public" output="false"> <cfargument name="id" type="numeric" required="true" /> <cfset var q = ""/> <cfset var col = "" /> <cfset var rtn = StructNew() /> <cfquery name="q...
{ "pile_set_name": "Github" }
// Copyright David Abrahams 2003. // 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) #ifndef PURE_VIRTUAL_DWA2003810_HPP # define PURE_VIRTUAL_DWA2003810_HPP # include <boost/python/def_visitor.hpp> # include <boos...
{ "pile_set_name": "Github" }
## Objective The objective of the `SMW_NS_SCHEMA` (aka [`smw/schema`][ns:schema]) namespace provides a structured definition space where different schemata types can be defined and that independently use a type specific interpreter, syntax elements, and possible constraints. The namespace expects a JSON format (or i...
{ "pile_set_name": "Github" }
// SPDX-License-Identifier: GPL-2.0 /* * Pioctl operations for Coda. * Original version: (C) 1996 Peter Braam * Rewritten for Linux 2.1: (C) 1997 Carnegie Mellon University * * Carnegie Mellon encourages users of this code to contribute improvements * to the Coda project. Contact Peter Braam <coda@cs.cmu.edu>. *...
{ "pile_set_name": "Github" }
# OpenCensus Library Trace Package This documentation serves to document the "look and feel" of the open source tags package. It describes the key types and the overall behavior. ## Main APIs * [Span](Span.md) * [TraceConfig](TraceConfig.md) ## Utils * [gRPC integration](gRPC.md): document about how to instrument gR...
{ "pile_set_name": "Github" }
#!/bin/bash # Copyright 2014 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 ...
{ "pile_set_name": "Github" }
/* * Copyright (C) 2015 Ericsson AB. All rights reserved. * Copyright (C) 2015-2019 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must re...
{ "pile_set_name": "Github" }
// !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 5F3EC39316299AE500940431 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F3EC39216299AE500940431 /* Foundation.framework */; }; 5F3EC39616299AE500940431 /* main.m in S...
{ "pile_set_name": "Github" }
/* * Copyright (c) 2005-2017 National Technology & Engineering Solutions * of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with * NTESS, the U.S. Government retains certain rights in this software. * * Redistribution and use in source and binary forms, with or without * modification, are permitt...
{ "pile_set_name": "Github" }
import roundBigNumberFilter from '@/filters/roundBigNumber'; describe('round big number filter', () => { it('can round a decimal number', () => { expect(roundBigNumberFilter(4.567)).to.equal(4.57); expect(roundBigNumberFilter(4.562)).to.equal(4.56); }); it('can round thousands', () => { expect(round...
{ "pile_set_name": "Github" }
/* * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
{ "pile_set_name": "Github" }
44--Aerobics/44_Aerobics_Aerobics_44_400.jpg 1 218.52212735 163.988585556 143.310682892 199.49628096 0.999663710594
{ "pile_set_name": "Github" }
; This is a basic sanity check for constant propagation. It tests the basic ; logic operations. ; RUN: opt < %s -sccp -S | not grep and ; RUN: opt < %s -sccp -S | not grep trunc ; RUN: opt < %s -sccp -S | grep "ret i100 -1" define i100 @test(i133 %A) { %B = and i133 0, %A %C = icmp sgt i133 %B, 0 b...
{ "pile_set_name": "Github" }